diff --git a/src/cwtest/cfg/20221002/full_score_demo.cfg b/src/cwtest/cfg/20221002/full_score_demo.cfg index 6e09f33..4d00ff7 100644 --- a/src/cwtest/cfg/20221002/full_score_demo.cfg +++ b/src/cwtest/cfg/20221002/full_score_demo.cfg @@ -1,385 +1,6 @@ { test: { - flow_proc_dict: { - - balance: { - vars: { - in: { type:real, value:0.5, doc:"Input vaue" }, - out: { type:real, doc:"Ouput value. Same as input value."}, - inv_out: { type:real, doc:"1.0 minus output value."} - } - } - - audio_in: { - vars: { - dev_label: { type:string, doc:"Audio device label." }, - out: { type:audio, doc:"Audio output" }, - } - } - - audio_out: { - vars: { - dev_label: { type:string, doc:"Audio device label." }, - in: { type:audio, srcFl:true, doc:"Audio input." } - } - } - - audioFileIn: { - vars: { - fname: { type:string, doc:"Audio file name." }, - out:{ type:audio, doc:"Audio file output" }, - eofFl:{ type:bool, eofFl: true, doc:"Set the system 'halt' flag when the audio is completely read."}, - } - } - - audioFileOut: { - vars: { - fname: { type:string, doc:"Audio file name." }, - bits: { type:uint, value:32, doc:"Audio file word width. (8,16,24,32,0=float32)."}, - in: { type:audio, srcFl:true, doc:"Audio file input." } - } - } - - audio_gain: { - vars: { - in: { type:audio, srcFl:true, doc:"Audio input." }, - gain: { type:real, value:1.0, doc:"Gain coefficient." } - out: { type:audio, doc:"Audio output." }, - } - } - - audio_split: { - vars: { - in: { type:audio, srcFl:true, doc:"Audio input." }, - select: { type:bool, doc:"Enable/Disable each channel" } - gain: { type:real, value:1.0, doc:"Audio gain for each selected (output) channel." } - out: { type:audio, doc:"Audio output." }, - } - - presets: - { - mute_off: { gain:1 }, - mute_on: { gain:0 }, - } - } - - audio_duplicate: { - vars: { - in: { type:audio, srcFl:true, doc:"Audio input."}, - duplicate: { type: uint, doc:"Count of times to repeat this channel." }, - gain: { type: real, value:1.0, doc:"Audio gain." }, - out: { type:audio, doc:"Audio output containing repeat * input channel count channels."} - } - } - - audio_merge: { - vars: { - in0: { type:audio, srcFl:true, doc:"First audio input." }, - in1: { type:audio, srcFl:true, doc:"Second audio input." }, - gain: { type:real, value:1.0, doc:"Audio gain for each selected (output) channel." } - out: { type:audio, doc:"Audio output. Channel count is the sum of the input channel count." }, - } - } - - audio_mix: { - vars: { - in0: { type:audio, srcFl:true, doc:"First audio input." }, - in1: { type:audio, srcFl:true, doc:"Second audio input." }, - gain0: { type:real, value:0.5, doc:"Audio gain for input 0." }, - gain1: { type:real, value:0.5, doc:"Audio gain for input 1." }, - out: { type:audio, doc:"Audio output. Channel count is the sum of the input channel count." }, - } - } - - audio_delay: { - vars: { - in: { type:audio, srcFl:true, doc:"Audio input." }, - maxDelayMs: { type:real, value:1000.0 doc:"Maximum possible delay in milliseconds." }, - delayMs: { type:real, doc:"Delay in milliseconds." }, - out: { type:audio, doc:"Audio output." }, - } - } - - - sine_tone: { - vars: { - srate: { type:real, value:48000.0, doc:"Sine tone sample rate."} - chCnt: { type:uint, value:2, doc:"Output signal channel count."}, - hz: { type:real, value:440.0, doc:"Frequency in Hertz."}, - gain: { type:real, value:0.8, doc:"Signal frequency."}, - out: { type:audio, doc:"Audio output" }, - } - - presets: { - a: { hz:220 }, - b: { hz:880 }, - } - } - - pv_analysis: { - vars: { - in: { type:audio, srcFl:true, doc:"Audio input." }, - hopSmpN: { type:uint, value: 128, doc:"Hop sample count." }, - wndSmpN: { type:uint, value: 512, doc:"Window sample count." }, - hzFl: { type:bool, value: false, doc:"Calculate frequency via the method of phase changeof each bin." }, - out: { type:spectrum, doc:"Spectrum output." } - } - } - - pv_synthesis: { - vars: { - in: { type:spectrum, srcFl:true, doc:"Spectrum input." }, - out: { type:audio, doc:"Audio output." } - } - } - - spec_dist: { - vars: { - in: { type:spectrum, srcFl:true, doc:"Spectrum input." }, - - ceiling: { type:real, value: 30.0, doc:"Ceiling parameter."}, - expo: { type:real, value: 2.0, doc:"Exponent parameter."}, - thresh: { type:real, value: 54.0, doc:"Threshold parameter."}, - upr: { type:real, value: -0.7, doc:"Upper slope parameter."}, - lwr: { type:real, value: 2.0, doc:"Lower slope parameter."}, - mix: { type:real, value: 0.0, doc:"Basic/Bump Mix parameter."}, - - out: { type:spectrum, doc:"Spectrum output." }, - - } - - presets: { - - dry: { - - } - - kc: { - ceiling: 20.0, - expo: 2.0, - thresh: 65.0, - upr: 0.0, - lwr: 2.0, - mix: 0.0 - } - - a: { - ceiling: 20.0 - expo: 2.0 - thresh: 60.0 - upr: [ -1.1, -0.99], - lwr: 2.0 - mix: 0.0 - } - - b: { - ceiling: 20.0 - expo: 2.0 - thresh: [ 77.0, 74.0 ], - upr: -0.5 - lwr: [ 3.0, 2.0 ], - mix: 0.0 - } - - c: { - ceiling: 20.0 - expo: 2.0 - thresh: 80.0 - upr: -0.5 - lwr: 5.0 - mix: 0.0 - } - - d: { - ceiling: 20.0 - expo: 2.0 - thresh: 70.0 - upr: [ -3.9, 04.5] - lwr: 4.0 - mix: 0.0 - } - - f_1: { - ceiling: 20.0 - expo: 2.0 - thresh: 50.0 - upr: -3.0 - lwr: 1.0 - mix: 0.0 - } - - f_2: { - ceiling: 20.0 - expo: 2.0 - thresh: 60.0 - upr: -3.0 - lwr: 1.0 - mix: 0.0 - } - - f_3: { - ceiling: 20.0 - expo: 2.0 - thresh: 55.0 - upr: -3.0 - lwr: 1.0 - mix: 0.0 - } - - f_4: { - ceiling: 20.0 - expo: 2.0 - thresh: 55.0 - upr: -5.0 - lwr: 1.0 - mix: 0.0 - } - - g: { - ceiling: 40.0 - expo: 8.0 - thresh: [60.0 64.0] - upr: -0.7 - lwr: 8.0 - mix: 1.0 - } - - g_a: { - ceiling: 40.0 - expo: 2.0 - thresh: [50.0 54.0] - upr: -0.7 - lwr: 2.0 - mix: 1.0 - } - - g_1_a: { - ceiling: 20.0 - expo: 2.0 - thresh: [50.0 54.0] - upr: -0.7 - lwr: 8.0 - mix: 1.0 - } - - g_1_d: { - ceiling: [60.0 64.0] - expo: [ 7.0 5.0] - thresh: [40.0 34.0] - upr: [-0.4 -0.3] - lwr: [ 7.0 5.0] - mix: 1.0 - } - } - } - - compressor: { - vars: { - in: { type:audio, srcFl: true, doc:"Audio input." }, - bypass: { type:bool, value: false, doc:"Bypass the compressor."}, - igain: { type:real, value: 1.0, doc:"Input gain."}, - thresh: { type:real, value: 0.0, doc:"Attack threshold in dB."}, - ratio: { type:real, value: 2.0, doc:"Compression ratio."}, - atk_ms: { type:real, value: 20.0, doc:"Attack time in milliseconds."}, - rls_ms: { type:real, value: 20.0, doc:"Release time in milliseconds."}, - wnd_ms: { type:real, value: 200.0, doc:"RMS calc. window length in milliseconds."}, - maxWnd_ms: { type:real, value: 1000.0, doc:"Maximim (allocated) window length in milliseconds."}, - ogain: { type:real, value: 1.0, doc:"Output gain."}, - out: { type:audio, doc:"Audio output." }, - } - - presets: { - dflt: { - igain: 3.0 - thresh: 60.0 - ratio: 5.0 - atk_ms: 5.0 - rls_ms: 20.0 - wnd_ms:100.0 - ogain: 1.0 - } - - kc: { - bypass: false - igain: 3.0 - thresh: 80.0 - ratio: 2.0 - atk_ms: 20.0 - rls_ms: 1000.0 - wnd_ms: 200.0 - ogain: 1.0 - } - - dry: { - - } - - a: { - igain: 6.0 - ogain: 1.0 - } - - b: { - igain: 10.0 - ogain: 1.0 - } - - c: { - igain: 11.0 - ogain: 1.0 - } - - d: { - igain: 9.0 - ogain: 1.0 - } - - f_1: { - igain: 6.0 - ogain: 1.0 - } - - f_2: { - igain: 6.0 - ogain: 1.0 - } - - f_3: { - igain: 6.0 - ogain: 1.0 - } - - f_4: { - igain: 6.0 - ogain: 1.0 - } - - g: { - igain: 10.0 - ogain: 0.25 - } - - g_a: { - igain: 10.0 - ogain: 0.25 - } - - g_1_a: { - igain: 10.0 - ogain: 0.25 - } - - g_1_d: { - igain: 10.0 - ogain: 0.25 - } - - - } - } - } - - preset_sel: { + preset_sel: { params: { //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", @@ -390,6 +11,8 @@ record_fn: "workshop_presets", record_fn_ext: "txt", + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + beg_play_loc: 12431, end_play_loc: 0, diff --git a/src/cwtest/cfg/flow_proc_dict.cfg b/src/cwtest/cfg/flow_proc_dict.cfg index 4a039af..b66172f 100644 --- a/src/cwtest/cfg/flow_proc_dict.cfg +++ b/src/cwtest/cfg/flow_proc_dict.cfg @@ -74,6 +74,12 @@ vars: { in0: { type:audio, srcFl:true, doc:"First audio input." }, in1: { type:audio, srcFl:true, doc:"Second audio input." }, + in2: { type:audio, srcFl:true, srcOptFl:true, doc:"Third audio input." }, + in3: { type:audio, srcFl:true, srcOptFl:true, doc:"Fourth audio input." }, + in4: { type:audio, srcFl:true, srcOptFl:true, doc:"Fifth audio input." }, + in5: { type:audio, srcFl:true, srcOptFl:true, doc:"Sixth audio input." }, + in6: { type:audio, srcFl:true, srcOptFl:true, doc:"Seventh audio input." }, + in7: { type:audio, srcFl:true, srcOptFl:true, doc:"Eigth audio input." }, gain: { type:real, value:1.0, doc:"Audio gain for each selected (output) channel." } out: { type:audio, doc:"Audio output. Channel count is the sum of the input channel count." }, } diff --git a/src/cwtest/cfg/preset_sel/preset_sel_fragments/live_workshop_presets.txt b/src/cwtest/cfg/preset_sel/preset_sel_fragments/live_workshop_presets.txt new file mode 100644 index 0000000..c7247e7 --- /dev/null +++ b/src/cwtest/cfg/preset_sel/preset_sel_fragments/live_workshop_presets.txt @@ -0,0 +1,171 @@ +{ + "masterSyncDelayMs": 400.0, + "masterDryGain": 1.0, + "masterWetOutGain": 1.0, + "masterWetInGain": 1.5, + "fragN": 2, + "fragL": [ + { + "presetN": 2, + "note": "", + "begPlayLoc": 0, + "endPlayLoc": 9387, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9387, + "fragId": 0, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 2, + "note": "", + "begPlayLoc": 9388, + "endPlayLoc": 9848, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9848, + "fragId": 1, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + } + ] +} diff --git a/src/cwtest/cfg/preset_sel/preset_sel_fragments/m1-7.txt b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m1-7.txt new file mode 100644 index 0000000..9756d1d --- /dev/null +++ b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m1-7.txt @@ -0,0 +1 @@ + { "fragL" : [ { "fragId" : 1, "endLoc" : 13, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 1, "endPlayLoc" : 13, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 3, "preset_label" : "b", "play_fl" : false } , { "order" : 1, "preset_label" : "c", "play_fl" : true } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 2, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 2, "endLoc" : 20, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 14, "endPlayLoc" : 20, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : true } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 3, "endLoc" : 28, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 21, "endPlayLoc" : 28, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 1, "preset_label" : "f2", "play_fl" : true } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 2, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 4, "endLoc" : 47, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 29, "endPlayLoc" : 47, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 2, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 1, "preset_label" : "g1d", "play_fl" : true } ] } , { "fragId" : 5, "endLoc" : 59, "endTimestamp_sec" : 26, "endTimestamp_nsec" : 685000000, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 29, "endPlayLoc" : 59, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : true } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } ] , "fragN" : 5, "masterWetInGain" : 1.500000, "masterWetOutGain" : 1.000000, "masterDryGain" : 1.000000, "masterSyncDelayMs" : 400.000000 } \ No newline at end of file diff --git a/src/cwtest/cfg/preset_sel/preset_sel_fragments/m197-203.txt b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m197-203.txt new file mode 100644 index 0000000..57cb9e4 --- /dev/null +++ b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m197-203.txt @@ -0,0 +1 @@ + { "fragL" : [ { "fragId" : 1, "endLoc" : 4085, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 1, "endPlayLoc" : 4085, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : true } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 7, "endLoc" : 4210, "endTimestamp_sec" : 764, "endTimestamp_nsec" : 60000000, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 4086, "endPlayLoc" : 4210, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : true } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 2, "endLoc" : 4323, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 6000.000000, "begPlayLoc" : 4086, "endPlayLoc" : 4323, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : true } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 3, "endLoc" : 4615, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 4324, "endPlayLoc" : 4615, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : true } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 4, "endLoc" : 4657, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 4616, "endPlayLoc" : 4657, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : true } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 5, "endLoc" : 4686, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 500.000000, "begPlayLoc" : 4658, "endPlayLoc" : 4686, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : false } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : true } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } , { "fragId" : 6, "endLoc" : 4729, "endTimestamp_sec" : 0, "endTimestamp_nsec" : 0, "inGain" : 1.000000, "outGain" : 1.000000, "wetDryGain" : 0.500000, "fadeOutMs" : 5000.000000, "begPlayLoc" : 4687, "endPlayLoc" : 4729, "note" : "", "presetN" : 13, "presetL" : [ { "order" : 0, "preset_label" : "dry", "play_fl" : true } , { "order" : 0, "preset_label" : "a", "play_fl" : false } , { "order" : 0, "preset_label" : "b", "play_fl" : false } , { "order" : 0, "preset_label" : "c", "play_fl" : false } , { "order" : 0, "preset_label" : "d", "play_fl" : false } , { "order" : 0, "preset_label" : "f1", "play_fl" : false } , { "order" : 0, "preset_label" : "f2", "play_fl" : false } , { "order" : 0, "preset_label" : "f3", "play_fl" : false } , { "order" : 0, "preset_label" : "f4", "play_fl" : false } , { "order" : 0, "preset_label" : "g", "play_fl" : false } , { "order" : 0, "preset_label" : "ga", "play_fl" : false } , { "order" : 0, "preset_label" : "g1a", "play_fl" : false } , { "order" : 0, "preset_label" : "g1d", "play_fl" : false } ] } ] , "fragN" : 7, "masterWetInGain" : 1.500000, "masterWetOutGain" : 1.000000, "masterDryGain" : 1.000000, "masterSyncDelayMs" : 400.000000 } \ No newline at end of file diff --git a/src/cwtest/cfg/preset_sel/preset_sel_fragments/m302-325.txt b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m302-325.txt new file mode 100644 index 0000000..b563649 --- /dev/null +++ b/src/cwtest/cfg/preset_sel/preset_sel_fragments/m302-325.txt @@ -0,0 +1,1468 @@ +{ + "masterSyncDelayMs": 400.0, + "masterDryGain": 1.0, + "masterWetOutGain": 1.0, + "masterWetInGain": 1.5, + "fragN": 18, + "fragL": [ + { + "presetN": 13, + "note": "", + "begPlayLoc": 0, + "endPlayLoc": 9187, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9187, + "fragId": 0, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9188, + "endPlayLoc": 9304, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9304, + "fragId": 1, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9305, + "endPlayLoc": 9351, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9351, + "fragId": 2, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9352, + "endPlayLoc": 9429, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9429, + "fragId": 3, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9430, + "endPlayLoc": 9498, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9498, + "fragId": 4, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9499, + "endPlayLoc": 9564, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9564, + "fragId": 5, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9565, + "endPlayLoc": 9577, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9577, + "fragId": 6, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9578, + "endPlayLoc": 9627, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9627, + "fragId": 7, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9628, + "endPlayLoc": 9647, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9647, + "fragId": 8, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9648, + "endPlayLoc": 9707, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9707, + "fragId": 9, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9708, + "endPlayLoc": 9789, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9789, + "fragId": 10, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9790, + "endPlayLoc": 9862, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9862, + "fragId": 11, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9863, + "endPlayLoc": 9886, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9886, + "fragId": 12, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9887, + "endPlayLoc": 9921, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9921, + "fragId": 13, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9922, + "endPlayLoc": 9938, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9938, + "fragId": 14, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9939, + "endPlayLoc": 9953, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9953, + "fragId": 15, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9954, + "endPlayLoc": 9984, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 9984, + "fragId": 16, + "presetL": [ + { + "play_fl": true, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + }, + { + "presetN": 13, + "note": "", + "begPlayLoc": 9985, + "endPlayLoc": 10007, + "fadeOutMs": 500.0, + "wetDryGain": 0.5, + "outGain": 1.0, + "inGain": 1.0, + "endTimestamp_nsec": 0, + "endTimestamp_sec": 0, + "endLoc": 10007, + "fragId": 17, + "presetL": [ + { + "play_fl": false, + "preset_label": "dry", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "b", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "c", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "d", + "order": 0 + }, + { + "play_fl": true, + "preset_label": "f1", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f2", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f3", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "f4", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "ga", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1a", + "order": 0 + }, + { + "play_fl": false, + "preset_label": "g1d", + "order": 0 + } + ] + } + + ] +} diff --git a/src/cwtest/cfg/preset_sel/preset_sel_fragments/temp_frag.txt b/src/cwtest/cfg/preset_sel/preset_sel_fragments/temp_frag.txt new file mode 100644 index 0000000..1bde59e --- /dev/null +++ b/src/cwtest/cfg/preset_sel/preset_sel_fragments/temp_frag.txt @@ -0,0 +1 @@ +{"masterSyncDelayMs": 400.0, "masterDryGain": 1.0, "masterWetOutGain": 1.0, "masterWetInGain": 1.5, "fragN": 16, "fragL": [{"presetN": 13, "note": "", "begPlayLoc": 9188, "endPlayLoc": 9304, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9304, "fragId": 0, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9305, "endPlayLoc": 9351, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9351, "fragId": 2, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": true, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9352, "endPlayLoc": 9429, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9429, "fragId": 3, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": true, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9430, "endPlayLoc": 9498, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9498, "fragId": 4, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": true, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9499, "endPlayLoc": 9564, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9564, "fragId": 5, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": true, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9565, "endPlayLoc": 9577, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9577, "fragId": 6, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9578, "endPlayLoc": 9627, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9627, "fragId": 7, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": true, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9628, "endPlayLoc": 9647, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9647, "fragId": 8, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": true, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9648, "endPlayLoc": 9707, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9707, "fragId": 9, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": true, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9708, "endPlayLoc": 9789, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9789, "fragId": 10, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": true, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9790, "endPlayLoc": 9862, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9862, "fragId": 11, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": true, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9863, "endPlayLoc": 9886, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9886, "fragId": 12, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": true, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9887, "endPlayLoc": 9921, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9921, "fragId": 13, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": true, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9922, "endPlayLoc": 9938, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9938, "fragId": 14, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": false, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": true, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9939, "endPlayLoc": 9953, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9953, "fragId": 15, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": true, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}, {"presetN": 13, "note": "", "begPlayLoc": 9954, "endPlayLoc": 9984, "fadeOutMs": 500.0, "wetDryGain": 0.5, "outGain": 1.0, "inGain": 1.0, "endTimestamp_nsec": 0, "endTimestamp_sec": 0, "endLoc": 9984, "fragId": 16, "presetL": [{"play_fl": false, "preset_label": "dry", "order": 0}, {"play_fl": false, "preset_label": "a", "order": 0}, {"play_fl": false, "preset_label": "b", "order": 0}, {"play_fl": false, "preset_label": "c", "order": 0}, {"play_fl": true, "preset_label": "d", "order": 0}, {"play_fl": false, "preset_label": "f1", "order": 0}, {"play_fl": false, "preset_label": "f2", "order": 0}, {"play_fl": false, "preset_label": "f3", "order": 0}, {"play_fl": false, "preset_label": "f4", "order": 0}, {"play_fl": false, "preset_label": "g", "order": 0}, {"play_fl": false, "preset_label": "ga", "order": 0}, {"play_fl": false, "preset_label": "g1a", "order": 0}, {"play_fl": false, "preset_label": "g1d", "order": 0}]}]} \ No newline at end of file diff --git a/src/cwtest/cfg/preset_sel/score/20220423/.~lock.temp_m197_half_pedal.csv# b/src/cwtest/cfg/preset_sel/score/20220423/.~lock.temp_m197_half_pedal.csv# new file mode 100644 index 0000000..c5b9487 --- /dev/null +++ b/src/cwtest/cfg/preset_sel/score/20220423/.~lock.temp_m197_half_pedal.csv# @@ -0,0 +1 @@ +,kevin,zonk,06.11.2022 13:38,file:///home/kevin/.config/libreoffice/4; \ No newline at end of file diff --git a/src/cwtest/cfg/preset_sel/score/20220423/temp_1.csv b/src/cwtest/cfg/preset_sel/score/20220423/temp_1.csv new file mode 100644 index 0000000..737cefe --- /dev/null +++ b/src/cwtest/cfg/preset_sel/score/20220423/temp_1.csv @@ -0,0 +1,27211 @@ +meas,index,voice,loc,tick,sec,dur,rval,sci_pitch,dmark,dlevel,status,d0,d1,bar,section,bpm,grace,pedal +1,0,0,0,0,0.0,,,,,,,,,1,,,, +1,1,0,0,0,0.0,,,,,,,,,,5918,,, +1,2,0,0,0,0.0,,,,,,,,,,,84,, +1,3,0,0,0,0.0,,,,,,,,,,,84,, +1,5,1,0,,0.0,,8.0,F4,p,11,144,65,11,,,,g, +1,4,0,1,0,0.0,,,,,,176,64,127,,,,,V +1,5,1,0,,0.05,,,,,,144,65,0,,,,, +1,6,1,2,,0.075,,8.0,D#4,mp,14,144,63,14,,,,g, +1,6,1,2,,0.125,,,,,,144,63,0,,,,, +1,7,1,3,,0.15,,8.0,A2,mf-,16,144,45,16,,,,g, +1,7,1,3,,0.2,,,,,,144,45,0,,,,, +1,8,1,4,,0.225,,8.0,F#1,f-,19,144,30,19,,,,g, +1,8,1,4,,0.275,,,,,,144,30,0,,,,, +1,9,1,5,,0.3,,8.0,C#2,f+,21,144,37,21,,,,g, +1,9,1,5,,0.35,,,,,,144,37,0,,,,, +1,10,1,6,,0.375,,8.0,F4,fff,24,144,65,23,,,,g, +1,10,1,6,,0.425,,,,,,144,65,0,,,,, +1,11,1,7,0,0.45,1024,1.0,D#6,ff,22,144,87,22,,,,, +1,12,3,8,0,0.45,1024,1.0,C2,f,20,144,36,20,,,,, +1,13,3,9,0,0.45,1024,1.0,A#2,pp,8,144,46,8,,,,, +1,14,1,10,1024,1.879,,,,,,176,102,0,,,,, +1,15,3,11,1024,1.879,1536,1.0,C2,,,,,,,,,, +1,16,3,12,1024,1.879,1024,1.0,A#2,,,,,,,,,, +1,11,1,7,0,2.329,,,,,,144,87,0,,,,, +1,17,1,13,1536,2.593,,,,,,176,102,0,,,,, +1,13,3,9,0,3.757,,,,,,144,46,0,,,,, +2,0,0,14,0,4.021,,,,,,,,,2,,,, +2,1,1,15,0,4.021,2048,0.5,C#6,pp,8,144,85,8,,,,, +2,2,3,16,0,4.021,,,,,,176,102,0,,,,, +1,12,3,8,0,4.471,,,,,,144,36,0,,,,, +2,1,1,15,0,6.879,,,,,,144,85,0,,,,, +2,3,1,17,2048,6.879,2048,0.5,E7,f,20,144,100,20,,,,, +2,3,1,17,2048,9.736,,,,,,144,100,0,,,,, +3,0,0,18,0,9.736,,,,,,,,,3,,,, +3,1,1,19,0,9.736,,,,,,176,102,0,,,,, +3,2,3,20,0,9.736,,,,,,176,102,0,,,,, +4,0,0,21,0,13.307,,,,,,,,,4,,,, +4,1,1,22,0,13.307,256,4.0,G#5,ff,22,144,80,22,,,,, +4,2,3,23,0,13.307,,,,,,176,102,0,,,,, +4,1,1,22,0,13.664,,,,,,144,80,0,,,,, +4,3,1,24,256,13.664,2048,0.5,A6,ff+,23,144,93,23,,,,, +4,3,1,24,256,16.296,,,,,,144,93,0,,,,, +4,4,1,25,,16.296,,8.0,A6,ff+,23,144,93,23,,,,g, +4,5,1,26,,16.371,,8.0,C2,ff+,23,144,36,23,,,,g, +4,5,1,26,,16.421,,,,,,144,36,0,,,,, +4,6,1,27,,16.446,,8.0,F#4,ff+,23,144,66,23,,,,g, +4,6,1,27,,16.496,,,,,,144,66,0,,,,, +4,4,1,25,,16.521,,,,,,144,93,0,,,,, +4,7,1,28,2304,16.521,256,4.0,F#4,ff,22,144,66,22,,,,, +4,7,1,28,2304,16.879,,,,,,144,66,0,,,,, +5,0,0,29,0,16.879,,,,,,,,,5,,,, +5,1,1,30,0,16.879,1920,1.0,E7,f,20,144,100,20,,,,, +5,2,3,31,0,16.879,,,,,,176,102,0,,,,, +5,1,1,30,0,19.557,,,,,,144,100,0,,,,, +5,3,1,32,1920,19.557,128,8.0,G#6,p,11,144,92,11,,,,, +5,4,3,33,1920,19.557,128,8.0,A2,pp,8,144,45,8,,,,, +5,3,1,32,1920,19.736,,,,,,144,92,0,,,,, +6,0,0,34,0,19.736,,,,,,,,,6,,,, +6,1,1,35,0,19.736,,,,,,176,102,0,,,,, +6,2,3,36,0,19.736,512,2.0,A2,,,,,,,,,, +6,3,1,37,192,20.004,64,16.0,G5,p,11,144,79,11,,,,, +6,4,1,38,256,20.093,256,4.0,G5,,,,,,,,,, +5,4,3,33,1920,20.45,,,,,,144,45,0,,,,, +6,5,1,39,512,20.45,2048,0.5,G5,,,,,,,,,, +6,6,3,40,512,20.45,2048,0.5,A#2,pp,8,144,46,8,,,,, +6,7,1,41,,22.857,,8.0,C2,p,11,144,36,11,,,,g, +6,7,1,41,,22.907,,,,,,144,36,0,,,,, +6,8,1,42,,22.932,,8.0,A5,mp-,13,144,81,13,,,,g, +6,8,1,42,,22.982,,,,,,144,81,0,,,,, +6,9,1,43,,23.007,,8.0,E6,mp+,15,144,88,15,,,,g, +6,9,1,43,,23.057,,,,,,144,88,0,,,,, +6,10,1,44,,23.082,,8.0,F#3,mf+,18,144,54,18,,,,g, +6,10,1,44,,23.132,,,,,,144,54,0,,,,, +6,11,1,45,,23.157,,8.0,G#5,f,20,144,80,20,,,,g, +6,11,1,45,,23.207,,,,,,144,80,0,,,,, +7,2,0,46,0,23.207,,,,,,176,64,0,,,,,^ +6,12,1,47,,23.232,,8.0,A5,ff,22,144,81,22,,,,g, +6,12,1,47,,23.282,,,,,,144,81,0,,,,, +6,3,1,37,192,23.307,,,,,,144,79,0,,,,, +6,6,3,40,512,23.307,,,,,,144,46,0,,,,, +7,0,0,48,0,23.307,,,,,,,,,7,,,, +7,1,0,49,0,23.307,,,,,,,,,,5919,,, +7,9,1,50,0,23.307,2048,0.5,D3,ppp,5,144,50,5,,,,, +7,10,1,51,0,23.307,2048,0.5,E3,ppp,5,144,52,5,,,,, +7,11,3,52,0,23.307,3072,0.5,C1,ff,22,144,24,22,,,,, +7,2,0,53,0,23.507,,,,,,176,64,127,,,,,V +7,12,1,54,2048,26.164,256,4.0,D3,,,,,,,,,, +7,13,1,55,2048,26.164,256,4.0,E3,,,,,,,,,, +7,16,0,56,2314,26.385,,,,,,176,64,0,,,,,^ +7,9,1,50,0,26.521,,,,,,144,50,0,,,,, +7,10,1,51,0,26.521,,,,,,144,52,0,,,,, +7,14,1,57,2304,26.521,768,2.0,C6,ppp,5,144,84,5,,,,, +7,15,1,58,2304,26.521,512,2.0,F6,ppp,5,144,89,5,,,,, +7,16,0,59,2314,26.685,,,,,,176,64,127,,,,,V +7,15,1,58,2304,27.236,,,,,,144,89,0,,,,, +8,0,0,60,0,27.593,,,,,,,,,8,,,, +8,1,1,61,0,27.593,,,,,,176,102,0,,,,, +8,2,3,62,0,27.593,3072,0.5,C1,,,,,,,,,, +8,3,3,63,0,27.593,2048,0.5,A3,p,11,144,57,11,,,,, +7,14,1,57,2304,27.593,,,,,,144,84,0,,,,, +8,4,0,64,42,27.651,,,,,,176,64,0,,,,,^ +8,6,1,65,341,28.069,171,4.0,C#6,ppp,5,144,85,5,,,,, +8,5,0,66,341,28.069,,,,,,176,64,127,,,,,V +8,7,1,67,512,28.307,512,2.0,C#6,,,,,,,,,, +8,6,1,65,341,29.021,,,,,,144,85,0,,,,, +8,8,1,68,1024,29.021,,,,,,176,102,0,,,,, +8,9,1,69,1280,29.379,256,4.0,G#2,p,11,144,44,11,,,,, +8,9,1,69,1280,29.736,,,,,,144,44,0,,,,, +8,10,1,70,1536,29.736,341,2.0,A#3,pp+,9,144,58,9,,,,, +8,11,1,71,1877,30.211,85,8.0,A#3,,,,,,,,,, +8,10,1,70,1536,30.33,,,,,,144,58,0,,,,, +8,12,1,72,1962,30.33,43,16.0,C#7,ppp,5,144,97,5,,,,, +8,12,1,72,1962,30.39,,,,,,144,97,0,,,,, +8,13,1,73,2005,30.39,43,16.0,A#2,ppp,5,144,46,5,,,,, +8,13,1,73,2005,30.45,,,,,,144,46,0,,,,, +8,14,1,74,2048,30.45,341,2.0,E2,ppp+,6,144,40,6,,,,, +8,14,1,74,2048,30.926,,,,,,144,40,0,,,,, +8,15,1,75,2389,30.926,341,2.0,C#6,pp,8,144,85,8,,,,, +8,15,1,75,2389,31.401,,,,,,144,85,0,,,,, +8,16,1,76,2730,31.401,342,2.0,C5,ppp,5,144,72,5,,,,, +8,16,1,76,2730,31.879,,,,,,144,72,0,,,,, +9,0,0,77,0,31.879,,,,,,,,,9,,,, +9,1,0,78,0,31.879,,,,,,176,64,0,,,,,^ +9,2,1,79,0,31.879,,,,,,176,102,0,,,,, +9,3,3,80,0,31.879,1024,1.0,C1,,,,,,,,,, +9,4,3,81,0,31.879,1024,1.0,A3,,,,,,,,,, +9,5,0,82,588,32.699,,,,,,176,64,127,,,,,V +9,6,3,83,1024,33.307,1024,1.0,C1,,,,,,,,,, +9,7,3,84,1024,33.307,1024,1.0,G#1,ppp,5,144,32,5,,,,, +9,8,3,85,1024,33.307,1024,1.0,A3,,,,,,,,,, +8,3,3,63,0,34.021,,,,,,144,57,0,,,,, +9,10,1,86,,34.286,,8.0,E3,p,11,144,52,11,,,,g, +9,10,1,86,,34.336,,,,,,144,52,0,,,,, +9,11,1,87,,34.361,,8.0,A#3,p+,12,144,58,12,,,,g, +9,11,1,87,,34.411,,,,,,144,58,0,,,,, +9,12,1,88,,34.436,,8.0,C6,p+,12,144,84,12,,,,g, +9,12,1,88,,34.486,,,,,,144,84,0,,,,, +9,13,1,89,,34.511,,8.0,C#7,mp-,13,144,97,13,,,,g, +9,9,0,90,1889,34.514,,,,,,176,64,0,,,,,^ +9,13,1,89,,34.561,,,,,,144,97,0,,,,, +9,14,1,91,,34.586,,8.0,G#2,mp-,13,144,44,13,,,,g, +9,14,1,91,,34.636,,,,,,144,44,0,,,,, +9,15,1,92,,34.661,,8.0,A#4,mp,14,144,70,14,,,,g, +9,15,1,92,,34.711,,,,,,144,70,0,,,,, +9,16,1,93,2048,34.736,512,2.0,E4,mp,14,144,64,14,,,,, +9,17,3,94,2048,34.736,512,2.0,C1,,,,,,,,,, +9,18,3,95,2048,34.736,512,2.0,G#1,,,,,,,,,, +9,19,3,96,2048,34.736,512,2.0,A3,,,,,,,,,, +7,11,3,52,0,35.45,,,,,,144,24,0,,,,, +9,20,1,97,2560,35.45,512,2.0,E4,,,,,,,,,, +9,21,1,98,2560,35.45,512,2.0,E5,ff,22,144,76,22,,,,, +9,22,3,99,2560,35.45,0,8.0,A3,,,,,,,,,, +9,23,3,100,2560,35.45,512,2.0,A3,ff,22,144,57,22,,,,, +9,7,3,84,1024,35.45,,,,,,144,32,0,,,,, +9,21,1,98,2560,36.164,,,,,,144,76,0,,,,, +9,23,3,100,2560,36.164,,,,,,144,57,0,,,,, +10,0,0,101,0,36.164,,,,,,,,,10,,,, +10,1,1,102,0,36.164,1536,1.0,E4,,,,,,,,,, +10,2,1,103,0,36.164,1024,1.0,G#4,ff,22,144,68,22,,,,, +10,3,3,104,0,36.164,384,4.0,C#2,ppp,5,144,37,5,,,,, +10,3,3,104,0,36.7,,,,,,144,37,0,,,,, +10,4,3,105,384,36.7,384,4.0,B1,ppp,5,144,35,5,,,,, +10,4,3,105,384,37.236,,,,,,144,35,0,,,,, +10,6,3,106,768,37.236,768,2.0,A4,f,20,144,69,20,,,,, +10,5,0,107,768,37.236,,,,,,176,64,127,,,,,V +10,6,3,106,768,37.286,,,,,,144,69,0,,,,, +10,2,1,103,0,37.593,,,,,,144,68,0,,,,, +10,7,1,108,1536,38.307,,,,,,176,102,0,,,,, +10,8,3,109,1536,38.307,,,,,,176,102,0,,,,, +10,10,0,111,1680,38.435,,,,,,176,64,0,,,,,^ +10,,,112,1790,38.735,,,,,,176,64,127,,,,,V +9,16,1,93,2048,39.914,,,,,,144,64,0,,,,, +10,11,1,113,,40.45,,8.0,C#2,f,20,144,37,20,,,,g, +10,12,1,114,,40.45,,8.0,F#2,f,20,144,42,20,,,,g, +10,13,1,115,,40.45,,8.0,E4,f,20,144,64,20,,,,g, +10,11,1,113,,40.5,,,,,,144,37,0,,,,, +10,12,1,114,,40.5,,,,,,144,42,0,,,,, +10,13,1,115,,40.5,,,,,,144,64,0,,,,, +10,14,1,116,,40.525,,8.0,D3,f,20,144,50,20,,,,g, +10,15,1,117,,40.525,,8.0,F5,f,20,144,77,20,,,,g, +10,14,1,116,,40.575,,,,,,144,50,0,,,,, +10,15,1,117,,40.575,,,,,,144,77,0,,,,, +10,16,1,118,,40.6,,8.0,A4,f,20,144,69,20,,,,g, +10,16,1,118,,40.65,,,,,,144,69,0,,,,, +10,17,1,119,,40.675,,8.0,A2,f,20,144,45,20,,,,g, +10,18,1,120,,40.675,,8.0,C#3,f,20,144,49,20,,,,g, +10,19,1,121,,40.675,,8.0,F7,f,20,144,101,20,,,,g, +10,17,1,119,,40.725,,,,,,144,45,0,,,,, +10,18,1,120,,40.725,,,,,,144,49,0,,,,, +10,19,1,121,,40.725,,,,,,144,101,0,,,,, +10,20,1,122,,40.75,,8.0,F4,f,20,144,65,20,,,,g, +10,20,1,122,,40.8,,,,,,144,65,0,,,,, +10,21,1,123,,40.825,,8.0,G7,f,20,144,103,20,,,,g, +10,21,1,123,,40.875,,,,,,144,103,0,,,,, +10,,,124,3071,41.124,,,,,,176,64,0,,,,,^ +11,0,0,125,0,41.275,,,,,,,,,11,,,, +11,2,1,126,0,41.275,2048,0.5,C7,mp,14,144,96,14,,,,, +11,3,3,127,0,41.275,,,,,,176,102,0,,,,, +11,1,0,128,0,41.424,,,,,,176,64,127,,,,,V +11,4,0,129,1008,42.681,,,,,,176,64,0,,,,,^ +11,6,1,130,,43.907,,8.0,A#2,mp,14,144,46,14,,,,g, +11,6,1,130,,43.957,,,,,,144,46,0,,,,, +11,7,1,131,,43.982,,8.0,G#1,ppp,5,144,32,5,,,,g, +11,7,1,131,,44.032,,,,,,144,32,0,,,,, +11,8,1,132,,44.057,,8.0,F4,mf,17,144,65,17,,,,g, +11,8,1,132,,44.107,,,,,,144,65,0,,,,, +11,9,1,133,2048,44.132,1536,1.0,C#6,f,20,144,85,20,,,,, +11,5,0,134,2048,44.132,,,,,,176,64,127,,,,,V +11,2,1,126,0,44.957,,,,,,144,96,0,,,,, +12,0,0,135,0,46.275,,,,,,,,,12,,,, +12,1,0,136,0,46.275,,,,,,,,,,,116,, +12,2,0,137,0,46.275,,,,,,,,,,,116,, +12,3,1,138,0,46.275,256,4.0,C#6,,,,,,,,,, +12,4,3,139,0,46.275,,,,,,176,102,0,,,,, +12,5,1,140,,46.642,,8.0,G#5,ppp,5,144,80,5,,,,g, +12,5,1,140,,46.692,,,,,,144,80,0,,,,, +12,6,1,141,,46.717,,8.0,D4,ppp,5,144,62,5,,,,g, +12,6,1,141,,46.767,,,,,,144,62,0,,,,, +11,9,1,133,2048,46.792,,,,,,144,85,0,,,,, +12,7,1,142,256,46.792,96,16.0,F#6,pp,8,144,90,8,,,,, +12,8,3,143,256,46.792,,,,,,176,102,0,,,,, +12,9,3,144,288,46.857,32,32.0,A2,pp,8,144,45,8,,,,, +12,9,3,144,288,46.922,,,,,,144,45,0,,,,, +12,10,3,145,320,46.922,32,32.0,A3,pp,8,144,57,8,,,,, +12,7,1,142,256,46.986,,,,,,144,90,0,,,,, +12,10,3,145,320,46.986,,,,,,144,57,0,,,,, +12,11,1,146,352,46.986,32,32.0,G7,ppp,5,144,103,5,,,,, +12,12,3,147,352,46.986,32,32.0,D2,pp,8,144,38,8,,,,, +12,11,1,146,352,47.051,,,,,,144,103,0,,,,, +12,12,3,147,352,47.051,,,,,,144,38,0,,,,, +12,13,1,148,384,47.051,,,,,,176,102,0,,,,, +12,14,3,149,384,47.051,,,,,,176,102,0,,,,, +12,15,0,150,384,47.051,,,,,,,,,,5920,,, +12,16,0,151,512,47.309,,,,,,176,64,0,,,,,^ +12,17,1,152,512,47.309,85,8.0,B3,pp,8,144,59,8,,,,, +12,18,3,153,512,47.309,768,2.0,A#2,pp,8,144,46,8,,,,, +12,19,3,154,512,47.309,512,2.0,E3,pp,8,144,52,8,,,,, +12,17,1,152,512,47.481,,,,,,144,59,0,,,,, +12,20,1,155,597,47.481,,,,,,176,102,0,,,,, +12,21,1,156,682,47.653,86,8.0,F6,pp,8,144,89,8,,,,, +12,22,1,157,682,47.653,128,8.0,A#7,pp,8,144,106,8,,,,, +12,21,1,156,682,47.827,,,,,,144,89,0,,,,, +12,23,1,158,768,47.827,85,8.0,F#5,pp,8,144,78,8,,,,, +12,22,1,157,682,47.912,,,,,,144,106,0,,,,, +12,23,1,158,768,47.998,,,,,,144,78,0,,,,, +12,24,1,159,853,47.998,85,8.0,B2,pp,8,144,47,8,,,,, +12,24,1,159,853,48.17,,,,,,144,47,0,,,,, +12,25,1,160,938,48.17,43,16.0,D#4,mp,14,144,63,14,,,,, +12,26,1,161,938,48.17,64,16.0,G#4,mp,14,144,68,14,,,,, +12,25,1,160,938,48.257,,,,,,144,63,0,,,,, +12,27,1,162,981,48.257,43,16.0,F4,mp+,15,144,65,15,,,,, +12,28,1,163,981,48.257,64,16.0,G#4,,,,,,,,,, +12,27,1,162,981,48.344,,,,,,144,65,0,,,,, +12,29,1,164,1024,48.344,85,8.0,C#2,mf,17,144,37,17,,,,, +12,30,1,165,1024,48.344,128,8.0,A2,mf,17,144,45,17,,,,, +12,31,1,166,1024,48.344,128,8.0,C3,mf,17,144,48,17,,,,, +12,26,1,161,938,48.429,,,,,,144,68,0,,,,, +12,29,1,164,1024,48.516,,,,,,144,37,0,,,,, +12,32,1,167,1109,48.516,43,16.0,B1,pp,8,144,35,8,,,,, +12,32,1,167,1109,48.603,,,,,,144,35,0,,,,, +12,33,1,168,1152,48.603,42,16.0,D3,pp+,9,144,50,9,,,,, +12,30,1,165,1024,48.603,,,,,,144,45,0,,,,, +12,31,1,166,1024,48.603,,,,,,144,48,0,,,,, +12,33,1,168,1152,48.687,,,,,,144,50,0,,,,, +12,34,1,169,1194,48.687,86,8.0,A4,p,11,144,69,11,,,,, +12,35,1,170,1280,48.861,170,4.0,A4,,,,,,,,,, +12,36,3,171,1280,48.861,170,4.0,A#2,,,,,,,,,, +12,37,3,172,1280,48.861,256,4.0,E3,,,,,,,,,, +12,19,3,154,512,48.861,,,,,,144,52,0,,,,, +12,34,1,169,1194,49.205,,,,,,144,69,0,,,,, +12,38,1,173,1450,49.205,43,16.0,A4,pp,8,144,69,8,,,,, +12,39,1,174,1450,49.205,64,16.0,C#5,pp,8,144,73,8,,,,, +12,40,3,175,1450,49.205,86,8.0,C#3,mp,14,144,49,14,,,,, +12,18,3,153,512,49.205,,,,,,144,46,0,,,,, +12,38,1,173,1450,49.292,,,,,,144,69,0,,,,, +12,41,1,176,1493,49.292,43,16.0,F#3,pp,8,144,54,8,,,,, +12,42,1,177,1493,49.292,64,16.0,C#5,,,,,,,,,, +12,41,1,176,1493,49.378,,,,,,144,54,0,,,,, +12,43,1,178,1536,49.378,42,16.0,G#4,pp-,7,144,68,7,,,,, +12,44,1,179,1536,49.378,64,16.0,C#5,,,,,,,,,, +12,45,3,180,1536,49.378,85,8.0,C#3,,,,,,,,,, +12,46,3,181,1536,49.378,128,8.0,D3,mp,14,144,50,14,,,,, +12,43,1,178,1536,49.463,,,,,,144,68,0,,,,, +12,47,1,182,1578,49.463,43,16.0,C#5,,,,,,,,,, +12,48,1,183,1621,49.55,43,16.0,A4,ppp,5,144,69,5,,,,, +12,49,1,184,1621,49.55,64,16.0,C#5,,,,,,,,,, +12,50,3,185,1621,49.55,85,8.0,C#3,,,,,,,,,, +12,48,1,183,1621,49.637,,,,,,144,69,0,,,,, +12,51,1,186,1664,49.637,85,8.0,C#5,,,,,,,,,, +12,52,1,187,1664,49.637,128,8.0,E5,pp+,9,144,76,9,,,,, +12,53,1,188,1664,49.637,128,8.0,F#5,pp+,9,144,78,9,,,,, +12,46,3,181,1536,49.637,,,,,,144,50,0,,,,, +12,54,3,189,1706,49.722,43,16.0,C#3,,,,,,,,,, +12,55,1,190,1749,49.809,43,16.0,G#4,ppp,5,144,68,5,,,,, +12,56,1,191,1749,49.809,64,16.0,F7,mf,17,144,101,17,,,,, +12,57,3,192,1749,49.809,43,16.0,F3,mp,14,144,53,14,,,,, +12,40,3,175,1450,49.809,,,,,,144,49,0,,,,, +13,0,0,194,0,49.896,,,,,,,,,13,,,, +13,1,0,195,0,49.896,,,,,,,,,,,174,, +13,2,1,196,0,49.896,128,8.0,G#4,,,,,,,,,, +13,3,3,197,0,49.896,128,8.0,F3,,,,,,,,,, +12,52,1,187,1664,49.896,,,,,,144,76,0,,,,, +12,53,1,188,1664,49.896,,,,,,144,78,0,,,,, +12,56,1,191,1749,49.938,,,,,,144,101,0,,,,, +12,39,1,174,1450,49.981,,,,,,144,73,0,,,,, +13,5,1,198,128,50.068,,,,,,176,102,0,,,,, +13,6,3,199,128,50.068,192,8.0,D2,mp,14,144,38,14,,,,, +13,7,3,200,128,50.068,128,8.0,F3,,,,,,,,,, +13,4,0,201,128,50.068,,,,,,176,64,127,,,,,V +12,55,1,190,1749,50.068,,,,,,144,68,0,,,,, +12,57,3,192,1749,50.241,,,,,,144,53,0,,,,, +13,6,3,199,128,50.327,,,,,,144,38,0,,,,, +14,0,0,202,0,50.327,,,,,,,,,14,,,, +14,1,0,203,0,50.327,,,,,,,,,,,116,, +14,2,1,204,0,50.327,512,2.0,D4,ppp,5,144,62,5,,,,, +14,3,1,205,0,50.327,512,2.0,E5,p,11,144,76,11,,,,, +14,4,2,206,0,50.327,,,,,,176,102,0,,,,, +14,5,3,207,0,50.327,512,2.0,B1,pp,8,144,35,8,,,,, +14,6,3,208,0,50.327,512,2.0,B2,pp,8,144,47,8,,,,, +14,7,3,209,0,50.327,512,2.0,C3,pp,8,144,48,8,,,,, +14,8,4,210,0,50.327,,,,,,176,102,0,,,,, +14,9,4,211,102,50.533,154,8.0,A1,mf,17,144,33,17,,,,, +14,10,2,212,256,50.844,,,,,,176,102,0,,,,, +14,11,4,213,256,50.844,51,16.0,A1,,,,,,,,,, +14,9,4,211,102,50.947,,,,,,144,33,0,,,,, +14,12,2,214,307,50.947,205,4.0,D6,mp,14,144,86,14,,,,, +14,13,2,215,307,50.947,256,4.0,G6,f,20,144,91,20,,,,, +14,14,4,216,307,50.947,205,4.0,C1,pp,8,144,24,8,,,,, +14,17,3,217,,51.211,,8.0,A3,pp,8,144,57,8,,,,g, +14,17,3,217,,51.261,,,,,,144,57,0,,,,, +14,18,3,218,,51.286,,8.0,D3,p,11,144,50,11,,,,g, +14,21,0,219,573,51.334,,,,,,176,64,0,,,,,^ +14,18,3,218,,51.336,,,,,,144,50,0,,,,, +14,2,1,204,0,51.361,,,,,,144,62,0,,,,, +14,3,1,205,0,51.361,,,,,,144,76,0,,,,, +14,5,3,207,0,51.361,,,,,,144,35,0,,,,, +14,6,3,208,0,51.361,,,,,,144,47,0,,,,, +14,7,3,209,0,51.361,,,,,,144,48,0,,,,, +14,12,2,214,307,51.361,,,,,,144,86,0,,,,, +14,14,4,216,307,51.361,,,,,,144,24,0,,,,, +14,15,1,220,512,51.361,,,,,,176,102,0,,,,, +14,16,2,221,512,51.361,,,,,,176,102,0,,,,, +14,19,3,222,512,51.361,256,4.0,C#2,f,20,144,37,20,,,,, +14,20,4,223,512,51.361,1536,1.0,A#1,fff,24,144,34,23,,,,, +14,13,2,215,307,51.464,,,,,,144,91,0,,,,, +14,21,0,224,573,51.634,,,,,,176,64,127,,,,,V +14,20,4,223,512,51.878,,,,,,144,34,0,,,,, +14,22,2,225,768,51.878,,,,,,176,102,0,,,,, +14,23,3,226,768,51.878,85,8.0,A#1,mp,14,144,34,14,,,,, +14,24,3,227,768,51.878,128,8.0,C#2,,,,,,,,,, +14,25,3,228,768,51.878,128,8.0,A#2,mp,14,144,46,14,,,,, +14,26,2,229,853,52.05,85,8.0,A#6,mf,17,144,94,17,,,,, +14,27,3,230,853,52.05,85,8.0,B1,mp+,15,144,35,15,,,,, +14,19,3,222,512,52.137,,,,,,144,37,0,,,,, +14,25,3,228,768,52.137,,,,,,144,46,0,,,,, +14,26,2,229,853,52.222,,,,,,144,94,0,,,,, +14,27,3,230,853,52.222,,,,,,144,35,0,,,,, +14,28,2,231,938,52.222,86,8.0,F6,mf-,16,144,89,16,,,,, +14,29,3,232,938,52.222,,,,,,176,102,0,,,,, +14,30,0,233,943,52.232,,,,,,176,64,0,,,,,^ +14,31,2,234,1024,52.396,128,8.0,F6,,,,,,,,,, +14,32,3,235,1024,52.396,,,,,,176,102,0,,,,, +14,28,2,231,938,52.654,,,,,,144,89,0,,,,, +14,33,2,236,1152,52.654,128,8.0,A4,mp,14,144,69,14,,,,, +14,34,2,237,1280,52.913,768,2.0,A4,,,,,,,,,, +14,35,3,238,1536,53.43,512,2.0,G#3,p,11,144,56,11,,,,, +15,0,0,239,0,54.465,,,,,,,,,15,,,, +15,1,1,240,0,54.465,,,,,,176,102,0,,,,, +15,2,2,241,0,54.465,512,2.0,A4,,,,,,,,,, +15,3,3,242,0,54.465,256,4.0,G#3,,,,,,,,,, +15,4,4,243,0,54.465,2048,0.5,A#1,,,,,,,,,, +14,35,3,238,1536,54.982,,,,,,144,56,0,,,,, +15,5,1,244,256,54.982,512,2.0,E5,p,11,144,76,11,,,,, +15,6,3,245,256,54.982,256,4.0,F#4,p,11,144,66,11,,,,, +15,6,3,245,256,55.499,,,,,,144,66,0,,,,, +15,7,2,246,512,55.499,1536,1.0,C#1,mf,17,144,25,17,,,,, +15,8,3,247,512,55.499,256,4.0,B1,mf,17,144,35,17,,,,, +14,33,2,236,1152,55.499,,,,,,144,69,0,,,,, +15,8,3,247,512,56.016,,,,,,144,35,0,,,,, +15,9,1,248,768,56.016,128,8.0,D1,mf,17,144,26,17,,,,, +15,10,3,249,768,56.016,256,4.0,F#3,p-,10,144,54,10,,,,, +15,5,1,244,256,56.016,,,,,,144,76,0,,,,, +15,9,1,248,768,56.275,,,,,,144,26,0,,,,, +15,11,1,250,896,56.275,128,8.0,A#5,pp,8,144,82,8,,,,, +15,10,3,249,768,56.534,,,,,,144,54,0,,,,, +15,11,1,250,896,56.534,,,,,,144,82,0,,,,, +15,12,1,251,1024,56.534,,,,,,176,102,0,,,,, +15,13,3,252,1024,56.534,,,,,,176,102,0,,,,, +15,14,1,253,1408,57.309,384,4.0,A5,pp,8,144,81,8,,,,, +15,16,1,254,,57.935,,8.0,F#5,pp-,7,144,78,7,,,,g, +15,15,1,255,,57.935,,8.0,F#4,pp-,7,144,66,7,,,,g, +15,16,1,254,,57.985,,,,,,144,78,0,,,,, +15,15,1,255,,57.985,,,,,,144,66,0,,,,, +15,18,1,256,,58.01,,8.0,G#4,pp-,7,144,68,7,,,,g, +15,17,1,257,,58.01,,8.0,F#4,,,,,,,,,g, +15,18,1,256,,58.06,,,,,,144,68,0,,,,, +15,14,1,253,1408,58.085,,,,,,144,81,0,,,,, +15,19,1,258,1792,58.085,256,4.0,F#4,,,,,,,,,, +15,20,3,259,1792,58.085,256,4.0,B2,p,11,144,47,11,,,,, +16,0,0,260,0,58.603,,,,,,,,,16,,,, +16,1,1,261,0,58.603,384,4.0,F#4,,,,,,,,,, +16,2,2,262,0,58.603,,,,,,176,102,0,,,,, +16,3,3,263,0,58.603,384,4.0,B2,,,,,,,,,, +16,4,4,264,0,58.603,2048,0.5,A#1,,,,,,,,,, +15,7,2,246,512,58.603,,,,,,144,25,0,,,,, +16,5,1,265,384,59.378,384,4.0,A#6,ppp-,4,144,94,4,,,,, +16,6,3,266,384,59.378,,,,,,176,102,0,,,,, +15,20,3,259,1792,59.378,,,,,,144,47,0,,,,, +16,7,3,267,512,59.637,,,,,,176,102,0,,,,, +16,5,1,265,384,60.154,,,,,,144,94,0,,,,, +16,9,1,268,768,60.154,,,,,,176,102,0,,,,, +16,10,2,269,768,60.154,,,,,,176,102,0,,,,, +16,8,0,270,768,60.154,,,,,,176,64,127,,,,,V +16,11,1,271,1024,60.672,,,,,,176,102,0,,,,, +16,12,2,272,1024,60.672,1024,1.0,C#5,fff,24,144,73,23,,,,, +16,13,3,273,1024,60.672,256,4.0,A#3,f,20,144,58,20,,,,, +16,14,1,274,1109,60.843,171,4.0,E5,p,11,144,76,11,,,,, +16,14,1,274,1109,61.189,,,,,,144,76,0,,,,, +16,15,1,275,1280,61.189,,,,,,176,102,0,,,,, +16,16,3,276,1280,61.189,85,8.0,A#3,,,,,,,,,, +16,17,1,277,1365,61.361,171,4.0,C#7,ff,22,144,97,22,,,,, +16,18,3,278,1365,61.361,171,4.0,F#1,f,20,144,30,20,,,,, +16,13,3,273,1024,61.361,,,,,,144,58,0,,,,, +16,17,1,277,1365,61.706,,,,,,144,97,0,,,,, +16,18,3,278,1365,61.706,,,,,,144,30,0,,,,, +16,19,1,279,1536,61.706,,,,,,176,102,0,,,,, +16,20,3,280,1536,61.706,,,,,,176,102,0,,,,, +16,21,3,281,1706,62.05,342,2.0,G3,mp,14,144,55,14,,,,, +16,22,0,282,2047,62.538,,,,,,176,64,0,,,,,^ +16,21,3,281,1706,62.741,,,,,,144,55,0,,,,, +17,0,0,283,0,62.741,,,,,,,,,17,,,, +17,1,0,284,0,62.741,,,,,,,,,,5921,,, +17,2,1,285,0,62.741,,,,,,176,102,0,,,,, +17,3,2,286,0,62.741,,,,,,176,102,0,,,,, +17,4,3,287,0,62.741,128,8.0,A#2,p,11,144,46,11,,,,, +17,5,4,288,0,62.741,512,2.0,G#1,mf,17,144,32,17,,,,, +17,6,4,289,0,62.741,512,2.0,F#2,pp,8,144,42,8,,,,, +16,12,2,272,1024,62.741,,,,,,144,73,0,,,,, +14,23,3,226,768,62.741,,,,,,144,34,0,,,,, +17,7,1,290,128,62.999,128,8.0,D2,pp,8,144,38,8,,,,, +17,8,2,291,128,62.999,,,,,,176,102,0,,,,, +17,9,3,292,128,62.999,128,8.0,A#2,,,,,,,,,, +17,10,3,293,128,62.999,128,8.0,D3,pp,8,144,50,8,,,,, +17,4,3,287,0,63.258,,,,,,144,46,0,,,,, +17,7,1,290,128,63.258,,,,,,144,38,0,,,,, +17,11,1,294,256,63.258,256,4.0,F#1,mp,14,144,30,14,,,,, +17,12,2,295,256,63.258,,,,,,176,102,0,,,,, +17,13,3,296,256,63.258,128,8.0,D3,,,,,,,,,, +17,10,3,293,128,63.516,,,,,,144,50,0,,,,, +17,14,3,297,384,63.516,,,,,,176,102,0,,,,, +17,11,1,294,256,63.775,,,,,,144,30,0,,,,, +17,15,1,298,512,63.775,512,2.0,E4,f,20,144,64,20,,,,, +17,16,2,299,512,63.775,,,,,,176,102,0,,,,, +17,17,3,300,512,63.775,,,,,,176,102,0,,,,, +17,18,4,301,512,63.775,128,8.0,G#1,,,,,,,,,, +17,19,4,302,512,63.775,128,8.0,F#2,,,,,,,,,, +17,5,4,288,0,64.034,,,,,,144,32,0,,,,, +17,6,4,289,0,64.034,,,,,,144,42,0,,,,, +17,20,4,303,640,64.034,128,8.0,C#3,ppp-,4,144,49,4,,,,, +17,20,4,303,640,64.292,,,,,,144,49,0,,,,, +17,21,2,304,768,64.292,128,8.0,F#4,ppp,5,144,66,5,,,,, +17,22,4,305,768,64.292,256,4.0,G2,f,20,144,43,20,,,,, +17,21,2,304,768,64.551,,,,,,144,66,0,,,,, +17,24,2,306,896,64.551,64,16.0,D#5,ppp,5,144,75,5,,,,, +17,23,0,307,896,64.551,,,,,,176,64,127,,,,,V +17,24,2,306,896,64.68,,,,,,144,75,0,,,,, +17,25,2,308,960,64.68,64,16.0,F7,p,11,144,101,11,,,,, +17,15,1,298,512,64.809,,,,,,144,64,0,,,,, +17,22,4,305,768,64.809,,,,,,144,43,0,,,,, +17,25,2,308,960,64.809,,,,,,144,101,0,,,,, +18,0,0,309,0,64.809,,,,,,,,,18,,,, +18,1,0,310,0,64.809,,,,,,,,,,,174,, +18,2,1,311,0,64.809,128,8.0,D7,mf-,16,144,98,16,,,,, +18,3,3,312,0,64.809,,,,,,176,102,0,,,,, +18,4,0,313,128,64.832,,,,,,176,64,0,,,,,^ +18,2,1,311,0,64.982,,,,,,144,98,0,,,,, +18,5,1,314,128,64.982,192,8.0,F#4,p,11,144,66,11,,,,, +18,4,0,315,128,65.132,,,,,,176,64,127,,,,,V +18,5,1,314,128,65.241,,,,,,144,66,0,,,,, +19,0,0,316,0,65.241,,,,,,,,,19,,,, +19,1,0,317,0,65.241,,,,,,,,,,,116,, +19,2,1,318,0,65.241,,,,,,176,102,0,,,,, +19,3,3,319,0,65.241,128,8.0,B2,mp+,15,144,47,15,,,,, +19,3,3,319,0,65.499,,,,,,144,47,0,,,,, +19,4,3,320,128,65.499,128,8.0,G#3,mf+,18,144,56,18,,,,, +19,4,3,320,128,65.758,,,,,,144,56,0,,,,, +19,5,3,321,256,65.758,128,8.0,D2,ff,22,144,38,22,,,,, +19,5,3,321,256,66.016,,,,,,144,38,0,,,,, +19,6,3,322,384,66.016,128,8.0,A#5,ff,22,144,82,22,,,,, +19,6,3,322,384,66.275,,,,,,144,82,0,,,,, +20,0,0,323,0,66.275,,,,,,,,,20,,,, +20,2,0,324,0,66.275,,,,,,176,64,0,,,,,^ +20,1,0,325,0,66.275,,,,,,,,,,5922,,, +20,3,1,326,0,66.275,,,,,,176,102,0,,,,, +20,4,2,327,0,66.275,512,2.0,G#4,ff,22,144,68,22,,,,, +20,5,3,328,0,66.275,,,,,,176,102,0,,,,, +20,6,4,329,0,66.275,256,4.0,B1,ppp,5,144,35,5,,,,, +20,7,1,330,96,66.469,32,32.0,F5,pp,8,144,77,8,,,,, +20,7,1,330,96,66.534,,,,,,144,77,0,,,,, +20,8,1,331,128,66.534,16,64.0,F#2,ppp+,6,144,42,6,,,,, +20,8,1,331,128,66.566,,,,,,144,42,0,,,,, +20,9,1,332,144,66.566,16,64.0,C#3,ppp+,6,144,49,6,,,,, +20,9,1,332,144,66.598,,,,,,144,49,0,,,,, +20,10,1,333,160,66.598,96,16.0,D#5,ppp,5,144,75,5,,,,, +20,11,1,334,256,66.792,128,8.0,D#5,,,,,,,,,, +20,12,3,335,256,66.792,512,2.0,A#2,ff,22,144,46,22,,,,, +20,13,4,336,256,66.792,,,,,,176,102,0,,,,, +20,6,4,329,0,66.792,,,,,,144,35,0,,,,, +20,14,4,337,341,66.964,85,8.0,E3,p,11,144,52,11,,,,, +20,10,1,333,160,67.051,,,,,,144,75,0,,,,, +20,15,1,338,384,67.051,,,,,,176,102,0,,,,, +20,14,4,337,341,67.136,,,,,,144,52,0,,,,, +20,17,4,339,426,67.136,86,8.0,A#3,p+,12,144,58,12,,,,, +20,16,0,340,426,67.136,,,,,,176,64,127,,,,,V +20,17,4,339,426,67.309,,,,,,144,58,0,,,,, +20,18,1,341,512,67.309,1536,1.0,C6,mf,17,144,84,17,,,,, +20,19,2,342,512,67.309,768,2.0,G#4,,,,,,,,,, +20,20,4,343,512,67.309,,,,,,176,102,0,,,,, +20,21,3,344,768,67.827,85,8.0,A#2,,,,,,,,,, +20,22,3,345,768,67.827,128,8.0,D3,pp,8,144,50,8,,,,, +20,23,4,346,768,67.827,256,4.0,C1,pp,8,144,24,8,,,,, +20,12,3,335,256,67.998,,,,,,144,46,0,,,,, +20,24,3,347,853,67.998,85,8.0,A4,f,20,144,69,20,,,,, +20,22,3,345,768,68.085,,,,,,144,50,0,,,,, +20,24,3,347,853,68.17,,,,,,144,69,0,,,,, +20,25,3,348,938,68.17,171,4.0,E5,fff,24,144,76,23,,,,, +20,23,4,346,768,68.344,,,,,,144,24,0,,,,, +20,26,4,349,1024,68.344,,,,,,176,102,0,,,,, +20,25,3,348,938,68.516,,,,,,144,76,0,,,,, +20,27,3,350,1109,68.516,171,4.0,D7,fff,24,144,98,23,,,,, +20,28,0,351,1280,68.711,,,,,,176,64,0,,,,,^ +20,4,2,327,0,68.861,,,,,,144,68,0,,,,, +20,27,3,350,1109,68.861,,,,,,144,98,0,,,,, +20,29,2,352,1280,68.861,768,2.0,F#5,fff,24,144,78,23,,,,, +20,30,3,353,1280,68.861,256,4.0,D5,fff,24,144,74,23,,,,, +20,28,0,354,1280,69.011,,,,,,176,64,127,,,,,V +20,30,3,353,1280,69.378,,,,,,144,74,0,,,,, +20,31,3,355,1536,69.378,,,,,,176,102,0,,,,, +20,32,0,356,2047,70.411,,,,,,176,64,0,,,,,^ +20,18,1,341,512,70.413,,,,,,144,84,0,,,,, +21,0,0,357,0,70.413,,,,,,,,,21,,,, +21,1,1,358,0,70.413,,,,,,176,102,0,,,,, +21,2,2,359,0,70.413,1792,1.0,F#5,,,,,,,,,, +21,3,3,360,0,70.413,256,4.0,A#1,mp,14,144,34,14,,,,, +21,4,3,361,0,70.413,256,4.0,G#2,mp,14,144,44,14,,,,, +21,5,4,362,0,70.413,,,,,,176,102,0,,,,, +21,3,3,360,0,70.93,,,,,,144,34,0,,,,, +21,4,3,361,0,70.93,,,,,,144,44,0,,,,, +21,6,3,363,256,70.93,,,,,,176,102,0,,,,, +21,7,0,364,288,70.995,,,,,,176,64,127,,,,,V +21,9,3,365,,71.072,,8.0,F#1,f,20,144,30,20,,,,g, +21,9,3,365,,71.122,,,,,,144,30,0,,,,, +21,10,3,366,,71.147,,8.0,G3,mf+,18,144,55,18,,,,g, +21,10,3,366,,71.197,,,,,,144,55,0,,,,, +21,11,3,367,,71.222,,8.0,A#2,mp+,15,144,46,15,,,,g, +21,11,3,367,,71.272,,,,,,144,46,0,,,,, +21,12,3,368,,71.297,,8.0,F#1,p+,12,144,30,12,,,,g, +21,12,3,368,,71.347,,,,,,144,30,0,,,,, +21,13,3,369,,71.372,,8.0,D6,p-,10,144,86,10,,,,g, +21,13,3,369,,71.422,,,,,,144,86,0,,,,, +21,8,0,370,512,71.447,,,,,,176,64,0,,,,,^ +21,14,3,371,512,71.447,,,,,,176,102,0,,,,, +21,15,4,372,512,71.447,1536,1.0,A#1,pp,8,144,34,8,,,,, +21,16,3,373,1024,72.482,,,,,,176,102,0,,,,, +21,17,3,374,1194,72.825,86,8.0,F#3,p,11,144,54,11,,,,, +21,18,3,375,1194,72.825,128,8.0,A3,p,11,144,57,11,,,,, +21,19,3,376,1280,72.999,512,2.0,F#3,,,,,,,,,, +21,20,3,377,1280,72.999,512,2.0,A3,,,,,,,,,, +21,21,1,378,1536,73.516,,,,,,176,102,0,,,,, +21,22,1,379,1621,73.688,171,4.0,G#3,p,11,144,56,11,,,,, +20,29,2,352,1280,74.034,,,,,,144,78,0,,,,, +21,23,1,380,1792,74.034,170,4.0,G#3,,,,,,,,,, +21,24,2,381,1792,74.034,,,,,,176,102,0,,,,, +21,25,3,382,1792,74.034,170,4.0,B2,ppp,5,144,47,5,,,,, +21,26,3,383,1792,74.034,256,4.0,F#3,,,,,,,,,, +21,27,3,384,1792,74.034,256,4.0,A3,,,,,,,,,, +21,22,1,379,1621,74.377,,,,,,144,56,0,,,,, +21,28,1,385,1962,74.377,,,,,,176,102,0,,,,, +21,29,3,386,1962,74.377,86,8.0,B2,,,,,,,,,, +21,30,3,387,1962,74.377,128,8.0,F#3,,,,,,,,,, +21,31,2,388,1984,74.422,32,32.0,C#2,pp,8,144,37,8,,,,, +21,31,2,388,1984,74.486,,,,,,144,37,0,,,,, +21,32,2,389,2016,74.486,32,32.0,F4,pp,8,144,65,8,,,,, +21,32,2,389,2016,74.551,,,,,,144,65,0,,,,, +22,0,0,390,0,74.551,,,,,,,,,22,,,, +22,1,1,391,0,74.551,,,,,,176,102,0,,,,, +22,2,3,392,0,74.551,768,2.0,B2,,,,,,,,,, +22,3,3,393,0,74.551,512,2.0,F#3,,,,,,,,,, +22,4,4,394,0,74.551,768,2.0,A#1,,,,,,,,,, +21,18,3,375,1194,74.636,,,,,,144,57,0,,,,, +21,17,3,374,1194,75.844,,,,,,144,54,0,,,,, +22,5,3,395,768,76.103,1536,1.0,B2,,,,,,,,,, +22,6,3,396,768,76.103,1024,1.0,D3,ppp,5,144,50,5,,,,, +22,7,4,397,768,76.103,1536,1.0,A#1,,,,,,,,,, +22,6,3,396,768,78.172,,,,,,144,50,0,,,,, +23,0,0,398,0,79.206,,,,,,,,,23,,,, +23,1,0,399,0,79.206,,,,,,,,,,,112,, +23,2,0,400,0,79.206,,,,,,,,,,5923,,, +23,3,0,401,0,79.206,,,,,,,,,,,112,, +23,5,1,402,0,79.206,512,2.0,A#6,fff,24,144,94,23,,,,, +23,6,2,403,0,79.206,1536,1.0,D#4,ppp,5,144,63,5,,,,, +23,7,3,404,0,79.206,,,,,,176,102,0,,,,, +23,8,4,405,0,79.206,,,,,,176,102,0,,,,, +23,4,0,406,0,79.206,,,,,,176,64,127,,,,,V +21,25,3,382,1792,79.206,,,,,,144,47,0,,,,, +21,15,4,372,512,79.206,,,,,,144,34,0,,,,, +23,9,4,407,256,79.742,1024,1.0,A1,ff,22,144,33,22,,,,, +23,10,3,408,384,80.01,128,8.0,A#3,mf,17,144,58,17,,,,, +23,10,3,408,384,80.277,,,,,,144,58,0,,,,, +23,11,1,409,512,80.277,128,8.0,A#6,,,,,,,,,, +23,12,3,410,512,80.277,2048,0.5,E3,mf+,18,144,52,18,,,,, +23,13,0,411,640,80.395,,,,,,176,64,0,,,,,^ +23,5,1,402,0,80.545,,,,,,144,94,0,,,,, +23,14,1,412,640,80.545,128,8.0,D2,f,20,144,38,20,,,,, +23,13,0,413,640,80.695,,,,,,176,64,127,,,,,V +23,15,1,414,768,80.813,512,2.0,D2,,,,,,,,,, +23,14,1,412,640,81.885,,,,,,144,38,0,,,,, +23,16,1,415,1280,81.885,,,,,,176,102,0,,,,, +23,17,4,416,1280,81.885,128,8.0,A1,,,,,,,,,, +23,18,0,417,1408,82.152,,,,,,176,64,0,,,,,^ +23,19,4,418,1408,82.152,128,8.0,G6,ff,22,144,91,22,,,,, +23,9,4,407,256,82.152,,,,,,144,33,0,,,,, +23,19,4,418,1408,82.42,,,,,,144,91,0,,,,, +23,20,1,419,1536,82.42,,,,,,176,102,0,,,,, +23,21,2,420,1536,82.42,,,,,,176,102,0,,,,, +23,22,4,421,1536,82.42,,,,,,176,102,0,,,,, +23,6,2,403,0,82.42,,,,,,144,63,0,,,,, +23,23,2,422,1664,82.688,42,16.0,C#2,mp,14,144,37,14,,,,, +23,23,2,422,1664,82.776,,,,,,144,37,0,,,,, +23,24,2,423,1706,82.776,43,16.0,B1,mp,14,144,35,14,,,,, +23,24,2,423,1706,82.866,,,,,,144,35,0,,,,, +23,25,2,424,1749,82.866,43,16.0,F6,mp,14,144,89,14,,,,, +23,25,2,424,1749,82.956,,,,,,144,89,0,,,,, +23,26,1,425,1792,82.956,,,,,,176,102,0,,,,, +23,27,2,426,1792,82.956,76,16.0,A4,mp,14,144,69,14,,,,, +23,27,2,426,1792,83.115,,,,,,144,69,0,,,,, +23,29,2,427,1868,83.115,77,16.0,D4,mf,17,144,62,17,,,,, +23,28,0,428,1868,83.115,,,,,,176,64,127,,,,,V +23,30,1,429,1920,83.224,64,16.0,D5,p,11,144,74,11,,,,, +23,29,2,427,1868,83.276,,,,,,144,62,0,,,,, +23,31,2,430,1945,83.276,77,16.0,C#3,f-,19,144,49,19,,,,, +23,32,1,431,1984,83.358,64,16.0,F3,ff,22,144,53,22,,,,, +23,33,1,432,1984,83.358,64,16.0,D5,,,,,,,,,, +23,31,2,430,1945,83.437,,,,,,144,49,0,,,,, +23,34,2,433,2022,83.437,26,32.0,G#2,pp,8,144,44,8,,,,, +23,35,2,434,2022,83.437,32,32.0,F7,ff,22,144,101,22,,,,, +23,30,1,429,1920,83.492,,,,,,144,74,0,,,,, +23,34,2,433,2022,83.492,,,,,,144,44,0,,,,, +23,36,1,435,2048,83.492,512,2.0,F3,,,,,,,,,, +23,37,1,436,2048,83.492,512,2.0,C4,ff,22,144,60,22,,,,, +23,38,1,437,2048,83.492,512,2.0,E6,pp,8,144,88,8,,,,, +23,39,2,438,2048,83.492,,,,,,176,102,0,,,,, +23,40,4,439,2048,83.492,,,,,,176,102,0,,,,, +23,35,2,434,2022,83.504,,,,,,144,101,0,,,,, +23,41,4,440,2099,83.598,77,16.0,B2,f,20,144,47,20,,,,, +23,42,4,441,2099,83.598,64,16.0,D5,f,20,144,74,20,,,,, +23,43,0,442,2176,83.61,,,,,,176,64,0,,,,,^ +23,42,4,441,2099,83.732,,,,,,144,74,0,,,,, +23,41,4,440,2099,83.76,,,,,,144,47,0,,,,, +23,44,4,443,2176,83.76,64,16.0,D3,mp,14,144,50,14,,,,, +23,45,4,444,2240,83.894,64,16.0,C2,pp,8,144,36,8,,,,, +23,46,4,445,2240,83.894,64,16.0,D3,,,,,,,,,, +23,43,0,446,2176,83.91,,,,,,176,64,127,,,,,V +23,44,4,443,2176,84.027,,,,,,144,50,0,,,,, +23,45,4,444,2240,84.027,,,,,,144,36,0,,,,, +23,47,2,447,2304,84.027,128,8.0,A4,ff,22,144,69,22,,,,, +23,48,4,448,2304,84.027,,,,,,176,102,0,,,,, +23,47,2,447,2304,84.295,,,,,,144,69,0,,,,, +23,49,2,449,2432,84.295,128,8.0,F7,ff,22,144,101,22,,,,, +23,50,0,450,2559,84.561,,,,,,176,64,0,,,,,^ +23,49,2,449,2432,84.563,,,,,,144,101,0,,,,, +24,0,0,451,0,84.563,,,,,,,,,24,,,, +24,1,0,452,0,84.563,,,,,,,,,,5924,,, +24,2,1,453,0,84.563,170,4.0,E2,p,11,144,40,11,,,,, +24,3,2,454,0,84.563,1024,1.0,F#5,p,11,144,78,11,,,,, +24,4,2,455,0,84.563,1024,1.0,C6,ff,22,144,84,22,,,,, +24,5,3,456,0,84.563,256,4.0,G1,p,11,144,31,11,,,,, +24,6,4,457,0,84.563,768,2.0,C#2,f,20,144,37,20,,,,, +23,32,1,431,1984,84.563,,,,,,144,53,0,,,,, +23,37,1,436,2048,84.563,,,,,,144,60,0,,,,, +23,38,1,437,2048,84.563,,,,,,144,88,0,,,,, +23,12,3,410,512,84.563,,,,,,144,52,0,,,,, +24,2,1,453,0,84.919,,,,,,144,40,0,,,,, +24,8,1,458,170,84.919,171,4.0,F#6,p,11,144,90,11,,,,, +24,7,0,459,170,84.919,,,,,,176,64,127,,,,,V +24,9,3,460,256,85.099,,,,,,176,102,0,,,,, +24,5,3,456,0,85.099,,,,,,144,31,0,,,,, +24,8,1,458,170,85.277,,,,,,144,90,0,,,,, +24,10,1,461,341,85.277,43,16.0,A5,pp,8,144,81,8,,,,, +24,10,1,461,341,85.367,,,,,,144,81,0,,,,, +24,11,1,462,384,85.367,42,16.0,F#7,pp,8,144,102,8,,,,, +24,11,1,462,384,85.455,,,,,,144,102,0,,,,, +24,12,1,463,426,85.455,86,8.0,G#3,p,11,144,56,11,,,,, +24,12,1,463,426,85.635,,,,,,144,56,0,,,,, +24,13,1,464,512,85.635,341,2.0,A4,f,20,144,69,20,,,,, +24,14,3,465,512,85.635,,,,,,176,102,0,,,,, +24,15,4,466,768,86.17,128,8.0,C#2,,,,,,,,,, +24,13,1,464,512,86.348,,,,,,144,69,0,,,,, +24,16,1,467,853,86.348,341,2.0,C4,mf,17,144,60,17,,,,, +24,17,4,468,896,86.438,128,8.0,B1,p,11,144,35,11,,,,, +24,6,4,457,0,86.438,,,,,,144,37,0,,,,, +24,18,2,469,1024,86.706,512,2.0,A5,ppp,5,144,81,5,,,,, +24,19,2,470,1024,86.706,512,2.0,D#6,ppp,5,144,87,5,,,,, +24,20,2,471,1024,86.706,512,2.0,C#7,ff,22,144,97,22,,,,, +24,21,3,472,1024,86.706,,,,,,176,102,0,,,,, +24,22,4,473,1024,86.706,512,2.0,B1,,,,,,,,,, +24,3,2,454,0,86.706,,,,,,144,78,0,,,,, +24,4,2,455,0,86.706,,,,,,144,84,0,,,,, +24,23,1,474,1194,87.062,342,2.0,E2,mp-,13,144,40,13,,,,, +24,16,1,467,853,87.062,,,,,,144,60,0,,,,, +24,24,0,475,1536,87.627,,,,,,176,64,0,,,,,^ +24,18,2,469,1024,87.777,,,,,,144,81,0,,,,, +24,19,2,470,1024,87.777,,,,,,144,87,0,,,,, +24,20,2,471,1024,87.777,,,,,,144,97,0,,,,, +24,23,1,474,1194,87.777,,,,,,144,40,0,,,,, +24,25,1,476,1536,87.777,,,,,,176,102,0,,,,, +24,26,2,477,1536,87.777,85,8.0,G#2,p,11,144,44,11,,,,, +24,27,3,478,1536,87.777,,,,,,176,102,0,,,,, +24,28,4,479,1536,87.777,256,4.0,B1,,,,,,,,,, +24,24,0,480,1536,87.927,,,,,,176,64,127,,,,,V +24,26,2,477,1536,87.955,,,,,,144,44,0,,,,, +24,29,2,481,1621,87.955,171,4.0,F#6,p+,12,144,90,12,,,,, +24,29,2,481,1621,88.313,,,,,,144,90,0,,,,, +24,30,1,482,1792,88.313,768,2.0,A4,ff,22,144,69,22,,,,, +24,31,2,483,1792,88.313,170,4.0,C4,ff,22,144,60,22,,,,, +24,32,3,484,1792,88.313,512,2.0,G#3,ppp,5,144,56,5,,,,, +24,33,4,485,1792,88.313,,,,,,176,102,0,,,,, +24,17,4,468,896,88.313,,,,,,144,35,0,,,,, +24,30,1,482,1792,88.669,,,,,,144,69,0,,,,, +24,31,2,483,1792,88.669,,,,,,144,60,0,,,,, +24,34,2,486,1962,88.669,171,4.0,A4,f,20,144,69,20,,,,, +24,35,2,487,2133,89.027,43,16.0,E3,mf,17,144,52,17,,,,, +24,35,2,487,2133,89.117,,,,,,144,52,0,,,,, +24,36,2,488,2176,89.117,85,8.0,F#5,mf,17,144,78,17,,,,, +24,36,2,488,2176,89.295,,,,,,144,78,0,,,,, +24,37,2,489,2261,89.295,43,16.0,G#1,mf,17,144,32,17,,,,, +24,38,2,490,2304,89.385,128,8.0,G#1,,,,,,,,,, +24,39,3,491,2304,89.385,128,8.0,G#3,,,,,,,,,, +24,37,2,489,2261,89.652,,,,,,144,32,0,,,,, +24,40,2,492,2432,89.652,128,8.0,D4,ppp,5,144,62,5,,,,, +24,41,3,493,2432,89.652,128,8.0,C3,pp,8,144,48,8,,,,, +24,42,3,494,2432,89.652,128,8.0,G#3,,,,,,,,,, +24,40,2,492,2432,89.92,,,,,,144,62,0,,,,, +25,0,0,495,0,89.92,,,,,,,,,25,,,, +25,1,0,496,0,89.92,,,,,,176,64,0,,,,,^ +25,2,1,497,0,89.92,512,2.0,A4,,,,,,,,,, +25,3,2,498,0,89.92,,,,,,176,102,0,,,,, +25,4,3,499,0,89.92,128,8.0,C3,,,,,,,,,, +25,5,3,500,0,89.92,128,8.0,G#3,,,,,,,,,, +25,6,4,501,0,89.92,1024,1.0,A#1,pp-,7,144,34,7,,,,, +25,7,3,502,128,90.188,128,8.0,E2,ppp,5,144,40,5,,,,, +25,8,3,503,128,90.188,128,8.0,G#3,,,,,,,,,, +24,41,3,493,2432,90.188,,,,,,144,48,0,,,,, +25,9,3,504,256,90.456,384,4.0,E2,,,,,,,,,, +25,10,3,505,256,90.456,256,4.0,G#3,,,,,,,,,, +25,11,1,506,512,90.992,128,8.0,A4,,,,,,,,,, +24,32,3,484,1792,90.992,,,,,,144,56,0,,,,, +25,7,3,502,128,91.26,,,,,,144,40,0,,,,, +25,12,1,507,640,91.26,384,4.0,A4,pp,8,144,69,8,,,,, +25,13,1,508,640,91.26,256,4.0,C6,pp,8,144,84,8,,,,, +25,14,3,509,640,91.26,,,,,,176,102,0,,,,, +24,34,2,486,1962,91.26,,,,,,144,69,0,,,,, +25,15,3,510,768,91.527,,,,,,176,102,0,,,,, +25,16,1,511,1024,92.063,1024,1.0,A4,,,,,,,,,, +25,17,1,512,1024,92.063,1024,1.0,C6,,,,,,,,,, +25,18,2,513,1024,92.063,,,,,,176,102,0,,,,, +25,19,3,514,1024,92.063,,,,,,176,102,0,,,,, +25,20,4,515,1024,92.063,1536,1.0,A#1,,,,,,,,,, +25,21,3,516,1280,92.599,,,,,,176,102,0,,,,, +25,22,2,517,1536,93.135,512,2.0,G#2,mp,14,144,44,14,,,,, +25,23,3,518,1536,93.135,256,4.0,C#1,ppp,5,144,25,5,,,,, +25,24,3,519,1792,93.67,128,8.0,C#1,,,,,,,,,, +25,13,1,508,640,93.938,,,,,,144,84,0,,,,, +25,23,3,518,1536,93.938,,,,,,144,25,0,,,,, +25,25,3,520,1920,93.938,42,16.0,A#2,ppp,5,144,46,5,,,,, +25,25,3,520,1920,94.026,,,,,,144,46,0,,,,, +25,26,3,521,1962,94.026,43,16.0,C#2,ppp+,6,144,37,6,,,,, +25,26,3,521,1962,94.116,,,,,,144,37,0,,,,, +25,28,3,522,2005,94.116,43,16.0,E6,pp,8,144,88,8,,,,, +25,12,1,507,640,94.206,,,,,,144,69,0,,,,, +25,22,2,517,1536,94.206,,,,,,144,44,0,,,,, +25,27,2,523,2048,94.206,,,,,,176,102,0,,,,, +25,29,1,524,,94.206,,8.0,E3,mf,17,144,52,17,,,,g, +25,29,1,524,,94.256,,,,,,144,52,0,,,,, +25,30,1,525,2048,94.281,341,2.0,A#3,mf,17,144,58,17,,,,, +25,31,3,526,2048,94.281,512,2.0,E6,,,,,,,,,, +25,30,1,525,2048,94.995,,,,,,144,58,0,,,,, +25,32,1,527,2389,94.995,171,4.0,A#2,mp,14,144,46,14,,,,, +25,6,4,501,0,95.277,,,,,,144,34,0,,,,, +25,28,3,522,2005,95.277,,,,,,144,88,0,,,,, +26,0,0,528,0,95.352,,,,,,,,,26,,,, +26,1,1,529,0,95.352,256,4.0,A#2,,,,,,,,,, +26,2,2,530,0,95.352,,,,,,176,102,0,,,,, +26,3,3,531,0,95.352,,,,,,176,102,0,,,,, +26,4,4,532,0,95.352,512,2.0,F#3,p,11,144,54,11,,,,, +26,5,1,533,256,95.888,1024,1.0,G#3,pp,8,144,56,8,,,,, +26,6,3,534,256,95.888,512,2.0,F#1,p,11,144,30,11,,,,, +25,32,1,527,2389,95.963,,,,,,144,46,0,,,,, +26,7,4,535,512,96.424,512,2.0,C1,p,11,144,24,11,,,,, +26,4,4,532,0,96.499,,,,,,144,54,0,,,,, +26,6,3,534,256,96.96,,,,,,144,30,0,,,,, +26,8,3,536,768,96.96,256,4.0,G2,ppp,5,144,43,5,,,,, +26,7,4,535,512,97.495,,,,,,144,24,0,,,,, +26,8,3,536,768,97.495,,,,,,144,43,0,,,,, +26,9,2,537,1024,97.495,,,,,,176,102,0,,,,, +26,10,3,538,1024,97.495,,,,,,176,102,0,,,,, +26,11,4,539,1024,97.495,,,,,,176,102,0,,,,, +26,13,2,540,1152,97.763,128,8.0,F#4,pp,8,144,66,8,,,,, +26,14,2,541,1152,97.763,128,8.0,D#5,pp,8,144,75,8,,,,, +26,15,2,542,1152,97.763,128,8.0,C#7,pp,8,144,97,8,,,,, +26,12,0,543,1152,97.763,,,,,,176,64,127,,,,,V +26,14,2,541,1152,98.031,,,,,,144,75,0,,,,, +26,15,2,542,1152,98.031,,,,,,144,97,0,,,,, +26,16,1,544,1280,98.031,128,8.0,G#3,,,,,,,,,, +26,17,2,545,1280,98.031,128,8.0,F#4,,,,,,,,,, +26,18,4,546,1280,98.031,128,8.0,F#1,pp,8,144,30,8,,,,, +26,5,1,533,256,98.299,,,,,,144,56,0,,,,, +26,18,4,546,1280,98.299,,,,,,144,30,0,,,,, +26,19,0,547,1408,98.299,,,,,,176,64,0,,,,,^ +26,20,1,548,1408,98.299,128,8.0,C5,ppp,5,144,72,5,,,,, +26,21,2,549,1408,98.299,128,8.0,G#3,p,11,144,56,11,,,,, +26,22,4,550,1408,98.299,,,,,,176,102,0,,,,, +26,13,2,540,1152,98.299,,,,,,144,66,0,,,,, +26,20,1,548,1408,98.567,,,,,,144,72,0,,,,, +26,23,1,551,1536,98.567,,,,,,176,102,0,,,,, +26,24,2,552,1536,98.567,256,4.0,G#3,,,,,,,,,, +26,25,4,553,1536,98.567,,,,,,176,102,0,,,,, +26,26,4,554,1600,98.701,192,8.0,A#1,p,11,144,34,11,,,,, +26,26,4,554,1600,99.102,,,,,,144,34,0,,,,, +26,27,1,555,1792,99.102,512,2.0,E4,mf,17,144,64,17,,,,, +26,28,2,556,1792,99.102,,,,,,176,102,0,,,,, +26,29,4,557,1792,99.102,256,4.0,B2,p,11,144,47,11,,,,, +26,21,2,549,1408,99.102,,,,,,144,56,0,,,,, +26,30,2,558,2048,99.638,,,,,,176,102,0,,,,, +26,31,3,559,2048,99.638,,,,,,176,102,0,,,,, +26,32,4,560,2048,99.638,128,8.0,B2,,,,,,,,,, +26,39,3,561,,99.724,,8.0,E5,ppp,5,144,76,5,,,,g, +26,39,3,561,,99.774,,,,,,144,76,0,,,,, +26,40,3,562,,99.799,,8.0,C#2,ppp+,6,144,37,6,,,,g, +26,33,3,563,2133,99.816,171,4.0,D3,p,11,144,50,11,,,,, +26,40,3,562,,99.849,,,,,,144,37,0,,,,, +26,41,3,564,,99.874,,8.0,G#3,pp,8,144,56,8,,,,g, +26,29,4,557,1792,99.906,,,,,,144,47,0,,,,, +26,34,4,565,2176,99.906,128,8.0,D2,p,11,144,38,11,,,,, +26,41,3,564,,99.924,,,,,,144,56,0,,,,, +26,42,3,566,,99.949,,8.0,A#2,p-,10,144,46,10,,,,g, +26,42,3,566,,99.999,,,,,,144,46,0,,,,, +26,43,3,567,,100.024,,8.0,C5,p,11,144,72,11,,,,g, +26,43,3,567,,100.074,,,,,,144,72,0,,,,, +26,44,3,568,,100.099,,8.0,C#1,pp,8,144,25,8,,,,g, +26,44,3,568,,100.149,,,,,,144,25,0,,,,, +26,27,1,555,1792,100.174,,,,,,144,64,0,,,,, +26,33,3,563,2133,100.174,,,,,,144,50,0,,,,, +26,36,1,569,2304,100.174,256,4.0,D6,p,11,144,86,11,,,,, +26,37,3,570,2304,100.174,,,,,,176,102,0,,,,, +26,38,4,571,2304,100.174,256,4.0,D2,,,,,,,,,, +26,35,0,572,2304,100.174,,,,,,176,64,127,,,,,V +26,34,4,565,2176,100.71,,,,,,144,38,0,,,,, +26,36,1,569,2304,100.71,,,,,,144,86,0,,,,, +27,0,0,573,0,100.71,,,,,,,,,27,,,, +27,1,0,574,0,100.71,,,,,,,,,,5925,,, +27,2,1,575,0,100.71,256,4.0,E6,p,11,144,88,11,,,,, +27,3,2,576,0,100.71,512,2.0,F#3,p,11,144,54,11,,,,, +27,4,3,577,0,100.71,1024,1.0,G#3,ppp,5,144,56,5,,,,, +27,5,4,578,0,100.71,512,2.0,C3,ppp,5,144,48,5,,,,, +27,6,0,579,9,100.728,,,,,,176,64,0,,,,,^ +27,7,1,580,256,101.245,768,2.0,C6,p,11,144,84,11,,,,, +27,8,1,581,256,101.245,512,2.0,E6,,,,,,,,,, +27,3,2,576,0,101.781,,,,,,144,54,0,,,,, +27,9,2,582,512,101.781,512,2.0,D#4,pp,8,144,63,8,,,,, +27,10,4,583,512,101.781,64,16.0,C3,,,,,,,,,, +27,5,4,578,0,101.915,,,,,,144,48,0,,,,, +27,11,4,584,576,101.915,,,,,,176,102,0,,,,, +27,12,4,585,768,102.317,,,,,,176,102,0,,,,, +27,2,1,575,0,102.317,,,,,,144,88,0,,,,, +27,4,3,577,0,102.852,,,,,,144,56,0,,,,, +27,7,1,580,256,102.852,,,,,,144,84,0,,,,, +27,9,2,582,512,102.852,,,,,,144,63,0,,,,, +27,13,1,586,1024,102.852,,,,,,176,102,0,,,,, +27,14,2,587,1024,102.852,,,,,,176,102,0,,,,, +27,15,3,588,1024,102.852,,,,,,176,102,0,,,,, +27,16,4,589,1024,102.852,256,4.0,C1,ppp,5,144,24,5,,,,, +27,16,4,589,1024,103.388,,,,,,144,24,0,,,,, +27,17,4,590,1280,103.388,256,4.0,A#1,ppp,5,144,34,5,,,,, +27,18,2,591,1536,103.924,1024,1.0,F#4,ppp,5,144,66,5,,,,, +27,19,3,592,1536,103.924,256,4.0,G#2,ppp,5,144,44,5,,,,, +27,20,4,593,1536,103.924,1024,1.0,A#1,,,,,,,,,, +27,19,3,592,1536,104.46,,,,,,144,44,0,,,,, +27,21,3,594,1792,104.46,128,8.0,C4,pp-,7,144,60,7,,,,, +27,21,3,594,1792,104.727,,,,,,144,60,0,,,,, +27,22,3,595,1920,104.727,,,,,,176,102,0,,,,, +27,24,3,596,2005,104.905,43,16.0,A#2,ppp,5,144,46,5,,,,, +27,23,0,597,2005,104.905,,,,,,176,64,127,,,,,V +27,24,3,596,2005,104.995,,,,,,144,46,0,,,,, +27,25,1,598,2048,104.995,256,4.0,F#6,ppp,5,144,90,5,,,,, +27,26,3,599,2048,104.995,42,16.0,F#1,ppp,5,144,30,5,,,,, +27,28,0,600,2133,105.023,,,,,,176,64,0,,,,,^ +27,26,3,599,2048,105.083,,,,,,144,30,0,,,,, +27,27,3,601,2090,105.083,43,16.0,G3,ppp,5,144,55,5,,,,, +27,27,3,601,2090,105.173,,,,,,144,55,0,,,,, +27,29,3,602,2133,105.173,43,16.0,D7,ppp,5,144,98,5,,,,, +27,29,3,602,2133,105.263,,,,,,144,98,0,,,,, +27,30,3,603,2176,105.263,128,8.0,A#2,ppp,5,144,46,5,,,,, +27,28,0,604,2133,105.323,,,,,,176,64,127,,,,,V +27,31,1,605,2304,105.531,256,4.0,E4,ppp,5,144,64,5,,,,, +27,32,1,606,2304,105.531,256,4.0,F#6,,,,,,,,,, +27,33,3,607,2304,105.531,128,8.0,A#2,,,,,,,,,, +27,34,0,608,2432,105.799,,,,,,176,64,0,,,,,^ +27,35,3,609,2432,105.799,85,8.0,E5,ppp,5,144,76,5,,,,, +27,30,3,603,2176,105.799,,,,,,144,46,0,,,,, +27,18,2,591,1536,105.977,,,,,,144,66,0,,,,, +27,36,3,610,2517,105.977,43,16.0,F#4,p,11,144,66,11,,,,, +27,37,3,611,2517,105.977,64,16.0,E5,,,,,,,,,, +28,0,0,612,0,106.067,,,,,,,,,28,,,, +28,1,1,613,0,106.067,64,16.0,A4,ppp,5,144,69,5,,,,, +28,2,2,614,0,106.067,,,,,,176,102,0,,,,, +28,3,3,615,0,106.067,64,16.0,F#4,,,,,,,,,, +28,4,4,616,0,106.067,256,4.0,F#2,ppp,5,144,42,5,,,,, +27,17,4,590,1280,106.067,,,,,,144,34,0,,,,, +27,25,1,598,2048,106.067,,,,,,144,90,0,,,,, +27,31,1,605,2304,106.067,,,,,,144,64,0,,,,, +27,35,3,609,2432,106.111,,,,,,144,76,0,,,,, +27,36,3,610,2517,106.201,,,,,,144,66,0,,,,, +28,1,1,613,0,106.201,,,,,,144,69,0,,,,, +28,6,1,617,64,106.201,,,,,,176,102,0,,,,, +28,7,2,618,64,106.201,,,,,,176,102,0,,,,, +28,8,3,619,64,106.201,,,,,,176,102,0,,,,, +28,5,0,620,64,106.201,,,,,,176,64,127,,,,,V +28,9,1,621,128,106.335,128,8.0,D7,ppp,5,144,98,5,,,,, +28,9,1,621,128,106.602,,,,,,144,98,0,,,,, +28,10,1,622,256,106.602,,,,,,176,102,0,,,,, +28,11,2,623,256,106.602,,,,,,176,102,0,,,,, +28,12,3,624,256,106.602,,,,,,176,102,0,,,,, +28,13,4,625,256,106.602,128,8.0,G3,ppp,5,144,55,5,,,,, +28,4,4,616,0,106.602,,,,,,144,42,0,,,,, +28,13,4,625,256,106.87,,,,,,144,55,0,,,,, +28,14,4,626,384,106.87,,,,,,176,102,0,,,,, +28,15,1,627,512,107.138,,,,,,176,102,0,,,,, +28,16,2,628,512,107.138,128,8.0,A#2,ppp,5,144,46,5,,,,, +28,17,3,629,512,107.138,512,2.0,D2,ppp,5,144,38,5,,,,, +28,18,4,630,512,107.138,128,8.0,E2,ppp,5,144,40,5,,,,, +28,16,2,628,512,107.406,,,,,,144,46,0,,,,, +28,18,4,630,512,107.406,,,,,,144,40,0,,,,, +28,19,2,631,640,107.406,128,8.0,D6,ppp+,6,144,86,6,,,,, +28,20,4,632,640,107.406,128,8.0,G#1,ppp+,6,144,32,6,,,,, +28,19,2,631,640,107.674,,,,,,144,86,0,,,,, +28,20,4,632,640,107.674,,,,,,144,32,0,,,,, +28,21,0,633,768,107.674,,,,,,176,64,0,,,,,^ +28,22,2,634,768,107.674,,,,,,176,102,0,,,,, +28,23,4,635,768,107.674,,,,,,176,102,0,,,,, +28,24,1,636,1024,108.21,,,,,,176,102,0,,,,, +28,25,2,637,1024,108.21,,,,,,176,102,0,,,,, +28,26,3,638,1024,108.21,1536,1.0,D2,,,,,,,,,, +28,27,4,639,1024,108.21,,,,,,176,102,0,,,,, +28,29,1,640,1194,108.565,86,8.0,D4,p,11,144,62,11,,,,, +28,28,0,641,1194,108.565,,,,,,176,64,127,,,,,V +28,29,1,640,1194,108.745,,,,,,144,62,0,,,,, +28,30,1,642,1280,108.745,85,8.0,C2,p+,12,144,36,12,,,,, +28,30,1,642,1280,108.923,,,,,,144,36,0,,,,, +28,31,1,643,1365,108.923,85,8.0,D#5,p,11,144,75,11,,,,, +28,31,1,643,1365,109.101,,,,,,144,75,0,,,,, +28,32,0,644,1450,109.101,,,,,,176,64,0,,,,,^ +28,33,1,645,1450,109.101,86,8.0,D4,p,11,144,62,11,,,,, +28,33,1,645,1450,109.281,,,,,,144,62,0,,,,, +28,34,1,646,1536,109.281,512,2.0,G#4,ppp,5,144,68,5,,,,, +28,35,4,647,1536,109.281,512,2.0,A#2,p,11,144,46,11,,,,, +28,34,1,646,1536,110.352,,,,,,144,68,0,,,,, +28,37,1,648,2048,110.352,,,,,,176,102,0,,,,, +28,38,2,649,2048,110.352,256,4.0,G#2,ppp,5,144,44,5,,,,, +28,39,4,650,2048,110.352,512,2.0,A#2,,,,,,,,,, +28,40,4,651,2048,110.352,512,2.0,B2,ppp,5,144,47,5,,,,, +28,41,4,652,2048,110.352,512,2.0,F#3,ppp,5,144,54,5,,,,, +28,36,0,653,2048,110.352,,,,,,176,64,127,,,,,V +28,42,1,654,2304,110.888,256,4.0,A4,ppp,5,144,69,5,,,,, +28,43,2,655,2304,110.888,64,16.0,G#2,,,,,,,,,, +28,38,2,649,2048,111.022,,,,,,144,44,0,,,,, +28,44,2,656,2368,111.022,192,8.0,F#6,ppp+,6,144,90,6,,,,, +28,45,0,657,2559,111.407,,,,,,176,64,0,,,,,^ +28,35,4,647,1536,111.424,,,,,,144,46,0,,,,, +28,40,4,651,2048,111.424,,,,,,144,47,0,,,,, +28,41,4,652,2048,111.424,,,,,,144,54,0,,,,, +29,0,0,658,0,111.424,,,,,,,,,29,,,, +29,1,1,659,0,111.424,,,,,,176,102,0,,,,, +29,2,2,660,0,111.424,128,8.0,F#6,,,,,,,,,, +29,3,3,661,0,111.424,,,,,,176,102,0,,,,, +29,4,4,662,0,111.424,,,,,,176,102,0,,,,, +29,5,0,663,0,111.424,,,,,,,,,,5926,,, +28,42,1,654,2304,111.424,,,,,,144,69,0,,,,, +28,17,3,629,512,111.424,,,,,,144,38,0,,,,, +29,7,2,664,128,111.692,,,,,,176,102,0,,,,, +29,8,4,665,128,111.692,128,8.0,C4,p,11,144,60,11,,,,, +28,44,2,656,2368,111.692,,,,,,144,90,0,,,,, +29,6,0,666,128,111.707,,,,,,176,64,127,,,,,V +29,9,1,667,256,111.96,,,,,,176,102,0,,,,, +29,10,2,668,256,111.96,,,,,,176,102,0,,,,, +29,11,3,669,256,111.96,,,,,,176,102,0,,,,, +29,12,4,670,256,111.96,192,8.0,C4,,,,,,,,,, +29,13,1,671,341,112.137,85,8.0,F#5,pp,8,144,78,8,,,,, +29,14,3,672,341,112.137,85,8.0,F#2,ppp,5,144,42,5,,,,, +29,13,1,671,341,112.315,,,,,,144,78,0,,,,, +29,14,3,672,341,112.315,,,,,,144,42,0,,,,, +29,15,1,673,426,112.315,86,8.0,D#6,pp+,9,144,87,9,,,,, +29,16,3,674,426,112.315,86,8.0,C2,ppp,5,144,36,5,,,,, +29,17,4,675,448,112.361,64,16.0,E2,ppp,5,144,40,5,,,,, +29,8,4,665,128,112.361,,,,,,144,60,0,,,,, +29,15,1,673,426,112.495,,,,,,144,87,0,,,,, +29,16,3,674,426,112.495,,,,,,144,36,0,,,,, +29,18,0,676,512,112.495,,,,,,176,64,0,,,,,^ +29,19,1,677,512,112.495,,,,,,176,102,0,,,,, +29,20,2,678,512,112.495,,,,,,176,102,0,,,,, +29,21,3,679,512,112.495,,,,,,176,102,0,,,,, +29,22,4,680,512,112.495,128,8.0,C2,mp,14,144,36,14,,,,, +29,23,4,681,512,112.495,128,8.0,E2,,,,,,,,,, +29,24,1,682,597,112.673,171,4.0,A4,pp+,9,144,69,9,,,,, +29,17,4,675,448,112.763,,,,,,144,40,0,,,,, +29,22,4,680,512,112.763,,,,,,144,36,0,,,,, +29,25,4,683,640,112.763,,,,,,176,102,0,,,,, +29,26,3,684,682,112.851,86,8.0,D4,mp,14,144,62,14,,,,, +29,24,1,682,597,113.031,,,,,,144,69,0,,,,, +29,26,3,684,682,113.031,,,,,,144,62,0,,,,, +29,27,1,685,768,113.031,85,8.0,E4,pp+,9,144,64,9,,,,, +29,28,3,686,768,113.031,85,8.0,F#4,mf,17,144,66,17,,,,, +29,29,3,687,768,113.031,128,8.0,A4,mf,17,144,69,17,,,,, +29,30,4,688,768,113.031,,,,,,176,102,0,,,,, +29,27,1,685,768,113.209,,,,,,144,64,0,,,,, +29,28,3,686,768,113.209,,,,,,144,66,0,,,,, +29,31,1,689,853,113.209,,,,,,176,102,0,,,,, +29,32,3,690,853,113.209,85,8.0,C2,f,20,144,36,20,,,,, +29,29,3,687,768,113.299,,,,,,144,69,0,,,,, +29,32,3,690,853,113.387,,,,,,144,36,0,,,,, +29,33,3,691,938,113.387,,,,,,176,102,0,,,,, +29,34,1,692,1024,113.567,256,4.0,G#4,pp+,9,144,68,9,,,,, +29,35,3,693,,113.567,,8.0,A#1,f,20,144,34,20,,,,g, +29,35,3,693,,113.617,,,,,,144,34,0,,,,, +29,36,3,694,,113.642,,8.0,C1,f,20,144,24,20,,,,g, +29,36,3,694,,113.692,,,,,,144,24,0,,,,, +29,37,3,695,1024,113.717,512,2.0,F#3,f,20,144,54,20,,,,, +29,38,4,696,1024,113.717,,,,,,176,102,0,,,,, +29,34,1,692,1024,114.102,,,,,,144,68,0,,,,, +29,39,1,697,1280,114.252,,,,,,176,102,0,,,,, +29,40,4,698,1280,114.252,64,16.0,F#1,ppp,5,144,30,5,,,,, +29,41,4,699,1280,114.252,64,16.0,C2,ppp,5,144,36,5,,,,, +29,40,4,698,1280,114.386,,,,,,144,30,0,,,,, +29,41,4,699,1280,114.386,,,,,,144,36,0,,,,, +29,42,4,700,1344,114.386,,,,,,176,102,0,,,,, +29,43,4,701,1472,114.654,64,16.0,F#1,ppp,5,144,30,5,,,,, +29,37,3,695,1024,114.788,,,,,,144,54,0,,,,, +30,0,0,702,0,114.788,,,,,,,,,30,,,, +30,1,1,703,0,114.788,512,2.0,E3,pp,8,144,52,8,,,,, +30,2,3,704,0,114.788,256,4.0,F#2,ppp+,6,144,42,6,,,,, +30,3,4,705,0,114.788,32,32.0,F#1,,,,,,,,,, +29,43,4,701,1472,114.855,,,,,,144,30,0,,,,, +30,4,4,706,32,114.855,96,16.0,G3,pp,8,144,55,8,,,,, +30,4,4,706,32,115.056,,,,,,144,55,0,,,,, +30,5,4,707,128,115.056,128,8.0,E5,pp,8,144,76,8,,,,, +30,6,3,708,256,115.324,64,16.0,F#2,,,,,,,,,, +30,7,4,709,256,115.324,64,16.0,E5,,,,,,,,,, +30,8,3,710,320,115.458,192,8.0,E4,ppp,5,144,64,5,,,,, +30,9,4,711,320,115.458,192,8.0,D7,pppp,2,144,98,2,,,,, +30,2,3,704,0,115.608,,,,,,144,42,0,,,,, +30,5,4,707,128,115.608,,,,,,144,76,0,,,,, +30,9,4,711,320,115.86,,,,,,144,98,0,,,,, +30,10,1,712,512,115.86,512,2.0,E6,pppp,2,144,88,2,,,,, +30,11,3,713,512,115.86,128,8.0,E4,,,,,,,,,, +30,12,4,714,512,115.86,,,,,,176,102,0,,,,, +30,1,1,703,0,116.01,,,,,,144,52,0,,,,, +30,13,3,715,640,116.127,128,8.0,A4,ppp+,6,144,69,6,,,,, +30,8,3,710,320,116.127,,,,,,144,64,0,,,,, +30,14,3,716,768,116.395,256,4.0,A4,,,,,,,,,, +30,15,4,717,768,116.395,,,,,,176,102,0,,,,, +30,13,3,715,640,116.931,,,,,,144,69,0,,,,, +30,16,1,718,1024,116.931,128,8.0,E6,,,,,,,,,, +30,17,3,719,1024,116.931,128,8.0,G#4,ppp,5,144,68,5,,,,, +30,18,0,720,1024,116.931,,,,,,,,,,5927,,, +30,10,1,712,512,117.199,,,,,,144,88,0,,,,, +30,17,3,719,1024,117.199,,,,,,144,68,0,,,,, +30,19,1,721,1152,117.199,,,,,,176,102,0,,,,, +30,20,3,722,1152,117.199,,,,,,176,102,0,,,,, +30,24,3,723,,117.392,,8.0,D4,ppp,5,144,62,5,,,,g, +30,23,3,724,,117.392,,8.0,F#3,ppp,5,144,54,5,,,,g, +30,24,3,723,,117.442,,,,,,144,62,0,,,,, +30,23,3,724,,117.442,,,,,,144,54,0,,,,, +30,21,1,725,1280,117.467,,,,,,176,102,0,,,,, +30,22,1,726,1280,117.467,,,,,,176,102,0,,,,, +30,25,3,727,1280,117.467,,,,,,176,102,0,,,,, +30,28,4,728,,117.852,,8.0,C3,s,0,144,48,0,,,,g, +30,28,4,728,,117.902,,,,,,144,48,0,,,,, +30,30,1,729,,117.927,,8.0,C6,ppp,5,144,84,5,,,,g, +30,29,1,730,,117.927,,8.0,F#5,ppp,5,144,78,5,,,,g, +30,27,3,731,,117.927,,8.0,F#3,,,,,,,,,g, +30,26,3,732,,117.927,,8.0,F3,ppp,5,144,53,5,,,,g, +30,30,1,729,,117.977,,,,,,144,84,0,,,,, +30,29,1,730,,117.977,,,,,,144,78,0,,,,, +30,26,3,732,,117.977,,,,,,144,53,0,,,,, +31,0,0,733,0,118.002,,,,,,,,,31,,,, +31,1,1,734,0,118.002,,,,,,176,102,0,,,,, +31,2,2,735,0,118.002,1024,1.0,C3,mf,17,144,48,17,,,,, +31,3,3,736,0,118.002,102,8.0,C#3,mf,17,144,49,17,,,,, +31,4,3,737,0,118.002,128,8.0,E3,mf,17,144,52,17,,,,, +31,5,4,738,0,118.002,51,16.0,G#2,mf,17,144,44,17,,,,, +31,6,1,739,25,118.055,26,32.0,C4,f,20,144,60,20,,,,, +31,5,4,738,0,118.109,,,,,,144,44,0,,,,, +31,6,1,739,25,118.109,,,,,,144,60,0,,,,, +31,7,1,740,51,118.109,51,16.0,A4,f,20,144,69,20,,,,, +31,8,4,741,51,118.109,,,,,,176,102,0,,,,, +31,3,3,736,0,118.216,,,,,,144,49,0,,,,, +31,7,1,740,51,118.216,,,,,,144,69,0,,,,, +31,9,1,742,102,118.216,,,,,,176,102,0,,,,, +31,10,3,743,102,118.216,102,8.0,G#2,f,20,144,44,20,,,,, +31,11,4,744,102,118.216,51,16.0,E2,f,20,144,40,20,,,,, +31,4,3,737,0,118.27,,,,,,144,52,0,,,,, +31,11,4,744,102,118.323,,,,,,144,40,0,,,,, +31,12,4,745,153,118.323,,,,,,176,102,0,,,,, +31,13,1,746,204,118.429,,,,,,176,102,0,,,,, +31,14,3,747,204,118.429,52,16.0,C#4,f,20,144,61,20,,,,, +31,15,4,748,204,118.429,,,,,,176,102,0,,,,, +31,10,3,743,102,118.429,,,,,,144,44,0,,,,, +31,14,3,747,204,118.538,,,,,,144,61,0,,,,, +31,16,1,749,256,118.538,25,32.0,A#4,p,11,144,70,11,,,,, +31,17,3,750,256,118.538,128,8.0,A4,p,11,144,69,11,,,,, +31,18,4,751,256,118.538,,,,,,176,102,0,,,,, +31,16,1,749,256,118.59,,,,,,144,70,0,,,,, +31,19,1,752,281,118.59,26,32.0,C#4,p+,12,144,61,12,,,,, +31,19,1,752,281,118.645,,,,,,144,61,0,,,,, +31,20,1,753,307,118.645,102,8.0,C5,mp,14,144,72,14,,,,, +31,17,3,750,256,118.806,,,,,,144,69,0,,,,, +31,21,3,754,384,118.806,,,,,,176,102,0,,,,, +31,20,1,753,307,118.858,,,,,,144,72,0,,,,, +31,22,1,755,409,118.858,103,8.0,A#4,f,20,144,70,20,,,,, +31,22,1,755,409,119.074,,,,,,144,70,0,,,,, +31,23,1,756,512,119.074,,,,,,176,102,0,,,,, +31,24,3,757,512,119.074,256,4.0,E3,mf,17,144,52,17,,,,, +31,25,4,758,512,119.074,128,8.0,B1,pp,8,144,35,8,,,,, +31,25,4,758,512,119.342,,,,,,144,35,0,,,,, +31,26,4,759,640,119.342,,,,,,176,102,0,,,,, +31,28,3,760,768,119.61,256,4.0,C#2,f,20,144,37,20,,,,, +31,29,4,761,768,119.61,512,2.0,G#1,p,11,144,32,11,,,,, +31,27,0,762,768,119.61,,,,,,176,64,127,,,,,V +31,24,3,757,512,119.61,,,,,,144,52,0,,,,, +31,2,2,735,0,120.145,,,,,,144,48,0,,,,, +31,30,1,763,1024,120.145,256,4.0,C6,p,11,144,84,11,,,,, +31,31,2,764,1024,120.145,,,,,,176,102,0,,,,, +31,32,3,765,1024,120.145,1536,1.0,C#2,,,,,,,,,, +31,33,3,766,1024,120.145,1024,1.0,C3,f,20,144,48,20,,,,, +31,29,4,761,768,120.681,,,,,,144,32,0,,,,, +31,30,1,763,1024,120.681,,,,,,144,84,0,,,,, +31,38,0,767,1280,120.681,,,,,,176,64,0,,,,,^ +31,37,1,768,1280,120.681,42,16.0,C6,p,11,144,84,11,,,,, +31,34,1,769,,120.681,,8.0,C6,,,,,,,,,g, +31,35,1,770,,120.756,,8.0,A#3,mp+,15,144,58,15,,,,g, +31,35,1,770,,120.806,,,,,,144,58,0,,,,, +31,36,1,771,,120.831,,8.0,G#1,f,20,144,32,20,,,,g, +31,36,1,771,,120.881,,,,,,144,32,0,,,,, +31,39,3,772,,120.906,,8.0,C#7,f,20,144,97,20,,,,g, +31,39,3,772,,120.956,,,,,,144,97,0,,,,, +31,40,4,773,1280,120.981,,,,,,176,102,0,,,,, +31,37,1,768,1280,121.037,,,,,,144,84,0,,,,, +31,41,1,774,1322,121.069,43,16.0,C#4,mp,14,144,61,14,,,,, +31,42,0,775,1322,121.069,,,,,,176,64,127,,,,,V +31,43,1,776,1365,121.159,171,4.0,C#4,,,,,,,,,, +31,44,1,777,1536,121.517,85,8.0,C#4,,,,,,,,,, +31,45,4,778,1536,121.517,,,,,,176,102,0,,,,, +31,46,1,779,1621,121.695,171,4.0,E3,mp+,15,144,52,15,,,,, +31,41,1,774,1322,121.695,,,,,,144,61,0,,,,, +31,47,1,780,1792,122.052,128,8.0,E3,,,,,,,,,, +31,48,4,781,1792,122.052,,,,,,176,102,0,,,,, +31,49,1,782,1920,122.32,128,8.0,A#5,p,11,144,82,11,,,,, +31,50,4,783,1920,122.32,128,8.0,G#2,f,20,144,44,20,,,,, +31,46,1,779,1621,122.32,,,,,,144,52,0,,,,, +31,33,3,766,1024,122.513,,,,,,144,48,0,,,,, +31,51,1,784,2048,122.588,170,4.0,A#5,,,,,,,,,, +31,52,2,785,2048,122.588,256,4.0,C#2,p,11,144,37,11,,,,, +31,53,4,786,2048,122.588,512,2.0,G#2,,,,,,,,,, +31,54,1,787,2218,122.944,86,8.0,G#1,p,11,144,32,11,,,,, +31,55,1,788,2304,123.124,256,4.0,G#1,,,,,,,,,, +31,56,2,789,2304,123.124,85,8.0,C#2,,,,,,,,,, +31,49,1,782,1920,123.244,,,,,,144,82,0,,,,, +31,57,2,790,2389,123.302,171,4.0,A4,mp,14,144,69,14,,,,, +31,52,2,785,2048,123.377,,,,,,144,37,0,,,,, +32,1,0,791,0,123.51,,,,,,176,64,0,,,,,^ +31,57,2,790,2389,123.66,,,,,,144,69,0,,,,, +32,0,0,792,0,123.66,,,,,,,,,32,,,, +32,2,1,793,0,123.66,512,2.0,C#3,mf,17,144,49,17,,,,, +32,3,2,794,0,123.66,,,,,,176,102,0,,,,, +32,4,3,795,0,123.66,1536,1.0,B1,mf,17,144,35,17,,,,, +32,5,4,796,0,123.66,256,4.0,G#2,,,,,,,,,, +31,54,1,787,2218,123.66,,,,,,144,32,0,,,,, +31,28,3,760,768,123.66,,,,,,144,37,0,,,,, +32,1,0,797,0,123.81,,,,,,176,64,127,,,,,V +32,6,2,798,170,124.015,86,8.0,D3,mf,17,144,50,17,,,,, +32,7,2,799,256,124.195,512,2.0,D3,,,,,,,,,, +32,8,4,800,256,124.195,85,8.0,G#2,,,,,,,,,, +32,9,4,801,341,124.373,171,4.0,F#6,ff,22,144,90,22,,,,, +31,50,4,783,1920,124.673,,,,,,144,44,0,,,,, +32,9,4,801,341,124.731,,,,,,144,90,0,,,,, +32,10,1,802,512,124.731,85,8.0,C#3,,,,,,,,,, +32,11,4,803,512,124.731,,,,,,176,102,0,,,,, +32,12,1,804,597,124.909,171,4.0,C5,f,20,144,72,20,,,,, +32,2,1,793,0,124.909,,,,,,144,49,0,,,,, +32,13,0,805,729,125.185,,,,,,176,64,0,,,,,^ +32,12,1,804,597,125.267,,,,,,144,72,0,,,,, +32,14,1,806,768,125.267,,,,,,176,102,0,,,,, +32,15,2,807,768,125.267,85,8.0,D3,,,,,,,,,, +32,16,4,808,768,125.267,,,,,,176,102,0,,,,, +32,17,2,809,853,125.445,171,4.0,B0,f,20,144,23,20,,,,, +32,6,2,798,170,125.445,,,,,,144,50,0,,,,, +32,17,2,809,853,125.802,,,,,,144,23,0,,,,, +32,18,2,810,1024,125.802,,,,,,176,102,0,,,,, +32,19,4,811,1024,125.802,,,,,,176,102,0,,,,, +32,20,2,812,1194,126.158,342,2.0,E3,f,20,144,52,20,,,,, +32,21,4,813,1194,126.158,86,8.0,F3,p,11,144,53,11,,,,, +32,21,4,813,1194,126.338,,,,,,144,53,0,,,,, +32,22,4,814,1280,126.338,,,,,,176,102,0,,,,, +32,23,4,815,1365,126.516,43,16.0,C#3,p,11,144,49,11,,,,, +32,23,4,815,1365,126.606,,,,,,144,49,0,,,,, +32,24,4,816,1408,126.606,42,16.0,D4,mf-,16,144,62,16,,,,, +32,24,4,816,1408,126.694,,,,,,144,62,0,,,,, +32,25,4,817,1450,126.694,43,16.0,F3,f,20,144,53,20,,,,, +32,25,4,817,1450,126.784,,,,,,144,53,0,,,,, +32,26,4,818,1493,126.784,21,32.0,A5,mf,17,144,81,17,,,,, +32,26,4,818,1493,126.828,,,,,,144,81,0,,,,, +32,27,4,819,1514,126.828,22,32.0,B0,mp,14,144,23,14,,,,, +32,27,4,819,1514,126.874,,,,,,144,23,0,,,,, +33,0,0,820,0,126.874,,,,,,,,,33,,,, +33,1,0,821,0,126.874,,,,,,,,,,5928,,, +33,2,1,822,0,126.874,,,,,,176,102,0,,,,, +33,4,1,823,0,126.874,1024,1.0,E5,p,11,144,76,11,,,,, +33,5,2,824,0,126.874,1024,1.0,G3,p,11,144,55,11,,,,, +33,6,3,825,0,126.874,0,8.0,F1,p,11,,,,,,,, +33,7,3,826,0,126.874,0,8.0,C3,p,11,,,,,,,, +33,3,1,827,,126.874,,8.0,A5,p,11,144,81,11,,,,g, +32,20,2,812,1194,126.874,,,,,,144,52,0,,,,, +32,4,3,795,0,126.874,,,,,,144,35,0,,,,, +33,3,1,827,,126.924,,,,,,144,81,0,,,,, +33,8,3,828,0,126.949,768,2.0,D4,mf,17,144,62,17,,,,, +33,9,4,829,0,126.949,1024,1.0,D#3,mf,17,144,51,17,,,,, +33,10,3,830,768,128.556,170,4.0,D4,,,,,,,,,, +33,12,3,831,938,128.912,86,8.0,C#3,f,20,144,49,20,,,,, +33,11,0,832,938,128.912,,,,,,176,64,127,,,,,V +33,8,3,828,0,128.987,,,,,,144,62,0,,,,, +33,13,1,833,1024,129.092,768,2.0,G#5,mp,14,144,80,14,,,,, +33,14,2,834,1024,129.092,384,4.0,G3,,,,,,,,,, +33,15,3,835,1024,129.092,1024,1.0,C#3,,,,,,,,,, +33,16,4,836,1024,129.092,1024,1.0,A#1,mp,14,144,34,14,,,,, +33,4,1,823,0,129.092,,,,,,144,76,0,,,,, +33,9,4,829,0,129.167,,,,,,144,51,0,,,,, +33,17,2,837,1408,129.895,128,8.0,B3,p,11,144,59,11,,,,, +33,5,2,824,0,129.895,,,,,,144,55,0,,,,, +33,18,2,838,1536,130.163,512,2.0,B3,,,,,,,,,, +33,19,1,839,1792,130.699,256,4.0,F#5,ppp,5,144,78,5,,,,, +33,20,1,840,1792,130.699,256,4.0,G#5,,,,,,,,,, +33,19,1,839,1792,131.235,,,,,,144,78,0,,,,, +34,0,0,841,0,131.235,,,,,,,,,34,,,, +34,1,1,842,0,131.235,256,4.0,G#5,,,,,,,,,, +34,2,2,843,0,131.235,512,2.0,B3,,,,,,,,,, +34,3,3,844,0,131.235,2048,0.5,C#3,,,,,,,,,, +34,4,4,845,0,131.235,2048,0.5,A#1,,,,,,,,,, +34,5,0,846,256,131.77,,,,,,176,64,0,,,,,^ +34,6,1,847,256,131.77,,,,,,176,102,0,,,,, +33,13,1,833,1024,131.77,,,,,,144,80,0,,,,, +34,7,1,848,512,132.306,1024,1.0,A5,pppp,2,144,81,2,,,,, +34,8,2,849,512,132.306,1536,1.0,A#3,f,20,144,58,20,,,,, +34,9,2,850,512,132.306,1024,1.0,B3,,,,,,,,,, +34,10,2,851,512,132.306,1024,1.0,A4,ff,22,144,69,22,,,,, +34,11,0,852,704,132.708,,,,,,176,64,127,,,,,V +34,7,1,848,512,134.449,,,,,,144,81,0,,,,, +34,12,1,853,1536,134.449,,,,,,176,102,0,,,,, +34,10,2,851,512,135.52,,,,,,144,69,0,,,,, +35,0,0,854,0,135.52,,,,,,,,,35,,,, +35,1,0,855,0,135.52,,,,,,176,64,0,,,,,^ +35,2,1,856,0,135.52,,,,,,176,102,0,,,,, +35,3,2,857,0,135.52,768,2.0,A#3,,,,,,,,,, +35,4,2,858,0,135.52,512,2.0,B3,,,,,,,,,, +35,5,2,859,0,135.52,512,2.0,A4,,,,,,,,,, +35,6,3,860,0,135.52,,,,,,176,102,0,,,,, +35,7,4,861,0,135.52,1024,1.0,C3,p,11,144,48,11,,,,, +35,8,4,862,0,135.52,1024,1.0,G#3,ppp,5,144,56,5,,,,, +33,17,2,837,1408,135.52,,,,,,144,59,0,,,,, +33,16,4,836,1024,135.52,,,,,,144,34,0,,,,, +33,12,3,831,938,135.52,,,,,,144,49,0,,,,, +35,9,3,863,256,136.056,,,,,,176,102,0,,,,, +35,11,3,864,426,136.412,86,8.0,G#2,f,20,144,44,20,,,,, +35,10,0,865,426,136.412,,,,,,176,64,127,,,,,V +35,12,1,866,512,136.592,,,,,,176,102,0,,,,, +35,13,3,867,512,136.592,128,8.0,G#2,,,,,,,,,, +35,11,3,864,426,136.86,,,,,,144,44,0,,,,, +35,14,1,868,640,136.86,128,8.0,A5,ff,22,144,81,22,,,,, +35,15,3,869,640,136.86,128,8.0,A#4,mf,17,144,70,17,,,,, +35,19,0,870,810,137.065,,,,,,176,64,0,,,,,^ +35,16,1,871,768,137.127,1792,1.0,A5,,,,,,,,,, +35,17,2,872,768,137.127,,,,,,176,102,0,,,,, +35,18,3,873,768,137.127,42,16.0,A#4,,,,,,,,,, +34,8,2,849,512,137.127,,,,,,144,58,0,,,,, +35,15,3,869,640,137.215,,,,,,144,70,0,,,,, +35,20,3,874,810,137.215,43,16.0,C6,mf+,18,144,84,18,,,,, +35,20,3,874,810,137.305,,,,,,144,84,0,,,,, +35,21,3,875,853,137.305,43,16.0,E3,f-,19,144,52,19,,,,, +35,19,0,876,810,137.365,,,,,,176,64,127,,,,,V +35,21,3,875,853,137.395,,,,,,144,52,0,,,,, +35,22,3,877,896,137.395,42,16.0,C#4,f,20,144,61,20,,,,, +35,22,3,877,896,137.483,,,,,,144,61,0,,,,, +35,23,3,878,938,137.483,43,16.0,A#5,f+,21,144,82,21,,,,, +35,25,0,879,1024,137.513,,,,,,176,64,0,,,,,^ +35,23,3,878,938,137.573,,,,,,144,82,0,,,,, +35,24,3,880,981,137.573,43,16.0,G#1,ff,22,144,32,22,,,,, +35,7,4,861,0,137.663,,,,,,144,48,0,,,,, +35,8,4,862,0,137.663,,,,,,144,56,0,,,,, +35,24,3,880,981,137.663,,,,,,144,32,0,,,,, +35,26,2,881,1024,137.663,512,2.0,E5,p,11,144,76,11,,,,, +35,27,2,882,1024,137.663,512,2.0,C6,ff,22,144,84,22,,,,, +35,28,3,883,1024,137.663,,,,,,176,102,0,,,,, +35,29,4,884,1024,137.663,,,,,,176,102,0,,,,, +35,25,0,885,1024,137.813,,,,,,176,64,127,,,,,V +35,30,3,886,1280,138.199,,,,,,176,102,0,,,,, +35,31,3,887,1365,138.377,85,8.0,C#6,ppp,5,144,85,5,,,,, +35,32,3,888,1365,138.377,128,8.0,A6,ppp,5,144,93,5,,,,, +35,31,3,887,1365,138.555,,,,,,144,85,0,,,,, +35,33,3,889,1450,138.555,86,8.0,F#2,ppp,5,144,42,5,,,,, +35,34,3,890,1450,138.555,128,8.0,D#5,ppp,5,144,75,5,,,,, +35,32,3,888,1365,138.645,,,,,,144,93,0,,,,, +35,26,2,881,1024,138.735,,,,,,144,76,0,,,,, +35,33,3,889,1450,138.735,,,,,,144,42,0,,,,, +35,35,2,891,1536,138.735,85,8.0,C6,,,,,,,,,, +35,36,3,892,1536,138.735,,,,,,176,102,0,,,,, +35,37,4,893,1536,138.735,1024,1.0,D3,fff,24,144,50,23,,,,, +35,34,3,890,1450,138.822,,,,,,144,75,0,,,,, +35,40,0,894,1663,138.85,,,,,,176,64,0,,,,,^ +35,27,2,882,1024,138.912,,,,,,144,84,0,,,,, +35,38,2,895,1621,138.912,171,4.0,C#4,fff,24,144,61,23,,,,, +35,39,3,896,1621,138.912,85,8.0,A#2,ppp,5,144,46,5,,,,, +35,39,3,896,1621,139.09,,,,,,144,46,0,,,,, +35,41,3,897,1706,139.09,,,,,,176,102,0,,,,, +35,40,0,898,1663,139.15,,,,,,176,64,127,,,,,V +35,42,2,899,1792,139.27,768,2.0,C#4,,,,,,,,,, +35,43,3,900,1792,139.27,,,,,,176,102,0,,,,, +35,44,3,901,2304,140.342,256,4.0,C4,ff,22,144,60,22,,,,, +36,0,0,902,0,140.877,,,,,,,,,36,,,, +36,1,1,903,0,140.877,1792,1.0,A5,,,,,,,,,, +36,2,2,904,0,140.877,2048,0.5,C#4,,,,,,,,,, +36,3,2,905,0,140.877,2048,0.5,C#7,fff,24,144,97,23,,,,, +36,4,3,906,0,140.877,2048,0.5,C4,,,,,,,,,, +36,5,4,907,0,140.877,2048,0.5,D3,,,,,,,,,, +36,6,1,908,1792,144.627,170,4.0,A5,,,,,,,,,, +35,14,1,868,640,144.983,,,,,,144,81,0,,,,, +36,7,1,909,1962,144.983,86,8.0,F3,f,20,144,53,20,,,,, +35,37,4,893,1536,145.163,,,,,,144,50,0,,,,, +35,38,2,895,1621,145.163,,,,,,144,61,0,,,,, +36,3,2,905,0,145.163,,,,,,144,97,0,,,,, +36,8,1,910,2048,145.163,512,2.0,F3,,,,,,,,,, +36,9,2,911,2048,145.163,,,,,,176,102,0,,,,, +36,10,3,912,2048,145.163,,,,,,176,102,0,,,,, +36,11,4,913,2048,145.163,,,,,,176,102,0,,,,, +35,44,3,901,2304,145.163,,,,,,144,60,0,,,,, +37,0,0,914,0,146.235,,,,,,,,,37,,,, +37,1,1,915,0,146.235,1024,1.0,F3,,,,,,,,,, +37,2,2,916,0,146.235,,,,,,176,102,0,,,,, +37,3,3,917,0,146.235,,,,,,176,102,0,,,,, +37,4,4,918,0,146.235,,,,,,176,102,0,,,,, +37,5,4,919,512,147.306,,,,,,176,102,0,,,,, +37,6,1,920,1024,148.377,1536,1.0,F3,,,,,,,,,, +37,7,2,921,1024,148.377,256,4.0,F7,ff,22,144,101,22,,,,, +37,8,3,922,1024,148.377,,,,,,176,102,0,,,,, +37,9,4,923,1024,148.377,512,2.0,E2,f,20,144,40,20,,,,, +37,7,2,921,1024,148.913,,,,,,144,101,0,,,,, +37,10,3,924,1280,148.913,,,,,,176,102,0,,,,, +37,11,2,925,1280,148.913,,,,,,176,102,0,,,,, +37,12,3,926,1365,149.091,43,16.0,E3,f,20,144,52,20,,,,, +37,13,3,927,1408,149.181,128,8.0,F#2,f,20,144,42,20,,,,, +37,14,3,928,1408,149.181,128,8.0,E3,,,,,,,,,, +37,15,0,929,1450,149.269,,,,,,176,64,0,,,,,^ +37,9,4,923,1024,149.449,,,,,,144,40,0,,,,, +37,12,3,926,1365,149.449,,,,,,144,52,0,,,,, +37,13,3,927,1408,149.449,,,,,,144,42,0,,,,, +37,16,3,930,1536,149.449,1024,1.0,E3,f,20,144,52,20,,,,, +37,17,2,931,1536,149.449,128,8.0,A4,mp,14,144,69,14,,,,, +37,18,4,932,1536,149.449,,,,,,176,102,0,,,,, +37,17,2,931,1536,149.717,,,,,,144,69,0,,,,, +37,19,2,933,1664,149.717,,,,,,176,102,0,,,,, +37,20,0,934,1719,149.832,,,,,,176,64,127,,,,,V +37,21,2,935,1792,149.985,,,,,,176,102,0,,,,, +37,22,2,936,2048,150.52,,,,,,176,102,0,,,,, +37,23,4,937,2048,150.52,512,2.0,B2,pp,8,144,47,8,,,,, +38,0,0,938,0,151.592,,,,,,,,,38,,,, +38,1,1,939,0,151.592,2048,0.5,F3,,,,,,,,,, +38,2,2,940,0,151.592,2048,0.5,E3,,,,,,,,,, +38,3,3,941,0,151.592,,,,,,176,102,0,,,,, +38,4,4,942,0,151.592,2048,0.5,B2,,,,,,,,,, +37,16,3,930,1536,152.127,,,,,,144,52,0,,,,, +38,5,1,943,2048,155.877,128,8.0,F3,,,,,,,,,, +38,6,2,944,2048,155.877,512,2.0,E3,,,,,,,,,, +38,7,3,945,2048,155.877,128,8.0,F#2,pp,8,144,42,8,,,,, +38,8,4,946,2048,155.877,128,8.0,B2,,,,,,,,,, +36,7,1,909,1962,156.145,,,,,,144,53,0,,,,, +37,23,4,937,2048,156.145,,,,,,144,47,0,,,,, +38,7,3,945,2048,156.145,,,,,,144,42,0,,,,, +38,9,0,947,2176,156.145,,,,,,176,64,0,,,,,^ +38,10,1,948,,156.145,,8.0,A#6,pp,8,144,94,8,,,,g, +38,10,1,948,,156.195,,,,,,144,94,0,,,,, +38,11,1,949,,156.22,,8.0,G#4,pp-,7,144,68,7,,,,g, +38,11,1,949,,156.27,,,,,,144,68,0,,,,, +38,12,1,950,2176,156.295,128,8.0,E4,mf,17,144,64,17,,,,, +38,13,3,951,2176,156.295,,,,,,176,102,0,,,,, +38,16,4,952,2176,156.295,,,,,,176,102,0,,,,, +38,12,1,950,2176,156.563,,,,,,144,64,0,,,,, +38,14,4,953,,156.563,,8.0,B0,ppp,5,144,23,5,,,,g, +38,14,4,953,,156.613,,,,,,144,23,0,,,,, +38,15,4,954,,156.638,,8.0,E3,s,0,144,52,0,,,,g, +38,15,4,954,,156.688,,,,,,144,52,0,,,,, +38,17,1,955,,156.713,,8.0,F#6,p,11,144,90,11,,,,g, +38,17,1,955,,156.763,,,,,,144,90,0,,,,, +38,18,1,956,,156.788,,8.0,E2,p,11,144,40,11,,,,g, +38,18,1,956,,156.838,,,,,,144,40,0,,,,, +38,19,1,957,2304,156.863,128,8.0,G#4,mp,14,144,68,14,,,,, +38,20,1,958,2304,156.863,128,8.0,F#5,p,11,144,78,11,,,,, +38,21,3,959,2304,156.863,,,,,,176,102,0,,,,, +38,22,4,960,2304,156.863,,,,,,176,102,0,,,,, +38,19,1,957,2304,157.131,,,,,,144,68,0,,,,, +38,23,1,961,2432,157.131,128,8.0,F#5,,,,,,,,,, +39,0,0,962,0,157.399,,,,,,,,,39,,,, +39,1,1,963,0,157.399,2048,0.5,F#5,,,,,,,,,, +39,2,2,964,0,157.399,2048,0.5,E3,,,,,,,,,, +39,3,3,965,0,157.399,,,,,,176,102,0,,,,, +39,4,4,966,0,157.399,,,,,,176,102,0,,,,, +39,6,4,967,256,157.935,1792,1.0,F#4,f,20,144,66,20,,,,, +39,5,0,968,256,157.935,,,,,,176,64,127,,,,,V +39,7,3,969,,160.924,,8.0,D4,mp,14,144,62,14,,,,g, +39,7,3,969,,160.974,,,,,,144,62,0,,,,, +39,8,3,970,,160.999,,8.0,A5,p,11,144,81,11,,,,g, +39,8,3,970,,161.049,,,,,,144,81,0,,,,, +39,9,3,971,,161.074,,8.0,B0,pp,8,144,23,8,,,,g, +39,9,3,971,,161.124,,,,,,144,23,0,,,,, +39,10,3,972,1792,161.149,256,4.0,C#3,ppp,5,144,49,5,,,,, +39,11,0,973,2047,161.534,,,,,,176,64,0,,,,,^ +39,10,3,972,1792,161.685,,,,,,144,49,0,,,,, +40,0,0,974,0,161.685,,,,,,,,,40,,,, +40,1,0,975,0,161.685,,,,,,,,,,5929,,, +40,3,1,976,0,161.685,153,8.0,G4,pp,8,144,67,8,,,,, +40,4,2,977,0,161.685,25,32.0,C7,pp,8,144,96,8,,,,, +40,5,2,978,0,161.685,32,32.0,A7,pp,8,144,105,8,,,,, +40,6,3,979,0,161.685,512,2.0,D#4,p,11,144,63,11,,,,, +40,7,4,980,0,161.685,,,,,,176,102,0,,,,, +40,4,2,977,0,161.737,,,,,,144,96,0,,,,, +40,8,2,981,25,161.737,77,16.0,E7,pp+,9,144,100,9,,,,, +40,5,2,978,0,161.752,,,,,,144,105,0,,,,, +40,2,0,982,0,161.834,,,,,,176,64,127,,,,,V +40,8,2,981,25,161.898,,,,,,144,100,0,,,,, +40,9,2,983,102,161.898,154,8.0,G#3,p,11,144,56,11,,,,, +40,3,1,976,0,162.005,,,,,,144,67,0,,,,, +40,10,1,984,153,162.005,103,8.0,B4,p,11,144,71,11,,,,, +39,6,4,967,256,162.135,,,,,,144,66,0,,,,, +38,20,1,958,2304,162.135,,,,,,144,78,0,,,,, +40,11,1,985,256,162.22,51,16.0,B4,,,,,,,,,, +40,12,2,986,256,162.22,51,16.0,G#3,,,,,,,,,, +40,9,2,983,102,162.327,,,,,,144,56,0,,,,, +40,10,1,984,153,162.327,,,,,,144,71,0,,,,, +40,13,0,987,307,162.327,,,,,,176,64,0,,,,,^ +40,14,1,988,307,162.327,205,4.0,A6,pp,8,144,93,8,,,,, +40,15,2,989,307,162.327,205,4.0,D5,p,11,144,74,11,,,,, +40,14,1,988,307,162.756,,,,,,144,93,0,,,,, +40,15,2,989,307,162.756,,,,,,144,74,0,,,,, +40,16,1,990,512,162.756,,,,,,176,102,0,,,,, +40,17,2,991,512,162.756,51,16.0,C#4,pp,8,144,61,8,,,,, +40,18,3,992,512,162.756,170,4.0,D#4,,,,,,,,,, +40,19,4,993,512,162.756,,,,,,176,102,0,,,,, +40,17,2,991,512,162.863,,,,,,144,61,0,,,,, +40,20,2,994,563,162.863,51,16.0,D5,pp,8,144,74,8,,,,, +40,20,2,994,563,162.969,,,,,,144,74,0,,,,, +40,21,4,995,614,162.969,154,8.0,C3,p,11,144,48,11,,,,, +40,22,2,996,614,162.969,154,8.0,C6,p,11,144,84,11,,,,, +40,23,3,997,682,163.112,86,8.0,C#7,mf,17,144,97,17,,,,, +40,6,3,979,0,163.112,,,,,,144,63,0,,,,, +40,23,3,997,682,163.292,,,,,,144,97,0,,,,, +40,24,3,998,768,163.292,,,,,,176,102,0,,,,, +40,25,4,999,768,163.292,51,16.0,C3,,,,,,,,,, +40,26,2,1000,768,163.292,51,16.0,C6,,,,,,,,,, +40,21,4,995,614,163.398,,,,,,144,48,0,,,,, +40,22,2,996,614,163.398,,,,,,144,84,0,,,,, +40,27,4,1001,819,163.398,205,4.0,C#3,p,11,144,49,11,,,,, +40,28,2,1002,819,163.398,205,4.0,D#5,p,11,144,75,11,,,,, +40,27,4,1001,819,163.827,,,,,,144,49,0,,,,, +40,28,2,1002,819,163.827,,,,,,144,75,0,,,,, +40,29,1,1003,1024,163.827,,,,,,176,102,0,,,,, +40,30,2,1004,1024,163.827,512,2.0,E6,p,11,144,88,11,,,,, +40,31,2,1005,1024,163.827,512,2.0,A6,p,11,144,93,11,,,,, +40,32,3,1006,1024,163.827,,,,,,176,102,0,,,,, +40,33,4,1007,1024,163.827,0,8.0,G3,p,11,,,,,,,, +40,34,4,1008,1024,163.827,0,8.0,C3,p,11,,,,,,,, +40,35,4,1009,1024,163.827,0,8.0,B3,p,11,,,,,,,, +40,36,4,1010,1024,163.827,,,,,,176,102,0,,,,, +40,37,4,1011,1109,164.005,171,4.0,F2,f,20,144,41,20,,,,, +40,38,4,1012,1280,164.363,256,4.0,F2,,,,,,,,,, +40,30,2,1004,1024,164.899,,,,,,144,88,0,,,,, +40,31,2,1005,1024,164.899,,,,,,144,93,0,,,,, +40,37,4,1011,1109,164.899,,,,,,144,41,0,,,,, +40,39,2,1013,1536,164.899,,,,,,176,102,0,,,,, +40,40,4,1014,1536,164.899,512,2.0,G#2,pp,8,144,44,8,,,,, +40,41,4,1015,1536,164.899,512,2.0,F#3,pp,8,144,54,8,,,,, +40,40,4,1014,1536,165.97,,,,,,144,44,0,,,,, +40,41,4,1015,1536,165.97,,,,,,144,54,0,,,,, +41,0,0,1016,0,165.97,,,,,,,,,41,,,, +41,1,0,1017,0,165.97,,,,,,,,,,5930,,, +41,3,1,1018,0,165.97,0,8.0,C6,pp,8,144,84,8,,,,, +41,4,1,1019,0,165.97,0,8.0,E3,pp+,9,,,,,,,, +41,5,1,1020,0,165.97,0,8.0,F5,p,11,,,,,,,, +41,6,1,1021,0,165.97,170,8.0,C6,,,,,,,,,, +41,7,2,1022,0,165.97,0,8.0,A7,fff,24,144,105,23,,,,, +41,8,2,1023,0,165.97,1024,1.0,A7,,,,,,,,,, +41,9,3,1024,0,165.97,0,8.0,G#5,pp,8,,,,,,,, +41,10,3,1025,0,165.97,0,8.0,C3,pp+,9,,,,,,,, +41,11,3,1026,0,165.97,0,8.0,D#4,p,11,,,,,,,, +41,12,3,1027,0,165.97,85,8.0,B3,p,11,144,59,11,,,,, +41,13,4,1028,0,165.97,2048,0.5,G2,p,11,144,43,11,,,,, +41,2,0,1029,0,165.97,,,,,,176,64,127,,,,,V +41,12,3,1027,0,166.148,,,,,,144,59,0,,,,, +41,13,4,1028,0,166.148,,,,,,144,43,0,,,,, +41,14,3,1030,85,166.148,171,4.0,G2,p,11,144,43,11,,,,, +41,3,1,1018,0,166.326,,,,,,144,84,0,,,,, +41,15,1,1031,170,166.326,29,32.0,D4,p,11,144,62,11,,,,, +41,15,1,1031,170,166.387,,,,,,144,62,0,,,,, +41,16,1,1032,199,166.387,28,32.0,E6,p+,12,144,88,12,,,,, +41,19,0,1033,256,166.445,,,,,,176,64,0,,,,,^ +41,16,1,1032,199,166.445,,,,,,144,88,0,,,,, +41,17,1,1034,227,166.445,29,32.0,C#3,mp,14,144,49,14,,,,, +41,17,1,1034,227,166.506,,,,,,144,49,0,,,,, +41,18,1,1035,256,166.506,,,,,,176,102,0,,,,, +41,20,3,1036,256,166.506,,,,,,176,102,0,,,,, +41,21,1,1037,341,166.684,0,8.0,C7,mp,14,,,,,,,, +41,22,1,1038,341,166.684,171,4.0,E7,mp,14,144,100,14,,,,, +41,23,0,1039,341,166.745,,,,,,176,64,127,,,,,V +41,22,1,1038,341,167.042,,,,,,144,100,0,,,,, +41,24,1,1040,512,167.042,1536,1.0,C6,ff,22,144,84,22,,,,, +41,25,3,1041,512,167.042,,,,,,176,102,0,,,,, +41,7,2,1022,0,168.113,,,,,,144,105,0,,,,, +41,26,2,1042,1024,168.113,,,,,,176,102,0,,,,, +41,27,3,1043,1024,168.113,,,,,,176,102,0,,,,, +41,28,3,1044,1280,168.649,,,,,,176,102,0,,,,, +41,29,3,1045,1365,168.827,171,4.0,F1,fff,24,144,29,23,,,,, +41,29,3,1045,1365,169.185,,,,,,144,29,0,,,,, +41,30,2,1046,1536,169.185,,,,,,176,102,0,,,,, +41,31,3,1047,1536,169.185,170,4.0,D#3,fff,24,144,51,23,,,,, +41,31,3,1047,1536,169.54,,,,,,144,51,0,,,,, +41,32,2,1048,1706,169.54,171,4.0,C#6,ff,22,144,85,22,,,,, +41,33,3,1049,1706,169.54,171,4.0,G#3,mf,17,144,56,17,,,,, +41,32,2,1048,1706,169.898,,,,,,144,85,0,,,,, +41,33,3,1049,1706,169.898,,,,,,144,56,0,,,,, +41,34,2,1050,1877,169.898,171,4.0,C#4,mp,14,144,61,14,,,,, +41,35,3,1051,1877,169.898,171,4.0,G#1,ff,22,144,32,22,,,,, +41,36,3,1052,1877,169.898,256,4.0,F#2,p,11,144,42,11,,,,, +41,37,0,1053,2047,170.104,,,,,,176,64,0,,,,,^ +41,14,3,1030,85,170.256,,,,,,144,43,0,,,,, +41,24,1,1040,512,170.256,,,,,,144,84,0,,,,, +41,34,2,1050,1877,170.256,,,,,,144,61,0,,,,, +42,0,0,1054,0,170.256,,,,,,,,,42,,,, +42,1,1,1055,0,170.256,1024,1.0,D#6,f,20,144,87,20,,,,, +42,2,1,1056,0,170.256,1024,1.0,E6,f,20,,,,,,,, +42,3,2,1057,0,170.256,21,32.0,E6,f,20,144,88,20,,,,, +42,4,3,1058,0,170.256,256,4.0,G#1,,,,,,,,,, +42,5,4,1059,0,170.256,1024,1.0,C2,f,20,144,36,20,,,,, +42,6,2,1060,21,170.3,21,32.0,D4,f,20,144,62,20,,,,, +42,6,2,1060,21,170.344,,,,,,144,62,0,,,,, +42,7,2,1061,42,170.344,22,32.0,F2,f,20,144,41,20,,,,, +42,8,2,1062,42,170.344,32,32.0,C#3,f,20,144,49,20,,,,, +42,7,2,1061,42,170.39,,,,,,144,41,0,,,,, +42,9,2,1063,64,170.39,192,8.0,C6,ff,22,144,84,22,,,,, +42,10,2,1064,64,170.39,128,8.0,C#6,f,20,144,85,20,,,,, +41,37,0,1065,2047,170.404,,,,,,176,64,127,,,,,V +42,8,2,1062,42,170.411,,,,,,144,49,0,,,,, +41,36,3,1052,1877,170.434,,,,,,144,42,0,,,,, +42,11,2,1066,256,170.792,768,2.0,C6,,,,,,,,,, +42,12,2,1067,256,170.792,512,2.0,C#6,,,,,,,,,, +42,13,3,1068,256,170.792,170,4.0,G#1,,,,,,,,,, +41,35,3,1051,1877,171.147,,,,,,144,32,0,,,,, +42,14,3,1069,426,171.147,86,8.0,A#5,mp,14,144,82,14,,,,, +42,15,3,1070,512,171.327,384,4.0,A#5,,,,,,,,,, +42,10,2,1064,64,171.729,,,,,,144,85,0,,,,, +42,16,3,1071,896,172.131,32,32.0,C6,f,20,144,84,20,,,,, +42,14,3,1069,426,172.131,,,,,,144,82,0,,,,, +42,16,3,1071,896,172.198,,,,,,144,84,0,,,,, +42,17,3,1072,928,172.198,32,32.0,E3,mp,14,144,52,14,,,,, +42,17,3,1072,928,172.265,,,,,,144,52,0,,,,, +42,18,3,1073,960,172.265,32,32.0,A#5,pp,8,144,82,8,,,,, +42,18,3,1073,960,172.332,,,,,,144,82,0,,,,, +42,19,0,1074,992,172.332,,,,,,176,64,0,,,,,^ +42,20,3,1075,992,172.332,,,,,,176,102,0,,,,, +42,5,4,1059,0,172.399,,,,,,144,36,0,,,,, +42,21,1,1076,1024,172.399,42,16.0,C6,ff,22,144,84,22,,,,, +42,22,2,1077,1024,172.399,1024,1.0,D#5,ff,22,144,75,22,,,,, +42,23,3,1078,1024,172.399,42,16.0,B1,pp,8,144,35,8,,,,, +42,24,4,1079,1024,172.399,42,16.0,C2,pp,8,144,36,8,,,,, +42,1,1,1055,0,172.399,,,,,,144,87,0,,,,, +42,3,2,1057,0,172.399,,,,,,144,88,0,,,,, +42,9,2,1063,64,172.399,,,,,,144,84,0,,,,, +42,21,1,1076,1024,172.487,,,,,,144,84,0,,,,, +42,23,3,1078,1024,172.487,,,,,,144,35,0,,,,, +42,24,4,1079,1024,172.487,,,,,,144,36,0,,,,, +42,25,1,1080,1066,172.487,43,16.0,C#4,ff+,23,144,61,23,,,,, +42,26,1,1081,1066,172.487,64,16.0,E4,ff+,23,144,64,23,,,,, +42,27,3,1082,1066,172.487,,,,,,176,102,0,,,,, +42,28,4,1083,1066,172.487,,,,,,176,102,0,,,,, +42,25,1,1080,1066,172.577,,,,,,144,61,0,,,,, +42,29,1,1084,1109,172.577,43,16.0,A4,mf,17,144,69,17,,,,, +42,30,1,1085,1109,172.577,64,16.0,A#5,mf,17,144,82,17,,,,, +42,26,1,1081,1066,172.621,,,,,,144,64,0,,,,, +42,29,1,1084,1109,172.667,,,,,,144,69,0,,,,, +42,31,1,1086,1152,172.667,128,8.0,G#4,mf,17,144,68,17,,,,, +42,32,4,1087,1152,172.667,128,8.0,E3,p,11,144,52,11,,,,, +42,30,1,1085,1109,172.711,,,,,,144,82,0,,,,, +42,33,3,1088,1194,172.755,86,8.0,F3,p,11,144,53,11,,,,, +42,31,1,1086,1152,172.935,,,,,,144,68,0,,,,, +42,35,1,1089,1280,172.935,,,,,,176,102,0,,,,, +42,36,3,1090,1280,172.935,512,2.0,F3,,,,,,,,,, +42,37,4,1091,1280,172.935,256,4.0,E3,,,,,,,,,, +42,34,0,1092,1280,172.935,,,,,,176,64,127,,,,,V +42,38,1,1093,1344,173.069,192,8.0,D4,ff,22,144,62,22,,,,, +42,32,4,1087,1152,173.47,,,,,,144,52,0,,,,, +42,39,1,1094,1536,173.47,512,2.0,D4,,,,,,,,,, +42,40,4,1095,1536,173.47,,,,,,176,102,0,,,,, +42,41,4,1096,1600,173.604,192,8.0,G2,p,11,144,43,11,,,,, +42,42,3,1097,1792,174.006,128,8.0,F3,,,,,,,,,, +42,43,4,1098,1792,174.006,32,32.0,G2,,,,,,,,,, +42,41,4,1096,1600,174.073,,,,,,144,43,0,,,,, +42,44,4,1099,1824,174.073,96,16.0,A0,ppp,5,144,21,5,,,,, +42,33,3,1088,1194,174.274,,,,,,144,53,0,,,,, +42,44,4,1099,1824,174.274,,,,,,144,21,0,,,,, +42,45,0,1100,1920,174.274,,,,,,176,64,0,,,,,^ +42,46,3,1101,1920,174.274,,,,,,176,102,0,,,,, +42,47,4,1102,1920,174.274,,,,,,176,102,0,,,,, +42,22,2,1077,1024,174.542,,,,,,144,75,0,,,,, +43,0,0,1103,0,174.542,,,,,,,,,43,,,, +43,1,1,1104,0,174.542,,,,,,176,102,0,,,,, +43,2,2,1105,0,174.542,0,8.0,F5,pp,8,,,,,,,, +43,3,2,1106,0,174.542,512,2.0,D#4,p,11,144,63,11,,,,, +43,4,3,1107,0,174.542,0,8.0,C2,mp,14,,,,,,,, +43,5,3,1108,0,174.542,512,2.0,D4,mp,14,144,62,14,,,,, +43,6,3,1109,0,174.542,512,2.0,D#5,mp,14,144,75,14,,,,, +43,7,4,1110,0,174.542,512,2.0,E1,pp,8,144,28,8,,,,, +43,8,4,1111,0,174.542,512,2.0,G1,pp,8,144,31,8,,,,, +42,38,1,1093,1344,174.81,,,,,,144,62,0,,,,, +43,6,3,1109,0,175.613,,,,,,144,75,0,,,,, +43,7,4,1110,0,175.613,,,,,,144,28,0,,,,, +43,8,4,1111,0,175.613,,,,,,144,31,0,,,,, +43,9,1,1112,512,175.613,128,8.0,D4,,,,,,,,,, +43,10,2,1113,512,175.613,170,4.0,D#4,,,,,,,,,, +43,11,3,1114,512,175.613,,,,,,176,102,0,,,,, +43,12,4,1115,512,175.613,,,,,,176,102,0,,,,, +43,13,1,1116,640,175.881,128,8.0,E6,ff,22,144,88,22,,,,, +43,3,2,1106,0,175.969,,,,,,144,63,0,,,,, +43,5,3,1108,0,175.969,,,,,,144,62,0,,,,, +43,14,2,1117,682,175.969,86,8.0,G#5,mp,14,144,80,14,,,,, +43,15,4,1118,682,175.969,86,8.0,C3,pp,8,144,48,8,,,,, +43,16,1,1119,768,176.149,384,4.0,E6,,,,,,,,,, +43,17,2,1120,768,176.149,256,4.0,G#5,,,,,,,,,, +43,18,4,1121,768,176.149,256,4.0,C3,,,,,,,,,, +43,15,4,1118,682,176.685,,,,,,144,48,0,,,,, +43,19,2,1122,1024,176.685,256,4.0,D#5,p,11,144,75,11,,,,, +43,20,2,1123,1024,176.685,256,4.0,G#5,,,,,,,,,, +43,21,3,1124,1024,176.685,32,32.0,C#4,pp,8,144,61,8,,,,, +43,22,4,1125,1024,176.685,256,4.0,C#2,mp,14,144,37,14,,,,, +43,21,3,1124,1024,176.752,,,,,,144,61,0,,,,, +43,23,3,1126,1056,176.752,64,16.0,G#1,pp,8,144,32,8,,,,, +43,23,3,1126,1056,176.885,,,,,,144,32,0,,,,, +43,24,3,1127,1120,176.885,,,,,,176,102,0,,,,, +43,25,1,1128,1152,176.952,64,16.0,A#5,ppp,5,144,82,5,,,,, +43,26,1,1129,1152,176.952,64,16.0,E6,,,,,,,,,, +43,25,1,1128,1152,177.086,,,,,,144,82,0,,,,, +43,28,1,1130,1216,177.086,64,16.0,C6,ppp,5,144,84,5,,,,, +43,29,1,1131,1216,177.086,64,16.0,E6,,,,,,,,,, +43,30,3,1132,1216,177.086,64,16.0,G#3,pp,8,144,56,8,,,,, +43,27,0,1133,1216,177.086,,,,,,176,64,127,,,,,V +43,22,4,1125,1024,177.22,,,,,,144,37,0,,,,, +43,13,1,1116,640,177.22,,,,,,144,88,0,,,,, +43,28,1,1130,1216,177.22,,,,,,144,84,0,,,,, +43,30,3,1132,1216,177.22,,,,,,144,56,0,,,,, +43,31,1,1134,1280,177.22,,,,,,176,102,0,,,,, +43,32,2,1135,1280,177.22,85,8.0,D#5,,,,,,,,,, +43,33,2,1136,1280,177.22,128,8.0,G#5,,,,,,,,,, +43,34,3,1137,1280,177.22,85,8.0,C3,ppp,5,144,48,5,,,,, +43,35,3,1138,1280,177.22,128,8.0,E3,ppp,5,144,52,5,,,,, +43,36,4,1139,1280,177.22,,,,,,176,102,0,,,,, +43,37,0,1140,1365,177.248,,,,,,176,64,0,,,,,^ +43,19,2,1122,1024,177.398,,,,,,144,75,0,,,,, +43,34,3,1137,1280,177.398,,,,,,144,48,0,,,,, +43,38,2,1141,1365,177.398,,,,,,176,102,0,,,,, +43,39,3,1142,1365,177.398,171,4.0,A0,mf,17,144,21,17,,,,, +43,40,3,1143,1365,177.398,256,4.0,G#1,mf,17,144,32,17,,,,, +43,41,3,1144,1365,177.398,256,4.0,E2,mf,17,144,40,17,,,,, +43,42,3,1145,1365,177.398,256,4.0,B2,mf,17,144,47,17,,,,, +43,14,2,1117,682,177.488,,,,,,144,80,0,,,,, +43,35,3,1138,1280,177.488,,,,,,144,52,0,,,,, +43,37,0,1146,1365,177.548,,,,,,176,64,127,,,,,V +43,43,1,1147,1536,177.756,,,,,,176,102,0,,,,, +43,44,2,1148,1536,177.756,,,,,,176,102,0,,,,, +43,45,3,1149,1536,177.756,170,4.0,A0,,,,,,,,,, +43,46,3,1150,1536,177.756,256,4.0,G#1,,,,,,,,,, +43,47,3,1151,1536,177.756,256,4.0,E2,,,,,,,,,, +43,48,3,1152,1536,177.756,256,4.0,B2,,,,,,,,,, +43,49,4,1153,1536,177.756,,,,,,176,102,0,,,,, +43,50,0,1154,1706,177.962,,,,,,176,64,0,,,,,^ +43,39,3,1142,1365,178.112,,,,,,144,21,0,,,,, +43,51,2,1155,1706,178.112,342,2.0,G7,mf,17,144,103,17,,,,, +43,52,3,1156,1706,178.112,342,2.0,B1,mp,14,144,35,14,,,,, +43,50,0,1157,1706,178.262,,,,,,176,64,127,,,,,V +43,40,3,1143,1365,178.47,,,,,,144,32,0,,,,, +43,41,3,1144,1365,178.47,,,,,,144,40,0,,,,, +43,42,3,1145,1365,178.47,,,,,,144,47,0,,,,, +43,53,0,1158,2047,178.676,,,,,,176,64,0,,,,,^ +43,51,2,1155,1706,178.827,,,,,,144,103,0,,,,, +43,52,3,1156,1706,178.827,,,,,,144,35,0,,,,, +44,0,0,1159,0,178.827,,,,,,,,,44,,,, +44,1,0,1160,0,178.827,,,,,,,,,,5931,,, +44,3,1,1161,0,178.827,512,2.0,D#5,f,20,144,75,20,,,,, +44,4,2,1162,0,178.827,0,8.0,A7,mf,17,,,,,,,, +44,5,2,1163,0,178.827,512,2.0,D#4,pp,8,144,63,8,,,,, +44,6,3,1164,0,178.827,,,,,,176,102,0,,,,, +44,7,4,1165,0,178.827,,,,,,176,102,0,,,,, +44,2,0,1166,0,178.976,,,,,,176,64,127,,,,,V +44,8,4,1167,256,179.363,,,,,,176,102,0,,,,, +44,9,3,1168,384,179.631,128,8.0,D4,mf,17,144,62,17,,,,, +44,10,4,1169,384,179.631,128,8.0,C4,ppp,5,144,60,5,,,,, +44,10,4,1169,384,179.899,,,,,,144,60,0,,,,, +44,11,1,1170,512,179.899,,,,,,176,102,0,,,,, +44,12,2,1171,512,179.899,,,,,,176,102,0,,,,, +44,13,3,1172,512,179.899,170,4.0,D4,,,,,,,,,, +44,14,4,1173,512,179.899,,,,,,176,102,0,,,,, +44,3,1,1161,0,179.899,,,,,,144,75,0,,,,, +44,5,2,1163,0,179.899,,,,,,144,63,0,,,,, +44,9,3,1168,384,180.255,,,,,,144,62,0,,,,, +44,15,3,1174,682,180.255,86,8.0,C#2,mf,17,144,37,17,,,,, +44,16,3,1175,768,180.435,512,2.0,C#2,,,,,,,,,, +44,17,2,1176,1024,180.97,,,,,,176,102,0,,,,, +44,18,1,1177,1280,181.506,,,,,,176,102,0,,,,, +44,19,3,1178,1280,181.506,85,8.0,C#2,,,,,,,,,, +44,20,4,1179,1280,181.506,85,8.0,C1,pp,8,144,24,8,,,,, +44,15,3,1174,682,181.684,,,,,,144,37,0,,,,, +44,20,4,1179,1280,181.684,,,,,,144,24,0,,,,, +44,21,0,1180,1365,181.684,,,,,,176,64,0,,,,,^ +44,22,1,1181,1365,181.684,171,4.0,C#6,pp,8,144,85,8,,,,, +44,23,3,1182,1365,181.684,171,4.0,B3,p,11,144,59,11,,,,, +44,24,4,1183,1365,181.684,171,4.0,B2,f,20,144,47,20,,,,, +44,23,3,1182,1365,182.042,,,,,,144,59,0,,,,, +44,26,1,1184,1536,182.042,512,2.0,C#6,,,,,,,,,, +44,27,3,1185,1536,182.042,,,,,,176,102,0,,,,, +44,28,4,1186,1536,182.042,170,4.0,B2,,,,,,,,,, +44,25,0,1187,1536,182.042,,,,,,176,64,127,,,,,V +44,24,4,1183,1365,182.397,,,,,,144,47,0,,,,, +44,29,4,1188,1706,182.397,171,4.0,C2,ff,22,144,36,22,,,,, +44,29,4,1188,1706,182.755,,,,,,144,36,0,,,,, +44,30,4,1189,1877,182.755,171,4.0,G7,ff,22,144,103,22,,,,, +44,31,0,1190,2047,183.111,,,,,,176,64,0,,,,,^ +44,30,4,1189,1877,183.113,,,,,,144,103,0,,,,, +45,0,0,1191,0,183.113,,,,,,,,,45,,,, +45,1,1,1192,0,183.113,384,4.0,C#6,,,,,,,,,, +45,2,2,1193,0,183.113,1024,1.0,G3,f,20,144,55,20,,,,, +45,3,3,1194,0,183.113,32,32.0,C3,mp,14,144,48,14,,,,, +45,4,4,1195,0,183.113,128,8.0,G2,pp,8,144,43,8,,,,, +45,3,3,1194,0,183.18,,,,,,144,48,0,,,,, +45,5,3,1196,32,183.18,224,8.0,C#3,mp,14,144,49,14,,,,, +45,4,4,1195,0,183.381,,,,,,144,43,0,,,,, +45,6,4,1197,128,183.381,,,,,,176,102,0,,,,, +45,5,3,1196,32,183.649,,,,,,144,49,0,,,,, +45,7,3,1198,256,183.649,,,,,,176,102,0,,,,, +45,8,4,1199,256,183.649,,,,,,176,102,0,,,,, +44,22,1,1181,1365,183.917,,,,,,144,85,0,,,,, +45,9,1,1200,384,183.917,,,,,,176,102,0,,,,, +45,10,3,1201,384,183.917,128,8.0,F#2,p,11,144,42,11,,,,, +45,11,3,1202,384,183.917,128,8.0,F#3,p,11,144,54,11,,,,, +45,12,4,1203,384,183.917,128,8.0,C#1,mf,17,144,25,17,,,,, +45,13,1,1204,512,184.185,,,,,,176,102,0,,,,, +45,14,3,1205,512,184.185,768,2.0,F#2,,,,,,,,,, +45,15,3,1206,512,184.185,512,2.0,F#3,,,,,,,,,, +45,16,4,1207,512,184.185,512,2.0,C#1,,,,,,,,,, +45,12,4,1203,384,185.256,,,,,,144,25,0,,,,, +45,17,1,1208,1024,185.256,128,8.0,D#5,p,11,144,75,11,,,,, +45,18,2,1209,1024,185.256,128,8.0,G3,,,,,,,,,, +45,19,4,1210,1024,185.256,128,8.0,A#2,mf,17,144,46,17,,,,, +45,2,2,1193,0,185.524,,,,,,144,55,0,,,,, +45,11,3,1202,384,185.524,,,,,,144,54,0,,,,, +45,17,1,1208,1024,185.524,,,,,,144,75,0,,,,, +45,19,4,1210,1024,185.524,,,,,,144,46,0,,,,, +45,20,1,1211,1152,185.524,128,8.0,C#2,pp,8,144,37,8,,,,, +45,21,2,1212,1152,185.524,,,,,,176,102,0,,,,, +45,22,4,1213,1152,185.524,,,,,,176,102,0,,,,, +45,23,1,1214,1280,185.792,128,8.0,C#2,,,,,,,,,, +45,24,2,1215,1280,185.792,,,,,,176,102,0,,,,, +45,25,3,1216,1280,185.792,128,8.0,F#2,,,,,,,,,, +45,26,3,1217,1280,185.792,128,8.0,F#3,,,,,,,,,, +45,27,4,1218,1280,185.792,,,,,,176,102,0,,,,, +45,10,3,1201,384,186.06,,,,,,144,42,0,,,,, +45,20,1,1211,1152,186.06,,,,,,144,37,0,,,,, +45,28,1,1219,1408,186.06,,,,,,176,102,0,,,,, +45,29,3,1220,1408,186.06,128,8.0,F2,ppp,5,144,41,5,,,,, +45,30,4,1221,1408,186.06,128,8.0,C2,ppp,5,144,36,5,,,,, +45,31,1,1222,1536,186.327,,,,,,176,102,0,,,,, +45,32,2,1223,1536,186.327,,,,,,176,102,0,,,,, +45,33,3,1224,1536,186.327,128,8.0,F2,,,,,,,,,, +45,34,4,1225,1536,186.327,128,8.0,C2,,,,,,,,,, +45,29,3,1220,1408,186.595,,,,,,144,41,0,,,,, +45,30,4,1221,1408,186.595,,,,,,144,36,0,,,,, +45,35,3,1226,1664,186.595,,,,,,176,102,0,,,,, +45,36,4,1227,1664,186.595,,,,,,176,102,0,,,,, +45,37,3,1228,1792,186.863,,,,,,176,102,0,,,,, +45,38,4,1229,1792,186.863,,,,,,176,102,0,,,,, +46,0,0,1230,0,187.399,,,,,,,,,46,,,, +46,1,0,1231,0,187.399,,,,,,,,,,5932,,, +46,2,1,1232,0,187.399,2048,0.5,D#5,pp,8,144,75,8,,,,, +46,3,2,1233,0,187.399,768,2.0,C5,p,11,144,72,11,,,,, +46,4,3,1234,0,187.399,1536,1.0,A3,p,11,144,57,11,,,,, +46,5,4,1235,0,187.399,,,,,,176,102,0,,,,, +46,3,2,1233,0,189.006,,,,,,144,72,0,,,,, +46,6,2,1236,768,189.006,768,2.0,E5,ppp,5,144,76,5,,,,, +46,6,2,1236,768,190.613,,,,,,144,76,0,,,,, +46,7,2,1237,1536,190.613,,,,,,176,102,0,,,,, +46,8,3,1238,1536,190.613,128,8.0,A3,,,,,,,,,, +46,9,4,1239,1536,190.613,128,8.0,C#1,pp,8,144,25,8,,,,, +46,4,3,1234,0,190.881,,,,,,144,57,0,,,,, +46,9,4,1239,1536,190.881,,,,,,144,25,0,,,,, +46,10,3,1240,1664,190.881,128,8.0,E3,ppp,5,144,52,5,,,,, +46,11,4,1241,1664,190.881,128,8.0,G#3,p,11,144,56,11,,,,, +46,12,3,1242,1792,191.149,256,4.0,E3,,,,,,,,,, +46,13,4,1243,1792,191.149,256,4.0,G#3,,,,,,,,,, +46,2,1,1232,0,191.685,,,,,,144,75,0,,,,, +46,10,3,1240,1664,191.685,,,,,,144,52,0,,,,, +46,11,4,1241,1664,191.685,,,,,,144,56,0,,,,, +47,0,0,1244,0,191.685,,,,,,,,,47,,,, +47,2,1,1245,0,191.685,1536,1.0,C6,mp,14,144,84,14,,,,, +47,3,2,1246,0,191.685,1536,1.0,F5,ff,22,144,77,22,,,,, +47,4,3,1247,0,191.685,2048,0.5,G#3,pp,8,144,56,8,,,,, +47,5,4,1248,0,191.685,,,,,,176,102,0,,,,, +47,1,0,1249,0,191.685,,,,,,176,64,127,,,,,V +47,6,0,1250,1536,194.749,,,,,,176,64,0,,,,,^ +47,2,1,1245,0,194.899,,,,,,144,84,0,,,,, +47,3,2,1246,0,194.899,,,,,,144,77,0,,,,, +47,7,1,1251,1536,194.899,,,,,,176,102,0,,,,, +47,8,2,1252,1536,194.899,512,2.0,A#2,p,11,144,46,11,,,,, +47,9,4,1253,1536,194.899,512,2.0,E2,fff,24,144,40,23,,,,, +47,6,0,1254,1536,195.049,,,,,,176,64,127,,,,,V +48,1,0,1255,0,195.82,,,,,,176,64,0,,,,,^ +47,4,3,1247,0,195.97,,,,,,144,56,0,,,,, +47,8,2,1252,1536,195.97,,,,,,144,46,0,,,,, +48,0,0,1256,0,195.97,,,,,,,,,48,,,, +48,2,1,1257,0,195.97,,,,,,176,102,0,,,,, +48,3,2,1258,0,195.97,2048,0.5,D4,pp,8,144,62,8,,,,, +48,4,3,1259,0,195.97,,,,,,176,102,0,,,,, +48,5,4,1260,0,195.97,2048,0.5,E2,,,,,,,,,, +48,1,0,1261,0,196.12,,,,,,176,64,127,,,,,V +48,6,1,1262,1024,198.113,,,,,,176,102,0,,,,, +48,7,3,1263,1024,198.113,,,,,,176,102,0,,,,, +48,8,3,1264,1152,198.381,896,2.0,G#2,ff,22,144,44,22,,,,, +48,9,1,1265,1792,199.72,256,4.0,C#3,ppp,5,144,49,5,,,,, +48,9,1,1265,1792,200.256,,,,,,144,49,0,,,,, +49,0,0,1266,0,200.256,,,,,,,,,49,,,, +49,1,1,1267,0,200.256,,,,,,176,102,0,,,,, +49,2,2,1268,0,200.256,512,2.0,D4,,,,,,,,,, +49,3,3,1269,0,200.256,512,2.0,G#2,,,,,,,,,, +49,4,4,1270,0,200.256,512,2.0,E2,,,,,,,,,, +47,9,4,1253,1536,201.327,,,,,,144,40,0,,,,, +48,3,2,1258,0,201.327,,,,,,144,62,0,,,,, +48,8,3,1264,1152,201.327,,,,,,144,44,0,,,,, +49,5,0,1271,512,201.327,,,,,,176,64,0,,,,,^ +49,6,1,1272,512,201.327,,,,,,176,102,0,,,,, +49,7,2,1273,512,201.327,64,16.0,C#3,pppp,2,144,49,2,,,,, +49,8,3,1274,512,201.327,,,,,,176,102,0,,,,, +49,9,4,1275,512,201.327,1536,1.0,G1,mp,14,144,31,14,,,,, +49,7,2,1273,512,201.461,,,,,,144,49,0,,,,, +49,10,2,1276,576,201.461,,,,,,176,102,0,,,,, +49,11,1,1277,640,201.595,128,8.0,A5,ppp,5,144,81,5,,,,, +49,12,2,1278,704,201.729,32,32.0,D4,mp,14,144,62,14,,,,, +49,12,2,1278,704,201.796,,,,,,144,62,0,,,,, +49,13,2,1279,736,201.796,32,32.0,C6,mp+,15,144,84,15,,,,, +49,11,1,1277,640,201.863,,,,,,144,81,0,,,,, +49,14,1,1280,768,201.863,192,8.0,F#6,p,11,144,90,11,,,,, +49,15,2,1281,768,201.863,32,32.0,G#5,p,11,144,80,11,,,,, +49,16,2,1282,768,201.863,32,32.0,C6,,,,,,,,,, +49,17,3,1283,768,201.863,96,16.0,B0,mp,14,144,23,14,,,,, +49,18,2,1284,800,201.93,64,16.0,G#5,,,,,,,,,, +49,19,2,1285,800,201.93,64,16.0,E6,f,20,144,88,20,,,,, +49,13,2,1279,736,201.93,,,,,,144,84,0,,,,, +49,15,2,1281,768,202.064,,,,,,144,80,0,,,,, +49,17,3,1283,768,202.064,,,,,,144,23,0,,,,, +49,19,2,1285,800,202.064,,,,,,144,88,0,,,,, +49,21,2,1286,864,202.064,96,16.0,D#4,f+,21,144,63,21,,,,, +49,22,3,1287,864,202.064,64,16.0,C#3,mp,14,144,49,14,,,,, +49,20,0,1288,864,202.064,,,,,,176,64,127,,,,,V +49,22,3,1287,864,202.198,,,,,,144,49,0,,,,, +49,23,3,1289,928,202.198,32,32.0,G#2,mp-,13,144,44,13,,,,, +49,14,1,1280,768,202.265,,,,,,144,90,0,,,,, +49,21,2,1286,864,202.265,,,,,,144,63,0,,,,, +49,23,3,1289,928,202.265,,,,,,144,44,0,,,,, +49,24,0,1290,960,202.265,,,,,,176,64,0,,,,,^ +49,25,1,1291,960,202.265,64,16.0,B3,f,20,,,,,,,, +49,26,2,1292,960,202.265,64,16.0,B3,f,20,144,59,20,,,,, +49,27,3,1293,960,202.265,,,,,,176,102,0,,,,, +49,28,1,1294,1024,202.399,512,2.0,B3,,,,,,,,,, +49,29,2,1295,1024,202.399,32,32.0,B3,,,,,,,,,, +49,30,3,1296,1024,202.399,,,,,,176,102,0,,,,, +49,31,2,1297,1056,202.466,96,16.0,A0,mp+,15,144,21,15,,,,, +49,31,2,1297,1056,202.667,,,,,,144,21,0,,,,, +49,32,2,1298,1152,202.667,64,16.0,G2,p,11,144,43,11,,,,, +49,32,2,1298,1152,202.801,,,,,,144,43,0,,,,, +49,33,2,1299,1216,202.801,,,,,,176,102,0,,,,, +49,34,2,1300,1280,202.935,,,,,,176,102,0,,,,, +49,26,2,1292,960,203.47,,,,,,144,59,0,,,,, +49,35,1,1301,1536,203.47,128,8.0,F4,pp,8,144,65,8,,,,, +49,36,2,1302,1536,203.47,,,,,,176,102,0,,,,, +49,37,3,1303,1536,203.47,512,2.0,C#3,f,20,144,49,20,,,,, +49,35,1,1301,1536,203.738,,,,,,144,65,0,,,,, +49,38,1,1304,1664,203.738,,,,,,176,102,0,,,,, +49,39,1,1305,1792,204.006,153,8.0,C5,p,11,144,72,11,,,,, +49,39,1,1305,1792,204.326,,,,,,144,72,0,,,,, +49,41,1,1306,1945,204.326,103,8.0,D3,p+,12,144,50,12,,,,, +49,40,0,1307,1945,204.326,,,,,,176,64,127,,,,,V +49,9,4,1275,512,204.542,,,,,,144,31,0,,,,, +50,0,0,1308,0,204.542,,,,,,,,,50,,,, +50,1,1,1309,0,204.542,51,16.0,D3,,,,,,,,,, +50,2,2,1310,0,204.542,2048,0.5,E6,p+,12,144,88,12,,,,, +50,3,3,1311,0,204.542,0,8.0,C#1,mp,14,,,,,,,, +50,4,3,1312,0,204.542,2048,0.5,C2,mf,17,144,36,17,,,,, +50,5,4,1313,0,204.542,51,16.0,F#6,p+,12,144,90,12,,,,, +49,37,3,1303,1536,204.542,,,,,,144,49,0,,,,, +49,41,1,1306,1945,204.648,,,,,,144,50,0,,,,, +50,5,4,1313,0,204.648,,,,,,144,90,0,,,,, +50,6,1,1314,51,204.648,153,8.0,C#2,mf,17,144,37,17,,,,, +50,7,4,1315,51,204.648,51,16.0,G1,p,11,144,31,11,,,,, +50,7,4,1315,51,204.755,,,,,,144,31,0,,,,, +50,8,4,1316,102,204.755,51,16.0,F4,p,11,144,65,11,,,,, +50,8,4,1316,102,204.862,,,,,,144,65,0,,,,, +50,9,4,1317,153,204.862,51,16.0,C3,pp,8,144,48,8,,,,, +50,6,1,1314,51,204.969,,,,,,144,37,0,,,,, +50,9,4,1317,153,204.969,,,,,,144,48,0,,,,, +50,10,0,1318,204,204.969,,,,,,176,64,0,,,,,^ +50,11,1,1319,204,204.969,52,16.0,E5,p+,12,144,76,12,,,,, +50,12,4,1320,204,204.969,52,16.0,G#1,pp-,7,144,32,7,,,,, +50,12,4,1320,204,205.077,,,,,,144,32,0,,,,, +50,13,1,1321,256,205.077,128,8.0,E5,,,,,,,,,, +50,14,4,1322,256,205.077,,,,,,176,102,0,,,,, +50,11,1,1319,204,205.345,,,,,,144,76,0,,,,, +50,15,1,1323,384,205.345,,,,,,176,102,0,,,,, +50,16,1,1324,512,205.613,,,,,,176,102,0,,,,, +50,17,4,1325,512,205.613,,,,,,176,102,0,,,,, +50,4,3,1312,0,206.535,,,,,,144,36,0,,,,, +50,21,2,1326,,206.535,,8.0,C2,pp,8,144,36,8,,,,g, +50,20,2,1327,,206.61,,8.0,F#5,pp,8,144,78,8,,,,g, +50,20,2,1327,,206.66,,,,,,144,78,0,,,,, +50,18,4,1328,1024,206.685,,,,,,176,102,0,,,,, +50,19,0,1329,1024,206.685,,,,,,,,,,5933,,, +50,2,2,1310,0,208.827,,,,,,144,88,0,,,,, +50,21,2,1326,,208.827,,,,,,144,36,0,,,,, +51,0,0,1330,0,208.827,,,,,,,,,51,,,, +51,1,1,1331,0,208.827,1024,1.0,F4,p,11,144,65,11,,,,, +51,2,1,1332,0,208.827,1024,1.0,G#5,pppp,2,144,80,2,,,,, +51,3,2,1333,0,208.827,1536,1.0,D#4,f,20,144,63,20,,,,, +51,4,3,1334,0,208.827,128,8.0,E4,p,11,144,64,11,,,,, +51,5,4,1335,0,208.827,1024,1.0,G#3,f,20,144,56,20,,,,, +51,4,3,1334,0,209.095,,,,,,144,64,0,,,,, +51,7,3,1336,128,209.095,128,8.0,F#3,mf,17,144,54,17,,,,, +51,6,0,1337,128,209.095,,,,,,176,64,127,,,,,V +51,8,3,1338,256,209.363,1536,1.0,F#3,,,,,,,,,, +51,1,1,1331,0,210.97,,,,,,144,65,0,,,,, +51,2,1,1332,0,210.97,,,,,,144,80,0,,,,, +51,5,4,1335,0,210.97,,,,,,144,56,0,,,,, +51,9,1,1339,1024,210.97,,,,,,176,102,0,,,,, +51,10,4,1340,1024,210.97,,,,,,176,102,0,,,,, +51,11,2,1341,1536,212.042,256,4.0,D#4,,,,,,,,,, +51,13,1,1342,,212.502,,8.0,D5,pp,8,144,74,8,,,,g, +51,13,1,1342,,212.552,,,,,,144,74,0,,,,, +51,3,2,1333,0,212.577,,,,,,144,63,0,,,,, +51,7,3,1336,128,212.577,,,,,,144,54,0,,,,, +51,12,0,1343,1792,212.577,,,,,,176,64,0,,,,,^ +51,14,1,1344,1792,212.577,256,4.0,G#5,f,20,144,80,20,,,,, +51,15,2,1345,1792,212.577,,,,,,176,102,0,,,,, +51,16,3,1346,1792,212.577,256,4.0,G#3,pp,8,144,56,8,,,,, +51,17,2,1347,1920,212.845,128,8.0,A5,f-,19,144,81,19,,,,, +51,16,3,1346,1792,213.113,,,,,,144,56,0,,,,, +51,17,2,1347,1920,213.113,,,,,,144,81,0,,,,, +52,0,0,1348,0,213.113,,,,,,,,,52,,,, +52,2,1,1349,0,213.113,512,2.0,G#5,,,,,,,,,, +52,3,2,1350,0,213.113,2048,0.5,A6,ff,22,144,93,22,,,,, +52,4,3,1351,0,213.113,2048,0.5,F#2,ff,22,144,42,22,,,,, +52,1,0,1352,0,213.113,,,,,,176,64,127,,,,,V +51,14,1,1344,1792,214.185,,,,,,144,80,0,,,,, +52,5,1,1353,512,214.185,768,2.0,D#6,ff,22,144,87,22,,,,, +52,5,1,1353,512,215.792,,,,,,144,87,0,,,,, +52,6,1,1354,1280,215.792,0,8.0,D4,ppp,5,,,,,,,, +52,7,1,1355,1280,215.792,768,2.0,A5,ppp,5,144,81,5,,,,, +52,3,2,1350,0,217.399,,,,,,144,93,0,,,,, +52,4,3,1351,0,217.399,,,,,,144,42,0,,,,, +52,7,1,1355,1280,217.399,,,,,,144,81,0,,,,, +53,0,0,1356,0,217.399,,,,,,,,,53,,,, +53,1,1,1357,0,217.399,,,,,,176,102,0,,,,, +53,2,2,1358,0,217.399,2048,0.5,A4,fff,24,144,69,23,,,,, +53,3,3,1359,0,217.399,,,,,,176,102,0,,,,, +53,4,4,1360,0,217.399,,,,,,176,102,0,,,,, +53,5,3,1361,384,218.202,128,8.0,C#1,mf,17,144,25,17,,,,, +53,6,3,1362,512,218.47,1536,1.0,C#1,,,,,,,,,, +53,7,1,1363,1024,219.542,0,8.0,C#3,ppp,5,,,,,,,, +53,8,1,1364,1024,219.542,0,8.0,C6,ppp,5,,,,,,,, +53,9,1,1365,1024,219.542,1024,1.0,D#5,f,20,144,75,20,,,,, +53,10,1,1366,1024,219.542,1024,1.0,E6,ppp,5,144,88,5,,,,, +53,11,4,1367,1024,219.542,,,,,,176,102,0,,,,, +53,12,4,1368,1536,220.613,512,2.0,B1,f,20,144,35,20,,,,, +53,13,0,1369,2047,221.683,,,,,,176,64,0,,,,,^ +53,2,2,1358,0,221.685,,,,,,144,69,0,,,,, +53,5,3,1361,384,221.685,,,,,,144,25,0,,,,, +53,9,1,1365,1024,221.685,,,,,,144,75,0,,,,, +53,10,1,1366,1024,221.685,,,,,,144,88,0,,,,, +53,12,4,1368,1536,221.685,,,,,,144,35,0,,,,, +54,0,0,1370,0,221.685,,,,,,,,,54,,,, +54,1,0,1371,0,221.685,,,,,,,,,,5934,,, +54,2,1,1372,0,221.685,,,,,,176,102,0,,,,, +54,3,3,1373,0,221.685,1536,1.0,A#2,f,20,144,46,20,,,,, +54,4,4,1374,0,221.685,2048,0.5,C2,ppp,5,144,36,5,,,,, +54,5,4,1375,0,221.685,2048,0.5,C#2,f,20,144,37,20,,,,, +54,6,3,1376,1536,224.899,128,8.0,A#2,,,,,,,,,, +54,3,3,1373,0,225.167,,,,,,144,46,0,,,,, +54,7,3,1377,1664,225.167,384,4.0,G#3,mp,14,144,56,14,,,,, +54,5,4,1375,0,225.97,,,,,,144,37,0,,,,, +55,0,0,1378,0,225.97,,,,,,,,,55,,,, +55,1,1,1379,0,225.97,,,,,,176,102,0,,,,, +55,2,2,1380,0,225.97,,,,,,176,102,0,,,,, +55,3,3,1381,0,225.97,512,2.0,B2,ppp,5,144,47,5,,,,, +55,4,3,1382,0,225.97,512,2.0,E3,p,11,144,52,11,,,,, +55,5,3,1383,0,225.97,512,2.0,G#3,,,,,,,,,, +55,6,4,1384,0,225.97,2048,0.5,C2,,,,,,,,,, +54,7,3,1377,1664,227.042,,,,,,144,56,0,,,,, +55,4,3,1382,0,227.042,,,,,,144,52,0,,,,, +55,7,1,1385,512,227.042,512,2.0,D#6,pp,8,144,87,8,,,,, +55,8,2,1386,512,227.042,192,8.0,C6,pp,8,144,84,8,,,,, +55,9,3,1387,512,227.042,512,2.0,B2,,,,,,,,,, +55,8,2,1386,512,227.444,,,,,,144,84,0,,,,, +55,10,2,1388,704,227.444,,,,,,176,102,0,,,,, +55,11,2,1389,768,227.577,256,4.0,B3,ff,22,144,59,22,,,,, +55,3,3,1381,0,228.113,,,,,,144,47,0,,,,, +55,7,1,1385,512,228.113,,,,,,144,87,0,,,,, +55,13,1,1390,1024,228.113,,,,,,176,102,0,,,,, +55,14,2,1391,1024,228.113,1024,1.0,B3,,,,,,,,,, +55,15,3,1392,1024,228.113,,,,,,176,102,0,,,,, +55,12,0,1393,1024,228.113,,,,,,176,64,127,,,,,V +54,4,4,1374,0,230.256,,,,,,144,36,0,,,,, +56,0,0,1394,0,230.256,,,,,,,,,56,,,, +56,1,1,1395,0,230.256,,,,,,176,102,0,,,,, +56,2,2,1396,0,230.256,2048,0.5,B3,,,,,,,,,, +56,3,2,1397,0,230.256,2048,0.5,E4,mp,14,144,64,14,,,,, +56,4,2,1398,0,230.256,2048,0.5,G6,pp,8,144,91,8,,,,, +56,5,3,1399,0,230.256,,,,,,176,102,0,,,,, +56,6,4,1400,0,230.256,,,,,,176,102,0,,,,, +56,7,1,1401,768,231.863,,,,,,176,102,0,,,,, +56,8,3,1402,768,231.863,256,4.0,F3,pp,8,144,53,8,,,,, +56,9,4,1403,768,231.863,256,4.0,E1,mp,14,144,28,14,,,,, +56,10,1,1404,896,232.131,0,8.0,C4,pppp,2,,,,,,,, +56,11,1,1405,896,232.131,0,8.0,D5,pppp,2,,,,,,,, +56,12,1,1406,896,232.131,,,,,,176,102,0,,,,, +56,13,1,1407,1024,232.399,,,,,,176,102,0,,,,, +56,14,3,1408,1024,232.399,1024,1.0,F3,,,,,,,,,, +56,15,4,1409,1024,232.399,1024,1.0,E1,,,,,,,,,, +57,1,0,1410,0,234.459,,,,,,176,64,0,,,,,^ +56,3,2,1397,0,234.542,,,,,,144,64,0,,,,, +56,4,2,1398,0,234.542,,,,,,144,91,0,,,,, +57,0,0,1411,0,234.542,,,,,,,,,57,,,, +57,2,1,1412,0,234.542,,,,,,176,102,0,,,,, +57,3,2,1413,0,234.542,2048,0.5,B3,,,,,,,,,, +57,4,2,1414,0,234.542,2048,0.5,G#4,pppp,2,144,68,2,,,,, +57,5,3,1415,0,234.542,2048,0.5,F3,,,,,,,,,, +57,6,4,1416,0,234.542,2048,0.5,C1,pp,8,144,24,8,,,,, +57,7,4,1417,0,234.542,2048,0.5,E1,,,,,,,,,, +57,8,1,1418,32,234.609,32,32.0,C#2,pp-,7,144,37,7,,,,, +57,8,1,1418,32,234.676,,,,,,144,37,0,,,,, +57,10,1,1419,64,234.676,,,,,,176,102,0,,,,, +57,9,0,1420,64,234.759,,,,,,176,64,127,,,,,V +57,11,1,1421,256,235.077,,,,,,176,102,0,,,,, +57,12,1,1422,512,235.613,,,,,,176,102,0,,,,, +57,13,1,1423,1024,236.685,,,,,,176,102,0,,,,, +57,14,0,1424,2047,238.676,,,,,,176,64,0,,,,,^ +57,4,2,1414,0,238.827,,,,,,144,68,0,,,,, +57,6,4,1416,0,238.827,,,,,,144,24,0,,,,, +55,11,2,1389,768,238.827,,,,,,144,59,0,,,,, +56,8,3,1402,768,238.827,,,,,,144,53,0,,,,, +56,9,4,1403,768,238.827,,,,,,144,28,0,,,,, +58,0,0,1425,0,238.827,,,,,,,,,58,,,, +58,1,0,1426,0,238.827,,,,,,,,,,5935,,, +58,3,1,1427,0,238.827,42,16.0,E5,p,11,144,76,11,,,,, +58,4,3,1428,0,238.827,,,,,,176,102,0,,,,, +58,3,1,1427,0,238.915,,,,,,144,76,0,,,,, +58,5,1,1429,42,238.915,43,16.0,G#3,mp,14,144,56,14,,,,, +58,2,0,1430,0,238.976,,,,,,176,64,127,,,,,V +58,5,1,1429,42,239.005,,,,,,144,56,0,,,,, +58,6,1,1431,85,239.005,43,16.0,C#2,mf,17,144,37,17,,,,, +58,8,0,1432,170,239.033,,,,,,176,64,0,,,,,^ +58,6,1,1431,85,239.095,,,,,,144,37,0,,,,, +58,7,1,1433,128,239.095,42,16.0,C6,f,20,144,84,20,,,,, +58,7,1,1433,128,239.183,,,,,,144,84,0,,,,, +58,10,1,1434,170,239.183,86,8.0,C#1,f,20,144,25,20,,,,, +58,9,0,1435,170,239.333,,,,,,176,64,127,,,,,V +58,10,1,1434,170,239.363,,,,,,144,25,0,,,,, +58,11,1,1436,256,239.363,,,,,,176,102,0,,,,, +58,12,3,1437,256,239.363,256,4.0,A#2,f,20,144,46,20,,,,, +58,13,1,1438,512,239.899,,,,,,176,102,0,,,,, +58,14,3,1439,512,239.899,85,8.0,A#2,,,,,,,,,, +58,12,3,1437,256,240.077,,,,,,144,46,0,,,,, +58,15,3,1440,597,240.077,171,4.0,E6,mf,17,144,88,17,,,,, +58,15,3,1440,597,240.435,,,,,,144,88,0,,,,, +58,16,3,1441,768,240.435,85,8.0,G#3,p,11,144,56,11,,,,, +58,16,3,1441,768,240.612,,,,,,144,56,0,,,,, +58,17,0,1442,853,240.612,,,,,,176,64,0,,,,,^ +58,18,3,1443,853,240.612,85,8.0,C6,ppp,5,144,84,5,,,,, +58,18,3,1443,853,240.79,,,,,,144,84,0,,,,, +58,19,3,1444,938,240.79,,,,,,176,102,0,,,,, +58,20,1,1445,1024,240.97,,,,,,176,102,0,,,,, +58,21,3,1446,1024,240.97,,,,,,176,102,0,,,,, +58,22,0,1447,1024,240.97,,,,,,,,,,5936,,, +58,24,1,1448,1792,242.577,,,,,,176,102,0,,,,, +58,25,3,1449,1792,242.577,128,8.0,G2,mf,17,144,43,17,,,,, +58,23,0,1450,1792,242.577,,,,,,176,64,127,,,,,V +58,25,3,1449,1792,242.845,,,,,,144,43,0,,,,, +58,26,1,1451,1920,242.845,32,32.0,D6,ppp,5,144,86,5,,,,, +58,27,3,1452,1920,242.845,64,16.0,A0,p-,10,144,21,10,,,,, +58,26,1,1451,1920,242.912,,,,,,144,86,0,,,,, +58,28,1,1453,1952,242.912,32,32.0,E2,ppp,5,144,40,5,,,,, +58,31,0,1454,2016,242.93,,,,,,176,64,0,,,,,^ +58,28,1,1453,1952,242.979,,,,,,144,40,0,,,,, +58,29,1,1455,1984,242.979,32,32.0,C#3,ppp,5,144,49,5,,,,, +58,30,3,1456,1984,242.979,,,,,,176,102,0,,,,, +58,27,3,1452,1920,242.979,,,,,,144,21,0,,,,, +58,29,1,1455,1984,243.046,,,,,,144,49,0,,,,, +58,32,1,1457,2016,243.046,,,,,,176,102,0,,,,, +59,0,0,1458,0,243.113,,,,,,,,,59,,,, +59,2,1,1459,0,243.113,1024,1.0,G#5,p,11,144,80,11,,,,, +59,3,2,1460,0,243.113,21,32.0,A#5,ppp,5,144,82,5,,,,, +59,4,3,1461,0,243.113,,,,,,176,102,0,,,,, +59,5,4,1462,0,243.113,1024,1.0,A2,fff,24,144,45,23,,,,, +59,6,4,1463,0,243.113,1024,1.0,C3,mp,14,144,48,14,,,,, +59,3,2,1460,0,243.157,,,,,,144,82,0,,,,, +59,7,2,1464,21,243.157,21,32.0,G#4,ppp+,6,144,68,6,,,,, +59,7,2,1464,21,243.201,,,,,,144,68,0,,,,, +59,8,2,1465,42,243.201,22,32.0,F#2,pp,8,144,42,8,,,,, +59,1,0,1466,0,243.23,,,,,,176,64,127,,,,,V +59,8,2,1465,42,243.247,,,,,,144,42,0,,,,, +59,9,2,1467,64,243.247,192,8.0,D3,pp,8,144,50,8,,,,, +59,10,0,1468,150,243.427,,,,,,176,64,0,,,,,^ +59,2,1,1459,0,243.649,,,,,,144,80,0,,,,, +59,9,2,1467,64,243.649,,,,,,144,50,0,,,,, +59,11,2,1469,256,243.649,0,8.0,G6,pppp,2,,,,,,,, +59,12,2,1470,256,243.649,128,8.0,G#5,mp,14,144,80,14,,,,, +59,13,2,1471,384,243.917,128,8.0,A0,mp+,15,144,21,15,,,,, +59,13,2,1471,384,244.185,,,,,,144,21,0,,,,, +59,14,2,1472,512,244.185,128,8.0,G2,mp,14,144,43,14,,,,, +59,14,2,1472,512,244.452,,,,,,144,43,0,,,,, +59,15,2,1473,640,244.452,0,8.0,D#4,mp-,13,,,,,,,, +59,16,2,1474,640,244.452,384,4.0,B3,mp-,13,144,59,13,,,,, +59,17,3,1475,768,244.72,,,,,,176,102,0,,,,, +59,18,3,1476,896,244.988,128,8.0,E2,ppp,5,144,40,5,,,,, +59,5,4,1462,0,245.256,,,,,,144,45,0,,,,, +59,6,4,1463,0,245.256,,,,,,144,48,0,,,,, +59,12,2,1470,256,245.256,,,,,,144,80,0,,,,, +59,19,1,1477,1024,245.256,,,,,,176,102,0,,,,, +59,20,2,1478,1024,245.256,512,2.0,B3,,,,,,,,,, +59,21,3,1479,1024,245.256,896,2.0,E2,,,,,,,,,, +59,22,4,1480,1024,245.256,,,,,,176,102,0,,,,, +59,23,2,1481,1536,246.327,128,8.0,B3,,,,,,,,,, +59,16,2,1474,640,246.595,,,,,,144,59,0,,,,, +59,24,2,1482,1664,246.595,64,16.0,G2,pp,8,144,43,8,,,,, +59,24,2,1482,1664,246.729,,,,,,144,43,0,,,,, +59,25,2,1483,1728,246.729,64,16.0,A1,pp-,7,144,33,7,,,,, +59,25,2,1483,1728,246.863,,,,,,144,33,0,,,,, +59,26,2,1484,1792,246.863,64,16.0,D#3,ppp,5,144,51,5,,,,, +59,26,2,1484,1792,246.997,,,,,,144,51,0,,,,, +59,27,2,1485,1856,246.997,,,,,,176,102,0,,,,, +59,18,3,1476,896,247.131,,,,,,144,40,0,,,,, +59,28,2,1486,1920,247.131,64,16.0,C5,ppp,5,144,72,5,,,,, +59,29,3,1487,1920,247.131,,,,,,176,102,0,,,,, +59,28,2,1486,1920,247.265,,,,,,144,72,0,,,,, +59,30,2,1488,1984,247.265,64,16.0,C#3,ppp,5,144,49,5,,,,, +59,30,2,1488,1984,247.399,,,,,,144,49,0,,,,, +60,0,0,1489,0,247.399,,,,,,,,,60,,,, +60,1,0,1490,0,247.399,,,,,,,,,,5937,,, +60,2,1,1491,0,247.399,1536,1.0,G#5,mp,14,144,80,14,,,,, +60,3,3,1492,0,247.399,896,2.0,G#4,ppp,5,144,68,5,,,,, +60,3,3,1492,0,249.274,,,,,,144,68,0,,,,, +60,4,3,1493,896,249.274,42,16.0,B3,ppp,5,144,59,5,,,,, +60,4,3,1493,896,249.362,,,,,,144,59,0,,,,, +60,5,3,1494,938,249.362,43,16.0,A2,ppp,5,144,45,5,,,,, +60,5,3,1494,938,249.452,,,,,,144,45,0,,,,, +60,6,3,1495,981,249.452,21,32.0,D#4,ppp,5,144,63,5,,,,, +60,6,3,1495,981,249.496,,,,,,144,63,0,,,,, +60,7,3,1496,1002,249.496,22,32.0,A0,ppp-,4,144,21,4,,,,, +60,7,3,1496,1002,249.542,,,,,,144,21,0,,,,, +60,8,3,1497,1024,249.542,512,2.0,B2,pppp,2,144,47,2,,,,, +60,2,1,1491,0,250.613,,,,,,144,80,0,,,,, +60,8,3,1497,1024,250.613,,,,,,144,47,0,,,,, +60,9,1,1498,1536,250.613,28,32.0,E2,p,11,144,40,11,,,,, +60,10,3,1499,1536,250.613,,,,,,176,102,0,,,,, +60,9,1,1498,1536,250.672,,,,,,144,40,0,,,,, +60,11,1,1500,1564,250.672,28,32.0,D5,p,11,144,74,11,,,,, +60,11,1,1500,1564,250.73,,,,,,144,74,0,,,,, +60,12,1,1501,1592,250.73,29,32.0,C#3,p,11,144,49,11,,,,, +60,12,1,1501,1592,250.791,,,,,,144,49,0,,,,, +60,13,1,1502,1621,250.791,28,32.0,C4,p,11,144,60,11,,,,, +60,13,1,1502,1621,250.85,,,,,,144,60,0,,,,, +60,14,1,1503,1649,250.85,29,32.0,D6,mp,14,144,86,14,,,,, +60,14,1,1503,1649,250.91,,,,,,144,86,0,,,,, +60,15,1,1504,1678,250.91,28,32.0,E3,mp,14,144,52,14,,,,, +60,15,1,1504,1678,250.969,,,,,,144,52,0,,,,, +60,16,1,1505,1706,250.969,43,32.0,C5,mp,14,144,72,14,,,,, +60,16,1,1505,1706,251.059,,,,,,144,72,0,,,,, +60,17,1,1506,1749,251.059,43,32.0,C#4,mp,14,144,61,14,,,,, +60,17,1,1506,1749,251.149,,,,,,144,61,0,,,,, +60,18,1,1507,1792,251.149,170,4.0,G#6,mf,17,144,92,17,,,,, +60,,,1508,1792,251.149,,,,,,176,64,127,,,,,V +60,18,1,1507,1792,251.505,,,,,,144,92,0,,,,, +60,19,1,1509,1962,251.505,86,8.0,E3,mf,17,144,52,17,,,,, +61,0,0,1510,0,251.685,,,,,,,,,61,,,, +61,,,1511,0,251.685,,,,,,176,64,0,,,,,^ +61,1,1,1512,0,251.685,85,8.0,E3,,,,,,,,,, +61,2,3,1513,0,251.685,,,,,,176,102,0,,,,, +61,3,4,1514,0,251.685,768,2.0,G2,ppp,5,144,43,5,,,,, +60,19,1,1509,1962,251.862,,,,,,144,52,0,,,,, +61,4,1,1515,85,251.862,171,4.0,C#4,mf,17,144,61,17,,,,, +61,4,1,1515,85,252.22,,,,,,144,61,0,,,,, +61,5,1,1516,256,252.22,170,4.0,G#5,f,20,144,80,20,,,,, +61,5,1,1516,256,252.576,,,,,,144,80,0,,,,, +61,6,1,1517,426,252.576,171,4.0,D6,f,20,144,86,20,,,,, +61,6,1,1517,426,252.934,,,,,,144,86,0,,,,, +61,7,1,1518,597,252.934,85,8.0,C#3,f,20,144,49,20,,,,, +61,7,1,1518,597,253.112,,,,,,144,49,0,,,,, +61,8,1,1519,682,253.112,43,16.0,E2,f,20,144,40,20,,,,, +61,8,1,1519,682,253.202,,,,,,144,40,0,,,,, +61,9,1,1520,725,253.202,43,16.0,C5,f,20,144,72,20,,,,, +61,10,0,1521,745,253.244,,,,,,176,64,127,,,,,V +61,3,4,1514,0,253.292,,,,,,144,43,0,,,,, +61,11,1,1522,768,253.292,256,4.0,G#5,f,20,144,80,20,,,,, +61,12,4,1523,768,253.292,128,8.0,B2,ppp,5,144,47,5,,,,, +61,9,1,1520,725,253.292,,,,,,144,72,0,,,,, +61,13,0,1524,896,253.36,,,,,,176,64,0,,,,,^ +61,12,4,1523,768,253.56,,,,,,144,47,0,,,,, +61,14,4,1525,896,253.56,,,,,,176,102,0,,,,, +61,13,0,1526,896,253.66,,,,,,176,64,127,,,,,V +61,15,0,1527,906,253.781,,,,,,176,64,0,,,,,^ +61,16,1,1528,1024,253.827,1024,1.0,G#5,,,,,,,,,, +61,17,4,1529,1024,253.827,1024,1.0,G#1,pp,8,144,32,8,,,,, +62,0,0,1530,0,255.97,,,,,,,,,62,,,, +62,1,1,1531,0,255.97,2048,0.5,G#5,,,,,,,,,, +62,2,2,1532,0,255.97,,,,,,176,102,0,,,,, +62,3,3,1533,0,255.97,,,,,,176,102,0,,,,, +62,4,4,1534,0,255.97,2048,0.5,G#1,,,,,,,,,, +62,5,2,1535,512,257.042,,,,,,176,102,0,,,,, +62,6,2,1536,682,257.397,29,32.0,A4,pppp,2,144,69,2,,,,, +62,6,2,1536,682,257.458,,,,,,144,69,0,,,,, +62,7,2,1537,711,257.458,28,32.0,D#4,pppp,2,144,63,2,,,,, +62,7,2,1537,711,257.517,,,,,,144,63,0,,,,, +62,8,2,1538,739,257.517,29,32.0,C2,pppp,2,144,36,2,,,,, +62,8,2,1538,739,257.577,,,,,,144,36,0,,,,, +62,9,2,1539,768,257.577,,,,,,176,102,0,,,,, +62,10,2,1540,1024,258.113,,,,,,176,102,0,,,,, +63,0,0,1541,0,260.256,,,,,,,,,63,,,, +63,1,1,1542,0,260.256,256,4.0,G#5,,,,,,,,,, +63,2,3,1543,0,260.256,1024,1.0,G1,pppp,2,144,31,2,,,,, +63,3,4,1544,0,260.256,1024,1.0,G#1,,,,,,,,,, +63,5,1,1545,,260.642,,8.0,A#5,pp,8,144,82,8,,,,g, +63,5,1,1545,,260.692,,,,,,144,82,0,,,,, +63,6,1,1546,,260.717,,8.0,G7,pp,8,144,103,8,,,,g, +63,6,1,1546,,260.767,,,,,,144,103,0,,,,, +61,11,1,1522,768,260.792,,,,,,144,80,0,,,,, +63,7,1,1547,256,260.792,512,2.0,E2,ppp,5,144,40,5,,,,, +63,4,0,1548,256,260.792,,,,,,176,64,127,,,,,V +63,7,1,1547,256,261.863,,,,,,144,40,0,,,,, +63,8,1,1549,768,261.863,512,2.0,D6,f,20,144,86,20,,,,, +61,17,4,1529,1024,262.399,,,,,,144,32,0,,,,, +63,9,3,1550,1024,262.399,,,,,,176,102,0,,,,, +63,10,4,1551,1024,262.399,,,,,,176,102,0,,,,, +63,2,3,1543,0,262.399,,,,,,144,31,0,,,,, +63,8,1,1549,768,262.935,,,,,,144,86,0,,,,, +63,11,1,1552,1280,262.935,128,8.0,C5,mf,17,144,72,17,,,,, +63,11,1,1552,1280,263.202,,,,,,144,72,0,,,,, +63,12,1,1553,1408,263.202,42,16.0,C#3,mf-,16,144,49,16,,,,, +63,12,1,1553,1408,263.29,,,,,,144,49,0,,,,, +63,13,0,1554,1450,263.29,,,,,,176,64,0,,,,,^ +63,14,1,1555,1450,263.29,,,,,,176,102,0,,,,, +63,15,1,1556,1493,263.38,43,16.0,C#4,mp,14,144,61,14,,,,, +63,15,1,1556,1493,263.47,,,,,,144,61,0,,,,, +63,16,1,1557,1536,263.47,512,2.0,G#6,mp,14,144,92,14,,,,, +63,17,3,1558,1536,263.47,,,,,,176,102,0,,,,, +63,18,3,1559,1792,264.006,256,4.0,D4,ppp,5,144,62,5,,,,, +63,16,1,1557,1536,264.542,,,,,,144,92,0,,,,, +64,0,0,1560,0,264.542,,,,,,,,,64,,,, +64,1,1,1561,0,264.542,2048,0.5,C#6,fff,24,144,85,23,,,,, +64,2,3,1562,0,264.542,2048,0.5,D4,,,,,,,,,, +65,0,0,1563,0,268.827,,,,,,,,,65,,,, +65,1,1,1564,0,268.827,512,2.0,C#6,,,,,,,,,, +65,2,3,1565,0,268.827,512,2.0,D4,,,,,,,,,, +64,1,1,1561,0,269.899,,,,,,144,85,0,,,,, +65,3,1,1566,512,269.899,1536,1.0,F#3,mp,14,144,54,14,,,,, +65,4,3,1567,512,269.899,512,2.0,C#3,pp,8,144,49,8,,,,, +63,18,3,1559,1792,269.899,,,,,,144,62,0,,,,, +65,5,3,1568,1024,270.97,128,8.0,C#3,,,,,,,,,, +65,4,3,1567,512,271.238,,,,,,144,49,0,,,,, +65,6,3,1569,1152,271.238,128,8.0,F3,ppp,5,144,53,5,,,,, +65,7,3,1570,1280,271.506,512,2.0,F3,,,,,,,,,, +65,6,3,1569,1152,272.577,,,,,,144,53,0,,,,, +65,8,3,1571,1792,272.577,,,,,,176,102,0,,,,, +66,0,0,1572,0,273.113,,,,,,,,,66,,,, +66,1,1,1573,0,273.113,1024,1.0,F#3,,,,,,,,,, +66,2,3,1574,0,273.113,,,,,,176,102,0,,,,, +65,3,1,1566,512,275.256,,,,,,144,54,0,,,,, +66,3,1,1575,1024,275.256,512,2.0,F4,ppp,5,144,65,5,,,,, +66,4,1,1576,1536,276.327,128,8.0,F4,,,,,,,,,, +66,3,1,1575,1024,276.595,,,,,,144,65,0,,,,, +66,5,1,1577,1664,276.595,128,8.0,G2,pppp,2,144,43,2,,,,, +66,6,1,1578,1792,276.863,192,8.0,G2,,,,,,,,,, +66,7,0,1579,1792,276.863,,,,,,,,,,5938,,, +66,10,1,1580,,277.249,,8.0,A#5,pp+,9,144,82,9,,,,g, +66,5,1,1577,1664,277.265,,,,,,144,43,0,,,,, +66,8,1,1581,1984,277.265,,,,,,176,102,0,,,,, +66,10,1,1580,,277.299,,,,,,144,82,0,,,,, +66,9,1,1582,,277.324,,8.0,F#2,pp,8,144,42,8,,,,g, +66,9,1,1582,,277.374,,,,,,144,42,0,,,,, +67,0,0,1583,0,277.399,,,,,,,,,67,,,, +67,1,1,1584,0,277.399,2048,0.5,D#5,p,11,144,75,11,,,,, +67,2,2,1585,0,277.399,170,4.0,G#4,pp+,9,144,68,9,,,,, +67,3,3,1586,0,277.399,,,,,,176,102,0,,,,, +67,4,4,1587,0,277.399,,,,,,176,102,0,,,,, +67,2,2,1585,0,277.755,,,,,,144,68,0,,,,, +67,5,2,1588,170,277.755,,,,,,176,102,0,,,,, +67,6,2,1589,256,277.935,0,8.0,A#4,ppp,5,,,,,,,, +67,7,2,1590,256,277.935,0,8.0,D4,ppp+,6,,,,,,,, +67,8,2,1591,256,277.935,512,2.0,F#5,pp,8,144,78,8,,,,, +67,9,2,1592,256,277.935,512,2.0,C#6,f,20,144,85,20,,,,, +67,10,3,1593,256,277.935,85,8.0,C2,p,11,144,36,11,,,,, +67,11,4,1594,256,277.935,128,8.0,E1,f,20,144,28,20,,,,, +67,12,4,1595,256,277.935,128,8.0,C#2,f,20,144,37,20,,,,, +67,13,0,1596,290,278.006,,,,,,176,64,127,,,,,V +67,10,3,1593,256,278.112,,,,,,144,36,0,,,,, +67,14,3,1597,341,278.112,85,8.0,G#2,f+,21,144,44,21,,,,, +67,11,4,1594,256,278.202,,,,,,144,28,0,,,,, +67,12,4,1595,256,278.202,,,,,,144,37,0,,,,, +67,15,4,1598,384,278.202,,,,,,176,102,0,,,,, +67,14,3,1597,341,278.29,,,,,,144,44,0,,,,, +67,16,3,1599,426,278.29,86,8.0,F3,mf,17,144,53,17,,,,, +67,16,3,1599,426,278.47,,,,,,144,53,0,,,,, +67,17,3,1600,512,278.47,,,,,,176,102,0,,,,, +67,18,4,1601,512,278.47,,,,,,176,102,0,,,,, +67,19,4,1602,597,278.648,85,8.0,E5,mf,17,144,76,17,,,,, +67,19,4,1602,597,278.826,,,,,,144,76,0,,,,, +67,20,4,1603,682,278.826,86,8.0,F#3,f,20,144,54,20,,,,, +67,8,2,1591,256,279.006,,,,,,144,78,0,,,,, +67,20,4,1603,682,279.006,,,,,,144,54,0,,,,, +67,21,2,1604,768,279.006,512,2.0,C#6,,,,,,,,,, +67,22,3,1605,768,279.006,256,4.0,C3,f,20,144,48,20,,,,, +67,23,4,1606,768,279.006,128,8.0,D#2,pp,8,144,39,8,,,,, +67,23,4,1606,768,279.274,,,,,,144,39,0,,,,, +67,24,4,1607,896,279.274,,,,,,176,102,0,,,,, +67,22,3,1605,768,279.542,,,,,,144,48,0,,,,, +67,25,3,1608,1024,279.542,128,8.0,G#3,mf,17,144,56,17,,,,, +67,26,4,1609,1024,279.542,256,4.0,A3,ppp,5,144,57,5,,,,, +67,25,3,1608,1024,279.81,,,,,,144,56,0,,,,, +67,27,3,1610,1152,279.81,,,,,,176,102,0,,,,, +67,9,2,1592,256,280.077,,,,,,144,85,0,,,,, +67,26,4,1609,1024,280.077,,,,,,144,57,0,,,,, +67,28,0,1611,1280,280.077,,,,,,176,64,0,,,,,^ +67,29,2,1612,1280,280.077,42,16.0,E5,mp,14,144,76,14,,,,, +67,30,3,1613,1280,280.077,102,8.0,C3,ff,22,144,48,22,,,,, +67,31,4,1614,1280,280.077,,,,,,176,102,0,,,,, +67,29,2,1612,1280,280.165,,,,,,144,76,0,,,,, +67,30,3,1613,1280,280.165,,,,,,144,48,0,,,,, +67,32,2,1615,1322,280.165,0,8.0,F4,mp,14,,,,,,,, +67,33,2,1616,1322,280.165,43,16.0,C3,f,20,144,48,20,,,,, +67,34,2,1617,1322,280.165,64,16.0,F#3,f,20,144,54,20,,,,, +67,35,2,1618,1322,280.165,64,16.0,G#3,f,20,144,56,20,,,,, +67,36,2,1619,1322,280.165,64,16.0,F4,f,20,144,65,20,,,,, +67,37,2,1620,1322,280.165,64,16.0,E5,f,20,144,76,20,,,,, +67,38,2,1621,1365,280.255,85,8.0,D4,p,11,144,62,11,,,,, +67,33,2,1616,1322,280.291,,,,,,144,48,0,,,,, +67,39,3,1622,1382,280.291,154,8.0,D#1,f,20,144,27,20,,,,, +67,40,3,1623,1382,280.291,128,8.0,C2,f,20,144,36,20,,,,, +67,34,2,1617,1322,280.299,,,,,,144,54,0,,,,, +67,35,2,1618,1322,280.299,,,,,,144,56,0,,,,, +67,36,2,1619,1322,280.299,,,,,,144,65,0,,,,, +67,37,2,1620,1322,280.299,,,,,,144,76,0,,,,, +67,38,2,1621,1365,280.433,,,,,,144,62,0,,,,, +67,41,2,1624,1450,280.433,86,8.0,G6,p,11,144,91,11,,,,, +67,40,3,1623,1382,280.559,,,,,,144,36,0,,,,, +67,39,3,1622,1382,280.613,,,,,,144,27,0,,,,, +67,41,2,1624,1450,280.613,,,,,,144,91,0,,,,, +67,42,3,1625,1536,280.613,,,,,,176,102,0,,,,, +67,44,2,1626,1536,280.613,102,8.0,A#5,p,11,144,82,11,,,,, +67,45,4,1627,1536,280.613,,,,,,176,102,0,,,,, +67,43,0,1628,1536,280.613,,,,,,176,64,127,,,,,V +67,44,2,1626,1536,280.827,,,,,,144,82,0,,,,, +67,46,3,1629,1638,280.827,102,8.0,B0,pp,8,144,23,8,,,,, +67,47,3,1630,1638,280.827,128,8.0,F#1,pp,8,144,30,8,,,,, +67,48,2,1631,1638,280.827,,,,,,176,102,0,,,,, +67,46,3,1629,1638,281.04,,,,,,144,23,0,,,,, +67,49,3,1632,1740,281.04,103,8.0,D3,mf,17,144,50,17,,,,, +67,47,3,1630,1638,281.094,,,,,,144,30,0,,,,, +67,49,3,1632,1740,281.256,,,,,,144,50,0,,,,, +67,50,3,1633,1843,281.256,,,,,,176,102,0,,,,, +67,51,2,1634,1843,281.256,102,8.0,G#4,mf-,16,144,68,16,,,,, +67,51,2,1634,1843,281.469,,,,,,144,68,0,,,,, +67,52,3,1635,1945,281.469,51,16.0,G#2,f,20,144,44,20,,,,, +67,53,2,1636,1945,281.469,103,8.0,G7,mp,14,144,103,14,,,,, +67,52,3,1635,1945,281.576,,,,,,144,44,0,,,,, +67,54,3,1637,1996,281.576,52,16.0,F#2,f,20,144,42,20,,,,, +67,55,0,1638,2047,281.683,,,,,,176,64,0,,,,,^ +67,53,2,1636,1945,281.685,,,,,,144,103,0,,,,, +67,54,3,1637,1996,281.685,,,,,,144,42,0,,,,, +68,0,0,1639,0,281.685,,,,,,,,,68,,,, +68,1,1,1640,0,281.685,2048,0.5,D#5,,,,,,,,,, +68,2,2,1641,0,281.685,,,,,,176,102,0,,,,, +68,3,3,1642,0,281.685,,,,,,176,102,0,,,,, +68,4,4,1643,0,281.685,,,,,,176,102,0,,,,, +68,5,2,1644,85,281.862,43,16.0,C3,f,20,144,48,20,,,,, +68,5,2,1644,85,281.952,,,,,,144,48,0,,,,, +68,6,2,1645,128,281.952,42,16.0,F4,f+,21,144,65,21,,,,, +68,7,2,1646,128,281.952,64,16.0,A#4,f+,21,144,70,21,,,,, +68,6,2,1645,128,282.04,,,,,,144,65,0,,,,, +68,8,2,1647,170,282.04,43,16.0,F#3,ff,22,144,54,22,,,,, +68,9,4,1648,170,282.04,86,8.0,D3,f,20,144,50,20,,,,, +68,7,2,1646,128,282.086,,,,,,144,70,0,,,,, +68,8,2,1647,170,282.13,,,,,,144,54,0,,,,, +68,10,2,1649,213,282.13,43,16.0,C3,ff+,23,144,48,23,,,,, +68,11,2,1650,213,282.13,64,16.0,G#3,ff+,23,144,56,23,,,,, +68,12,2,1651,213,282.13,64,16.0,E5,ff+,23,144,76,23,,,,, +68,13,2,1652,213,282.13,64,16.0,A#5,ff+,23,144,82,23,,,,, +68,10,2,1649,213,282.22,,,,,,144,48,0,,,,, +68,12,2,1651,213,282.22,,,,,,144,76,0,,,,, +68,14,2,1653,256,282.22,1792,1.0,F#4,fff,24,144,66,23,,,,, +68,15,2,1654,256,282.22,1024,1.0,A#4,fff,24,144,70,23,,,,, +68,16,2,1655,256,282.22,1024,1.0,E5,fff,24,144,76,23,,,,, +68,17,2,1656,256,282.22,1024,1.0,D6,fff,24,144,86,23,,,,, +68,18,3,1657,256,282.22,,,,,,176,102,0,,,,, +68,19,4,1658,256,282.22,170,4.0,D3,,,,,,,,,, +68,11,2,1650,213,282.264,,,,,,144,56,0,,,,, +68,13,2,1652,213,282.264,,,,,,144,82,0,,,,, +68,9,4,1648,170,282.576,,,,,,144,50,0,,,,, +68,20,4,1659,426,282.576,,,,,,176,102,0,,,,, +68,21,3,1660,512,282.756,,,,,,176,102,0,,,,, +68,22,4,1661,512,282.756,0,8.0,D#5,s,0,,,,,,,, +68,23,4,1662,512,282.756,256,4.0,B2,ppp,5,144,47,5,,,,, +68,24,4,1663,768,283.292,32,32.0,B2,,,,,,,,,, +68,23,4,1662,512,283.359,,,,,,144,47,0,,,,, +68,25,4,1664,800,283.359,224,8.0,G1,ppp,5,144,31,5,,,,, +68,26,3,1665,1024,283.827,,,,,,176,102,0,,,,, +68,27,4,1666,1024,283.827,64,16.0,G1,,,,,,,,,, +68,25,4,1664,800,283.961,,,,,,144,31,0,,,,, +68,28,3,1667,1088,283.961,192,8.0,F3,ff,22,144,53,22,,,,, +68,29,4,1668,1088,283.961,192,8.0,G#4,ppp,5,144,68,5,,,,, +68,30,3,1669,1280,284.363,512,2.0,F3,,,,,,,,,, +68,31,4,1670,1280,284.363,128,8.0,G#4,,,,,,,,,, +68,32,4,1671,1280,284.363,128,8.0,F5,mf,17,144,77,17,,,,, +68,33,4,1672,1280,284.363,128,8.0,F#6,ff,22,144,90,22,,,,, +68,29,4,1668,1088,284.631,,,,,,144,68,0,,,,, +68,34,4,1673,1408,284.631,128,8.0,F5,,,,,,,,,, +68,35,4,1674,1408,284.631,128,8.0,F#6,,,,,,,,,, +68,32,4,1671,1280,284.899,,,,,,144,77,0,,,,, +68,33,4,1672,1280,284.899,,,,,,144,90,0,,,,, +68,36,4,1675,1536,284.899,128,8.0,A3,f,20,144,57,20,,,,, +68,37,4,1676,1536,284.899,128,8.0,F4,ff,22,144,65,22,,,,, +68,36,4,1675,1536,285.167,,,,,,144,57,0,,,,, +68,37,4,1676,1536,285.167,,,,,,144,65,0,,,,, +68,38,4,1677,1664,285.167,128,8.0,G#1,f,20,144,32,20,,,,, +68,39,4,1678,1664,285.167,128,8.0,B1,ppp,5,144,35,5,,,,, +68,38,4,1677,1664,285.435,,,,,,144,32,0,,,,, +68,39,4,1678,1664,285.435,,,,,,144,35,0,,,,, +68,41,3,1679,1792,285.435,128,8.0,F3,,,,,,,,,, +68,42,4,1680,1792,285.435,85,8.0,F#7,ff,22,144,102,22,,,,, +68,40,0,1681,1792,285.435,,,,,,176,64,127,,,,,V +68,42,4,1680,1792,285.612,,,,,,144,102,0,,,,, +68,43,4,1682,1877,285.612,85,8.0,C4,ff,22,144,60,22,,,,, +68,28,3,1667,1088,285.702,,,,,,144,53,0,,,,, +68,44,3,1683,1920,285.702,128,8.0,C2,ff,22,144,36,22,,,,, +68,43,4,1682,1877,285.79,,,,,,144,60,0,,,,, +68,45,4,1684,1962,285.79,86,8.0,G#2,ff,22,144,44,22,,,,, +68,46,0,1685,2047,285.968,,,,,,176,64,0,,,,,^ +69,0,0,1686,0,285.97,,,,,,,,,69,,,, +69,1,1,1687,0,285.97,2048,0.5,D#5,,,,,,,,,, +69,2,2,1688,0,285.97,2048,0.5,F#4,,,,,,,,,, +69,3,2,1689,0,285.97,2048,0.5,A#4,,,,,,,,,, +69,4,2,1690,0,285.97,2048,0.5,E5,,,,,,,,,, +69,5,2,1691,0,285.97,2048,0.5,D6,,,,,,,,,, +69,6,3,1692,0,285.97,2048,0.5,C2,,,,,,,,,, +69,7,3,1693,0,285.97,2048,0.5,E2,f,20,144,40,20,,,,, +69,8,4,1694,0,285.97,,,,,,176,102,0,,,,, +68,45,4,1684,1962,285.97,,,,,,144,44,0,,,,, +69,9,4,1695,256,286.506,0,8.0,A2,mp,14,,,,,,,, +69,10,4,1696,256,286.506,1792,1.0,F#3,mp,14,144,54,14,,,,, +68,15,2,1654,256,288.649,,,,,,144,70,0,,,,, +68,16,2,1655,256,288.649,,,,,,144,76,0,,,,, +68,17,2,1656,256,288.649,,,,,,144,86,0,,,,, +67,1,1,1584,0,290.256,,,,,,144,75,0,,,,, +68,14,2,1653,256,290.256,,,,,,144,66,0,,,,, +70,0,0,1697,0,290.256,,,,,,,,,70,,,, +70,1,1,1698,0,290.256,,,,,,176,102,0,,,,, +70,2,2,1699,0,290.256,,,,,,176,102,0,,,,, +70,3,3,1700,0,290.256,2048,0.5,C2,,,,,,,,,, +70,4,3,1701,0,290.256,2048,0.5,E2,,,,,,,,,, +70,5,4,1702,0,290.256,768,2.0,F#3,,,,,,,,,, +70,6,2,1703,512,291.327,256,4.0,B3,ppp,5,144,59,5,,,,, +69,10,4,1696,256,291.863,,,,,,144,54,0,,,,, +70,6,2,1703,512,291.863,,,,,,144,59,0,,,,, +70,7,2,1704,768,291.863,,,,,,176,102,0,,,,, +70,8,4,1705,768,291.863,,,,,,176,102,0,,,,, +70,9,2,1706,1024,292.399,,,,,,176,102,0,,,,, +70,10,4,1707,1024,292.399,,,,,,176,102,0,,,,, +69,7,3,1693,0,294.542,,,,,,144,40,0,,,,, +71,0,0,1708,0,294.542,,,,,,,,,71,,,, +71,1,0,1709,0,294.542,,,,,,,,,,5939,,, +71,2,1,1710,0,294.542,,,,,,176,102,0,,,,, +71,3,2,1711,0,294.542,512,2.0,C4,pp,8,144,60,8,,,,, +71,4,3,1712,0,294.542,256,4.0,C#6,pp,8,144,85,8,,,,, +68,44,3,1683,1920,294.542,,,,,,144,36,0,,,,, +71,4,3,1712,0,295.077,,,,,,144,85,0,,,,, +71,5,3,1713,256,295.077,512,2.0,F#3,pp,8,144,54,8,,,,, +71,3,2,1711,0,295.613,,,,,,144,60,0,,,,, +71,6,2,1714,512,295.613,1024,1.0,F5,ppp-,4,144,77,4,,,,, +71,5,3,1713,256,296.149,,,,,,144,54,0,,,,, +71,7,3,1715,768,296.149,512,2.0,A2,pp+,9,144,45,9,,,,, +71,7,3,1715,768,297.22,,,,,,144,45,0,,,,, +71,8,3,1716,1280,297.22,,,,,,176,102,0,,,,, +71,9,2,1717,1536,297.756,,,,,,176,102,0,,,,, +71,6,2,1714,512,297.756,,,,,,144,77,0,,,,, +72,0,0,1718,0,298.827,,,,,,,,,72,,,, +72,1,1,1719,0,298.827,256,4.0,C#7,pp,8,144,97,8,,,,, +72,2,3,1720,0,298.827,,,,,,176,102,0,,,,, +72,1,1,1719,0,299.363,,,,,,144,97,0,,,,, +72,4,1,1721,256,299.363,512,2.0,D7,mp,14,144,98,14,,,,, +72,3,0,1722,256,299.363,,,,,,176,64,127,,,,,V +72,6,3,1723,,300.36,,8.0,F#3,mp+,15,144,54,15,,,,g, +72,6,3,1723,,300.41,,,,,,144,54,0,,,,, +72,4,1,1721,256,300.435,,,,,,144,98,0,,,,, +72,5,1,1724,768,300.435,32,32.0,F#6,p,11,144,90,11,,,,, +72,7,3,1725,768,300.435,32,32.0,A#2,f,20,144,46,20,,,,, +72,5,1,1724,768,300.502,,,,,,144,90,0,,,,, +72,7,3,1725,768,300.502,,,,,,144,46,0,,,,, +72,8,1,1726,800,300.502,96,16.0,F4,p,11,144,65,11,,,,, +72,9,3,1727,800,300.502,32,32.0,B3,f,20,144,59,20,,,,, +72,9,3,1727,800,300.569,,,,,,144,59,0,,,,, +72,10,3,1728,832,300.569,192,8.0,C4,f-,19,144,60,19,,,,, +72,8,1,1726,800,300.702,,,,,,144,65,0,,,,, +72,11,1,1729,896,300.702,,,,,,176,102,0,,,,, +72,10,3,1728,832,300.97,,,,,,144,60,0,,,,, +72,12,1,1730,1024,300.97,,,,,,176,102,0,,,,, +72,13,3,1731,1024,300.97,,,,,,176,102,0,,,,, +73,0,0,1732,0,303.113,,,,,,,,,73,,,, +73,1,1,1733,0,303.113,,,,,,176,102,0,,,,, +73,2,3,1734,0,303.113,,,,,,176,102,0,,,,, +73,3,1,1735,256,303.649,1792,1.0,F#7,fff,24,144,102,23,,,,, +73,3,1,1735,256,307.399,,,,,,144,102,0,,,,, +74,0,0,1736,0,307.399,,,,,,,,,74,,,, +74,1,1,1737,0,307.399,,,,,,176,102,0,,,,, +74,2,3,1738,0,307.399,,,,,,176,102,0,,,,, +74,3,3,1739,768,309.006,256,4.0,D#1,ppp,5,144,27,5,,,,, +74,4,3,1740,1024,309.542,1024,1.0,D#1,,,,,,,,,, +75,0,0,1741,0,311.685,,,,,,,,,75,,,, +75,1,1,1742,0,311.685,,,,,,176,102,0,,,,, +75,2,3,1743,0,311.685,896,2.0,D#1,,,,,,,,,, +74,3,3,1739,768,313.56,,,,,,144,27,0,,,,, +75,3,3,1744,896,313.56,128,8.0,G#2,f,20,144,44,20,,,,, +75,4,0,1745,1024,313.827,,,,,,176,64,0,,,,,^ +75,5,1,1746,1024,313.827,,,,,,176,102,0,,,,, +75,6,3,1747,1024,313.827,512,2.0,G#2,,,,,,,,,, +75,7,1,1748,1280,314.363,768,2.0,E5,mp,14,144,76,14,,,,, +75,8,3,1749,1536,314.899,128,8.0,G#2,,,,,,,,,, +75,3,3,1744,896,315.167,,,,,,144,44,0,,,,, +75,9,3,1750,1664,315.167,384,4.0,F#2,p,11,144,42,11,,,,, +75,7,1,1748,1280,315.97,,,,,,144,76,0,,,,, +75,9,3,1750,1664,315.97,,,,,,144,42,0,,,,, +76,0,0,1751,0,315.97,,,,,,,,,76,,,, +76,1,0,1752,0,315.97,,,,,,,,,,5940,,, +76,3,1,1753,0,315.97,,,,,,176,102,0,,,,, +76,4,2,1754,0,315.97,85,8.0,D4,mf,17,144,62,17,,,,, +76,5,3,1755,0,315.97,51,16.0,D7,p,11,144,98,11,,,,, +76,6,4,1756,0,315.97,,,,,,176,102,0,,,,, +76,2,0,1757,0,315.97,,,,,,176,64,127,,,,,V +76,5,3,1755,0,316.077,,,,,,144,98,0,,,,, +76,7,3,1758,51,316.077,51,16.0,A#1,mp+,15,144,34,15,,,,, +76,4,2,1754,0,316.148,,,,,,144,62,0,,,,, +76,8,2,1759,85,316.148,85,8.0,F#6,mf,17,144,90,17,,,,, +76,7,3,1758,51,316.184,,,,,,144,34,0,,,,, +76,9,3,1760,102,316.184,51,16.0,C3,mf+,18,144,48,18,,,,, +76,9,3,1760,102,316.29,,,,,,144,48,0,,,,, +76,10,3,1761,153,316.29,51,16.0,F#2,ff,22,144,42,22,,,,, +76,8,2,1759,85,316.326,,,,,,144,90,0,,,,, +76,11,2,1762,170,316.326,86,8.0,A#4,mf,17,144,70,17,,,,, +76,10,3,1761,153,316.397,,,,,,144,42,0,,,,, +76,12,0,1763,204,316.397,,,,,,176,64,0,,,,,^ +76,13,3,1764,204,316.397,52,16.0,B2,ff,22,144,47,22,,,,, +76,11,2,1762,170,316.506,,,,,,144,70,0,,,,, +76,13,3,1764,204,316.506,,,,,,144,47,0,,,,, +76,14,1,1765,,316.506,,8.0,A1,pp,8,144,33,8,,,,g, +76,14,1,1765,,316.556,,,,,,144,33,0,,,,, +76,15,1,1766,,316.581,,8.0,C#6,pp,8,144,85,8,,,,g, +76,15,1,1766,,316.631,,,,,,144,85,0,,,,, +76,16,1,1767,256,316.656,128,8.0,G#5,pp,8,144,80,8,,,,, +76,17,2,1768,256,316.656,,,,,,176,102,0,,,,, +76,18,3,1769,256,316.656,1792,1.0,A#1,f,20,144,34,20,,,,, +76,19,3,1770,256,316.656,1024,1.0,F#2,pp,8,144,42,8,,,,, +76,20,4,1771,256,316.656,192,8.0,D#2,f,20,144,39,20,,,,, +76,16,1,1767,256,316.924,,,,,,144,80,0,,,,, +76,21,1,1772,384,316.924,128,8.0,C6,pp+,9,144,84,9,,,,, +76,20,4,1771,256,317.058,,,,,,144,39,0,,,,, +76,22,4,1773,448,317.058,,,,,,176,102,0,,,,, +76,24,1,1774,512,317.192,85,8.0,A#5,mp,14,144,82,14,,,,, +76,25,1,1775,512,317.192,128,8.0,F#6,ff,22,144,90,22,,,,, +76,26,2,1776,512,317.192,42,16.0,E5,f,20,144,76,20,,,,, +76,32,4,1777,512,317.192,,,,,,176,102,0,,,,, +76,23,0,1778,512,317.192,,,,,,176,64,127,,,,,V +76,21,1,1772,384,317.192,,,,,,144,84,0,,,,, +76,26,2,1776,512,317.28,,,,,,144,76,0,,,,, +76,27,4,1779,,317.28,,8.0,E4,f,20,144,64,20,,,,g, +76,27,4,1779,,317.33,,,,,,144,64,0,,,,, +76,28,4,1780,,317.355,,8.0,C2,f,20,144,36,20,,,,g, +76,29,4,1781,,317.355,,8.0,D4,f,20,144,62,20,,,,g, +76,24,1,1774,512,317.37,,,,,,144,82,0,,,,, +76,28,4,1780,,317.405,,,,,,144,36,0,,,,, +76,29,4,1781,,317.405,,,,,,144,62,0,,,,, +76,19,3,1770,256,317.43,,,,,,144,42,0,,,,, +76,30,4,1782,,317.43,,8.0,F#2,f+,21,144,42,21,,,,g, +76,31,4,1783,,317.43,,8.0,E5,f+,21,144,76,21,,,,g, +76,25,1,1775,512,317.46,,,,,,144,90,0,,,,, +76,31,4,1783,,317.48,,,,,,144,76,0,,,,, +76,33,2,1784,554,317.655,43,16.0,F4,ff,22,144,65,22,,,,, +76,33,2,1784,554,317.745,,,,,,144,65,0,,,,, +76,34,1,1785,597,317.745,85,8.0,G#4,ff,22,144,68,22,,,,, +76,35,2,1786,597,317.745,43,16.0,F#3,ff,22,144,54,22,,,,, +76,36,4,1787,597,317.745,85,8.0,D#1,ff,22,144,27,22,,,,, +76,35,2,1786,597,317.835,,,,,,144,54,0,,,,, +76,37,2,1788,640,317.835,128,8.0,F2,ff,22,144,41,22,,,,, +76,38,2,1789,640,317.835,128,8.0,C3,ff,22,144,48,22,,,,, +76,34,1,1785,597,317.922,,,,,,144,68,0,,,,, +76,36,4,1787,597,317.922,,,,,,144,27,0,,,,, +76,39,1,1790,682,317.922,86,8.0,G7,ff,22,144,103,22,,,,, +76,40,4,1791,682,317.922,86,8.0,A#3,ff,22,144,58,22,,,,, +76,37,2,1788,640,318.102,,,,,,144,41,0,,,,, +76,38,2,1789,640,318.102,,,,,,144,48,0,,,,, +76,39,1,1790,682,318.102,,,,,,144,103,0,,,,, +76,40,4,1791,682,318.102,,,,,,144,58,0,,,,, +76,41,1,1792,768,318.102,,,,,,176,102,0,,,,, +76,42,2,1793,768,318.102,,,,,,176,102,0,,,,, +76,43,4,1794,768,318.102,,,,,,176,102,0,,,,, +76,44,1,1795,1024,318.638,,,,,,176,102,0,,,,, +76,45,2,1796,1024,318.638,,,,,,176,102,0,,,,, +76,46,4,1797,1024,318.638,,,,,,176,102,0,,,,, +77,0,0,1798,0,320.781,,,,,,,,,77,,,, +77,1,1,1799,0,320.781,,,,,,176,102,0,,,,, +77,2,2,1800,0,320.781,,,,,,176,102,0,,,,, +77,3,3,1801,0,320.781,1792,1.0,A#1,,,,,,,,,, +77,4,3,1802,0,320.781,1024,1.0,F#2,,,,,,,,,, +77,5,4,1803,0,320.781,,,,,,176,102,0,,,,, +77,6,0,1804,256,321.317,,,,,,176,64,0,,,,,^ +77,7,1,1805,256,321.317,51,16.0,F#7,p,11,144,102,11,,,,, +77,7,1,1805,256,321.423,,,,,,144,102,0,,,,, +77,8,1,1806,307,321.423,51,16.0,G#6,p+,12,144,92,12,,,,, +77,8,1,1806,307,321.53,,,,,,144,92,0,,,,, +77,9,1,1807,358,321.53,51,16.0,F2,mp,14,144,41,14,,,,, +77,9,1,1807,358,321.637,,,,,,144,41,0,,,,, +77,10,1,1808,409,321.637,,,,,,176,102,0,,,,, +77,11,1,1809,,321.852,,8.0,G#6,mf+,18,144,92,18,,,,g, +77,11,1,1809,,321.902,,,,,,144,92,0,,,,, +77,12,1,1810,,321.927,,8.0,F#7,f-,19,144,102,19,,,,g, +77,12,1,1810,,321.977,,,,,,144,102,0,,,,, +77,13,1,1811,512,322.002,1536,1.0,C7,f,20,144,96,20,,,,, +77,14,2,1812,512,322.002,,,,,,176,102,0,,,,, +77,15,2,1813,576,322.136,64,16.0,F4,pp,8,144,65,8,,,,, +77,15,2,1813,576,322.27,,,,,,144,65,0,,,,, +77,16,2,1814,640,322.27,128,8.0,G#3,pp,8,144,56,8,,,,, +77,16,2,1814,640,322.538,,,,,,144,56,0,,,,, +77,17,2,1815,768,322.538,,,,,,176,102,0,,,,, +77,18,2,1816,1024,323.074,,,,,,176,102,0,,,,, +77,19,2,1817,1792,324.681,,,,,,176,102,0,,,,, +77,20,3,1818,1792,324.681,170,4.0,A#1,,,,,,,,,, +77,21,3,1819,1792,324.681,256,4.0,F#2,,,,,,,,,, +77,22,4,1820,1792,324.681,,,,,,176,102,0,,,,, +77,23,2,1821,1962,325.037,86,8.0,D7,ppp,5,144,98,5,,,,, +77,24,3,1822,1962,325.037,86,8.0,F#2,,,,,,,,,, +76,18,3,1769,256,325.187,,,,,,144,34,0,,,,, +77,23,2,1821,1962,325.217,,,,,,144,98,0,,,,, +78,0,0,1823,0,325.217,,,,,,,,,78,,,, +78,1,1,1824,0,325.217,,,,,,176,102,0,,,,, +78,2,3,1825,0,325.217,1536,1.0,F#2,,,,,,,,,, +78,3,4,1826,0,325.217,,,,,,176,102,0,,,,, +77,13,1,1811,512,325.367,,,,,,144,96,0,,,,, +76,30,4,1782,,325.547,,,,,,144,42,0,,,,, +78,5,4,1827,768,326.824,128,8.0,F#3,ppp,5,144,54,5,,,,, +78,4,0,1828,768,326.824,,,,,,176,64,127,,,,,V +78,5,4,1827,768,327.092,,,,,,144,54,0,,,,, +78,6,4,1829,896,327.092,128,8.0,E5,ppp,5,144,76,5,,,,, +78,7,0,1830,1024,327.21,,,,,,176,64,0,,,,,^ +78,6,4,1829,896,327.36,,,,,,144,76,0,,,,, +78,9,4,1831,1024,327.36,1024,1.0,F1,mf,17,144,29,17,,,,, +78,8,0,1832,1024,327.51,,,,,,176,64,127,,,,,V +78,10,1,1833,1536,328.431,512,2.0,F4,pppp,2,144,65,2,,,,, +78,11,3,1834,1536,328.431,512,2.0,G3,pppp,2,144,55,2,,,,, +79,0,0,1835,0,329.502,,,,,,,,,79,,,, +79,1,1,1836,0,329.502,256,4.0,F4,,,,,,,,,, +79,2,3,1837,0,329.502,256,4.0,G3,,,,,,,,,, +79,3,4,1838,0,329.502,256,4.0,F1,,,,,,,,,, +78,10,1,1833,1536,330.038,,,,,,144,65,0,,,,, +78,11,3,1834,1536,330.038,,,,,,144,55,0,,,,, +79,4,0,1839,256,330.038,,,,,,176,64,0,,,,,^ +79,5,1,1840,256,330.038,256,4.0,F5,pppp-,1,144,77,1,,,,, +79,6,3,1841,256,330.038,256,4.0,E2,pppp-,1,144,40,1,,,,, +79,7,4,1842,256,330.038,1024,1.0,E1,pppp,2,144,28,2,,,,, +78,9,4,1831,1024,330.038,,,,,,144,29,0,,,,, +79,5,1,1840,256,330.574,,,,,,144,77,0,,,,, +79,6,3,1841,256,330.574,,,,,,144,40,0,,,,, +79,8,1,1843,512,330.574,,,,,,176,102,0,,,,, +79,9,3,1844,512,330.574,,,,,,176,102,0,,,,, +79,10,4,1845,1280,332.181,256,4.0,E1,,,,,,,,,, +79,13,1,1846,1536,332.717,,,,,,176,102,0,,,,, +79,14,3,1847,1536,332.717,,,,,,176,102,0,,,,, +79,15,4,1848,1536,332.717,,,,,,176,102,0,,,,, +79,11,0,1849,1536,332.717,,,,,,176,64,127,,,,,V +79,7,4,1842,256,332.717,,,,,,144,28,0,,,,, +79,16,3,1850,1621,332.895,171,4.0,F#2,fff,24,144,42,23,,,,, +79,12,1,1851,,332.985,,8.0,D4,fff,24,144,62,23,,,,g, +79,12,1,1851,,333.035,,,,,,144,62,0,,,,, +79,17,1,1852,,333.06,,8.0,F#7,fff,24,144,102,23,,,,g, +79,17,1,1852,,333.11,,,,,,144,102,0,,,,, +79,18,1,1853,,333.135,,8.0,E6,fff,24,144,88,23,,,,g, +79,18,1,1853,,333.185,,,,,,144,88,0,,,,, +79,19,1,1854,,333.21,,8.0,A#4,fff,24,144,70,23,,,,g, +79,19,1,1854,,333.26,,,,,,144,70,0,,,,, +79,20,1,1855,,333.285,,8.0,D#1,fff,24,144,27,23,,,,g, +79,20,1,1855,,333.335,,,,,,144,27,0,,,,, +79,21,1,1856,1664,333.36,,,,,,176,102,0,,,,, +79,22,1,1857,1792,333.627,,,,,,176,102,0,,,,, +79,23,3,1858,1792,333.627,256,4.0,F#2,,,,,,,,,, +80,0,0,1859,0,334.163,,,,,,,,,80,,,, +80,1,1,1860,0,334.163,,,,,,176,102,0,,,,, +80,2,3,1861,0,334.163,2048,0.5,F#2,,,,,,,,,, +80,3,4,1862,0,334.163,,,,,,176,102,0,,,,, +80,4,0,1863,768,335.77,,,,,,176,64,0,,,,,^ +80,5,1,1864,768,335.77,64,16.0,G#5,mf,17,144,80,17,,,,, +80,5,1,1864,768,335.904,,,,,,144,80,0,,,,, +80,6,1,1865,832,335.904,64,16.0,C7,mp-,13,144,96,13,,,,, +80,6,1,1865,832,336.038,,,,,,144,96,0,,,,, +80,7,1,1866,896,336.038,64,16.0,E2,pp+,9,144,40,9,,,,, +80,7,1,1866,896,336.172,,,,,,144,40,0,,,,, +80,8,1,1867,960,336.172,64,16.0,F1,ppp,5,144,29,5,,,,, +80,8,1,1867,960,336.306,,,,,,144,29,0,,,,, +80,9,1,1868,1024,336.306,,,,,,176,102,0,,,,, +81,0,0,1869,0,338.449,,,,,,,,,81,,,, +81,1,1,1870,0,338.449,,,,,,176,102,0,,,,, +81,2,3,1871,0,338.449,2048,0.5,F#2,,,,,,,,,, +81,3,1,1872,1024,340.592,,,,,,176,102,0,,,,, +81,4,1,1873,2048,342.735,,,,,,176,102,0,,,,, +81,5,3,1874,2048,342.735,2048,0.5,F#2,,,,,,,,,, +81,6,1,1875,3072,344.877,,,,,,176,102,0,,,,, +81,7,1,1876,4096,347.02,,,,,,176,102,0,,,,, +81,8,3,1877,4096,347.02,682,1.0,F#2,,,,,,,,,, +79,16,3,1850,1621,348.447,,,,,,144,42,0,,,,, +81,9,3,1878,4778,348.447,342,2.0,C3,ppp,5,144,48,5,,,,, +82,0,0,1879,0,349.163,,,,,,,,,82,,,, +82,1,1,1880,0,349.163,,,,,,176,102,0,,,,, +82,2,3,1881,0,349.163,256,4.0,C3,,,,,,,,,, +81,9,3,1878,4778,349.699,,,,,,144,48,0,,,,, +82,3,3,1882,256,349.699,256,4.0,B2,pppp,2,144,47,2,,,,, +82,4,1,1883,512,350.235,,,,,,176,102,0,,,,, +82,5,3,1884,512,350.235,42,16.0,B2,,,,,,,,,, +82,3,3,1882,256,350.322,,,,,,144,47,0,,,,, +82,6,3,1885,554,350.322,,,,,,176,102,0,,,,, +82,7,1,1886,597,350.412,43,16.0,A#0,pppp,2,144,22,2,,,,, +82,7,1,1886,597,350.502,,,,,,144,22,0,,,,, +82,8,1,1887,640,350.502,42,16.0,F#1,pppp,2,144,30,2,,,,, +82,9,3,1888,640,350.502,,,,,,176,102,0,,,,, +82,8,1,1887,640,350.59,,,,,,144,30,0,,,,, +82,10,1,1889,682,350.59,43,16.0,B1,pppp,2,144,35,2,,,,, +82,10,1,1889,682,350.68,,,,,,144,35,0,,,,, +82,11,1,1890,725,350.68,,,,,,176,102,0,,,,, +82,12,1,1891,768,350.77,,,,,,176,102,0,,,,, +82,13,3,1892,768,350.77,,,,,,176,102,0,,,,, +82,14,0,1893,768,350.77,,,,,,,,,,5941,,, +82,15,1,1894,1024,351.306,256,4.0,A#5,mf,17,144,82,17,,,,, +82,17,3,1895,,351.692,,8.0,G#2,s,0,144,44,0,,,,g, +82,17,3,1895,,351.742,,,,,,144,44,0,,,,, +82,16,1,1896,,351.767,,8.0,C#7,mf,17,144,97,17,,,,g, +82,16,1,1896,,351.817,,,,,,144,97,0,,,,, +83,0,0,1897,0,351.842,,,,,,,,,83,,,, +83,1,1,1898,0,351.842,32,32.0,A#5,,,,,,,,,, +83,2,2,1899,0,351.842,42,16.0,F#1,mp,14,144,30,14,,,,, +83,3,3,1900,0,351.842,256,4.0,G#1,mp,14,144,32,14,,,,, +83,4,4,1901,0,351.842,1024,1.0,G#2,ff,22,144,44,22,,,,, +82,15,1,1894,1024,351.909,,,,,,144,82,0,,,,, +83,5,1,1902,32,351.909,,,,,,176,102,0,,,,, +83,2,2,1899,0,351.93,,,,,,144,30,0,,,,, +83,6,2,1903,42,351.93,86,8.0,G3,f,20,144,55,20,,,,, +83,6,2,1903,42,352.11,,,,,,144,55,0,,,,, +83,7,2,1904,128,352.11,85,8.0,A0,f,20,144,21,20,,,,, +83,7,2,1904,128,352.287,,,,,,144,21,0,,,,, +83,8,2,1905,213,352.287,43,16.0,F5,f,20,144,77,20,,,,, +83,9,1,1906,256,352.377,768,2.0,E6,f,20,144,88,20,,,,, +83,10,2,1907,256,352.377,85,8.0,F5,,,,,,,,,, +83,11,3,1908,256,352.377,85,8.0,G#1,,,,,,,,,, +83,3,3,1900,0,352.555,,,,,,144,32,0,,,,, +83,12,2,1909,341,352.555,171,4.0,C5,pp,8,144,72,8,,,,, +83,13,2,1910,341,352.555,256,4.0,F5,,,,,,,,,, +83,14,3,1911,341,352.555,,,,,,176,102,0,,,,, +83,12,2,1909,341,352.913,,,,,,144,72,0,,,,, +83,15,2,1912,512,352.913,42,16.0,E5,pp,8,144,76,8,,,,, +83,16,2,1913,512,352.913,64,16.0,F5,,,,,,,,,, +83,17,3,1914,512,352.913,,,,,,176,102,0,,,,, +83,18,2,1915,554,353.001,128,8.0,E5,,,,,,,,,, +83,8,2,1905,213,353.225,,,,,,144,77,0,,,,, +83,15,2,1912,512,353.269,,,,,,144,76,0,,,,, +83,19,2,1916,,353.269,,8.0,C#7,ppp,5,144,97,5,,,,g, +83,19,2,1916,,353.319,,,,,,144,97,0,,,,, +83,20,2,1917,,353.344,,8.0,G#3,ppp,5,144,56,5,,,,g, +83,20,2,1917,,353.394,,,,,,144,56,0,,,,, +83,21,2,1918,,353.419,,8.0,D4,ppp,5,144,62,5,,,,g, +83,21,2,1918,,353.469,,,,,,144,62,0,,,,, +83,22,2,1919,682,353.494,86,8.0,C6,pp,8,144,84,8,,,,, +83,22,2,1919,682,353.674,,,,,,144,84,0,,,,, +83,23,2,1920,768,353.674,,,,,,176,102,0,,,,, +83,24,3,1921,768,353.674,,,,,,176,102,0,,,,, +83,25,2,1922,810,353.762,43,16.0,C#7,pp,8,144,97,8,,,,, +83,25,2,1922,810,353.852,,,,,,144,97,0,,,,, +83,26,2,1923,853,353.852,43,16.0,C5,pp+,9,144,72,9,,,,, +83,26,2,1923,853,353.942,,,,,,144,72,0,,,,, +83,27,2,1924,896,353.942,42,16.0,D3,pp+,9,144,50,9,,,,, +83,9,1,1906,256,353.985,,,,,,144,88,0,,,,, +83,4,4,1901,0,353.985,,,,,,144,44,0,,,,, +83,27,2,1924,896,354.03,,,,,,144,50,0,,,,, +83,28,2,1925,938,354.03,,,,,,176,102,0,,,,, +83,29,2,1926,981,354.12,43,16.0,C#6,p-,10,144,85,10,,,,, +83,29,2,1926,981,354.21,,,,,,144,85,0,,,,, +83,30,1,1927,1024,354.21,256,4.0,D4,p,11,144,62,11,,,,, +83,31,2,1928,1024,354.21,,,,,,176,102,0,,,,, +83,32,4,1929,1024,354.21,256,4.0,G#2,p,11,144,44,11,,,,, +84,0,0,1930,0,354.745,,,,,,,,,84,,,, +84,1,1,1931,0,354.745,512,2.0,D4,,,,,,,,,, +84,2,2,1932,0,354.745,,,,,,176,102,0,,,,, +84,3,3,1933,0,354.745,256,4.0,F3,p,11,144,53,11,,,,, +84,4,4,1934,0,354.745,1024,1.0,G#2,,,,,,,,,, +84,5,2,1935,128,355.013,128,8.0,F#1,ppp,5,144,30,5,,,,, +84,3,3,1933,0,355.281,,,,,,144,53,0,,,,, +84,6,2,1936,256,355.281,1024,1.0,F#1,,,,,,,,,, +84,7,3,1937,256,355.281,512,2.0,G1,p,11,144,31,11,,,,, +83,30,1,1927,1024,355.817,,,,,,144,62,0,,,,, +84,9,1,1938,512,355.817,85,8.0,F#7,ff,22,144,102,22,,,,, +84,8,0,1939,512,355.817,,,,,,176,64,127,,,,,V +84,9,1,1938,512,355.995,,,,,,144,102,0,,,,, +84,10,1,1940,597,355.995,85,8.0,D#1,ff,22,144,27,22,,,,, +84,10,1,1940,597,356.172,,,,,,144,27,0,,,,, +84,11,1,1941,682,356.172,86,8.0,A#4,ff,22,144,70,22,,,,, +84,7,3,1937,256,356.352,,,,,,144,31,0,,,,, +84,11,1,1941,682,356.352,,,,,,144,70,0,,,,, +84,12,0,1942,768,356.352,,,,,,176,64,0,,,,,^ +84,13,1,1943,768,356.352,,,,,,176,102,0,,,,, +84,14,3,1944,768,356.352,512,2.0,A1,pppp,2,144,33,2,,,,, +84,15,4,1945,1024,356.888,256,4.0,G#2,,,,,,,,,, +85,0,0,1946,0,357.424,,,,,,,,,85,,,, +85,1,1,1947,0,357.424,1024,1.0,G#4,p,11,144,68,11,,,,, +85,2,2,1948,0,357.424,512,2.0,F#1,,,,,,,,,, +85,3,3,1949,0,357.424,,,,,,176,102,0,,,,, +85,4,4,1950,0,357.424,1024,1.0,G#2,,,,,,,,,, +84,14,3,1944,768,357.649,,,,,,144,33,0,,,,, +85,5,2,1951,512,358.495,170,4.0,D3,ppp,5,144,50,5,,,,, +84,5,2,1935,128,358.72,,,,,,144,30,0,,,,, +85,5,2,1951,512,358.851,,,,,,144,50,0,,,,, +85,7,2,1952,682,358.851,171,4.0,G6,mf,17,144,91,17,,,,, +85,6,0,1953,682,358.851,,,,,,176,64,127,,,,,V +85,1,1,1947,0,359.209,,,,,,144,68,0,,,,, +85,7,2,1952,682,359.209,,,,,,144,91,0,,,,, +85,8,2,1954,853,359.209,171,4.0,G#4,mp,14,144,68,14,,,,, +85,12,4,1955,,359.492,,8.0,F#1,ppp,5,144,30,5,,,,g, +85,12,4,1955,,359.542,,,,,,144,30,0,,,,, +85,8,2,1954,853,359.567,,,,,,144,68,0,,,,, +85,9,1,1956,1024,359.567,256,4.0,C6,f,20,144,84,20,,,,, +85,10,2,1957,1024,359.567,85,8.0,A#5,mf,17,144,82,17,,,,, +85,11,3,1958,1024,359.567,,,,,,176,102,0,,,,, +85,13,4,1959,1024,359.567,256,4.0,G#2,,,,,,,,,, +85,10,2,1957,1024,359.745,,,,,,144,82,0,,,,, +85,14,2,1960,1109,359.745,85,8.0,D3,f-,19,144,50,19,,,,, +85,14,2,1960,1109,359.922,,,,,,144,50,0,,,,, +85,15,2,1961,1194,359.922,86,8.0,G#4,f+,21,144,68,21,,,,, +85,9,1,1956,1024,360.102,,,,,,144,84,0,,,,, +85,15,2,1961,1194,360.102,,,,,,144,68,0,,,,, +85,16,2,1962,,360.102,,8.0,G7,ff+,23,144,103,23,,,,g, +85,16,2,1962,,360.152,,,,,,144,103,0,,,,, +86,0,0,1963,0,360.177,,,,,,,,,86,,,, +86,1,1,1964,0,360.177,1024,1.0,A#5,fff,24,144,82,23,,,,, +86,2,1,1965,0,360.177,1024,1.0,F#6,fff,24,144,90,23,,,,, +86,3,3,1966,0,360.177,,,,,,176,102,0,,,,, +86,4,4,1967,0,360.177,1024,1.0,G#2,,,,,,,,,, +86,5,1,1968,1024,362.32,256,4.0,A#5,,,,,,,,,, +86,6,1,1969,1024,362.32,256,4.0,F#6,,,,,,,,,, +86,7,4,1970,1024,362.32,256,4.0,G#2,,,,,,,,,, +86,1,1,1964,0,362.856,,,,,,144,82,0,,,,, +86,2,1,1965,0,362.856,,,,,,144,90,0,,,,, +87,2,0,1971,0,362.856,,,,,,,,,87,,,, +87,0,3,1972,0,362.856,,,,,,176,102,0,,,,, +87,1,4,1973,0,362.856,128,8.0,G#2,,,,,,,,,, +87,5,2,1974,,362.856,,8.0,D4,mp,14,144,62,14,,,,g, +87,5,2,1974,,362.906,,,,,,144,62,0,,,,, +87,3,1,1975,0,362.931,85,8.0,E6,mp,14,144,88,14,,,,, +87,3,1,1975,0,363.109,,,,,,144,88,0,,,,, +87,4,1,1976,85,363.109,85,8.0,F#7,ff,22,144,102,22,,,,, +87,6,4,1977,128,363.199,128,8.0,C3,ff,22,144,48,22,,,,, +83,32,4,1929,1024,363.274,,,,,,144,44,0,,,,, +87,4,1,1976,85,363.287,,,,,,144,102,0,,,,, +87,7,1,1978,170,363.287,86,8.0,A#4,mf,17,144,70,17,,,,, +87,7,1,1978,170,363.467,,,,,,144,70,0,,,,, +87,8,1,1979,256,363.467,,,,,,176,102,0,,,,, +87,9,4,1980,,363.467,,8.0,D#2,p,11,144,39,11,,,,g, +87,9,4,1980,,363.517,,,,,,144,39,0,,,,, +87,10,4,1981,256,363.542,1024,1.0,C3,,,,,,,,,, +87,11,1,1982,512,364.077,256,4.0,F2,p,11,144,41,11,,,,, +87,11,1,1982,512,364.613,,,,,,144,41,0,,,,, +87,12,1,1983,768,364.613,256,4.0,E4,pp,8,144,64,8,,,,, +87,13,1,1984,,365.074,,8.0,G#5,f,20,144,80,20,,,,g, +87,13,1,1984,,365.124,,,,,,144,80,0,,,,, +87,12,1,1983,768,365.149,,,,,,144,64,0,,,,, +87,14,1,1985,1024,365.149,85,8.0,F#7,f,20,144,102,20,,,,, +87,14,1,1985,1024,365.327,,,,,,144,102,0,,,,, +87,15,1,1986,1109,365.327,85,8.0,C7,f+,21,144,96,21,,,,, +87,15,1,1986,1109,365.505,,,,,,144,96,0,,,,, +87,16,1,1987,1194,365.505,86,8.0,E3,f+,21,144,52,21,,,,, +87,16,1,1987,1194,365.685,,,,,,144,52,0,,,,, +87,17,3,1988,,365.685,,8.0,F1,mp,14,144,29,14,,,,g, +87,17,3,1988,,365.735,,,,,,144,29,0,,,,, +88,0,0,1989,0,365.76,,,,,,,,,88,,,, +88,1,1,1990,0,365.76,256,4.0,F#7,fff,24,144,102,23,,,,, +88,2,3,1991,0,365.76,,,,,,176,102,0,,,,, +88,3,4,1992,0,365.76,256,4.0,C3,,,,,,,,,, +88,1,1,1990,0,366.295,,,,,,144,102,0,,,,, +88,4,1,1993,256,366.295,,,,,,176,102,0,,,,, +88,5,3,1994,256,366.295,,,,,,176,102,0,,,,, +88,6,4,1995,256,366.295,1024,1.0,C3,,,,,,,,,, +88,7,1,1996,298,366.383,43,16.0,G#5,fff,24,144,80,23,,,,, +88,8,1,1997,341,366.473,171,4.0,G#5,,,,,,,,,, +88,9,1,1998,512,366.831,768,2.0,G#5,,,,,,,,,, +89,0,0,1999,0,368.438,,,,,,,,,89,,,, +89,1,1,2000,0,368.438,512,2.0,G#5,,,,,,,,,, +89,2,2,2001,0,368.438,,,,,,176,102,0,,,,, +89,3,3,2002,0,368.438,,,,,,176,102,0,,,,, +89,4,4,2003,0,368.438,1024,1.0,C3,,,,,,,,,, +89,5,1,2004,512,369.51,768,2.0,G#5,,,,,,,,,, +89,6,2,2005,512,369.51,768,2.0,E6,fff,24,144,88,23,,,,, +89,7,2,2006,512,369.51,512,2.0,C#7,fff,24,144,97,23,,,,, +89,8,3,2007,1024,370.581,,,,,,176,102,0,,,,, +89,9,4,2008,1024,370.581,,,,,,176,102,0,,,,, +89,7,2,2006,512,370.656,,,,,,144,97,0,,,,, +87,6,4,1977,128,370.731,,,,,,144,48,0,,,,, +89,10,3,2009,1109,370.759,171,4.0,A0,fff,24,144,21,23,,,,, +90,0,0,2010,0,371.117,,,,,,,,,90,,,, +90,1,1,2011,0,371.117,85,8.0,G#5,,,,,,,,,, +90,2,2,2012,0,371.117,,,,,,176,102,0,,,,, +90,3,3,2013,0,371.117,128,8.0,A0,,,,,,,,,, +89,6,2,2005,512,371.192,,,,,,144,88,0,,,,, +90,4,1,2014,85,371.295,171,4.0,C7,fff,24,144,96,23,,,,, +89,10,3,2009,1109,371.385,,,,,,144,21,0,,,,, +90,5,3,2015,128,371.385,42,16.0,F#2,fff,24,144,42,23,,,,, +90,5,3,2015,128,371.472,,,,,,144,42,0,,,,, +90,6,3,2016,170,371.472,43,16.0,G3,f+,21,144,55,21,,,,, +88,7,1,1996,298,371.52,,,,,,144,80,0,,,,, +90,6,3,2016,170,371.562,,,,,,144,55,0,,,,, +90,7,3,2017,213,371.562,43,16.0,F5,f-,19,144,77,19,,,,, +90,7,3,2017,213,371.652,,,,,,144,77,0,,,,, +90,8,0,2018,256,371.652,,,,,,176,64,0,,,,,^ +90,11,3,2019,,371.652,,8.0,A1,mp,14,144,33,14,,,,g, +90,4,1,2014,85,371.652,,,,,,144,96,0,,,,, +90,11,3,2019,,371.702,,,,,,144,33,0,,,,, +90,9,1,2020,256,371.727,256,4.0,G4,mp,14,144,67,14,,,,, +90,10,2,2021,256,371.727,,,,,,176,102,0,,,,, +90,12,3,2022,256,371.727,,,,,,176,102,0,,,,, +90,13,1,2023,512,372.263,85,8.0,G4,,,,,,,,,, +90,14,2,2024,512,372.263,768,2.0,D4,fff,24,144,62,23,,,,, +90,15,3,2025,512,372.263,,,,,,176,102,0,,,,, +90,16,0,2026,512,372.263,,,,,,,,,,5942,,, +90,9,1,2020,256,372.441,,,,,,144,67,0,,,,, +90,17,1,2027,597,372.441,,,,,,176,102,0,,,,, +90,18,3,2028,682,372.619,86,8.0,F1,fff,24,144,29,23,,,,, +90,19,1,2029,768,372.799,,,,,,176,102,0,,,,, +90,20,3,2030,768,372.799,170,4.0,F1,,,,,,,,,, +90,21,3,2031,938,373.155,43,16.0,F1,,,,,,,,,, +90,18,3,2028,682,373.245,,,,,,144,29,0,,,,, +90,22,3,2032,981,373.245,43,16.0,E3,f,20,144,52,20,,,,, +90,22,3,2032,981,373.335,,,,,,144,52,0,,,,, +90,23,1,2033,1024,373.335,85,8.0,G#5,fff,24,144,80,23,,,,, +90,24,3,2034,1024,373.335,,,,,,176,102,0,,,,, +90,23,1,2033,1024,373.512,,,,,,144,80,0,,,,, +90,25,1,2035,1109,373.512,85,8.0,F#7,ff,22,144,102,22,,,,, +90,25,1,2035,1109,373.69,,,,,,144,102,0,,,,, +90,26,1,2036,1194,373.69,86,8.0,F1,f,20,144,29,20,,,,, +90,14,2,2024,512,373.87,,,,,,144,62,0,,,,, +90,26,1,2036,1194,373.87,,,,,,144,29,0,,,,, +91,0,0,2037,0,373.87,,,,,,,,,91,,,, +91,1,1,2038,0,373.87,,,,,,176,102,0,,,,, +91,2,2,2039,0,373.87,256,4.0,D4,mf+,18,144,62,18,,,,, +91,3,3,2040,0,373.87,,,,,,176,102,0,,,,, +91,4,4,2041,0,373.87,51,16.0,G#4,mf+,18,144,68,18,,,,, +91,4,4,2041,0,373.977,,,,,,144,68,0,,,,, +91,5,4,2042,51,373.977,,,,,,176,102,0,,,,, +91,6,4,2043,102,374.084,102,8.0,F#6,mp+,15,144,90,15,,,,, +91,6,4,2043,102,374.297,,,,,,144,90,0,,,,, +91,7,4,2044,204,374.297,52,16.0,E2,mp-,13,144,40,13,,,,, +91,8,1,2045,256,374.406,256,4.0,E7,fff,24,144,100,23,,,,, +91,9,2,2046,256,374.406,1024,1.0,D4,,,,,,,,,, +91,10,3,2047,256,374.406,,,,,,176,102,0,,,,, +91,11,4,2048,256,374.406,51,16.0,E2,,,,,,,,,, +91,7,4,2044,204,374.513,,,,,,144,40,0,,,,, +91,12,4,2049,307,374.513,,,,,,176,102,0,,,,, +91,14,4,2050,409,374.726,103,8.0,F1,pp,8,144,29,8,,,,, +91,13,0,2051,409,374.726,,,,,,176,64,127,,,,,V +91,8,1,2045,256,374.942,,,,,,144,100,0,,,,, +91,14,4,2050,409,374.942,,,,,,144,29,0,,,,, +91,15,1,2052,512,374.942,170,4.0,G#5,ppp,5,144,80,5,,,,, +91,16,3,2053,512,374.942,,,,,,176,102,0,,,,, +91,17,4,2054,512,374.942,,,,,,176,102,0,,,,, +91,18,0,2055,576,375.076,,,,,,176,64,0,,,,,^ +91,19,3,2056,576,375.076,128,8.0,F4,p,11,144,65,11,,,,, +91,20,1,2057,682,375.297,86,8.0,C6,pppp,2,144,84,2,,,,, +91,15,1,2052,512,375.297,,,,,,144,80,0,,,,, +91,19,3,2056,576,375.344,,,,,,144,65,0,,,,, +91,21,3,2058,704,375.344,32,32.0,F4,pp+,9,144,65,9,,,,, +91,21,3,2058,704,375.41,,,,,,144,65,0,,,,, +91,22,3,2059,736,375.41,32,32.0,F#1,pp,8,144,30,8,,,,, +91,22,3,2059,736,375.477,,,,,,144,30,0,,,,, +91,23,1,2060,768,375.477,,,,,,176,102,0,,,,, +91,24,3,2061,768,375.477,,,,,,176,102,0,,,,, +91,25,4,2062,768,375.477,,,,,,176,102,0,,,,, +91,20,1,2057,682,375.477,,,,,,144,84,0,,,,, +91,26,3,2063,810,375.565,43,16.0,G#2,ppp,5,144,44,5,,,,, +91,27,3,2064,853,375.655,43,16.0,F#1,ppp,5,144,30,5,,,,, +91,26,3,2063,810,375.73,,,,,,144,44,0,,,,, +91,27,3,2064,853,375.745,,,,,,144,30,0,,,,, +91,28,3,2065,896,375.745,128,8.0,C3,ppp,5,144,48,5,,,,, +91,28,3,2065,896,376.013,,,,,,144,48,0,,,,, +91,29,3,2066,1024,376.013,,,,,,176,102,0,,,,, +92,0,0,2067,0,376.549,,,,,,,,,92,,,, +92,1,0,2068,0,376.549,,,,,,,,,,5943,,, +92,3,1,2069,0,376.549,,,,,,176,102,0,,,,, +92,4,3,2070,0,376.549,1024,1.0,F#1,fff,24,144,30,23,,,,, +92,2,0,2071,0,376.549,,,,,,176,64,127,,,,,V +91,2,2,2039,0,376.624,,,,,,144,62,0,,,,, +92,5,3,2072,1024,378.692,256,4.0,F#1,,,,,,,,,, +93,0,0,2073,0,379.227,,,,,,,,,93,,,, +93,1,0,2074,0,379.227,,,,,,176,64,0,,,,,^ +93,2,1,2075,0,379.227,1536,1.0,G#4,p,11,144,68,11,,,,, +93,3,3,2076,0,379.227,1536,1.0,F#1,,,,,,,,,, +93,4,1,2077,1536,382.442,768,2.0,G#4,,,,,,,,,, +93,5,3,2078,1536,382.442,768,2.0,F#1,,,,,,,,,, +93,7,3,2079,,383.974,,8.0,G#1,s,0,144,32,0,,,,g, +93,6,1,2080,,383.974,,8.0,D4,s,0,144,62,0,,,,g, +93,7,3,2079,,384.024,,,,,,144,32,0,,,,, +93,6,1,2080,,384.024,,,,,,144,62,0,,,,, +92,4,3,2070,0,384.049,,,,,,144,30,0,,,,, +93,2,1,2075,0,384.049,,,,,,144,68,0,,,,, +94,0,0,2081,0,384.049,,,,,,,,,94,,,, +94,2,1,2082,,384.049,,8.0,F#4,mf,17,144,66,17,,,,g, +94,6,4,2083,,384.049,,8.0,F3,pp,8,144,53,8,,,,g, +94,2,1,2082,,384.099,,,,,,144,66,0,,,,, +94,6,4,2083,,384.099,,,,,,144,53,0,,,,, +94,7,4,2084,,384.124,,8.0,C3,pp+,9,144,48,9,,,,g, +94,7,4,2084,,384.174,,,,,,144,48,0,,,,, +94,3,1,2085,,384.199,,8.0,F4,ff,22,144,65,22,,,,g, +94,3,1,2085,,384.249,,,,,,144,65,0,,,,, +94,8,4,2086,,384.274,,8.0,F#2,p,11,144,42,11,,,,g, +94,8,4,2086,,384.324,,,,,,144,42,0,,,,, +94,9,4,2087,,384.349,,8.0,C2,f,20,144,36,20,,,,g, +94,9,4,2087,,384.399,,,,,,144,36,0,,,,, +94,4,1,2088,0,384.499,896,2.0,E5,f,20,144,76,20,,,,, +94,5,3,2089,0,384.499,,,,,,176,102,0,,,,, +94,10,4,2090,0,384.499,1024,1.0,B0,ff,22,144,23,22,,,,, +94,11,4,2091,0,384.499,1024,1.0,G#1,ff,22,144,32,22,,,,, +94,1,0,2092,0,384.499,,,,,,176,64,127,,,,,V +94,11,4,2091,0,385.436,,,,,,144,32,0,,,,, +94,12,3,2093,448,385.436,64,16.0,G#1,ff,22,144,32,22,,,,, +94,13,3,2094,512,385.57,,,,,,176,102,0,,,,, +94,14,0,2095,896,386.257,,,,,,176,64,0,,,,,^ +94,4,1,2088,0,386.374,,,,,,144,76,0,,,,, +94,15,1,2096,896,386.374,,,,,,176,102,0,,,,, +94,16,3,2097,896,386.374,32,32.0,A#5,f,20,144,82,20,,,,, +94,16,3,2097,896,386.441,,,,,,144,82,0,,,,, +94,18,3,2098,928,386.441,32,32.0,C1,f,20,144,24,20,,,,, +94,18,3,2098,928,386.508,,,,,,144,24,0,,,,, +94,19,3,2099,960,386.508,64,16.0,F2,f,20,144,41,20,,,,, +94,25,0,2100,1034,386.513,,,,,,176,64,0,,,,,^ +94,17,0,2101,928,386.557,,,,,,176,64,127,,,,,V +94,20,1,2102,1024,386.642,,,,,,176,102,0,,,,, +94,21,3,2103,1024,386.642,1024,1.0,F2,,,,,,,,,, +94,22,3,2104,1024,386.642,1024,1.0,D3,f,20,144,50,20,,,,, +94,23,3,2105,1024,386.642,1024,1.0,C4,p,11,144,60,11,,,,, +94,24,4,2106,1024,386.642,,,,,,176,102,0,,,,, +94,10,4,2090,0,386.642,,,,,,144,23,0,,,,, +94,12,3,2093,448,386.642,,,,,,144,32,0,,,,, +94,25,0,2107,1034,386.813,,,,,,176,64,127,,,,,V +94,26,1,2108,1194,386.997,86,8.0,E4,mf,17,144,64,17,,,,, +94,27,1,2109,1280,387.177,768,2.0,E4,,,,,,,,,, +94,28,4,2110,1536,387.713,,,,,,176,102,0,,,,, +94,29,4,2111,1621,387.891,171,4.0,G#1,p,11,144,32,11,,,,, +94,30,4,2112,1792,388.249,256,4.0,G#1,,,,,,,,,, +94,31,0,2113,2047,388.783,,,,,,176,64,0,,,,,^ +95,0,0,2114,0,388.785,,,,,,,,,95,,,, +95,1,0,2115,0,388.785,,,,,,,,,,5944,,, +95,2,1,2116,0,388.785,1024,1.0,G#3,pp,8,144,56,8,,,,, +95,3,2,2117,0,388.785,,,,,,176,102,0,,,,, +95,4,3,2118,0,388.785,384,4.0,C#2,ff,22,144,37,22,,,,, +95,5,4,2119,0,388.785,25,32.0,C2,mp,14,144,36,14,,,,, +95,5,4,2119,0,388.837,,,,,,144,36,0,,,,, +95,6,4,2120,25,388.837,26,32.0,B4,f,20,144,71,20,,,,, +95,6,4,2120,25,388.891,,,,,,144,71,0,,,,, +95,7,4,2121,51,388.891,25,32.0,E4,f,20,144,64,20,,,,, +95,7,4,2121,51,388.944,,,,,,144,64,0,,,,, +95,8,4,2122,76,388.944,26,32.0,F2,f,20,144,41,20,,,,, +95,8,4,2122,76,388.998,,,,,,144,41,0,,,,, +95,9,4,2123,102,388.998,26,32.0,C2,f,20,144,36,20,,,,, +95,9,4,2123,102,389.052,,,,,,144,36,0,,,,, +95,10,4,2124,128,389.052,128,8.0,E4,f,20,144,64,20,,,,, +94,19,3,2099,960,389.235,,,,,,144,41,0,,,,, +94,22,3,2104,1024,389.235,,,,,,144,50,0,,,,, +94,23,3,2105,1024,389.235,,,,,,144,60,0,,,,, +94,26,1,2108,1194,389.235,,,,,,144,64,0,,,,, +94,29,4,2111,1621,389.235,,,,,,144,32,0,,,,, +95,11,4,2125,256,389.32,170,4.0,E4,,,,,,,,,, +95,12,3,2126,384,389.588,128,8.0,D#1,f,20,144,27,20,,,,, +95,4,3,2118,0,389.588,,,,,,144,37,0,,,,, +95,13,4,2127,426,389.676,43,16.0,E4,,,,,,,,,, +95,10,4,2124,128,389.766,,,,,,144,64,0,,,,, +95,14,4,2128,469,389.766,43,16.0,G#1,mp,14,144,32,14,,,,, +95,15,3,2129,512,389.856,1536,1.0,D#1,,,,,,,,,, +95,16,4,2130,512,389.856,256,4.0,G#1,,,,,,,,,, +95,17,4,2131,768,390.392,42,16.0,G#1,,,,,,,,,, +95,14,4,2128,469,390.48,,,,,,144,32,0,,,,, +95,18,4,2132,810,390.48,43,16.0,F3,pp,8,144,53,8,,,,, +95,19,4,2133,853,390.57,171,4.0,F3,,,,,,,,,, +95,18,4,2132,810,390.927,,,,,,144,53,0,,,,, +95,20,1,2134,1024,390.927,128,8.0,G#3,,,,,,,,,, +95,21,2,2135,1024,390.927,1024,1.0,B1,p,11,144,35,11,,,,, +95,22,4,2136,1024,390.927,,,,,,176,102,0,,,,, +95,23,1,2137,,391.12,,8.0,E4,f,20,144,64,20,,,,g, +95,23,1,2137,,391.17,,,,,,144,64,0,,,,, +95,24,1,2138,1152,391.195,85,8.0,C5,ppp,5,144,72,5,,,,, +95,25,1,2139,1152,391.195,128,8.0,A#5,f,20,144,82,20,,,,, +95,2,1,2116,0,391.195,,,,,,144,56,0,,,,, +95,24,1,2138,1152,391.373,,,,,,144,72,0,,,,, +95,26,1,2140,1237,391.373,43,16.0,F2,mf,17,144,41,17,,,,, +95,26,1,2140,1237,391.463,,,,,,144,41,0,,,,, +95,28,1,2141,1280,391.463,256,4.0,D4,p,11,144,62,11,,,,, +95,29,4,2142,1280,391.463,,,,,,176,102,0,,,,, +95,27,0,2143,1280,391.463,,,,,,176,64,127,,,,,V +95,25,1,2139,1152,391.463,,,,,,144,82,0,,,,, +95,28,1,2141,1280,391.999,,,,,,144,62,0,,,,, +95,30,1,2144,1536,391.999,512,2.0,F#4,mp,14,144,66,14,,,,, +95,31,1,2145,1536,391.999,512,2.0,A#4,fff,24,144,70,23,,,,, +95,32,4,2146,1536,391.999,256,4.0,A#5,mf,17,144,82,17,,,,, +95,32,4,2146,1536,392.535,,,,,,144,82,0,,,,, +95,33,4,2147,1792,392.535,256,4.0,E4,p,11,144,64,11,,,,, +95,34,0,2148,2047,393.068,,,,,,176,64,0,,,,,^ +95,30,1,2144,1536,393.07,,,,,,144,66,0,,,,, +95,31,1,2145,1536,393.07,,,,,,144,70,0,,,,, +95,33,4,2147,1792,393.07,,,,,,144,64,0,,,,, +96,0,0,2149,0,393.07,,,,,,,,,96,,,, +96,1,1,2150,0,393.07,,,,,,176,102,0,,,,, +96,2,2,2151,0,393.07,32,32.0,A#6,p,11,144,94,11,,,,, +96,3,3,2152,0,393.07,384,4.0,A#3,pp,8,144,58,8,,,,, +96,4,4,2153,0,393.07,,,,,,176,102,0,,,,, +95,12,3,2126,384,393.07,,,,,,144,27,0,,,,, +95,21,2,2135,1024,393.07,,,,,,144,35,0,,,,, +96,2,2,2151,0,393.137,,,,,,144,94,0,,,,, +96,5,1,2154,32,393.137,32,32.0,C#6,p+,12,144,85,12,,,,, +96,6,2,2155,32,393.137,32,32.0,F4,p+,12,144,65,12,,,,, +96,5,1,2154,32,393.204,,,,,,144,85,0,,,,, +96,6,2,2155,32,393.204,,,,,,144,65,0,,,,, +96,7,1,2156,64,393.204,32,32.0,C5,mp,14,144,72,14,,,,, +96,8,2,2157,64,393.204,32,32.0,F#4,mp,14,144,66,14,,,,, +96,7,1,2156,64,393.271,,,,,,144,72,0,,,,, +96,8,2,2157,64,393.271,,,,,,144,66,0,,,,, +96,9,1,2158,96,393.271,,,,,,176,102,0,,,,, +96,10,2,2159,96,393.271,32,32.0,F4,p+,12,144,65,12,,,,, +96,11,4,2160,96,393.271,32,32.0,G3,p,11,144,55,11,,,,, +96,10,2,2159,96,393.338,,,,,,144,65,0,,,,, +96,11,4,2160,96,393.338,,,,,,144,55,0,,,,, +96,12,1,2161,128,393.338,128,8.0,E7,p,11,144,100,11,,,,, +96,13,2,2162,128,393.338,128,8.0,D4,p,11,144,62,11,,,,, +96,14,4,2163,128,393.338,128,8.0,A3,ppp,5,144,57,5,,,,, +96,12,1,2161,128,393.606,,,,,,144,100,0,,,,, +96,13,2,2162,128,393.606,,,,,,144,62,0,,,,, +96,14,4,2163,128,393.606,,,,,,144,57,0,,,,, +96,15,1,2164,256,393.606,,,,,,176,102,0,,,,, +96,16,2,2165,256,393.606,,,,,,176,102,0,,,,, +96,17,4,2166,256,393.606,,,,,,176,102,0,,,,, +96,3,3,2152,0,393.874,,,,,,144,58,0,,,,, +96,19,1,2167,384,393.874,128,8.0,F7,ppp,5,144,101,5,,,,, +96,20,2,2168,384,393.874,128,8.0,A6,mp,14,144,93,14,,,,, +96,21,3,2169,384,393.874,128,8.0,G#4,ppp,5,144,68,5,,,,, +96,22,0,2170,384,393.874,,,,,,,,,,5945,,, +96,18,0,2171,384,393.874,,,,,,176,64,127,,,,,V +96,19,1,2167,384,394.142,,,,,,144,101,0,,,,, +96,20,2,2168,384,394.142,,,,,,144,93,0,,,,, +96,21,3,2169,384,394.142,,,,,,144,68,0,,,,, +96,23,1,2172,512,394.142,,,,,,176,102,0,,,,, +96,24,2,2173,512,394.142,,,,,,176,102,0,,,,, +96,25,3,2174,512,394.142,,,,,,176,102,0,,,,, +96,26,4,2175,512,394.142,,,,,,176,102,0,,,,, +96,27,3,2176,896,394.945,128,8.0,G#1,p,11,144,32,11,,,,, +96,27,3,2176,896,395.213,,,,,,144,32,0,,,,, +96,28,1,2177,1024,395.213,,,,,,176,102,0,,,,, +96,29,2,2178,1024,395.213,,,,,,176,102,0,,,,, +96,30,3,2179,1024,395.213,,,,,,176,102,0,,,,, +96,31,4,2180,1024,395.213,,,,,,176,102,0,,,,, +96,32,0,2181,1216,395.615,,,,,,176,64,0,,,,,^ +96,33,3,2182,1216,395.615,64,16.0,F3,ppp,5,144,53,5,,,,, +96,34,3,2183,1280,395.749,768,2.0,F3,,,,,,,,,, +97,0,0,2184,0,397.356,,,,,,,,,97,,,, +97,1,1,2185,0,397.356,,,,,,176,102,0,,,,, +97,2,3,2186,0,397.356,128,8.0,F3,,,,,,,,,, +97,3,4,2187,0,397.356,2048,0.5,D#1,ppp,5,144,27,5,,,,, +96,33,3,2182,1216,397.624,,,,,,144,53,0,,,,, +97,4,3,2188,128,397.624,,,,,,176,102,0,,,,, +97,5,3,2189,256,397.892,,,,,,176,102,0,,,,, +97,6,3,2190,1024,399.499,42,16.0,C3,mp,14,144,48,14,,,,, +97,6,3,2190,1024,399.587,,,,,,144,48,0,,,,, +97,7,3,2191,1066,399.587,43,16.0,E5,mf,17,144,76,17,,,,, +97,7,3,2191,1066,399.677,,,,,,144,76,0,,,,, +97,8,3,2192,1109,399.677,43,16.0,F3,f-,19,144,53,19,,,,, +97,8,3,2192,1109,399.767,,,,,,144,53,0,,,,, +97,10,3,2193,1152,399.767,128,8.0,C2,ff,22,144,36,22,,,,, +97,9,0,2194,1152,399.767,,,,,,176,64,127,,,,,V +97,11,3,2195,1280,400.035,768,2.0,C2,,,,,,,,,, +97,3,4,2187,0,401.642,,,,,,144,27,0,,,,, +97,10,3,2193,1152,401.642,,,,,,144,36,0,,,,, +98,0,0,2196,0,401.642,,,,,,,,,98,,,, +98,1,1,2197,0,401.642,,,,,,176,102,0,,,,, +98,2,3,2198,0,401.642,512,2.0,C2,pp,8,144,36,8,,,,, +98,3,4,2199,0,401.642,,,,,,176,102,0,,,,, +98,4,0,2200,512,402.563,,,,,,176,64,0,,,,,^ +98,5,1,2201,,402.638,,8.0,C#6,pp,8,144,85,8,,,,g, +98,5,1,2201,,402.688,,,,,,144,85,0,,,,, +98,2,3,2198,0,402.713,,,,,,144,36,0,,,,, +98,6,1,2202,512,402.713,128,8.0,E6,pp,8,144,88,8,,,,, +98,7,1,2203,512,402.713,128,8.0,A#6,ff,22,144,94,22,,,,, +98,8,3,2204,512,402.713,128,8.0,C2,ppp,5,144,36,5,,,,, +98,9,4,2205,512,402.713,,,,,,176,102,0,,,,, +98,4,0,2206,512,402.863,,,,,,176,64,127,,,,,V +98,10,0,2207,640,402.965,,,,,,176,64,0,,,,,^ +98,6,1,2202,512,402.981,,,,,,144,88,0,,,,, +98,7,1,2203,512,402.981,,,,,,144,94,0,,,,, +98,8,3,2204,512,402.981,,,,,,144,36,0,,,,, +98,11,1,2208,640,402.981,128,8.0,F#4,p,11,144,66,11,,,,, +98,12,3,2209,640,402.981,128,8.0,B1,ppp-,4,144,35,4,,,,, +98,13,4,2210,640,402.981,128,8.0,F#1,ppp-,4,144,30,4,,,,, +98,13,4,2210,640,403.249,,,,,,144,30,0,,,,, +98,15,1,2211,768,403.249,1024,1.0,F#4,,,,,,,,,, +98,16,3,2212,768,403.249,1024,1.0,B1,,,,,,,,,, +98,17,4,2213,768,403.249,,,,,,176,102,0,,,,, +98,14,0,2214,768,403.265,,,,,,176,64,127,,,,,V +98,18,4,2215,1024,403.785,,,,,,176,102,0,,,,, +98,19,4,2216,1216,404.186,64,16.0,F3,f,20,144,53,20,,,,, +98,20,4,2217,1280,404.32,768,2.0,F3,,,,,,,,,, +98,21,0,2218,1792,405.242,,,,,,176,64,0,,,,,^ +98,11,1,2208,640,405.392,,,,,,144,66,0,,,,, +98,22,1,2219,1792,405.392,,,,,,176,102,0,,,,, +98,23,3,2220,1792,405.392,256,4.0,B0,mp,14,144,23,14,,,,, +98,24,3,2221,1792,405.392,256,4.0,B1,,,,,,,,,, +98,21,0,2222,1792,405.542,,,,,,176,64,127,,,,,V +99,0,0,2223,0,405.927,,,,,,,,,99,,,, +99,1,1,2224,0,405.927,,,,,,176,102,0,,,,, +99,2,3,2225,0,405.927,1792,1.0,B0,,,,,,,,,, +99,3,3,2226,0,405.927,1024,1.0,B1,,,,,,,,,, +99,4,4,2227,0,405.927,2048,0.5,F3,,,,,,,,,, +99,5,1,2228,512,406.999,768,2.0,D4,p,11,144,62,11,,,,, +98,12,3,2209,640,408.07,,,,,,144,35,0,,,,, +99,5,1,2228,512,408.606,,,,,,144,62,0,,,,, +99,6,1,2229,1280,408.606,512,2.0,F4,pp-,7,144,65,7,,,,, +99,9,1,2230,,409.602,,8.0,C5,pp,8,144,72,8,,,,g, +99,8,1,2231,,409.602,,8.0,F#4,pp,8,144,66,8,,,,g, +99,9,1,2230,,409.652,,,,,,144,72,0,,,,, +99,8,1,2231,,409.652,,,,,,144,66,0,,,,, +99,6,1,2229,1280,409.677,,,,,,144,65,0,,,,, +99,7,0,2232,1792,409.677,,,,,,176,64,0,,,,,^ +99,10,1,2233,1792,409.677,,,,,,176,102,0,,,,, +99,11,3,2234,1792,409.677,,,,,,176,102,0,,,,, +98,23,3,2220,1792,409.677,,,,,,144,23,0,,,,, +100,0,0,2235,0,410.213,,,,,,,,,100,,,, +100,1,0,2236,0,410.213,,,,,,,,,,5946,,, +100,2,1,2237,0,410.213,,,,,,176,102,0,,,,, +100,3,3,2238,0,410.213,2048,0.5,D4,pp-,7,144,62,7,,,,, +100,4,3,2239,0,410.213,2048,0.5,E5,pp-,7,144,76,7,,,,, +98,19,4,2216,1216,410.213,,,,,,144,53,0,,,,, +100,5,0,2240,316,410.874,,,,,,176,64,127,,,,,V +100,6,1,2241,1792,413.963,256,4.0,F#7,ff,22,144,102,22,,,,, +100,6,1,2241,1792,414.499,,,,,,144,102,0,,,,, +101,0,0,2242,0,414.499,,,,,,,,,101,,,, +101,1,1,2243,0,414.499,,,,,,176,102,0,,,,, +101,2,3,2244,0,414.499,1024,1.0,D4,,,,,,,,,, +101,3,3,2245,0,414.499,1024,1.0,E5,,,,,,,,,, +101,4,4,2246,0,414.499,,,,,,176,102,0,,,,, +100,3,3,2238,0,416.642,,,,,,144,62,0,,,,, +100,4,3,2239,0,416.642,,,,,,144,76,0,,,,, +101,5,0,2247,1024,416.642,,,,,,176,64,0,,,,,^ +101,6,3,2248,1024,416.642,1024,1.0,A#2,ppp,5,144,46,5,,,,, +101,7,3,2249,1024,416.642,1024,1.0,A3,ppp,5,144,57,5,,,,, +101,8,4,2250,1024,416.642,128,8.0,D#1,mp,14,144,27,14,,,,, +101,9,4,2251,1024,416.642,128,8.0,G#1,mp,14,144,32,14,,,,, +101,8,4,2250,1024,416.91,,,,,,144,27,0,,,,, +101,9,4,2251,1024,416.91,,,,,,144,32,0,,,,, +101,10,4,2252,1152,416.91,,,,,,176,102,0,,,,, +101,11,4,2253,1280,417.177,768,2.0,D3,f,20,144,50,20,,,,, +101,6,3,2248,1024,418.785,,,,,,144,46,0,,,,, +101,7,3,2249,1024,418.785,,,,,,144,57,0,,,,, +101,11,4,2253,1280,418.785,,,,,,144,50,0,,,,, +102,0,0,2254,0,418.785,,,,,,,,,102,,,, +102,1,1,2255,0,418.785,256,4.0,D7,ppp,5,144,98,5,,,,, +102,2,1,2256,0,418.785,256,4.0,G7,ppp,5,144,103,5,,,,, +102,3,2,2257,0,418.785,,,,,,176,102,0,,,,, +102,4,3,2258,0,418.785,128,8.0,G#2,ppp,5,144,44,5,,,,, +102,4,3,2258,0,419.052,,,,,,144,44,0,,,,, +102,5,3,2259,128,419.052,,,,,,176,102,0,,,,, +102,1,1,2255,0,419.32,,,,,,144,98,0,,,,, +102,2,1,2256,0,419.32,,,,,,144,103,0,,,,, +102,6,1,2260,256,419.32,,,,,,176,102,0,,,,, +102,7,2,2261,256,419.32,,,,,,176,102,0,,,,, +102,8,3,2262,256,419.32,256,4.0,C3,ppp,5,144,48,5,,,,, +102,8,3,2262,256,419.856,,,,,,144,48,0,,,,, +102,9,1,2263,,419.856,,8.0,G#4,pp,8,144,68,8,,,,g, +102,9,1,2263,,419.906,,,,,,144,68,0,,,,, +102,10,1,2264,,419.931,,8.0,G#4,,,,,,,,,g, +102,11,1,2265,,420.006,,8.0,D5,pp-,7,144,74,7,,,,g, +102,11,1,2265,,420.056,,,,,,144,74,0,,,,, +102,12,1,2266,512,420.081,128,8.0,C3,ppp,5,144,48,5,,,,, +102,13,2,2267,512,420.081,,,,,,176,102,0,,,,, +102,14,3,2268,,420.081,,8.0,F3,ppp,5,144,53,5,,,,g, +102,14,3,2268,,420.131,,,,,,144,53,0,,,,, +102,15,3,2269,,420.156,,8.0,F#2,ppp,5,144,42,5,,,,g, +102,15,3,2269,,420.206,,,,,,144,42,0,,,,, +102,16,3,2270,,420.231,,8.0,B2,ppp,5,144,47,5,,,,g, +102,17,3,2271,,420.231,,8.0,F3,ppp,5,144,53,5,,,,g, +102,16,3,2270,,420.281,,,,,,144,47,0,,,,, +102,17,3,2271,,420.281,,,,,,144,53,0,,,,, +102,12,1,2266,512,420.349,,,,,,144,48,0,,,,, +102,18,3,2272,512,420.381,,,,,,176,102,0,,,,, +102,19,1,2273,640,420.649,0,8.0,C6,ppp,5,,,,,,,, +102,20,1,2274,640,420.649,128,8.0,B6,ppp,5,144,95,5,,,,, +102,20,1,2274,640,420.917,,,,,,144,95,0,,,,, +102,21,1,2275,768,420.917,,,,,,176,102,0,,,,, +102,22,2,2276,768,420.917,,,,,,176,102,0,,,,, +102,26,3,2277,,421.377,,8.0,F#2,s,0,144,42,0,,,,g, +102,25,3,2278,,421.377,,8.0,G#1,s,0,144,32,0,,,,g, +102,26,3,2277,,421.427,,,,,,144,42,0,,,,, +102,25,3,2278,,421.427,,,,,,144,32,0,,,,, +102,23,1,2279,1024,421.452,85,8.0,G#2,ppp,5,144,44,5,,,,, +102,24,2,2280,1024,421.452,,,,,,176,102,0,,,,, +102,27,3,2281,1024,421.452,1024,1.0,G#1,ppp,5,144,32,5,,,,, +102,28,3,2282,1024,421.452,1024,1.0,F#2,ppp,5,144,42,5,,,,, +102,23,1,2279,1024,421.63,,,,,,144,44,0,,,,, +102,29,1,2283,1109,421.63,85,8.0,C3,ppp,5,144,48,5,,,,, +102,28,3,2282,1024,421.808,,,,,,144,42,0,,,,, +102,29,1,2283,1109,421.808,,,,,,144,48,0,,,,, +102,30,1,2284,1194,421.808,86,8.0,F#2,ppp,5,144,42,5,,,,, +102,31,1,2285,1280,421.988,,,,,,176,102,0,,,,, +102,32,2,2286,1280,421.988,,,,,,176,102,0,,,,, +102,33,1,2287,,422.374,,8.0,F4,ppp,5,144,65,5,,,,g, +102,33,1,2287,,422.424,,,,,,144,65,0,,,,, +102,34,1,2288,,422.449,,8.0,F#1,ppp,5,144,30,5,,,,g, +102,34,1,2288,,422.499,,,,,,144,30,0,,,,, +102,35,1,2289,1536,422.524,768,2.0,D3,p,11,144,50,11,,,,, +102,36,2,2290,1536,422.524,256,4.0,C3,ppp,5,144,48,5,,,,, +102,36,2,2290,1536,423.06,,,,,,144,48,0,,,,, +102,37,2,2291,1792,423.06,,,,,,176,102,0,,,,, +102,41,4,2292,,423.445,,8.0,A2,pp,8,144,45,8,,,,g, +102,41,4,2292,,423.495,,,,,,144,45,0,,,,, +102,44,4,2293,,423.52,,8.0,C5,pp,8,144,72,8,,,,g, +102,43,4,2294,,423.52,,8.0,A#3,pp,8,144,58,8,,,,g, +102,42,4,2295,,423.52,,8.0,C#1,pp,8,144,25,8,,,,g, +102,44,4,2293,,423.57,,,,,,144,72,0,,,,, +102,43,4,2294,,423.57,,,,,,144,58,0,,,,, +102,42,4,2295,,423.57,,,,,,144,25,0,,,,, +102,38,2,2296,2048,423.595,,,,,,176,102,0,,,,, +102,39,3,2297,2048,423.595,,,,,,176,102,0,,,,, +102,40,0,2298,2048,423.595,,,,,,,,,,5947,,, +102,27,3,2281,1024,423.595,,,,,,144,32,0,,,,, +102,30,1,2284,1194,423.595,,,,,,144,42,0,,,,, +102,35,1,2289,1536,424.131,,,,,,144,50,0,,,,, +103,0,0,2299,0,424.131,,,,,,,,,103,,,, +103,1,0,2300,0,424.131,,,,,,,,,,,104,, +103,3,1,2301,0,424.131,128,8.0,D5,p,11,144,74,11,,,,, +103,4,2,2302,0,424.131,512,2.0,D4,f,20,144,62,20,,,,, +103,5,3,2303,0,424.131,21,32.0,C#4,f,20,144,61,20,,,,, +103,6,4,2304,0,424.131,,,,,,176,102,0,,,,, +103,2,0,2305,0,424.131,,,,,,176,64,127,,,,,V +103,5,3,2303,0,424.178,,,,,,144,61,0,,,,, +103,7,3,2306,21,424.178,21,32.0,G#1,ff,22,144,32,22,,,,, +103,7,3,2306,21,424.226,,,,,,144,32,0,,,,, +103,8,0,2307,42,424.226,,,,,,176,64,0,,,,,^ +103,9,3,2308,42,424.226,43,16.0,D#1,ff,22,144,27,22,,,,, +103,10,3,2309,85,424.323,171,4.0,D#1,,,,,,,,,, +103,3,1,2301,0,424.419,,,,,,144,74,0,,,,, +103,11,1,2310,128,424.419,,,,,,176,102,0,,,,, +103,12,1,2311,192,424.564,64,16.0,A4,pp,8,144,69,8,,,,, +103,13,1,2312,256,424.708,256,4.0,A4,,,,,,,,,, +103,14,3,2313,256,424.708,85,8.0,D#1,,,,,,,,,, +103,15,4,2314,256,424.708,,,,,,176,102,0,,,,, +103,16,3,2315,341,424.9,171,4.0,B5,p,11,144,83,11,,,,, +103,17,4,2316,341,424.9,85,8.0,G6,mp+,15,144,91,15,,,,, +103,18,4,2317,426,425.091,86,8.0,A#4,mp-,13,144,70,13,,,,, +103,9,3,2308,42,425.125,,,,,,144,27,0,,,,, +103,18,4,2317,426,425.285,,,,,,144,70,0,,,,, +103,20,1,2318,512,425.285,,,,,,176,102,0,,,,, +103,21,2,2319,512,425.285,,,,,,176,102,0,,,,, +103,22,3,2320,512,425.285,256,4.0,A#2,p,11,144,46,11,,,,, +103,23,4,2321,512,425.285,170,4.0,G2,ppp,5,144,43,5,,,,, +103,19,0,2322,512,425.285,,,,,,176,64,127,,,,,V +103,17,4,2316,341,425.391,,,,,,144,91,0,,,,, +103,24,2,2323,576,425.429,64,16.0,G3,p,11,144,55,11,,,,, +103,24,2,2323,576,425.573,,,,,,144,55,0,,,,, +103,25,2,2324,640,425.573,42,16.0,F#7,f,20,144,102,20,,,,, +103,16,3,2315,341,425.585,,,,,,144,83,0,,,,, +103,23,4,2321,512,425.668,,,,,,144,43,0,,,,, +103,25,2,2324,640,425.668,,,,,,144,102,0,,,,, +103,26,0,2325,682,425.668,,,,,,176,64,0,,,,,^ +103,27,2,2326,682,425.668,43,16.0,D#1,mf-,16,144,27,16,,,,, +103,28,4,2327,682,425.668,,,,,,176,102,0,,,,, +103,27,2,2326,682,425.765,,,,,,144,27,0,,,,, +103,29,2,2328,725,425.765,43,16.0,E6,p,11,144,88,11,,,,, +103,30,0,2329,725,425.765,,,,,,,,,,5948,,, +103,4,2,2302,0,425.81,,,,,,144,62,0,,,,, +103,12,1,2311,192,425.81,,,,,,144,69,0,,,,, +103,29,2,2328,725,425.862,,,,,,144,88,0,,,,, +103,31,1,2330,768,425.862,64,16.0,B5,mf,17,144,83,17,,,,, +103,32,2,2331,768,425.862,128,8.0,F5,p,11,144,77,11,,,,, +103,33,3,2332,768,425.862,,,,,,176,102,0,,,,, +103,34,4,2333,768,425.862,128,8.0,C3,ppp,5,144,48,5,,,,, +103,22,3,2320,512,425.862,,,,,,144,46,0,,,,, +103,31,1,2330,768,426.006,,,,,,144,83,0,,,,, +103,35,1,2334,832,426.006,64,16.0,C#5,p-,10,144,73,10,,,,, +103,32,2,2331,768,426.15,,,,,,144,77,0,,,,, +103,34,4,2333,768,426.15,,,,,,144,48,0,,,,, +103,35,1,2334,832,426.15,,,,,,144,73,0,,,,, +103,36,1,2335,896,426.15,,,,,,176,102,0,,,,, +103,37,2,2336,896,426.15,,,,,,176,102,0,,,,, +103,38,3,2337,896,426.15,128,8.0,G#3,mp,14,144,56,14,,,,, +103,39,4,2338,896,426.15,64,16.0,G3,ppp,5,144,55,5,,,,, +103,39,4,2338,896,426.294,,,,,,144,55,0,,,,, +103,40,2,2339,960,426.294,64,16.0,D6,pp,8,144,86,8,,,,, +103,41,4,2340,960,426.294,,,,,,176,102,0,,,,, +103,40,2,2339,960,426.439,,,,,,144,86,0,,,,, +104,0,0,2341,0,426.439,,,,,,,,,104,,,, +104,2,1,2342,,426.439,,8.0,C#4,ppp,5,144,61,5,,,,g, +104,2,1,2342,,426.489,,,,,,144,61,0,,,,, +104,3,1,2343,,426.514,,8.0,G2,ppp,5,144,43,5,,,,g, +104,3,1,2343,,426.564,,,,,,144,43,0,,,,, +104,4,1,2344,0,426.589,170,4.0,B5,mf,17,144,83,17,,,,, +104,5,2,2345,0,426.589,1024,1.0,E4,mf,17,144,64,17,,,,, +104,6,3,2346,0,426.589,384,4.0,G#3,,,,,,,,,, +104,7,4,2347,0,426.589,85,8.0,A#1,ppp,5,144,34,5,,,,, +104,1,0,2348,0,426.589,,,,,,176,64,127,,,,,V +104,7,4,2347,0,426.78,,,,,,144,34,0,,,,, +104,8,4,2349,85,426.78,85,8.0,D6,ppp,5,144,86,5,,,,, +104,4,1,2344,0,426.972,,,,,,144,83,0,,,,, +104,8,4,2349,85,426.972,,,,,,144,86,0,,,,, +104,9,0,2350,170,426.972,,,,,,176,64,0,,,,,^ +104,10,1,2351,170,426.972,,,,,,176,102,0,,,,, +104,11,4,2352,170,426.972,86,8.0,C3,ppp,5,144,48,5,,,,, +104,11,4,2352,170,427.166,,,,,,144,48,0,,,,, +104,12,1,2353,256,427.166,,,,,,176,102,0,,,,, +104,13,4,2354,256,427.166,,,,,,176,102,0,,,,, +103,38,3,2337,896,427.304,,,,,,144,56,0,,,,, +104,14,3,2355,384,427.454,,,,,,176,102,0,,,,, +104,15,1,2356,512,427.743,512,2.0,C5,ppp,5,144,72,5,,,,, +104,16,3,2357,512,427.743,128,8.0,D#2,mp,14,144,39,14,,,,, +104,17,4,2358,512,427.743,,,,,,176,102,0,,,,, +104,16,3,2357,512,428.031,,,,,,144,39,0,,,,, +104,18,3,2359,640,428.031,128,8.0,A5,ppp,5,144,81,5,,,,, +104,19,3,2360,640,428.031,128,8.0,B6,mp,14,144,95,14,,,,, +104,20,0,2361,695,428.155,,,,,,176,64,127,,,,,V +104,18,3,2359,640,428.319,,,,,,144,81,0,,,,, +104,19,3,2360,640,428.319,,,,,,144,95,0,,,,, +104,21,3,2362,768,428.319,128,8.0,G#2,mp,14,144,44,14,,,,, +104,22,4,2363,768,428.319,,,,,,176,102,0,,,,, +104,23,0,2364,832,428.426,,,,,,176,64,0,,,,,^ +104,24,4,2365,832,428.464,192,8.0,G2,pp,8,144,43,8,,,,, +104,21,3,2362,768,428.608,,,,,,144,44,0,,,,, +104,25,3,2366,896,428.608,,,,,,176,102,0,,,,, +104,26,0,2367,932,428.726,,,,,,176,64,127,,,,,V +104,15,1,2356,512,428.896,,,,,,144,72,0,,,,, +104,24,4,2365,832,428.896,,,,,,144,43,0,,,,, +105,1,0,2368,0,428.896,,,,,,176,64,0,,,,,^ +104,27,1,2369,,428.896,,8.0,E6,pp,8,144,88,8,,,,g, +104,27,1,2369,,428.946,,,,,,144,88,0,,,,, +104,28,1,2370,,428.971,,8.0,F7,pp,8,144,101,8,,,,g, +104,28,1,2370,,429.021,,,,,,144,101,0,,,,, +104,29,1,2371,,429.046,,8.0,A#4,pp,8,144,70,8,,,,g, +104,30,1,2372,,429.046,,8.0,C#5,pp,8,144,73,8,,,,g, +104,31,1,2373,,429.046,,8.0,A6,pp,8,144,93,8,,,,g, +104,29,1,2371,,429.096,,,,,,144,70,0,,,,, +104,30,1,2372,,429.096,,,,,,144,73,0,,,,, +104,31,1,2373,,429.096,,,,,,144,93,0,,,,, +105,0,0,2374,0,429.271,,,,,,,,,105,,,, +105,2,1,2375,0,429.271,128,8.0,B6,pp,8,144,95,8,,,,, +105,3,2,2376,0,429.271,1024,1.0,E4,,,,,,,,,, +105,4,3,2377,0,429.271,768,2.0,C#3,pp,8,144,49,8,,,,, +105,5,4,2378,0,429.271,1024,1.0,A2,pp,8,144,45,8,,,,, +105,6,4,2379,0,429.271,1024,1.0,G#3,pp,8,144,56,8,,,,, +105,2,1,2375,0,429.56,,,,,,144,95,0,,,,, +105,7,1,2380,128,429.56,384,4.0,E5,pp,8,144,76,8,,,,, +105,11,3,2381,,430.275,,,,,,176,102,0,,,,, +105,12,3,2382,,430.35,,8.0,G2,pp,8,144,43,8,,,,g, +105,12,3,2382,,430.4,,,,,,144,43,0,,,,, +105,8,1,2383,512,430.425,128,8.0,E5,,,,,,,,,, +105,7,1,2380,128,430.714,,,,,,144,76,0,,,,, +105,9,1,2384,640,430.714,,,,,,176,102,0,,,,, +105,4,3,2377,0,431.002,,,,,,144,49,0,,,,, +105,10,1,2385,768,431.002,256,4.0,D4,ppp,5,144,62,5,,,,, +105,13,3,2386,768,431.002,256,4.0,F3,ppp,5,144,53,5,,,,, +105,14,3,2387,,431.504,,8.0,C#2,p,11,144,37,11,,,,g, +105,14,3,2387,,431.554,,,,,,144,37,0,,,,, +105,10,1,2385,768,431.579,,,,,,144,62,0,,,,, +106,0,0,2388,0,431.579,,,,,,,,,106,,,, +106,1,1,2389,0,431.579,768,2.0,A4,p,11,144,69,11,,,,, +106,2,1,2390,0,431.579,512,2.0,D5,ppp,5,144,74,5,,,,, +106,3,2,2391,0,431.579,1024,1.0,E4,,,,,,,,,, +106,4,3,2392,0,431.579,768,2.0,F3,,,,,,,,,, +106,5,4,2393,0,431.579,768,2.0,A2,,,,,,,,,, +106,6,4,2394,0,431.579,512,2.0,G#3,,,,,,,,,, +105,6,4,2379,0,432.883,,,,,,144,56,0,,,,, +106,2,1,2390,0,432.883,,,,,,144,74,0,,,,, +106,8,3,2395,,433.16,,8.0,D#1,ppp,5,144,27,5,,,,g, +106,8,3,2395,,433.21,,,,,,144,27,0,,,,, +106,10,3,2396,,433.235,,8.0,B2,ppp,5,144,47,5,,,,g, +106,9,3,2397,,433.235,,8.0,C#1,ppp,5,144,25,5,,,,g, +106,10,3,2396,,433.285,,,,,,144,47,0,,,,, +106,9,3,2397,,433.285,,,,,,144,25,0,,,,, +106,7,1,2398,768,433.31,,,,,,176,102,0,,,,, +106,11,3,2399,768,433.31,256,4.0,A#2,ppp,5,144,46,5,,,,, +106,12,4,2400,768,433.31,,,,,,176,102,0,,,,, +105,5,4,2378,0,433.46,,,,,,144,45,0,,,,, +105,13,3,2386,768,433.46,,,,,,144,53,0,,,,, +106,1,1,2389,0,433.46,,,,,,144,69,0,,,,, +106,13,1,2401,896,433.598,128,8.0,F7,f,20,144,101,20,,,,, +106,13,1,2401,896,433.887,,,,,,144,101,0,,,,, +106,14,1,2402,,433.887,,8.0,A#6,mp,14,144,94,14,,,,g, +106,14,1,2402,,433.937,,,,,,144,94,0,,,,, +106,15,1,2403,,433.962,,8.0,G#1,mp,14,144,32,14,,,,g, +106,15,1,2403,,434.012,,,,,,144,32,0,,,,, +107,0,0,2404,0,434.037,,,,,,,,,107,,,, +107,1,1,2405,0,434.037,128,8.0,F5,pp,8,144,77,8,,,,, +107,2,2,2406,0,434.037,1024,1.0,E4,,,,,,,,,, +107,3,3,2407,0,434.037,512,2.0,A#2,,,,,,,,,, +107,4,4,2408,0,434.037,384,4.0,G2,pp,8,144,43,8,,,,, +107,1,1,2405,0,434.325,,,,,,144,77,0,,,,, +107,5,1,2409,128,434.325,,,,,,176,102,0,,,,, +107,6,1,2410,256,434.614,,,,,,176,102,0,,,,, +107,7,4,2411,384,434.902,128,8.0,F4,ppp,5,144,65,5,,,,, +107,8,0,2412,447,435.044,,,,,,176,64,127,,,,,V +107,9,1,2413,512,435.191,256,4.0,A5,mf,17,144,81,17,,,,, +107,10,3,2414,512,435.191,,,,,,176,102,0,,,,, +107,11,4,2415,512,435.191,256,4.0,B0,mf,17,144,23,17,,,,, +107,12,4,2416,512,435.191,256,4.0,F4,,,,,,,,,, +107,4,4,2408,0,435.277,,,,,,144,43,0,,,,, +106,11,3,2399,768,435.416,,,,,,144,46,0,,,,, +107,13,3,2417,682,435.574,342,2.0,C#5,mf,17,144,73,17,,,,, +107,7,4,2411,384,435.768,,,,,,144,65,0,,,,, +107,11,4,2415,512,435.768,,,,,,144,23,0,,,,, +107,14,1,2418,768,435.768,256,4.0,A5,,,,,,,,,, +107,15,1,2419,768,435.768,256,4.0,A#6,mf,17,144,94,17,,,,, +107,16,4,2420,768,435.768,256,4.0,C#1,mf,17,144,25,17,,,,, +104,5,2,2345,0,436.344,,,,,,144,64,0,,,,, +107,15,1,2419,768,436.344,,,,,,144,94,0,,,,, +107,16,4,2420,768,436.344,,,,,,144,25,0,,,,, +108,0,0,2421,0,436.344,,,,,,,,,108,,,, +108,1,0,2422,0,436.344,,,,,,176,64,0,,,,,^ +108,2,1,2423,0,436.344,1024,1.0,A5,,,,,,,,,, +108,3,2,2424,0,436.344,,,,,,176,102,0,,,,, +108,4,3,2425,0,436.344,1024,1.0,C#5,,,,,,,,,, +108,5,4,2426,0,436.344,1024,1.0,G3,f,20,144,55,20,,,,, +108,6,4,2427,0,436.344,1024,1.0,D4,f,20,144,62,20,,,,, +108,7,2,2428,128,436.633,128,8.0,F#4,mf,17,144,66,17,,,,, +108,8,2,2429,256,436.921,128,8.0,F#4,,,,,,,,,, +108,7,2,2428,128,437.21,,,,,,144,66,0,,,,, +108,9,2,2430,384,437.21,128,8.0,F4,mf,17,144,65,17,,,,, +108,10,2,2431,512,437.498,512,2.0,F4,,,,,,,,,, +107,9,1,2413,512,438.652,,,,,,144,81,0,,,,, +107,13,3,2417,682,438.652,,,,,,144,73,0,,,,, +108,5,4,2426,0,438.652,,,,,,144,55,0,,,,, +108,6,4,2427,0,438.652,,,,,,144,62,0,,,,, +108,9,2,2430,384,438.652,,,,,,144,65,0,,,,, +109,0,0,2432,0,438.652,,,,,,,,,109,,,, +109,1,0,2433,0,438.652,,,,,,,,,,5949,,, +109,2,1,2434,0,438.652,,,,,,176,102,0,,,,, +109,3,3,2435,0,438.652,1792,1.0,A2,mp,14,144,45,14,,,,, +109,4,4,2436,0,438.652,256,4.0,C2,ppp,5,144,36,5,,,,, +109,4,4,2436,0,439.229,,,,,,144,36,0,,,,, +109,5,4,2437,256,439.229,,,,,,176,102,0,,,,, +109,6,1,2438,512,439.806,64,16.0,C#7,pp,8,144,97,8,,,,, +109,7,4,2439,512,439.806,,,,,,176,102,0,,,,, +109,6,1,2438,512,439.95,,,,,,144,97,0,,,,, +109,8,1,2440,576,439.95,64,16.0,D3,ppp+,6,144,50,6,,,,, +109,8,1,2440,576,440.094,,,,,,144,50,0,,,,, +109,9,1,2441,640,440.094,128,8.0,E5,ppp,5,144,76,5,,,,, +109,9,1,2441,640,440.383,,,,,,144,76,0,,,,, +109,10,1,2442,768,440.383,,,,,,176,102,0,,,,, +109,11,4,2443,768,440.383,,,,,,176,102,0,,,,, +109,12,1,2444,896,440.671,128,8.0,C#6,ppp,5,144,85,5,,,,, +109,12,1,2444,896,440.96,,,,,,144,85,0,,,,, +109,13,1,2445,1024,440.96,128,8.0,C5,pp+,9,144,72,9,,,,, +109,13,1,2445,1024,441.248,,,,,,144,72,0,,,,, +109,14,1,2446,1152,441.248,128,8.0,E5,ppp,5,144,76,5,,,,, +109,14,1,2446,1152,441.537,,,,,,144,76,0,,,,, +109,15,1,2447,1280,441.537,,,,,,176,102,0,,,,, +110,0,0,2448,0,442.691,,,,,,,,,110,,,, +110,2,1,2449,0,442.691,42,16.0,D#2,p,11,144,39,11,,,,, +110,3,3,2450,0,442.691,1792,1.0,A2,,,,,,,,,, +110,4,4,2451,0,442.691,,,,,,176,102,0,,,,, +110,1,0,2452,0,442.691,,,,,,176,64,127,,,,,V +110,2,1,2449,0,442.785,,,,,,144,39,0,,,,, +110,5,1,2453,42,442.785,43,16.0,A#3,p-,10,144,58,10,,,,, +110,5,1,2453,42,442.882,,,,,,144,58,0,,,,, +110,6,0,2454,85,442.882,,,,,,176,64,0,,,,,^ +110,7,1,2455,85,442.882,43,16.0,C#3,pp,8,144,49,8,,,,, +110,7,1,2455,85,442.979,,,,,,144,49,0,,,,, +110,8,1,2456,128,442.979,,,,,,176,102,0,,,,, +110,9,4,2457,128,442.979,128,8.0,G#3,ff,22,144,56,22,,,,, +110,10,1,2458,256,443.268,,,,,,176,102,0,,,,, +110,11,4,2459,256,443.268,1536,1.0,G#3,,,,,,,,,, +110,12,1,2460,512,443.844,,,,,,176,102,0,,,,, +110,13,1,2461,768,444.421,,,,,,176,102,0,,,,, +111,0,0,2462,0,446.729,,,,,,,,,111,,,, +111,2,1,2463,0,446.729,,,,,,176,102,0,,,,, +111,3,2,2464,0,446.729,,,,,,176,102,0,,,,, +111,4,3,2465,0,446.729,170,4.0,F#4,ff,22,144,66,22,,,,, +111,5,4,2466,0,446.729,384,4.0,G#3,,,,,,,,,, +111,1,0,2467,0,446.729,,,,,,176,64,127,,,,,V +109,3,3,2435,0,446.879,,,,,,144,45,0,,,,, +111,4,3,2465,0,447.112,,,,,,144,66,0,,,,, +111,6,3,2468,170,447.112,342,2.0,B0,ff,22,144,23,22,,,,, +110,9,4,2457,128,447.594,,,,,,144,56,0,,,,, +111,7,2,2469,384,447.594,128,8.0,D5,pp,8,144,74,8,,,,, +111,8,4,2470,384,447.594,128,8.0,C5,f,20,144,72,20,,,,, +111,6,3,2468,170,447.883,,,,,,144,23,0,,,,, +111,7,2,2469,384,447.883,,,,,,144,74,0,,,,, +111,8,4,2470,384,447.883,,,,,,144,72,0,,,,, +111,9,1,2471,512,447.883,,,,,,176,102,0,,,,, +111,10,2,2472,512,447.883,512,2.0,D4,ff,22,144,62,22,,,,, +111,11,3,2473,512,447.883,,,,,,176,102,0,,,,, +111,12,4,2474,512,447.883,,,,,,176,102,0,,,,, +111,13,3,2475,682,448.266,342,2.0,F3,ppp,5,144,53,5,,,,, +111,14,4,2476,768,448.46,,,,,,176,102,0,,,,, +111,13,3,2475,682,449.037,,,,,,144,53,0,,,,, +111,15,1,2477,1024,449.037,128,8.0,F6,ff,22,144,89,22,,,,, +111,16,2,2478,1024,449.037,85,8.0,D4,,,,,,,,,, +111,17,3,2479,1024,449.037,256,4.0,F#1,ppp,5,144,30,5,,,,, +111,10,2,2472,512,449.228,,,,,,144,62,0,,,,, +111,18,0,2480,1109,449.228,,,,,,176,64,0,,,,,^ +111,19,2,2481,1109,449.228,21,32.0,A#6,ff,22,144,94,22,,,,, +111,19,2,2481,1109,449.276,,,,,,144,94,0,,,,, +111,20,2,2482,1130,449.276,22,32.0,F4,ff,22,144,65,22,,,,, +111,15,1,2477,1024,449.325,,,,,,144,89,0,,,,, +111,20,2,2482,1130,449.325,,,,,,144,65,0,,,,, +111,21,1,2483,1152,449.325,,,,,,176,102,0,,,,, +111,22,2,2484,,449.325,,8.0,D4,f+,21,144,62,21,,,,g, +111,22,2,2484,,449.375,,,,,,144,62,0,,,,, +111,23,2,2485,,449.4,,8.0,F#4,f,20,144,66,20,,,,g, +111,23,2,2485,,449.45,,,,,,144,66,0,,,,, +111,24,2,2486,,449.475,,8.0,F4,mf+,18,144,65,18,,,,g, +111,24,2,2486,,449.525,,,,,,144,65,0,,,,, +111,25,2,2487,1152,449.55,128,8.0,F#4,mf,17,144,66,17,,,,, +111,17,3,2479,1024,449.805,,,,,,144,30,0,,,,, +111,25,2,2487,1152,449.839,,,,,,144,66,0,,,,, +111,26,2,2488,,449.839,,8.0,E5,ff,22,144,76,22,,,,g, +111,26,2,2488,,449.889,,,,,,144,76,0,,,,, +111,27,2,2489,,449.914,,8.0,A#3,ff,22,144,58,22,,,,g, +111,27,2,2489,,449.964,,,,,,144,58,0,,,,, +111,28,2,2490,,449.989,,8.0,C#5,ff,22,144,73,22,,,,g, +111,28,2,2490,,450.039,,,,,,144,73,0,,,,, +112,0,0,2491,0,450.064,,,,,,,,,112,,,, +112,1,1,2492,0,450.064,,,,,,176,102,0,,,,, +112,2,2,2493,0,450.064,,,,,,176,102,0,,,,, +112,3,3,2494,0,450.064,85,8.0,F#1,,,,,,,,,, +112,4,4,2495,0,450.064,,,,,,176,102,0,,,,, +112,5,3,2496,85,450.255,171,4.0,G#2,ppp,5,144,44,5,,,,, +112,6,4,2497,128,450.352,128,8.0,A2,ff,22,144,45,22,,,,, +112,5,3,2496,85,450.641,,,,,,144,44,0,,,,, +112,7,3,2498,256,450.641,,,,,,176,102,0,,,,, +112,8,4,2499,256,450.641,384,4.0,A2,,,,,,,,,, +112,9,1,2500,512,451.218,,,,,,176,102,0,,,,, +112,10,2,2501,512,451.218,,,,,,176,102,0,,,,, +112,11,3,2502,512,451.218,,,,,,176,102,0,,,,, +112,6,4,2497,128,451.506,,,,,,144,45,0,,,,, +112,12,2,2503,640,451.506,128,8.0,D4,mf-,16,144,62,16,,,,, +112,13,4,2504,640,451.506,,,,,,176,102,0,,,,, +112,12,2,2503,640,451.794,,,,,,144,62,0,,,,, +112,14,1,2505,768,451.794,64,16.0,E5,mp,14,,,,,,,, +112,15,2,2506,768,451.794,32,32.0,E5,mp,14,144,76,14,,,,, +112,16,3,2507,768,451.794,,,,,,176,102,0,,,,, +112,17,4,2508,768,451.794,,,,,,176,102,0,,,,, +112,18,2,2509,800,451.867,32,32.0,A3,p,11,144,57,11,,,,, +112,18,2,2509,800,451.939,,,,,,144,57,0,,,,, +112,19,1,2510,832,451.939,64,16.0,F6,mf,17,144,89,17,,,,, +112,20,2,2511,832,451.939,32,32.0,C5,p-,10,144,72,10,,,,, +112,15,2,2506,768,451.939,,,,,,144,76,0,,,,, +112,20,2,2511,832,452.011,,,,,,144,72,0,,,,, +112,21,2,2512,864,452.011,32,32.0,E5,p-,10,144,76,10,,,,, +112,21,2,2512,864,452.083,,,,,,144,76,0,,,,, +112,23,1,2513,896,452.083,128,8.0,C#4,mf+,18,144,61,18,,,,, +112,24,2,2514,896,452.083,128,8.0,G#3,pp,8,144,56,8,,,,, +112,22,0,2515,896,452.083,,,,,,176,64,127,,,,,V +112,19,1,2510,832,452.083,,,,,,144,89,0,,,,, +112,25,1,2516,1024,452.371,256,4.0,C#4,,,,,,,,,, +112,26,2,2517,1024,452.371,256,4.0,G#3,,,,,,,,,, +113,0,0,2518,0,452.948,,,,,,,,,113,,,, +113,1,1,2519,0,452.948,1024,1.0,C#4,,,,,,,,,, +113,2,2,2520,0,452.948,341,2.0,G#3,,,,,,,,,, +113,3,3,2521,0,452.948,,,,,,176,102,0,,,,, +113,4,4,2522,0,452.948,,,,,,176,102,0,,,,, +112,24,2,2514,896,453.717,,,,,,144,56,0,,,,, +113,5,2,2523,341,453.717,171,4.0,C5,ppp-,4,144,72,4,,,,, +113,6,2,2524,512,454.102,512,2.0,C5,,,,,,,,,, +112,23,1,2513,896,455.256,,,,,,144,61,0,,,,, +113,7,1,2525,1024,455.256,,,,,,176,102,0,,,,, +113,8,2,2526,1024,455.256,64,16.0,C5,,,,,,,,,, +113,9,4,2527,1024,455.256,,,,,,176,102,0,,,,, +113,10,0,2528,1088,455.4,,,,,,176,64,0,,,,,^ +113,11,2,2529,1088,455.4,64,16.0,D4,ppp,5,,,,,,,, +113,12,4,2530,1088,455.4,32,32.0,D4,ppp,5,144,62,5,,,,, +113,13,4,2531,1120,455.472,32,32.0,E3,ppp,5,144,52,5,,,,, +113,13,4,2531,1120,455.544,,,,,,144,52,0,,,,, +113,14,2,2532,1152,455.544,64,16.0,A6,ppp,5,144,93,5,,,,, +113,15,4,2533,1152,455.544,,,,,,176,102,0,,,,, +113,12,4,2530,1088,455.544,,,,,,144,62,0,,,,, +113,5,2,2523,341,455.625,,,,,,144,72,0,,,,, +113,14,2,2532,1152,455.689,,,,,,144,93,0,,,,, +113,16,2,2534,1216,455.689,64,16.0,G#3,ppp,5,144,56,5,,,,, +113,16,2,2534,1216,455.833,,,,,,144,56,0,,,,, +114,0,0,2535,0,455.833,,,,,,,,,114,,,, +114,1,1,2536,0,455.833,,,,,,176,102,0,,,,, +114,2,3,2537,0,455.833,341,2.0,A2,ppp,5,144,45,5,,,,, +114,3,1,2538,256,456.41,42,16.0,B1,ppp,5,144,35,5,,,,, +114,3,1,2538,256,456.505,,,,,,144,35,0,,,,, +114,4,1,2539,298,456.505,43,16.0,F4,ppp,5,144,65,5,,,,, +114,4,1,2539,298,456.601,,,,,,144,65,0,,,,, +114,5,1,2540,341,456.601,21,32.0,D4,ppp-,4,144,62,4,,,,, +114,6,3,2541,341,456.601,,,,,,176,102,0,,,,, +114,5,1,2540,341,456.649,,,,,,144,62,0,,,,, +114,7,1,2542,362,456.649,22,32.0,C5,pppp,2,144,72,2,,,,, +114,7,1,2542,362,456.698,,,,,,144,72,0,,,,, +114,8,1,2543,384,456.698,,,,,,176,102,0,,,,, +114,2,3,2537,0,456.826,,,,,,144,45,0,,,,, +114,9,1,2544,512,456.987,,,,,,176,102,0,,,,, +114,10,3,2545,512,456.987,,,,,,176,102,0,,,,, +114,11,0,2546,512,456.987,,,,,,,,,,5950,,, +114,12,3,2547,640,457.275,128,8.0,A1,ppp,5,144,33,5,,,,, +114,13,1,2548,768,457.564,,,,,,176,102,0,,,,, +114,14,3,2549,768,457.564,512,2.0,A1,,,,,,,,,, +115,0,0,2550,0,458.718,,,,,,,,,115,,,, +115,1,1,2551,0,458.718,,,,,,176,102,0,,,,, +115,2,2,2552,0,458.718,,,,,,176,102,0,,,,, +115,3,3,2553,0,458.718,256,4.0,A1,,,,,,,,,, +114,12,3,2547,640,459.294,,,,,,144,33,0,,,,, +115,4,2,2554,256,459.294,1024,1.0,F6,pp,8,144,89,8,,,,, +115,5,3,2555,256,459.294,384,4.0,G#1,pp,8,144,32,8,,,,, +115,6,1,2556,512,459.871,,,,,,176,102,0,,,,, +115,5,3,2555,256,460.16,,,,,,144,32,0,,,,, +115,8,1,2557,640,460.16,128,8.0,C5,p,11,144,72,11,,,,, +115,9,3,2558,640,460.16,,,,,,176,102,0,,,,, +115,7,0,2559,640,460.16,,,,,,176,64,127,,,,,V +115,10,1,2560,768,460.448,512,2.0,C5,,,,,,,,,, +115,11,3,2561,768,460.448,,,,,,176,102,0,,,,, +115,12,3,2562,1024,461.025,256,4.0,D3,pp,8,144,50,8,,,,, +116,1,0,2563,0,461.452,,,,,,176,64,0,,,,,^ +115,4,2,2554,256,461.602,,,,,,144,89,0,,,,, +115,12,3,2562,1024,461.602,,,,,,144,50,0,,,,, +116,0,0,2564,0,461.602,,,,,,,,,116,,,, +116,2,1,2565,0,461.602,1024,1.0,C5,,,,,,,,,, +116,3,1,2566,0,461.602,1024,1.0,A5,ppp,5,144,81,5,,,,, +116,4,2,2567,0,461.602,,,,,,176,102,0,,,,, +116,5,3,2568,0,461.602,1024,1.0,A2,ppp,5,144,45,5,,,,, +116,6,3,2569,0,461.602,1024,1.0,A#3,ppp,5,144,58,5,,,,, +116,7,2,2570,42,461.697,43,16.0,E5,ppp,5,144,76,5,,,,, +116,1,0,2571,0,461.752,,,,,,176,64,127,,,,,V +116,8,2,2572,85,461.794,43,16.0,A3,ppp,5,144,57,5,,,,, +116,9,2,2573,85,461.794,64,16.0,E5,,,,,,,,,, +116,,,2574,128,461.885,,,,,,176,64,0,,,,,^ +116,10,2,2575,128,461.891,128,8.0,A3,,,,,,,,,, +116,11,2,2576,128,461.891,128,8.0,E5,,,,,,,,,, +116,8,2,2572,85,462.179,,,,,,144,57,0,,,,, +116,13,2,2577,256,462.179,85,8.0,D5,ppp,5,144,74,5,,,,, +116,12,0,2578,256,462.185,,,,,,176,64,127,,,,,V +116,7,2,2570,42,462.226,,,,,,144,76,0,,,,, +116,13,2,2577,256,462.371,,,,,,144,74,0,,,,, +116,14,2,2579,341,462.371,85,8.0,C1,ppp,5,144,24,5,,,,, +116,14,2,2579,341,462.562,,,,,,144,24,0,,,,, +116,15,2,2580,426,462.562,86,8.0,A7,ppp,5,144,105,5,,,,, +116,15,2,2580,426,462.756,,,,,,144,105,0,,,,, +116,16,0,2581,512,462.756,,,,,,176,64,0,,,,,^ +116,17,2,2582,512,462.756,768,2.0,G#4,ppp-,4,144,68,4,,,,, +116,18,1,2583,1024,463.91,256,4.0,C5,,,,,,,,,, +116,19,1,2584,1024,463.91,256,4.0,A5,,,,,,,,,, +116,20,3,2585,1024,463.91,256,4.0,A2,,,,,,,,,, +116,21,3,2586,1024,463.91,256,4.0,A#3,,,,,,,,,, +116,22,3,2587,,464.412,,8.0,F#3,mp,14,144,54,14,,,,g, +116,22,3,2587,,464.462,,,,,,144,54,0,,,,, +115,8,1,2557,640,464.487,,,,,,144,72,0,,,,, +116,3,1,2566,0,464.487,,,,,,144,81,0,,,,, +116,5,3,2568,0,464.487,,,,,,144,45,0,,,,, +116,6,3,2569,0,464.487,,,,,,144,58,0,,,,, +116,17,2,2582,512,464.487,,,,,,144,68,0,,,,, +117,0,0,2588,0,464.487,,,,,,,,,117,,,, +117,2,1,2589,0,464.487,512,2.0,B5,mp,14,144,83,14,,,,, +117,3,2,2590,0,464.487,170,4.0,C#5,ppp,5,144,73,5,,,,, +117,4,3,2591,0,464.487,1024,1.0,E4,p,11,144,64,11,,,,, +117,1,0,2592,0,464.487,,,,,,176,64,127,,,,,V +117,3,2,2590,0,464.87,,,,,,144,73,0,,,,, +117,5,2,2593,170,464.87,171,4.0,F#1,pp,8,144,30,8,,,,, +117,5,2,2593,170,465.255,,,,,,144,30,0,,,,, +117,6,2,2594,341,465.255,171,4.0,B6,pp,8,144,95,8,,,,, +117,7,2,2595,341,465.255,256,4.0,D7,mp,14,144,98,14,,,,, +117,2,1,2589,0,465.641,,,,,,144,83,0,,,,, +117,6,2,2594,341,465.641,,,,,,144,95,0,,,,, +117,8,1,2596,512,465.641,,,,,,176,102,0,,,,, +117,9,2,2597,512,465.641,170,4.0,A2,ppp,5,144,45,5,,,,, +117,7,2,2595,341,465.832,,,,,,144,98,0,,,,, +117,9,2,2597,512,466.024,,,,,,144,45,0,,,,, +117,10,0,2598,682,466.024,,,,,,176,64,0,,,,,^ +117,11,2,2599,682,466.024,86,8.0,A#2,p,11,144,46,11,,,,, +117,12,2,2600,682,466.024,128,8.0,F3,ppp-,4,144,53,4,,,,, +117,11,2,2599,682,466.218,,,,,,144,46,0,,,,, +117,13,2,2601,768,466.218,,,,,,176,102,0,,,,, +117,12,2,2600,682,466.312,,,,,,144,53,0,,,,, +117,4,3,2591,0,466.794,,,,,,144,64,0,,,,, +118,1,0,2602,0,466.794,,,,,,,,,,5951,,, +117,14,3,2603,,466.794,,8.0,F#2,pp,8,144,42,8,,,,g, +117,14,3,2603,,466.844,,,,,,144,42,0,,,,, +117,15,3,2604,,466.869,,8.0,D#2,pp,8,144,39,8,,,,g, +117,15,3,2604,,466.919,,,,,,144,39,0,,,,, +118,0,0,2605,0,466.944,,,,,,,,,118,,,, +118,2,1,2606,0,466.944,1024,1.0,B4,f,20,144,71,20,,,,, +118,3,2,2607,0,466.944,170,4.0,C#4,mp,14,144,61,14,,,,, +118,4,3,2608,0,466.944,85,8.0,C1,pp,8,144,24,8,,,,, +118,5,3,2609,0,466.944,128,8.0,B3,pp,8,144,59,8,,,,, +118,6,4,2610,0,466.944,1024,1.0,G1,mp,14,144,31,14,,,,, +118,4,3,2608,0,467.136,,,,,,144,24,0,,,,, +118,7,3,2611,85,467.136,,,,,,176,102,0,,,,, +118,5,3,2609,0,467.233,,,,,,144,59,0,,,,, +118,3,2,2607,0,467.328,,,,,,144,61,0,,,,, +118,8,2,2612,170,467.328,,,,,,176,102,0,,,,, +118,9,3,2613,170,467.328,86,8.0,G#1,p,11,144,32,11,,,,, +118,9,3,2613,170,467.521,,,,,,144,32,0,,,,, +118,10,2,2614,256,467.521,,,,,,176,102,0,,,,, +118,11,3,2615,256,467.521,,,,,,176,102,0,,,,, +118,12,3,2616,341,467.713,171,4.0,G3,pp+,9,144,55,9,,,,, +118,12,3,2616,341,468.098,,,,,,144,55,0,,,,, +118,13,2,2617,512,468.098,,,,,,176,102,0,,,,, +118,15,3,2618,512,468.098,512,2.0,D#1,pp,8,144,27,8,,,,, +118,14,3,2619,,468.378,,8.0,C#4,pp,8,144,61,8,,,,g, +118,14,3,2619,,468.428,,,,,,144,61,0,,,,, +118,17,3,2620,,468.453,,8.0,C#5,pp,8,144,73,8,,,,g, +118,17,3,2620,,468.503,,,,,,144,73,0,,,,, +118,18,3,2621,,468.528,,8.0,F3,ppp-,4,144,53,4,,,,g, +118,18,3,2621,,468.578,,,,,,144,53,0,,,,, +118,16,0,2622,736,468.603,,,,,,176,64,127,,,,,V +119,1,0,2623,0,469.102,,,,,,176,64,0,,,,,^ +118,2,1,2606,0,469.252,,,,,,144,71,0,,,,, +118,6,4,2610,0,469.252,,,,,,144,31,0,,,,, +118,15,3,2618,512,469.252,,,,,,144,27,0,,,,, +119,0,0,2624,0,469.252,,,,,,,,,119,,,, +119,2,1,2625,0,469.252,256,4.0,D6,f,20,144,86,20,,,,, +119,3,2,2626,0,469.252,1024,1.0,C#5,f,20,144,73,20,,,,, +119,4,3,2627,0,469.252,64,16.0,G#3,f,20,144,56,20,,,,, +119,5,4,2628,0,469.252,,,,,,176,102,0,,,,, +119,7,0,2629,128,469.391,,,,,,176,64,0,,,,,^ +119,4,3,2627,0,469.396,,,,,,144,56,0,,,,, +119,6,3,2630,64,469.396,64,16.0,A6,f,20,144,93,20,,,,, +119,1,0,2631,0,469.402,,,,,,176,64,127,,,,,V +119,6,3,2630,64,469.541,,,,,,144,93,0,,,,, +119,8,3,2632,128,469.541,128,8.0,E4,p,11,144,64,11,,,,, +119,9,0,2633,256,469.679,,,,,,176,64,0,,,,,^ +119,7,0,2634,128,469.691,,,,,,176,64,127,,,,,V +119,2,1,2625,0,469.829,,,,,,144,86,0,,,,, +119,10,1,2635,256,469.829,,,,,,176,102,0,,,,, +119,11,3,2636,256,469.829,768,2.0,E4,,,,,,,,,, +119,12,4,2637,256,469.829,768,2.0,E3,ff,22,144,52,22,,,,, +119,9,0,2638,256,469.979,,,,,,176,64,127,,,,,V +119,13,1,2639,512,470.406,,,,,,176,102,0,,,,, +120,0,0,2640,0,471.56,,,,,,,,,120,,,, +120,1,1,2641,0,471.56,,,,,,176,102,0,,,,, +120,2,2,2642,0,471.56,1024,1.0,C#5,,,,,,,,,, +120,3,3,2643,0,471.56,1024,1.0,E4,,,,,,,,,, +120,4,4,2644,0,471.56,1024,1.0,E3,,,,,,,,,, +121,1,0,2645,0,473.568,,,,,,176,64,0,,,,,^ +121,0,0,2646,0,473.868,,,,,,,,,121,,,, +121,2,1,2647,0,473.868,1024,1.0,D6,f,20,144,86,20,,,,, +121,3,3,2648,0,473.868,256,4.0,F#1,ff,22,144,30,22,,,,, +121,4,3,2649,0,473.868,256,4.0,C2,ff,22,144,36,22,,,,, +121,5,4,2650,0,473.868,1024,1.0,E3,,,,,,,,,, +121,1,0,2651,0,473.868,,,,,,176,64,127,,,,,V +121,3,3,2648,0,473.918,,,,,,144,30,0,,,,, +121,4,3,2649,0,473.918,,,,,,144,36,0,,,,, +119,3,2,2626,0,474.018,,,,,,144,73,0,,,,, +119,8,3,2632,128,474.018,,,,,,144,64,0,,,,, +121,6,0,2652,256,474.294,,,,,,176,64,0,,,,,^ +121,7,3,2653,256,474.444,0,8.0,E3,s,0,,,,,,,, +121,8,3,2654,256,474.444,,,,,,176,102,0,,,,, +121,6,0,2655,256,474.594,,,,,,176,64,127,,,,,V +121,9,3,2656,512,475.021,,,,,,176,102,0,,,,, +121,10,3,2657,768,475.598,,,,,,176,102,0,,,,, +121,11,3,2658,960,476.031,64,16.0,A2,ff,22,144,45,22,,,,, +122,0,0,2659,0,476.175,,,,,,,,,122,,,, +122,1,1,2660,0,476.175,512,2.0,D6,,,,,,,,,, +122,2,2,2661,0,476.175,,,,,,176,102,0,,,,, +122,3,3,2662,0,476.175,1024,1.0,A2,,,,,,,,,, +122,4,4,2663,0,476.175,1024,1.0,E3,,,,,,,,,, +121,2,1,2647,0,477.329,,,,,,144,86,0,,,,, +122,5,1,2664,512,477.329,512,2.0,A5,ff,22,144,81,22,,,,, +122,6,2,2665,512,477.329,256,4.0,C#7,mf,17,144,97,17,,,,, +122,6,2,2665,512,477.906,,,,,,144,97,0,,,,, +122,7,2,2666,768,477.906,256,4.0,D3,f,20,144,50,20,,,,, +122,7,2,2666,768,478.483,,,,,,144,50,0,,,,, +123,0,0,2667,0,478.483,,,,,,,,,123,,,, +123,1,1,2668,0,478.483,1024,1.0,A5,,,,,,,,,, +123,2,2,2669,0,478.483,512,2.0,C5,ff,22,144,72,22,,,,, +123,3,3,2670,0,478.483,192,8.0,A2,,,,,,,,,, +123,4,4,2671,0,478.483,256,4.0,E3,,,,,,,,,, +121,11,3,2658,960,478.916,,,,,,144,45,0,,,,, +123,5,3,2672,192,478.916,64,16.0,F7,p,11,144,101,11,,,,, +123,5,3,2672,192,479.06,,,,,,144,101,0,,,,, +123,6,3,2673,256,479.06,,,,,,176,102,0,,,,, +123,7,4,2674,256,479.06,512,2.0,A#1,p-,10,144,34,10,,,,, +119,12,4,2637,256,479.21,,,,,,144,52,0,,,,, +123,2,2,2669,0,479.637,,,,,,144,72,0,,,,, +123,8,2,2675,512,479.637,512,2.0,E5,fff,24,144,76,23,,,,, +123,9,2,2676,512,479.637,512,2.0,E6,f,20,144,88,20,,,,, +123,10,3,2677,512,479.637,,,,,,176,102,0,,,,, +123,7,4,2674,256,480.214,,,,,,144,34,0,,,,, +123,11,4,2678,768,480.214,256,4.0,F#2,pp,8,144,42,8,,,,, +124,0,0,2679,0,480.791,,,,,,,,,124,,,, +124,1,1,2680,0,480.791,1024,1.0,A5,,,,,,,,,, +124,2,2,2681,0,480.791,128,8.0,E5,,,,,,,,,, +124,3,2,2682,0,480.791,128,8.0,E6,,,,,,,,,, +124,4,3,2683,0,480.791,,,,,,176,102,0,,,,, +124,5,4,2684,0,480.791,192,8.0,F#2,,,,,,,,,, +123,8,2,2675,512,481.079,,,,,,144,76,0,,,,, +123,9,2,2676,512,481.079,,,,,,144,88,0,,,,, +124,6,0,2685,128,481.079,,,,,,176,64,0,,,,,^ +124,7,2,2686,128,481.079,64,16.0,C#5,f,20,144,73,20,,,,, +123,11,4,2678,768,481.223,,,,,,144,42,0,,,,, +124,7,2,2686,128,481.223,,,,,,144,73,0,,,,, +124,8,2,2687,192,481.223,64,16.0,A#3,mf,17,144,58,17,,,,, +124,9,4,2688,192,481.223,,,,,,176,102,0,,,,, +124,10,2,2689,256,481.368,64,16.0,A#3,,,,,,,,,, +124,11,4,2690,256,481.368,,,,,,176,102,0,,,,, +124,12,0,2691,256,481.368,,,,,,,,,,5952,,, +124,8,2,2687,192,481.512,,,,,,144,58,0,,,,, +124,13,2,2692,320,481.512,128,8.0,A5,pp,8,144,81,8,,,,, +124,13,2,2692,320,481.8,,,,,,144,81,0,,,,, +124,14,2,2693,448,481.8,64,16.0,F3,ppp+,6,144,53,6,,,,, +124,15,2,2694,512,481.944,64,16.0,F3,,,,,,,,,, +124,16,3,2695,512,481.944,,,,,,176,102,0,,,,, +124,17,4,2696,512,481.944,,,,,,176,102,0,,,,, +124,14,2,2693,448,482.089,,,,,,144,53,0,,,,, +124,18,2,2697,576,482.089,64,16.0,C#3,ppp,5,144,49,5,,,,, +124,19,3,2698,576,482.089,64,16.0,B4,ppp,5,144,71,5,,,,, +124,18,2,2697,576,482.233,,,,,,144,49,0,,,,, +124,19,3,2698,576,482.233,,,,,,144,71,0,,,,, +124,20,2,2699,640,482.233,,,,,,176,102,0,,,,, +124,21,3,2700,640,482.233,64,16.0,E4,ppp-,4,144,64,4,,,,, +124,21,3,2700,640,482.377,,,,,,144,64,0,,,,, +124,22,3,2701,704,482.377,64,16.0,F#3,pppp+,3,144,54,3,,,,, +124,22,3,2701,704,482.521,,,,,,144,54,0,,,,, +124,23,2,2702,768,482.521,,,,,,176,102,0,,,,, +124,24,3,2703,,482.521,,8.0,A#3,ff,22,144,58,22,,,,g, +124,24,3,2703,,482.571,,,,,,144,58,0,,,,, +124,25,3,2704,768,482.596,256,4.0,A2,pppp,2,144,45,2,,,,, +125,0,0,2705,0,483.173,,,,,,,,,125,,,, +125,1,1,2706,0,483.173,512,2.0,A5,,,,,,,,,, +125,2,2,2707,0,483.173,,,,,,176,102,0,,,,, +125,3,3,2708,0,483.173,768,2.0,A2,,,,,,,,,, +125,4,4,2709,0,483.173,,,,,,176,102,0,,,,, +125,5,2,2710,256,483.75,256,4.0,B4,ppp,5,144,71,5,,,,, +122,5,1,2664,512,484.252,,,,,,144,81,0,,,,, +125,5,2,2710,256,484.327,,,,,,144,71,0,,,,, +125,6,1,2711,512,484.327,,,,,,176,102,0,,,,, +125,7,2,2712,512,484.327,256,4.0,D6,ppp+,6,144,86,6,,,,, +125,8,4,2713,512,484.327,512,2.0,G3,f,20,144,55,20,,,,, +124,25,3,2704,768,484.904,,,,,,144,45,0,,,,, +125,7,2,2712,512,484.904,,,,,,144,86,0,,,,, +125,9,2,2714,768,484.904,32,32.0,F6,pppp,2,144,89,2,,,,, +125,10,2,2715,768,484.904,32,32.0,E7,pppp,2,144,100,2,,,,, +125,11,3,2716,768,484.904,128,8.0,F#2,pp,8,144,42,8,,,,, +125,9,2,2714,768,484.976,,,,,,144,89,0,,,,, +125,10,2,2715,768,484.976,,,,,,144,100,0,,,,, +125,12,2,2717,800,484.976,32,32.0,G#6,pppp,2,144,92,2,,,,, +125,12,2,2717,800,485.048,,,,,,144,92,0,,,,, +125,13,2,2718,832,485.048,,,,,,176,102,0,,,,, +125,15,3,2719,896,485.193,,,,,,176,102,0,,,,, +125,14,0,2720,896,485.193,,,,,,176,64,127,,,,,V +125,11,3,2716,768,485.193,,,,,,144,42,0,,,,, +126,0,0,2721,0,485.481,,,,,,,,,126,,,, +126,1,1,2722,0,485.481,,,,,,176,102,0,,,,, +126,2,2,2723,0,485.481,1024,1.0,F5,fff,24,144,77,23,,,,, +126,3,2,2724,0,485.481,1024,1.0,C6,fff,24,144,84,23,,,,, +126,4,3,2725,0,485.481,,,,,,176,102,0,,,,, +126,5,4,2726,0,485.481,768,2.0,G3,,,,,,,,,, +126,6,3,2727,128,485.769,128,8.0,F#2,pp,8,144,42,8,,,,, +126,7,3,2728,128,485.769,128,8.0,G#3,pp,8,144,56,8,,,,, +126,6,3,2727,128,486.058,,,,,,144,42,0,,,,, +126,7,3,2728,128,486.058,,,,,,144,56,0,,,,, +126,8,3,2729,256,486.058,768,2.0,G1,mf,17,144,31,17,,,,, +126,9,1,2730,512,486.635,256,4.0,E4,mf,17,144,64,17,,,,, +126,10,1,2731,512,486.635,256,4.0,G#5,mf,17,144,80,17,,,,, +126,11,1,2732,512,486.635,256,4.0,B5,mf,17,144,83,17,,,,, +126,12,1,2733,768,487.212,256,4.0,E4,,,,,,,,,, +126,13,1,2734,768,487.212,256,4.0,G#5,,,,,,,,,, +126,14,1,2735,768,487.212,256,4.0,B5,,,,,,,,,, +126,15,1,2736,768,487.212,256,4.0,D7,mp,14,144,98,14,,,,, +126,16,4,2737,768,487.212,256,4.0,F3,mp,14,144,53,14,,,,, +126,17,4,2738,768,487.212,256,4.0,G3,,,,,,,,,, +126,2,2,2723,0,487.789,,,,,,144,77,0,,,,, +126,3,2,2724,0,487.789,,,,,,144,84,0,,,,, +126,8,3,2729,256,487.789,,,,,,144,31,0,,,,, +126,9,1,2730,512,487.789,,,,,,144,64,0,,,,, +126,10,1,2731,512,487.789,,,,,,144,80,0,,,,, +126,11,1,2732,512,487.789,,,,,,144,83,0,,,,, +126,15,1,2736,768,487.789,,,,,,144,98,0,,,,, +127,0,0,2739,0,487.789,,,,,,,,,127,,,, +127,1,1,2740,0,487.789,,,,,,176,102,0,,,,, +127,2,3,2741,0,487.789,,,,,,176,102,0,,,,, +127,3,4,2742,0,487.789,1024,1.0,F3,,,,,,,,,, +127,4,4,2743,0,487.789,1024,1.0,G3,,,,,,,,,, +127,5,1,2744,256,488.366,256,4.0,B4,ppp,5,144,71,5,,,,, +127,6,3,2745,256,488.366,256,4.0,A#2,ppp,5,144,46,5,,,,, +127,7,1,2746,512,488.943,,,,,,176,102,0,,,,, +127,8,3,2747,512,488.943,,,,,,176,102,0,,,,, +127,5,1,2744,256,489.018,,,,,,144,71,0,,,,, +127,6,3,2745,256,489.018,,,,,,144,46,0,,,,, +127,9,1,2748,768,489.519,0,8.0,E7,ppp,5,,,,,,,, +127,10,1,2749,768,489.519,64,16.0,F4,ppp,5,144,65,5,,,,, +127,11,3,2750,768,489.519,,,,,,176,102,0,,,,, +127,10,1,2749,768,489.664,,,,,,144,65,0,,,,, +127,12,0,2751,832,489.664,,,,,,176,64,0,,,,,^ +127,13,1,2752,832,489.664,,,,,,176,102,0,,,,, +127,14,1,2753,896,489.808,,,,,,176,102,0,,,,, +127,15,3,2754,960,489.952,64,16.0,C3,ppp,5,144,48,5,,,,, +127,15,3,2754,960,490.096,,,,,,144,48,0,,,,, +128,0,0,2755,0,490.096,,,,,,,,,128,,,, +128,1,1,2756,0,490.096,64,16.0,A#3,ppp,5,144,58,5,,,,, +128,2,3,2757,0,490.096,,,,,,176,102,0,,,,, +128,3,4,2758,0,490.096,256,4.0,F3,,,,,,,,,, +128,4,4,2759,0,490.096,256,4.0,G3,,,,,,,,,, +128,1,1,2756,0,490.241,,,,,,144,58,0,,,,, +128,5,1,2760,64,490.241,128,8.0,G#4,ppp,5,144,68,5,,,,, +128,5,1,2760,64,490.529,,,,,,144,68,0,,,,, +128,6,1,2761,192,490.529,,,,,,176,102,0,,,,, +128,7,0,2762,192,490.529,,,,,,,,,,5953,,, +128,9,1,2763,256,490.673,256,4.0,G#6,f,20,144,92,20,,,,, +128,10,3,2764,256,490.673,,,,,,176,102,0,,,,, +128,11,4,2765,256,490.673,256,4.0,G3,,,,,,,,,, +128,8,0,2766,256,490.673,,,,,,176,64,127,,,,,V +128,12,3,2767,288,490.745,224,8.0,D4,fff,24,144,62,23,,,,, +126,16,4,2737,768,490.748,,,,,,144,53,0,,,,, +128,13,1,2768,512,491.25,512,2.0,F5,f+,21,144,77,21,,,,, +128,14,3,2769,512,491.25,512,2.0,D4,,,,,,,,,, +128,15,4,2770,512,491.25,,,,,,176,102,0,,,,, +128,9,1,2763,256,491.25,,,,,,144,92,0,,,,, +125,8,4,2713,512,491.325,,,,,,144,55,0,,,,, +128,16,0,2771,909,492.145,,,,,,176,64,0,,,,,^ +129,2,0,2772,0,492.404,,,,,,,,,129,,,, +129,0,3,2773,0,492.404,768,2.0,D4,,,,,,,,,, +129,1,4,2774,0,492.404,,,,,,176,102,0,,,,, +129,3,1,2775,0,492.404,768,2.0,F5,,,,,,,,,, +129,4,2,2776,0,492.404,96,16.0,E1,p,11,144,28,11,,,,, +129,4,2,2776,0,492.62,,,,,,144,28,0,,,,, +129,5,2,2777,96,492.62,96,16.0,B2,p,11,144,47,11,,,,, +129,5,2,2777,96,492.837,,,,,,144,47,0,,,,, +129,6,2,2778,192,492.837,32,32.0,G#5,mp,14,144,80,14,,,,, +129,6,2,2778,192,492.909,,,,,,144,80,0,,,,, +129,7,2,2779,224,492.909,32,32.0,A#4,mp,14,144,70,14,,,,, +129,7,2,2779,224,492.981,,,,,,144,70,0,,,,, +129,9,4,2780,256,492.981,512,2.0,C2,mp,14,144,36,14,,,,, +129,10,2,2781,256,492.981,,,,,,176,102,0,,,,, +129,8,0,2782,256,492.981,,,,,,176,64,127,,,,,V +129,11,2,2783,448,493.414,64,16.0,C#3,f,20,144,49,20,,,,, +129,12,2,2784,512,493.558,224,8.0,C#3,,,,,,,,,, +129,11,2,2783,448,494.063,,,,,,144,49,0,,,,, +129,13,2,2785,736,494.063,32,32.0,G#5,p+,12,144,80,12,,,,, +129,13,2,2785,736,494.135,,,,,,144,80,0,,,,, +129,14,3,2786,768,494.135,,,,,,176,102,0,,,,, +129,15,4,2787,768,494.135,42,16.0,C2,,,,,,,,,, +129,16,1,2788,768,494.135,,,,,,176,102,0,,,,, +129,17,2,2789,768,494.135,42,16.0,A1,p,11,144,33,11,,,,, +128,13,1,2768,512,494.135,,,,,,144,77,0,,,,, +128,12,3,2767,288,494.135,,,,,,144,62,0,,,,, +129,17,2,2789,768,494.23,,,,,,144,33,0,,,,, +129,18,0,2790,810,494.23,,,,,,176,64,0,,,,,^ +129,19,4,2791,810,494.23,43,16.0,C#1,pp,8,144,25,8,,,,, +129,20,2,2792,810,494.23,43,16.0,D5,p,11,144,74,11,,,,, +129,9,4,2780,256,494.23,,,,,,144,36,0,,,,, +129,19,4,2791,810,494.326,,,,,,144,25,0,,,,, +129,20,2,2792,810,494.326,,,,,,144,74,0,,,,, +129,21,3,2793,853,494.326,85,8.0,C6,pp,8,144,84,8,,,,, +129,22,4,2794,853,494.326,,,,,,176,102,0,,,,, +129,23,2,2795,853,494.326,43,16.0,F5,pp+,9,144,77,9,,,,, +129,23,2,2795,853,494.423,,,,,,144,77,0,,,,, +129,24,2,2796,896,494.423,42,16.0,C#4,pp-,7,144,61,7,,,,, +129,24,2,2796,896,494.518,,,,,,144,61,0,,,,, +129,25,3,2797,938,494.518,,,,,,176,102,0,,,,, +129,26,4,2798,938,494.518,86,8.0,B2,pp,8,144,47,8,,,,, +129,27,2,2799,938,494.518,43,16.0,A3,ppp,5,144,57,5,,,,, +129,21,3,2793,853,494.518,,,,,,144,84,0,,,,, +129,27,2,2799,938,494.615,,,,,,144,57,0,,,,, +129,31,2,2800,981,494.615,,,,,,176,102,0,,,,, +130,1,0,2801,0,494.712,,,,,,,,,,5954,,, +129,28,1,2802,,494.712,,8.0,C#5,ppp,5,144,73,5,,,,g, +129,26,4,2798,938,494.712,,,,,,144,47,0,,,,, +129,28,1,2802,,494.762,,,,,,144,73,0,,,,, +129,29,1,2803,,494.787,,8.0,A5,ppp,5,144,81,5,,,,g, +129,30,1,2804,,494.787,,8.0,D6,ppp,5,144,86,5,,,,g, +129,29,1,2803,,494.837,,,,,,144,81,0,,,,, +129,30,1,2804,,494.837,,,,,,144,86,0,,,,, +130,0,0,2805,0,494.937,,,,,,,,,130,,,, +130,2,1,2806,0,494.937,256,4.0,G#6,ppp,5,144,92,5,,,,, +130,3,1,2807,0,494.937,256,4.0,C7,ppp,5,144,96,5,,,,, +130,4,1,2808,0,494.937,256,4.0,A7,ppp,5,144,105,5,,,,, +130,5,2,2809,0,494.937,,,,,,176,102,0,,,,, +130,6,3,2810,0,494.937,,,,,,176,102,0,,,,, +130,7,4,2811,0,494.937,1024,1.0,D#4,ppp,5,144,63,5,,,,, +130,2,1,2806,0,495.514,,,,,,144,92,0,,,,, +130,3,1,2807,0,495.514,,,,,,144,96,0,,,,, +130,4,1,2808,0,495.514,,,,,,144,105,0,,,,, +130,8,1,2812,256,495.514,256,4.0,G#4,ppp,5,144,68,5,,,,, +130,9,1,2813,512,496.091,85,8.0,G#4,,,,,,,,,, +130,10,2,2814,512,496.091,,,,,,176,102,0,,,,, +130,8,1,2812,256,496.282,,,,,,144,68,0,,,,, +130,11,1,2815,597,496.282,171,4.0,E7,ppp,5,144,100,5,,,,, +130,12,2,2816,704,496.523,32,32.0,D5,ppp,5,144,74,5,,,,, +130,12,2,2816,704,496.595,,,,,,144,74,0,,,,, +130,13,2,2817,736,496.595,32,32.0,C#4,ppp,5,144,61,5,,,,, +130,13,2,2817,736,496.668,,,,,,144,61,0,,,,, +130,14,1,2818,768,496.668,,,,,,176,102,0,,,,, +130,15,2,2819,768,496.668,85,8.0,A2,ppp,5,144,45,5,,,,, +130,16,3,2820,768,496.668,256,4.0,G#1,ppp,5,144,32,5,,,,, +130,11,1,2815,597,496.668,,,,,,144,100,0,,,,, +130,15,2,2819,768,496.859,,,,,,144,45,0,,,,, +130,17,2,2821,853,496.859,,,,,,176,102,0,,,,, +130,18,2,2822,938,497.051,86,8.0,A#3,ppp,5,144,58,5,,,,, +130,19,1,2823,,497.169,,8.0,F5,ppp,5,144,77,5,,,,g, +130,19,1,2823,,497.219,,,,,,144,77,0,,,,, +130,18,2,2822,938,497.244,,,,,,144,58,0,,,,, +131,0,0,2824,0,497.244,,,,,,,,,131,,,, +131,1,1,2825,0,497.244,102,8.0,C#4,ppp,5,144,61,5,,,,, +131,2,3,2826,0,497.244,768,2.0,G#1,,,,,,,,,, +131,3,4,2827,0,497.244,170,4.0,D#4,,,,,,,,,, +131,1,1,2825,0,497.474,,,,,,144,61,0,,,,, +131,4,1,2828,102,497.474,51,16.0,G#5,ppp,5,144,80,5,,,,, +131,4,1,2828,102,497.589,,,,,,144,80,0,,,,, +131,5,1,2829,153,497.589,,,,,,176,102,0,,,,, +130,7,4,2811,0,497.628,,,,,,144,63,0,,,,, +131,7,4,2830,170,497.628,86,8.0,G#3,ppp,5,144,56,5,,,,, +131,6,0,2831,170,497.628,,,,,,176,64,127,,,,,V +131,8,1,2832,204,497.704,52,16.0,F5,ppp,5,144,77,5,,,,, +131,8,1,2832,204,497.821,,,,,,144,77,0,,,,, +131,9,4,2833,256,497.821,768,2.0,G#3,,,,,,,,,, +131,10,1,2834,256,497.821,51,16.0,D4,ppp-,4,144,62,4,,,,, +131,10,1,2834,256,497.936,,,,,,144,62,0,,,,, +131,11,1,2835,307,497.936,51,16.0,G#5,pppp,2,144,80,2,,,,, +131,11,1,2835,307,498.051,,,,,,144,80,0,,,,, +131,12,1,2836,358,498.051,,,,,,176,102,0,,,,, +131,13,1,2837,512,498.398,,,,,,176,102,0,,,,, +131,14,0,2838,768,498.825,,,,,,176,64,0,,,,,^ +130,16,3,2820,768,498.975,,,,,,144,32,0,,,,, +131,15,1,2839,768,498.975,256,4.0,F4,pppp,2,144,65,2,,,,, +131,16,1,2840,768,498.975,256,4.0,D5,pppp,2,144,74,2,,,,, +131,17,3,2841,768,498.975,,,,,,176,102,0,,,,, +131,22,3,2842,832,499.119,,,,,,176,102,0,,,,, +131,14,0,2843,768,499.125,,,,,,176,64,127,,,,,V +131,7,4,2830,170,499.552,,,,,,144,56,0,,,,, +131,15,1,2839,768,499.552,,,,,,144,65,0,,,,, +131,16,1,2840,768,499.552,,,,,,144,74,0,,,,, +131,18,3,2844,,499.552,,8.0,C5,pppp,2,144,72,2,,,,g, +131,18,3,2844,,499.602,,,,,,144,72,0,,,,, +131,19,3,2845,,499.627,,8.0,D#1,pppp,2,144,27,2,,,,g, +131,19,3,2845,,499.677,,,,,,144,27,0,,,,, +131,20,3,2846,,499.702,,8.0,B3,pppp,2,144,59,2,,,,g, +131,20,3,2846,,499.752,,,,,,144,59,0,,,,, +131,21,3,2847,,499.777,,8.0,F#1,pppp,2,144,30,2,,,,g, +131,21,3,2847,,499.827,,,,,,144,30,0,,,,, +132,0,0,2848,0,499.852,,,,,,,,,132,,,, +132,1,1,2849,0,499.852,,,,,,176,102,0,,,,, +132,2,3,2850,0,499.852,,,,,,176,102,0,,,,, +133,0,0,2851,0,502.16,,,,,,,,,133,,,, +133,1,1,2852,0,502.16,,,,,,176,102,0,,,,, +133,2,2,2853,0,502.16,,,,,,176,102,0,,,,, +133,3,3,2854,0,502.16,,,,,,176,102,0,,,,, +133,4,4,2855,0,502.16,,,,,,176,102,0,,,,, +133,5,0,2856,256,502.587,,,,,,176,64,0,,,,,^ +133,6,2,2857,256,502.737,768,2.0,C#6,fff,24,144,85,23,,,,, +133,5,0,2858,256,502.887,,,,,,176,64,127,,,,,V +133,7,1,2859,512,503.314,,,,,,176,102,0,,,,, +133,8,3,2860,512,503.314,512,2.0,E1,ppp,5,144,28,5,,,,, +133,9,4,2861,512,503.314,,,,,,176,102,0,,,,, +133,10,1,2862,597,503.505,171,4.0,B6,fff,24,144,95,23,,,,, +133,10,1,2862,597,503.891,,,,,,144,95,0,,,,, +133,11,1,2863,768,503.891,,,,,,176,102,0,,,,, +133,12,3,2864,,504.393,,8.0,C4,ppp,5,144,60,5,,,,g, +133,12,3,2864,,504.443,,,,,,144,60,0,,,,, +133,8,3,2860,512,504.468,,,,,,144,28,0,,,,, +134,0,0,2865,0,504.468,,,,,,,,,134,,,, +134,1,1,2866,0,504.468,,,,,,176,102,0,,,,, +134,2,2,2867,0,504.468,1024,1.0,C#6,,,,,,,,,, +134,3,3,2868,0,504.468,256,4.0,A2,p,11,144,45,11,,,,, +134,4,4,2869,0,504.468,128,8.0,B2,ppp,5,144,47,5,,,,, +134,4,4,2869,0,504.756,,,,,,144,47,0,,,,, +134,5,0,2870,128,504.756,,,,,,176,64,0,,,,,^ +134,6,4,2871,128,504.756,128,8.0,G2,ppp-,4,144,43,4,,,,, +134,3,3,2868,0,505.044,,,,,,144,45,0,,,,, +134,6,4,2871,128,505.044,,,,,,144,43,0,,,,, +134,7,3,2872,256,505.044,,,,,,176,102,0,,,,, +134,8,4,2873,256,505.044,64,16.0,F#1,ppp-,4,144,30,4,,,,, +134,8,4,2873,256,505.189,,,,,,144,30,0,,,,, +134,9,4,2874,320,505.189,,,,,,176,102,0,,,,, +134,10,4,2875,384,505.333,128,8.0,G#5,ppp,5,144,80,5,,,,, +134,11,1,2876,512,505.621,512,2.0,B5,ppp,5,144,83,5,,,,, +134,12,4,2877,,505.621,,8.0,D#1,pppp,2,144,27,2,,,,g, +134,12,4,2877,,505.671,,,,,,144,27,0,,,,, +134,13,4,2878,,505.696,,8.0,G#1,pppp,2,144,32,2,,,,g, +134,13,4,2878,,505.746,,,,,,144,32,0,,,,, +134,14,4,2879,512,505.771,128,8.0,G#5,,,,,,,,,, +134,10,4,2875,384,505.91,,,,,,144,80,0,,,,, +134,15,4,2880,640,506.06,42,16.0,E1,ppp,5,144,28,5,,,,, +134,15,4,2880,640,506.155,,,,,,144,28,0,,,,, +134,16,4,2881,682,506.155,43,16.0,F2,ppp,5,144,41,5,,,,, +134,16,4,2881,682,506.251,,,,,,144,41,0,,,,, +134,17,4,2882,725,506.251,43,16.0,B1,ppp,5,144,35,5,,,,, +134,20,1,2883,,506.273,,8.0,E5,pp-,7,144,76,7,,,,g, +134,20,1,2883,,506.323,,,,,,144,76,0,,,,, +134,17,4,2882,725,506.348,,,,,,144,35,0,,,,, +134,19,4,2884,768,506.348,256,4.0,C#5,pp,8,144,73,8,,,,, +134,18,0,2885,768,506.348,,,,,,176,64,127,,,,,V +135,1,0,2886,0,506.775,,,,,,176,64,0,,,,,^ +135,0,0,2887,0,506.925,,,,,,,,,135,,,, +135,3,1,2888,0,506.925,1024,1.0,E7,fff,24,144,100,23,,,,, +135,4,3,2889,0,506.925,682,1.0,A2,p,11,144,45,11,,,,, +133,6,2,2857,256,507.075,,,,,,144,85,0,,,,, +135,2,0,2890,0,507.075,,,,,,176,64,127,,,,,V +134,11,1,2876,512,507.075,,,,,,144,83,0,,,,, +134,19,4,2884,768,507.225,,,,,,144,73,0,,,,, +135,4,3,2889,0,508.462,,,,,,144,45,0,,,,, +135,5,3,2891,682,508.462,342,2.0,D#3,ppp,5,144,51,5,,,,, +135,6,3,2892,682,508.462,512,2.0,F3,pp,8,144,53,8,,,,, +135,5,3,2891,682,509.233,,,,,,144,51,0,,,,, +136,0,0,2893,0,509.233,,,,,,,,,136,,,, +136,1,1,2894,0,509.233,,,,,,176,102,0,,,,, +136,2,3,2895,0,509.233,,,,,,176,102,0,,,,, +135,3,1,2888,0,509.233,,,,,,144,100,0,,,,, +135,6,3,2892,682,509.616,,,,,,144,53,0,,,,, +136,3,1,2896,256,509.81,,,,,,176,102,0,,,,, +136,4,3,2897,256,509.81,,,,,,176,102,0,,,,, +136,5,1,2898,,510.043,,8.0,B6,pppp,2,144,95,2,,,,g, +136,5,1,2898,,510.093,,,,,,144,95,0,,,,, +136,7,1,2899,,510.118,,8.0,C7,pppp,2,144,96,2,,,,g, +136,6,1,2900,,510.118,,8.0,A#6,pppp,2,144,94,2,,,,g, +136,7,1,2899,,510.168,,,,,,144,96,0,,,,, +136,6,1,2900,,510.168,,,,,,144,94,0,,,,, +136,8,1,2901,426,510.193,86,8.0,C#7,ppp,5,144,97,5,,,,, +136,9,3,2902,426,510.193,86,8.0,F#4,ppp,5,144,66,5,,,,, +136,9,3,2902,426,510.237,,,,,,144,66,0,,,,, +136,11,3,2903,,510.237,,8.0,F#4,ppp,5,144,66,5,,,,g, +136,12,3,2904,,510.312,,8.0,F4,ppp,5,144,65,5,,,,g, +136,12,3,2904,,510.362,,,,,,144,65,0,,,,, +136,8,1,2901,426,510.387,,,,,,144,97,0,,,,, +136,11,3,2903,,510.387,,,,,,144,66,0,,,,, +136,10,1,2905,512,510.387,,,,,,176,102,0,,,,, +136,13,3,2906,512,510.387,,,,,,176,102,0,,,,, +136,14,1,2907,768,510.964,,,,,,176,102,0,,,,, +136,15,3,2908,768,510.964,,,,,,176,102,0,,,,, +136,16,0,2909,853,511.005,,,,,,176,64,0,,,,,^ +136,20,3,2910,,511.005,,8.0,G#2,pppp,2,144,44,2,,,,g, +136,20,3,2910,,511.055,,,,,,144,44,0,,,,, +136,21,3,2911,,511.08,,8.0,C2,pppp,2,144,36,2,,,,g, +136,18,1,2912,,511.08,,8.0,A#7,pppp,2,144,106,2,,,,g, +136,21,3,2911,,511.13,,,,,,144,36,0,,,,, +136,18,1,2912,,511.13,,,,,,144,106,0,,,,, +136,19,1,2913,853,511.155,171,4.0,E7,pppp,2,144,100,2,,,,, +136,22,3,2914,853,511.155,,,,,,176,102,0,,,,, +136,23,0,2915,853,511.155,,,,,,,,,,5955,,, +136,17,0,2916,853,511.305,,,,,,176,64,127,,,,,V +136,19,1,2913,853,511.541,,,,,,144,100,0,,,,, +137,0,0,2917,0,511.541,,,,,,,,,137,,,, +137,1,1,2918,0,511.541,,,,,,176,102,0,,,,, +137,2,3,2919,0,511.541,,,,,,176,102,0,,,,, +137,3,4,2920,0,511.541,,,,,,176,102,0,,,,, +137,4,0,2921,85,511.732,,,,,,176,64,0,,,,,^ +137,5,1,2922,85,511.732,171,4.0,C#7,fff,24,144,97,23,,,,, +137,5,1,2922,85,512.118,,,,,,144,97,0,,,,, +137,6,1,2923,256,512.118,,,,,,176,102,0,,,,, +137,7,3,2924,256,512.118,,,,,,176,102,0,,,,, +137,8,3,2925,426,512.501,86,8.0,D3,mf-,16,144,50,16,,,,, +137,9,3,2926,512,512.694,512,2.0,D3,,,,,,,,,, +137,10,1,2927,768,513.271,,,,,,176,102,0,,,,, +137,11,4,2928,768,513.271,,,,,,176,102,0,,,,, +137,12,1,2929,,513.485,,8.0,C5,ppp,5,144,72,5,,,,g, +137,12,1,2929,,513.535,,,,,,144,72,0,,,,, +137,13,1,2930,896,513.56,,,,,,176,102,0,,,,, +137,14,4,2931,896,513.56,128,8.0,E2,ppp,5,144,40,5,,,,, +137,14,4,2931,896,513.848,,,,,,144,40,0,,,,, +138,1,1,2932,0,513.848,,,,,,176,102,0,,,,, +137,15,3,2933,,513.848,,8.0,C2,ppp,5,144,36,5,,,,g, +137,15,3,2933,,513.898,,,,,,144,36,0,,,,, +137,16,3,2934,,513.923,,8.0,A3,ppp,5,144,57,5,,,,g, +137,16,3,2934,,513.973,,,,,,144,57,0,,,,, +137,8,3,2925,426,513.998,,,,,,144,50,0,,,,, +138,0,0,2935,0,513.998,,,,,,,,,138,,,, +138,2,2,2936,0,513.998,1536,1.0,C5,p,11,144,72,11,,,,, +138,3,3,2937,0,513.998,128,8.0,B2,ppp,5,144,47,5,,,,, +138,4,4,2938,0,513.998,512,2.0,G#2,fff,24,144,44,23,,,,, +138,3,3,2937,0,514.287,,,,,,144,47,0,,,,, +138,6,3,2939,128,514.287,,,,,,176,102,0,,,,, +138,5,0,2940,128,514.287,,,,,,176,64,127,,,,,V +138,7,1,2941,256,514.575,512,2.0,F5,p-,10,144,77,10,,,,, +138,8,3,2942,256,514.575,,,,,,176,102,0,,,,, +138,4,4,2938,0,515.152,,,,,,144,44,0,,,,, +138,9,4,2943,512,515.152,1792,1.0,G#2,fff,24,144,44,23,,,,, +138,10,1,2944,768,515.729,128,8.0,F5,,,,,,,,,, +138,11,3,2945,768,515.729,,,,,,176,102,0,,,,, +138,7,1,2941,256,516.018,,,,,,144,77,0,,,,, +138,12,1,2946,896,516.018,128,8.0,A#4,ppp,5,144,70,5,,,,, +138,13,1,2947,1024,516.306,384,4.0,A#4,,,,,,,,,, +138,14,0,2948,1408,517.171,,,,,,176,64,0,,,,,^ +138,15,1,2949,1408,517.171,,,,,,176,102,0,,,,, +138,12,1,2946,896,517.171,,,,,,144,70,0,,,,, +138,16,1,2950,1536,517.46,,,,,,176,102,0,,,,, +138,17,2,2951,1536,517.46,768,2.0,C5,,,,,,,,,, +138,18,3,2952,1536,517.46,,,,,,176,102,0,,,,, +138,19,1,2953,,518.614,,8.0,F4,ppp,5,144,65,5,,,,g, +138,19,1,2953,,518.664,,,,,,144,65,0,,,,, +138,20,1,2954,2048,518.689,256,4.0,G#4,p,11,144,68,11,,,,, +138,21,3,2955,2048,518.689,64,16.0,E3,ppp,5,144,52,5,,,,, +138,21,3,2955,2048,518.833,,,,,,144,52,0,,,,, +138,22,3,2956,2112,518.833,192,8.0,C5,ppp,5,144,72,5,,,,, +139,5,0,2957,9,519.136,,,,,,176,64,0,,,,,^ +138,2,2,2936,0,519.191,,,,,,144,72,0,,,,, +138,9,4,2943,512,519.191,,,,,,144,44,0,,,,, +138,23,0,2958,2303,519.263,,,,,,176,64,127,,,,,V +139,0,0,2959,0,519.266,,,,,,,,,139,,,, +139,1,1,2960,0,519.266,1024,1.0,G#4,,,,,,,,,, +139,2,2,2961,0,519.266,1024,1.0,C2,ppp,5,144,36,5,,,,, +139,3,3,2962,0,519.266,384,4.0,C5,,,,,,,,,, +139,4,4,2963,0,519.266,1024,1.0,C4,pppp,2,144,60,2,,,,, +139,5,0,2964,9,519.436,,,,,,176,64,127,,,,,V +139,6,0,2965,384,519.981,,,,,,176,64,0,,,,,^ +138,22,3,2956,2112,520.131,,,,,,144,72,0,,,,, +139,7,3,2966,384,520.131,128,8.0,D#1,mp,14,144,27,14,,,,, +139,8,3,2967,384,520.131,128,8.0,F3,ppp,5,144,53,5,,,,, +139,6,0,2968,384,520.281,,,,,,176,64,127,,,,,V +139,9,3,2969,512,520.419,512,2.0,D#1,,,,,,,,,, +139,10,3,2970,512,520.419,512,2.0,F3,,,,,,,,,, +139,11,3,2971,,521.498,,8.0,F#1,f,20,144,30,20,,,,g, +139,11,3,2971,,521.548,,,,,,144,30,0,,,,, +139,2,2,2961,0,521.573,,,,,,144,36,0,,,,, +140,0,0,2972,0,521.573,,,,,,,,,140,,,, +140,,,2973,0,521.573,,,,,,176,64,0,,,,,^ +140,1,1,2974,0,521.573,85,8.0,D6,f,20,144,86,20,,,,, +140,2,1,2975,0,521.573,128,8.0,E7,f,20,144,100,20,,,,, +140,3,3,2976,0,521.573,102,8.0,B1,f,20,144,35,20,,,,, +140,4,3,2977,0,521.573,128,8.0,C2,f,20,144,36,20,,,,, +138,20,1,2954,2048,521.723,,,,,,144,68,0,,,,, +139,4,4,2963,0,521.723,,,,,,144,60,0,,,,, +139,7,3,2966,384,521.723,,,,,,144,27,0,,,,, +139,8,3,2967,384,521.723,,,,,,144,53,0,,,,, +140,1,1,2974,0,521.765,,,,,,144,86,0,,,,, +140,5,1,2978,85,521.765,85,8.0,F#5,f,20,144,78,20,,,,, +140,6,1,2979,85,521.765,128,8.0,C#6,f,20,144,85,20,,,,, +140,3,3,2976,0,521.803,,,,,,144,35,0,,,,, +140,7,3,2980,102,521.803,154,8.0,A#3,f,20,144,58,20,,,,, +140,2,1,2975,0,521.862,,,,,,144,100,0,,,,, +140,4,3,2977,0,521.862,,,,,,144,36,0,,,,, +140,8,1,2981,170,521.956,86,8.0,C4,f,20,144,60,20,,,,, +140,9,1,2982,170,521.956,128,8.0,D#4,f,20,144,63,20,,,,, +140,10,1,2983,170,521.956,128,8.0,F#5,,,,,,,,,, +140,6,1,2979,85,522.053,,,,,,144,85,0,,,,, +140,8,1,2981,170,522.15,,,,,,144,60,0,,,,, +140,11,1,2984,256,522.15,85,8.0,G#3,mf,17,144,56,17,,,,, +140,12,3,2985,256,522.15,51,16.0,A#3,,,,,,,,,, +140,5,1,2978,85,522.245,,,,,,144,78,0,,,,, +140,9,1,2982,170,522.245,,,,,,144,63,0,,,,, +140,7,3,2980,102,522.265,,,,,,144,58,0,,,,, +140,13,3,2986,307,522.265,205,4.0,D2,mp,14,144,38,14,,,,, +140,14,1,2987,341,522.342,85,8.0,A4,mp,14,144,69,14,,,,, +140,11,1,2984,256,522.342,,,,,,144,56,0,,,,, +140,14,1,2987,341,522.533,,,,,,144,69,0,,,,, +140,15,1,2988,426,522.533,,,,,,176,102,0,,,,, +140,13,3,2986,307,522.727,,,,,,144,38,0,,,,, +140,16,1,2989,512,522.727,64,16.0,C5,ppp,5,144,72,5,,,,, +140,17,3,2990,512,522.727,,,,,,176,102,0,,,,, +140,16,1,2989,512,522.871,,,,,,144,72,0,,,,, +140,18,1,2991,576,522.871,192,8.0,G#5,ppp,5,144,80,5,,,,, +140,19,3,2992,576,522.871,32,32.0,E4,mp,14,144,64,14,,,,, +140,19,3,2992,576,522.944,,,,,,144,64,0,,,,, +140,20,3,2993,608,522.944,32,32.0,D3,mf,17,144,50,17,,,,, +140,20,3,2993,608,523.016,,,,,,144,50,0,,,,, +140,21,3,2994,640,523.016,128,8.0,F#2,mp,14,144,42,14,,,,, +140,18,1,2991,576,523.304,,,,,,144,80,0,,,,, +140,21,3,2994,640,523.304,,,,,,144,42,0,,,,, +140,22,1,2995,768,523.304,256,4.0,E6,mp,14,144,88,14,,,,, +140,23,3,2996,,523.304,,8.0,C2,pp,8,144,36,8,,,,g, +140,23,3,2996,,523.354,,,,,,144,36,0,,,,, +140,24,3,2997,768,523.379,256,4.0,G#2,mp,14,144,44,14,,,,, +140,26,3,2998,,523.806,,8.0,E5,pp,8,144,76,8,,,,g, +140,25,3,2999,,523.806,,8.0,C3,pp,8,144,48,8,,,,g, +140,26,3,2998,,523.856,,,,,,144,76,0,,,,, +140,25,3,2999,,523.856,,,,,,144,48,0,,,,, +140,22,1,2995,768,523.881,,,,,,144,88,0,,,,, +140,28,3,3000,,523.881,,8.0,G3,pp,8,144,55,8,,,,g, +140,27,3,3001,,523.881,,8.0,F#3,pp,8,144,54,8,,,,g, +140,28,3,3000,,523.931,,,,,,144,55,0,,,,, +140,27,3,3001,,523.931,,,,,,144,54,0,,,,, +140,24,3,2997,768,523.956,,,,,,144,44,0,,,,, +141,0,0,3002,0,523.956,,,,,,,,,141,,,, +141,1,0,3003,0,523.956,,,,,,,,,,5956,,, +141,2,1,3004,0,523.956,,,,,,176,102,0,,,,, +141,3,2,3005,0,523.956,1024,1.0,E4,pp,8,144,64,8,,,,, +141,4,2,3006,0,523.956,1024,1.0,A#4,pp,8,144,70,8,,,,, +141,5,3,3007,0,523.956,,,,,,176,102,0,,,,, +141,6,4,3008,0,523.956,1024,1.0,A#3,pp,8,144,58,8,,,,, +141,7,3,3009,256,524.533,,,,,,176,102,0,,,,, +141,8,3,3010,320,524.677,32,32.0,E1,pp,8,144,28,8,,,,, +141,8,3,3010,320,524.749,,,,,,144,28,0,,,,, +141,9,3,3011,352,524.749,32,32.0,B2,p-,10,144,47,10,,,,, +141,9,3,3011,352,524.821,,,,,,144,47,0,,,,, +141,10,3,3012,384,524.821,21,32.0,C4,p,11,144,60,11,,,,, +141,10,3,3012,384,524.869,,,,,,144,60,0,,,,, +141,11,3,3013,405,524.869,21,32.0,E2,p+,12,144,40,12,,,,, +141,11,3,3013,405,524.916,,,,,,144,40,0,,,,, +141,12,3,3014,426,524.916,22,32.0,F3,mp-,13,144,53,13,,,,, +141,12,3,3014,426,524.966,,,,,,144,53,0,,,,, +141,13,3,3015,448,524.966,32,32.0,G#4,mp,14,144,68,14,,,,, +141,13,3,3015,448,525.038,,,,,,144,68,0,,,,, +141,14,3,3016,480,525.038,32,32.0,F2,mp-,13,144,41,13,,,,, +141,14,3,3016,480,525.11,,,,,,144,41,0,,,,, +141,15,1,3017,512,525.11,,,,,,176,102,0,,,,, +141,16,3,3018,512,525.11,,,,,,176,102,0,,,,, +141,6,4,3008,0,525.301,,,,,,144,58,0,,,,, +141,17,3,3019,597,525.301,171,4.0,A#3,p-,10,144,58,10,,,,, +141,18,1,3020,640,525.398,384,4.0,G#5,p,11,144,80,11,,,,, +141,19,3,3021,768,525.687,256,4.0,A#3,,,,,,,,,, +142,0,0,3022,0,526.264,,,,,,,,,142,,,, +142,1,1,3023,0,526.264,128,8.0,G#5,,,,,,,,,, +142,2,2,3024,0,526.264,1024,1.0,B3,mp,14,144,59,14,,,,, +142,3,3,3025,0,526.264,1024,1.0,A#3,,,,,,,,,, +142,4,4,3026,0,526.264,,,,,,176,102,0,,,,, +141,3,2,3005,0,526.339,,,,,,144,64,0,,,,, +141,4,2,3006,0,526.339,,,,,,144,70,0,,,,, +142,5,1,3027,128,526.552,,,,,,176,102,0,,,,, +141,18,1,3020,640,526.627,,,,,,144,80,0,,,,, +142,6,4,3028,192,526.696,64,16.0,B2,ppp,5,144,47,5,,,,, +142,6,4,3028,192,526.841,,,,,,144,47,0,,,,, +142,7,1,3029,256,526.841,256,4.0,E6,ppp,5,144,88,5,,,,, +142,8,4,3030,256,526.841,,,,,,176,102,0,,,,, +142,7,1,3029,256,527.418,,,,,,144,88,0,,,,, +142,9,1,3031,512,527.418,128,8.0,F3,pppp,2,144,53,2,,,,, +142,10,4,3032,512,527.418,512,2.0,D2,pppp,2,144,38,2,,,,, +142,9,1,3031,512,527.706,,,,,,144,53,0,,,,, +142,11,1,3033,640,527.706,,,,,,176,102,0,,,,, +142,12,1,3034,768,527.994,,,,,,176,102,0,,,,, +143,0,0,3035,0,528.571,,,,,,,,,143,,,, +143,1,1,3036,0,528.571,,,,,,176,102,0,,,,, +143,2,2,3037,0,528.571,1024,1.0,B3,,,,,,,,,, +143,3,3,3038,0,528.571,,,,,,176,102,0,,,,, +143,4,4,3039,0,528.571,1024,1.0,D2,,,,,,,,,, +141,17,3,3019,597,528.646,,,,,,144,58,0,,,,, +144,0,0,3040,0,530.879,,,,,,,,,144,,,, +144,1,1,3041,0,530.879,,,,,,176,102,0,,,,, +144,2,3,3042,0,530.879,,,,,,176,102,0,,,,, +144,3,4,3043,0,530.879,64,16.0,D2,,,,,,,,,, +142,2,2,3024,0,530.954,,,,,,144,59,0,,,,, +144,4,1,3044,64,531.023,192,8.0,E5,pppp,2,144,76,2,,,,, +144,5,4,3045,64,531.023,,,,,,176,102,0,,,,, +144,6,0,3046,64,531.023,,,,,,,,,,5957,,, +142,10,4,3032,512,531.098,,,,,,144,38,0,,,,, +144,4,1,3044,64,531.456,,,,,,144,76,0,,,,, +144,7,1,3047,256,531.456,,,,,,176,102,0,,,,, +144,8,3,3048,256,531.456,192,8.0,B1,pppp,2,144,35,2,,,,, +144,9,4,3049,256,531.456,256,4.0,G#1,pppp,2,144,32,2,,,,, +144,8,3,3048,256,531.889,,,,,,144,35,0,,,,, +144,10,3,3050,448,531.889,64,16.0,A#3,ppp-,4,144,58,4,,,,, +144,10,3,3050,448,532.033,,,,,,144,58,0,,,,, +144,11,1,3051,512,532.033,,,,,,176,102,0,,,,, +144,12,3,3052,512,532.033,64,16.0,F#2,ppp-,4,144,42,4,,,,, +144,13,4,3053,512,532.033,384,4.0,G#1,,,,,,,,,, +144,12,3,3052,512,532.177,,,,,,144,42,0,,,,, +144,14,3,3054,576,532.177,192,8.0,D6,ppp,5,144,86,5,,,,, +144,15,1,3055,640,532.321,384,4.0,C1,ppp,5,144,24,5,,,,, +144,16,3,3056,768,532.61,128,8.0,D6,,,,,,,,,, +144,14,3,3054,576,532.898,,,,,,144,86,0,,,,, +144,17,3,3057,896,532.898,128,8.0,C3,ppp-,4,144,48,4,,,,, +144,18,4,3058,896,532.898,,,,,,176,102,0,,,,, +144,9,4,3049,256,532.898,,,,,,144,32,0,,,,, +144,15,1,3055,640,533.187,,,,,,144,24,0,,,,, +144,17,3,3057,896,533.187,,,,,,144,48,0,,,,, +145,2,1,3059,0,533.187,,,,,,176,102,0,,,,, +144,19,2,3060,,533.187,,8.0,E4,pppp,2,144,64,2,,,,g, +144,19,2,3060,,533.237,,,,,,144,64,0,,,,, +145,0,0,3061,0,533.262,,,,,,,,,145,,,, +145,3,2,3062,0,533.262,512,2.0,D5,ppp-,4,144,74,4,,,,, +145,4,3,3063,0,533.262,1024,1.0,G3,pppp,2,144,55,2,,,,, +145,5,3,3064,0,533.262,1024,1.0,A#3,pppp,2,144,58,2,,,,, +145,1,0,3065,0,533.262,,,,,,176,64,127,,,,,V +145,6,1,3066,256,533.839,768,2.0,B5,pppp,2,144,83,2,,,,, +145,3,2,3062,0,534.416,,,,,,144,74,0,,,,, +145,7,2,3067,512,534.416,256,4.0,G6,p,11,144,91,11,,,,, +145,7,2,3067,512,534.993,,,,,,144,91,0,,,,, +145,8,2,3068,768,534.993,128,8.0,G#3,ppp,5,144,56,5,,,,, +145,8,2,3068,768,535.281,,,,,,144,56,0,,,,, +145,9,2,3069,896,535.281,128,8.0,C6,ppp,5,144,84,5,,,,, +145,10,0,3070,1023,535.418,,,,,,176,64,0,,,,,^ +145,4,3,3063,0,535.569,,,,,,144,55,0,,,,, +145,5,3,3064,0,535.569,,,,,,144,58,0,,,,, +145,6,1,3066,256,535.569,,,,,,144,83,0,,,,, +145,9,2,3069,896,535.569,,,,,,144,84,0,,,,, +146,0,0,3071,0,535.569,,,,,,,,,146,,,, +146,2,1,3072,0,535.569,,,,,,176,102,0,,,,, +146,3,2,3073,0,535.569,512,2.0,G#3,p,11,144,56,11,,,,, +146,4,3,3074,0,535.569,1024,1.0,C2,p,11,144,36,11,,,,, +146,5,3,3075,0,535.569,1024,1.0,F#2,p,11,144,42,11,,,,, +146,6,3,3076,0,535.569,1024,1.0,D#3,p,11,144,51,11,,,,, +146,7,4,3077,0,535.569,512,2.0,A1,p,11,144,33,11,,,,, +146,1,0,3078,0,535.718,,,,,,176,64,127,,,,,V +146,8,0,3079,512,536.573,,,,,,176,64,0,,,,,^ +146,3,2,3073,0,536.723,,,,,,144,56,0,,,,, +146,7,4,3077,0,536.723,,,,,,144,33,0,,,,, +146,10,1,3080,512,536.723,512,2.0,C#5,p,11,144,73,11,,,,, +146,11,2,3081,512,536.723,512,2.0,E4,p,11,144,64,11,,,,, +146,12,4,3082,512,536.723,,,,,,176,102,0,,,,, +146,9,0,3083,512,536.873,,,,,,176,64,127,,,,,V +146,11,2,3081,512,537.877,,,,,,144,64,0,,,,, +147,0,0,3084,0,537.877,,,,,,,,,147,,,, +147,1,0,3085,0,537.877,,,,,,176,64,0,,,,,^ +147,2,1,3086,0,537.877,512,2.0,C#5,,,,,,,,,, +147,3,2,3087,0,537.877,512,2.0,D5,p+,12,144,74,12,,,,, +147,4,3,3088,0,537.877,512,2.0,C2,,,,,,,,,, +147,5,3,3089,0,537.877,512,2.0,F#2,,,,,,,,,, +147,6,3,3090,0,537.877,512,2.0,D#3,,,,,,,,,, +147,7,4,3091,0,537.877,,,,,,176,102,0,,,,, +146,4,3,3074,0,539.031,,,,,,144,36,0,,,,, +146,5,3,3075,0,539.031,,,,,,144,42,0,,,,, +146,6,3,3076,0,539.031,,,,,,144,51,0,,,,, +146,10,1,3080,512,539.031,,,,,,144,73,0,,,,, +147,3,2,3087,0,539.031,,,,,,144,74,0,,,,, +147,9,1,3092,512,539.031,,,,,,176,102,0,,,,, +147,10,2,3093,512,539.031,192,8.0,F#1,mf,17,144,30,17,,,,, +147,11,3,3094,512,539.031,384,4.0,G#1,mf,17,144,32,17,,,,, +147,12,3,3095,512,539.031,256,4.0,C2,mf,17,144,36,17,,,,, +147,13,3,3096,512,539.031,256,4.0,A2,mf,17,144,45,17,,,,, +147,14,4,3097,512,539.031,768,2.0,C3,mf,17,144,48,17,,,,, +147,8,0,3098,512,539.031,,,,,,176,64,127,,,,,V +147,15,0,3099,704,539.386,,,,,,176,64,0,,,,,^ +147,10,2,3093,512,539.464,,,,,,144,30,0,,,,, +147,16,2,3100,704,539.464,64,16.0,G1,p,11,144,31,11,,,,, +147,18,1,3101,768,539.608,,,,,,176,102,0,,,,, +147,19,2,3102,768,539.608,128,8.0,G1,,,,,,,,,, +147,12,3,3095,512,539.608,,,,,,144,36,0,,,,, +147,13,3,3096,512,539.608,,,,,,144,45,0,,,,, +147,17,0,3103,768,539.686,,,,,,176,64,127,,,,,V +147,16,2,3100,704,539.896,,,,,,144,31,0,,,,, +147,20,2,3104,896,539.896,384,4.0,A#7,ppp,5,144,106,5,,,,, +147,21,3,3105,896,539.896,384,4.0,G#3,mf,17,144,56,17,,,,, +147,11,3,3094,512,539.896,,,,,,144,32,0,,,,, +147,22,0,3106,1279,540.76,,,,,,176,64,0,,,,,^ +148,0,0,3107,0,540.762,,,,,,,,,148,,,, +148,1,1,3108,0,540.762,64,16.0,D5,ppp,5,144,74,5,,,,, +148,2,2,3109,0,540.762,256,4.0,A#4,ppp,5,144,70,5,,,,, +148,3,3,3110,0,540.762,512,2.0,D4,p,11,144,62,11,,,,, +148,4,4,3111,0,540.762,192,8.0,G3,pppp,2,144,55,2,,,,, +147,20,2,3104,896,540.837,,,,,,144,106,0,,,,, +147,21,3,3105,896,540.837,,,,,,144,56,0,,,,, +147,14,4,3097,512,540.837,,,,,,144,48,0,,,,, +148,1,1,3108,0,540.906,,,,,,144,74,0,,,,, +148,5,1,3112,64,540.906,,,,,,176,102,0,,,,, +148,4,4,3111,0,541.194,,,,,,144,55,0,,,,, +148,6,4,3113,192,541.194,64,16.0,C#4,p,11,144,61,11,,,,, +148,7,1,3114,256,541.339,,,,,,176,102,0,,,,, +148,8,2,3115,256,541.339,1024,1.0,A#4,,,,,,,,,, +148,9,4,3116,256,541.339,128,8.0,C#4,,,,,,,,,, +148,6,4,3113,192,541.627,,,,,,144,61,0,,,,, +148,10,4,3117,384,541.627,128,8.0,G#1,pp,8,144,32,8,,,,, +148,10,4,3117,384,541.916,,,,,,144,32,0,,,,, +148,11,3,3118,512,541.916,,,,,,176,102,0,,,,, +148,12,4,3119,512,541.916,,,,,,176,102,0,,,,, +148,13,0,3120,512,541.916,,,,,,,,,,5958,,, +148,3,3,3110,0,541.916,,,,,,144,62,0,,,,, +148,14,4,3121,597,542.107,171,4.0,G#1,fff,24,144,32,23,,,,, +148,15,3,3122,768,542.493,,,,,,176,102,0,,,,, +148,16,4,3123,768,542.493,512,2.0,G#1,,,,,,,,,, +148,2,2,3109,0,543.646,,,,,,144,70,0,,,,, +148,14,4,3121,597,543.646,,,,,,144,32,0,,,,, +149,0,0,3124,0,543.646,,,,,,,,,149,,,, +149,1,1,3125,0,543.646,256,4.0,E5,mf,17,144,76,17,,,,, +149,2,2,3126,0,543.646,,,,,,176,102,0,,,,, +149,3,3,3127,0,543.646,,,,,,176,102,0,,,,, +149,4,4,3128,0,543.646,,,,,,176,102,0,,,,, +149,1,1,3125,0,544.223,,,,,,144,76,0,,,,, +149,6,1,3129,,544.223,,8.0,E5,pp,8,144,76,8,,,,g, +149,6,1,3129,,544.273,,,,,,144,76,0,,,,, +149,7,1,3130,,544.298,,8.0,C2,pp-,7,144,36,7,,,,g, +149,7,1,3130,,544.348,,,,,,144,36,0,,,,, +149,8,1,3131,,544.373,,8.0,A7,ppp+,6,144,105,6,,,,g, +149,8,1,3131,,544.423,,,,,,144,105,0,,,,, +149,9,1,3132,,544.448,,8.0,E1,ppp,5,144,28,5,,,,g, +149,9,1,3132,,544.498,,,,,,144,28,0,,,,, +149,10,1,3133,,544.523,,8.0,C#5,p,11,144,73,11,,,,g, +149,10,1,3133,,544.573,,,,,,144,73,0,,,,, +149,11,1,3134,256,544.598,768,2.0,B6,mp,14,144,95,14,,,,, +149,12,2,3135,256,544.598,,,,,,176,102,0,,,,, +149,5,0,3136,256,544.598,,,,,,176,64,127,,,,,V +149,13,2,3137,512,545.175,,,,,,176,102,0,,,,, +149,14,4,3138,512,545.175,,,,,,176,102,0,,,,, +149,15,4,3139,704,545.608,64,16.0,A2,ppp,5,144,45,5,,,,, +149,16,4,3140,768,545.752,256,4.0,A2,,,,,,,,,, +149,17,1,3141,,546.329,,8.0,D5,mf-,16,144,74,16,,,,g, +149,11,1,3134,256,546.329,,,,,,144,95,0,,,,, +149,17,1,3141,,546.379,,,,,,144,74,0,,,,, +149,18,1,3142,,546.404,,8.0,A7,mf+,18,144,105,18,,,,g, +149,18,1,3142,,546.454,,,,,,144,105,0,,,,, +149,19,1,3143,,546.479,,8.0,C1,f-,19,144,24,19,,,,g, +149,19,1,3143,,546.529,,,,,,144,24,0,,,,, +149,20,1,3144,1024,546.554,256,4.0,E4,f,20,144,64,20,,,,, +149,21,3,3145,1024,546.554,,,,,,176,102,0,,,,, +149,22,4,3146,1024,546.554,170,4.0,A2,,,,,,,,,, +149,15,4,3139,704,546.712,,,,,,144,45,0,,,,, +149,23,3,3147,1109,546.746,171,4.0,F#3,mp,14,144,54,14,,,,, +149,24,0,3148,1194,546.937,,,,,,176,64,0,,,,,^ +149,25,4,3149,1194,546.937,86,8.0,F3,mp,14,144,53,14,,,,, +149,23,3,3147,1109,547.131,,,,,,144,54,0,,,,, +150,0,0,3150,0,547.131,,,,,,,,,150,,,, +150,1,1,3151,0,547.131,768,2.0,E4,,,,,,,,,, +150,2,2,3152,0,547.131,,,,,,176,102,0,,,,, +150,3,3,3153,0,547.131,170,4.0,D#2,mf,17,144,39,17,,,,, +150,4,4,3154,0,547.131,512,2.0,F3,,,,,,,,,, +150,3,3,3153,0,547.514,,,,,,144,39,0,,,,, +150,5,3,3155,170,547.514,171,4.0,A#5,f,20,144,82,20,,,,, +150,5,3,3155,170,547.9,,,,,,144,82,0,,,,, +150,6,3,3156,341,547.9,,,,,,176,102,0,,,,, +150,7,3,3157,512,548.285,,,,,,176,102,0,,,,, +150,8,4,3158,512,548.285,85,8.0,F3,,,,,,,,,, +149,25,4,3149,1194,548.476,,,,,,144,53,0,,,,, +150,9,4,3159,597,548.476,171,4.0,F#1,pp,8,144,30,8,,,,, +150,9,4,3159,597,548.862,,,,,,144,30,0,,,,, +150,10,1,3160,768,548.862,512,2.0,E4,,,,,,,,,, +150,11,2,3161,768,548.862,,,,,,176,102,0,,,,, +150,12,3,3162,768,548.862,,,,,,176,102,0,,,,, +150,13,4,3163,768,548.862,,,,,,176,102,0,,,,, +150,14,2,3164,853,549.053,171,4.0,F#4,mp,14,144,66,14,,,,, +150,14,2,3164,853,549.439,,,,,,144,66,0,,,,, +150,15,2,3165,1024,549.439,,,,,,176,102,0,,,,, +150,16,3,3166,1024,549.439,256,4.0,G#2,f,20,144,44,20,,,,, +150,17,0,3167,1156,549.736,,,,,,176,64,127,,,,,V +150,16,3,3166,1024,550.016,,,,,,144,44,0,,,,, +151,1,1,3168,0,550.016,512,2.0,E4,,,,,,,,,, +150,24,3,3169,,550.016,,8.0,C#5,mf,17,144,73,17,,,,g, +150,24,3,3169,,550.066,,,,,,144,73,0,,,,, +150,25,3,3170,,550.091,,8.0,A3,mf,17,144,57,17,,,,g, +150,25,3,3170,,550.141,,,,,,144,57,0,,,,, +150,26,3,3171,,550.166,,8.0,F#3,mf,17,144,54,17,,,,g, +150,26,3,3171,,550.216,,,,,,144,54,0,,,,, +150,18,2,3172,,550.241,,8.0,A#7,f,20,144,106,20,,,,g, +150,18,2,3172,,550.291,,,,,,144,106,0,,,,, +150,19,2,3173,,550.316,,8.0,F#5,f,20,144,78,20,,,,g, +150,19,2,3173,,550.366,,,,,,144,78,0,,,,, +150,20,2,3174,,550.391,,8.0,D6,f+,21,144,86,21,,,,g, +150,20,2,3174,,550.441,,,,,,144,86,0,,,,, +150,21,2,3175,,550.466,,8.0,D#4,f+,21,144,63,21,,,,g, +150,21,2,3175,,550.516,,,,,,144,63,0,,,,, +150,22,2,3176,,550.541,,8.0,A#6,ff,22,144,94,22,,,,g, +150,22,2,3176,,550.591,,,,,,144,94,0,,,,, +150,23,2,3177,,550.616,,8.0,G#3,ff,22,144,56,22,,,,g, +150,23,2,3177,,550.666,,,,,,144,56,0,,,,, +151,0,0,3178,0,550.691,,,,,,,,,151,,,, +151,2,2,3179,0,550.691,1024,1.0,D5,f,20,144,74,20,,,,, +151,3,3,3180,0,550.691,,,,,,176,102,0,,,,, +151,4,4,3181,0,550.691,,,,,,176,102,0,,,,, +149,20,1,3144,1024,551.169,,,,,,144,64,0,,,,, +151,5,1,3182,512,551.844,256,4.0,C5,f,20,144,72,20,,,,, +151,6,3,3183,512,551.844,,,,,,176,102,0,,,,, +151,7,4,3184,512,551.844,256,4.0,C1,f,20,144,24,20,,,,, +151,2,2,3179,0,552.421,,,,,,144,74,0,,,,, +151,7,4,3184,512,552.421,,,,,,144,24,0,,,,, +151,8,0,3185,768,552.421,,,,,,176,64,0,,,,,^ +151,9,1,3186,768,552.421,768,2.0,C5,,,,,,,,,, +151,10,1,3187,768,552.421,512,2.0,D5,ff,22,144,74,22,,,,, +151,11,3,3188,768,552.421,,,,,,176,102,0,,,,, +151,12,4,3189,768,552.421,256,4.0,D2,pp,8,144,38,8,,,,, +151,15,4,3190,,552.923,,8.0,C2,pp,8,144,36,8,,,,g, +151,14,4,3191,,552.923,,8.0,F#1,pp,8,144,30,8,,,,g, +151,15,4,3190,,552.973,,,,,,144,36,0,,,,, +151,14,4,3191,,552.973,,,,,,144,30,0,,,,, +151,13,2,3192,1024,552.998,512,2.0,F#4,f,20,144,66,20,,,,, +151,16,4,3193,1024,552.998,,,,,,176,102,0,,,,, +151,12,4,3189,768,553.373,,,,,,144,38,0,,,,, +151,17,4,3194,,553.425,,8.0,F3,mp,14,144,53,14,,,,g, +151,17,4,3194,,553.475,,,,,,144,53,0,,,,, +151,18,4,3195,,553.5,,8.0,A#2,mp,14,144,46,14,,,,g, +151,18,4,3195,,553.55,,,,,,144,46,0,,,,, +151,19,4,3196,1280,553.575,,,,,,176,102,0,,,,, +151,13,2,3192,1024,554.152,,,,,,144,66,0,,,,, +152,0,0,3197,0,554.152,,,,,,,,,152,,,, +152,1,1,3198,0,554.152,256,4.0,C5,,,,,,,,,, +152,2,1,3199,0,554.152,256,4.0,D5,,,,,,,,,, +152,3,2,3200,0,554.152,,,,,,176,102,0,,,,, +152,4,3,3201,0,554.152,256,4.0,D#3,ff,22,144,51,22,,,,, +152,8,3,3202,,554.579,,8.0,B5,f,20,144,83,20,,,,g, +152,8,3,3202,,554.629,,,,,,144,83,0,,,,, +152,9,3,3203,,554.654,,8.0,F#2,f,20,144,42,20,,,,g, +151,10,1,3187,768,554.671,,,,,,144,74,0,,,,, +152,9,3,3203,,554.704,,,,,,144,42,0,,,,, +152,4,3,3201,0,554.729,,,,,,144,51,0,,,,, +152,5,1,3204,256,554.729,64,16.0,C5,,,,,,,,,, +152,6,1,3205,256,554.729,64,16.0,D5,,,,,,,,,, +152,7,2,3206,256,554.729,64,16.0,G#2,ff,22,144,44,22,,,,, +152,10,3,3207,256,554.729,1024,1.0,A3,mp,14,144,57,14,,,,, +152,7,2,3206,256,554.873,,,,,,144,44,0,,,,, +152,11,1,3208,320,554.873,,,,,,176,102,0,,,,, +152,12,2,3209,320,554.873,21,32.0,A#7,mf+,18,144,106,18,,,,, +152,12,2,3209,320,554.921,,,,,,144,106,0,,,,, +152,13,2,3210,341,554.921,21,32.0,D7,mf,17,144,98,17,,,,, +152,14,2,3211,362,554.968,22,32.0,G#3,mp+,15,144,56,15,,,,, +152,14,2,3211,362,555.018,,,,,,144,56,0,,,,, +152,15,1,3212,384,555.018,,,,,,176,102,0,,,,, +152,16,2,3213,384,555.018,128,8.0,D#4,mp,14,144,63,14,,,,, +152,13,2,3210,341,555.193,,,,,,144,98,0,,,,, +151,5,1,3182,512,555.248,,,,,,144,72,0,,,,, +152,18,1,3214,512,555.306,,,,,,176,102,0,,,,, +152,19,2,3215,512,555.306,768,2.0,D#4,,,,,,,,,, +152,17,0,3216,512,555.306,,,,,,176,64,127,,,,,V +152,20,1,3217,768,555.883,,,,,,176,102,0,,,,, +152,21,1,3218,853,556.075,171,4.0,A#6,pp,8,144,94,8,,,,, +152,22,1,3219,853,556.075,256,4.0,C#7,pp,8,144,97,8,,,,, +152,21,1,3218,853,556.46,,,,,,144,94,0,,,,, +152,23,1,3220,1024,556.46,,,,,,176,102,0,,,,, +152,22,1,3219,853,556.651,,,,,,144,97,0,,,,, +152,24,1,3221,1109,556.651,171,4.0,F#4,pp,8,144,66,8,,,,, +152,16,2,3213,384,557.037,,,,,,144,63,0,,,,, +152,24,1,3221,1109,557.037,,,,,,144,66,0,,,,, +152,25,0,3222,1280,557.037,,,,,,176,64,0,,,,,^ +152,26,1,3223,1280,557.037,256,4.0,G#3,f,20,144,56,20,,,,, +152,27,2,3224,1280,557.037,,,,,,176,102,0,,,,, +152,28,3,3225,1280,557.037,85,8.0,A3,,,,,,,,,, +152,29,3,3226,1365,557.228,85,8.0,F4,ppp,5,144,65,5,,,,, +152,29,3,3226,1365,557.42,,,,,,144,65,0,,,,, +152,30,3,3227,1450,557.42,,,,,,176,102,0,,,,, +152,10,3,3207,256,557.453,,,,,,144,57,0,,,,, +152,26,1,3223,1280,557.614,,,,,,144,56,0,,,,, +153,0,0,3228,0,557.614,,,,,,,,,153,,,, +153,1,0,3229,0,557.614,,,,,,,,,,5959,,, +153,2,1,3230,0,557.614,,,,,,176,102,0,,,,, +153,3,2,3231,0,557.614,256,4.0,C#5,p,11,144,73,11,,,,, +153,4,3,3232,0,557.614,128,8.0,C2,ff,22,144,36,22,,,,, +153,5,4,3233,0,557.614,1536,1.0,D#1,ff,22,144,27,22,,,,, +153,4,3,3232,0,557.902,,,,,,144,36,0,,,,, +153,6,3,3234,128,557.902,128,8.0,A4,ff,22,144,69,22,,,,, +153,7,1,3235,170,557.997,86,8.0,C5,ppp,5,144,72,5,,,,, +153,3,2,3231,0,558.191,,,,,,144,73,0,,,,, +153,6,3,3234,128,558.191,,,,,,144,69,0,,,,, +153,8,1,3236,256,558.191,256,4.0,C5,,,,,,,,,, +153,9,2,3237,256,558.191,256,4.0,E6,f,20,144,88,20,,,,, +153,10,2,3238,256,558.191,256,4.0,D7,p,11,144,98,11,,,,, +153,11,3,3239,256,558.191,,,,,,176,102,0,,,,, +153,13,1,3240,512,558.768,1024,1.0,C5,,,,,,,,,, +153,14,2,3241,512,558.768,1024,1.0,C4,p,11,144,60,11,,,,, +153,15,3,3242,512,558.768,,,,,,176,102,0,,,,, +153,12,0,3243,512,558.768,,,,,,176,64,127,,,,,V +153,9,2,3237,256,559.443,,,,,,144,88,0,,,,, +153,10,2,3238,256,559.443,,,,,,144,98,0,,,,, +153,16,0,3244,1535,561.073,,,,,,176,64,0,,,,,^ +153,14,2,3241,512,561.075,,,,,,144,60,0,,,,, +154,0,0,3245,0,561.075,,,,,,,,,154,,,, +154,1,1,3246,0,561.075,384,4.0,C5,,,,,,,,,, +154,2,2,3247,0,561.075,,,,,,176,102,0,,,,, +154,3,3,3248,0,561.075,128,8.0,G1,p,11,144,31,11,,,,, +154,4,4,3249,0,561.075,1024,1.0,C1,f,20,144,24,20,,,,, +154,5,4,3250,0,561.075,1024,1.0,D#1,,,,,,,,,, +154,3,3,3248,0,561.364,,,,,,144,31,0,,,,, +154,6,3,3251,128,561.364,128,8.0,C3,p-,10,144,48,10,,,,, +154,7,3,3252,256,561.652,128,8.0,C3,,,,,,,,,, +154,6,3,3251,128,561.941,,,,,,144,48,0,,,,, +154,8,1,3253,,561.941,,8.0,E5,pppp,2,144,76,2,,,,g, +154,8,1,3253,,561.991,,,,,,144,76,0,,,,, +154,9,1,3254,384,562.016,64,16.0,E4,pp,8,144,64,8,,,,, +154,10,2,3255,384,562.016,64,16.0,D#3,mf,17,144,51,17,,,,, +154,11,2,3256,384,562.016,64,16.0,G#3,mf,17,144,56,17,,,,, +154,12,3,3257,384,562.016,64,16.0,G#1,pp,8,144,32,8,,,,, +154,9,1,3254,384,562.16,,,,,,144,64,0,,,,, +154,10,2,3255,384,562.16,,,,,,144,51,0,,,,, +154,11,2,3256,384,562.16,,,,,,144,56,0,,,,, +154,12,3,3257,384,562.16,,,,,,144,32,0,,,,, +154,13,1,3258,448,562.16,,,,,,176,102,0,,,,, +154,14,2,3259,448,562.16,64,16.0,A7,mf,17,144,105,17,,,,, +154,15,3,3260,448,562.16,,,,,,176,102,0,,,,, +154,14,2,3259,448,562.304,,,,,,144,105,0,,,,, +154,16,1,3261,,562.304,,8.0,A7,mp-,13,144,105,13,,,,g, +154,16,1,3261,,562.354,,,,,,144,105,0,,,,, +154,17,1,3262,512,562.379,512,2.0,E4,p,11,144,64,11,,,,, +154,18,2,3263,512,562.379,,,,,,176,102,0,,,,, +154,19,3,3264,512,562.379,128,8.0,C3,pp,8,144,48,8,,,,, +154,20,3,3265,512,562.379,128,8.0,F#3,pp,8,144,54,8,,,,, +153,7,1,3235,170,562.616,,,,,,144,72,0,,,,, +154,19,3,3264,512,562.668,,,,,,144,48,0,,,,, +154,20,3,3265,512,562.668,,,,,,144,54,0,,,,, +154,21,3,3266,640,562.668,,,,,,176,102,0,,,,, +154,22,3,3267,768,562.956,,,,,,176,102,0,,,,, +154,4,4,3249,0,563.383,,,,,,144,24,0,,,,, +154,17,1,3262,512,563.533,,,,,,144,64,0,,,,, +154,23,1,3268,1024,563.533,512,2.0,D#3,ff,22,144,51,22,,,,, +154,24,3,3269,1024,563.533,128,8.0,G#2,pp,8,144,44,8,,,,, +154,25,3,3270,1024,563.533,128,8.0,A#2,pp,8,144,46,8,,,,, +154,26,4,3271,1024,563.533,512,2.0,F#1,ff,22,144,30,22,,,,, +154,24,3,3269,1024,563.821,,,,,,144,44,0,,,,, +154,25,3,3270,1024,563.821,,,,,,144,46,0,,,,, +154,27,3,3272,1152,563.821,128,8.0,C#4,pp,8,144,61,8,,,,, +153,5,4,3233,0,564.058,,,,,,144,27,0,,,,, +154,27,3,3272,1152,564.11,,,,,,144,61,0,,,,, +154,28,2,3273,1280,564.11,128,8.0,B5,ppp,5,144,83,5,,,,, +154,29,3,3274,1280,564.11,256,4.0,E2,f,20,144,40,20,,,,, +154,28,2,3273,1280,564.398,,,,,,144,83,0,,,,, +154,30,2,3275,1408,564.398,64,16.0,C7,p,11,144,96,11,,,,, +154,31,2,3276,1408,564.398,64,16.0,D7,ppp,5,144,98,5,,,,, +154,30,2,3275,1408,564.543,,,,,,144,96,0,,,,, +154,31,2,3276,1408,564.543,,,,,,144,98,0,,,,, +154,32,2,3277,1472,564.543,64,16.0,D5,p,11,144,74,11,,,,, +154,32,2,3277,1472,564.687,,,,,,144,74,0,,,,, +155,0,0,3278,0,564.687,,,,,,,,,155,,,, +155,1,1,3279,0,564.687,1536,1.0,E4,p,11,144,64,11,,,,, +155,2,3,3280,0,564.687,1536,1.0,G#2,ff,22,144,44,22,,,,, +155,3,4,3281,0,564.687,768,2.0,F#1,,,,,,,,,, +154,23,1,3268,1024,564.687,,,,,,144,51,0,,,,, +154,29,3,3274,1280,564.687,,,,,,144,40,0,,,,, +154,26,4,3271,1024,566.418,,,,,,144,30,0,,,,, +155,4,4,3282,768,566.418,768,2.0,B3,mp,14,144,59,14,,,,, +155,5,0,3283,1050,567.053,,,,,,176,64,127,,,,,V +155,1,1,3279,0,568.148,,,,,,144,64,0,,,,, +155,2,3,3280,0,568.148,,,,,,144,44,0,,,,, +156,0,0,3284,0,568.148,,,,,,,,,156,,,, +156,1,1,3285,0,568.148,,,,,,176,102,0,,,,, +156,2,2,3286,0,568.148,,,,,,176,102,0,,,,, +156,3,3,3287,0,568.148,,,,,,176,102,0,,,,, +156,4,4,3288,0,568.148,1536,1.0,B3,,,,,,,,,, +156,5,1,3289,384,569.014,128,8.0,A#4,f,20,144,70,20,,,,, +156,5,1,3289,384,569.302,,,,,,144,70,0,,,,, +156,6,1,3290,512,569.302,128,8.0,E7,f+,21,144,100,21,,,,, +156,7,2,3291,512,569.302,,,,,,176,102,0,,,,, +156,8,3,3292,512,569.302,,,,,,176,102,0,,,,, +156,6,1,3290,512,569.591,,,,,,144,100,0,,,,, +156,9,1,3293,640,569.591,128,8.0,A4,f,20,144,69,20,,,,, +156,9,1,3293,640,569.879,,,,,,144,69,0,,,,, +156,10,0,3294,768,569.879,,,,,,176,64,0,,,,,^ +156,11,1,3295,768,569.879,256,4.0,F#2,f,20,144,42,20,,,,, +156,12,3,3296,768,569.879,,,,,,176,102,0,,,,, +156,13,3,3297,819,569.994,51,16.0,C2,mf+,18,144,36,18,,,,, +156,13,3,3297,819,570.109,,,,,,144,36,0,,,,, +156,14,3,3298,870,570.109,51,16.0,G#2,mf-,16,144,44,16,,,,, +156,14,3,3298,870,570.224,,,,,,144,44,0,,,,, +156,15,3,3299,921,570.224,51,16.0,A3,mp,14,144,57,14,,,,, +156,15,3,3299,921,570.339,,,,,,144,57,0,,,,, +156,16,3,3300,972,570.339,,,,,,176,102,0,,,,, +156,17,1,3301,1024,570.456,,,,,,176,102,0,,,,, +156,18,3,3302,1024,570.456,,,,,,176,102,0,,,,, +156,11,1,3295,768,570.456,,,,,,144,42,0,,,,, +156,23,3,3303,,570.958,,8.0,A#3,pppp,2,144,58,2,,,,g, +156,23,3,3303,,571.008,,,,,,144,58,0,,,,, +156,20,1,3304,1280,571.033,,,,,,176,102,0,,,,, +156,21,2,3305,1280,571.033,256,4.0,E5,ff,22,144,76,22,,,,, +156,22,2,3306,1280,571.033,256,4.0,A5,mf,17,144,81,17,,,,, +156,24,3,3307,1280,571.033,128,8.0,A2,mp,14,144,45,14,,,,, +156,25,3,3308,1280,571.033,128,8.0,C3,mp,14,144,48,14,,,,, +156,19,0,3309,1280,571.033,,,,,,176,64,127,,,,,V +156,26,3,3310,1408,571.321,128,8.0,C#1,mp+,15,144,25,15,,,,, +156,27,3,3311,1408,571.321,128,8.0,F3,mp+,15,144,53,15,,,,, +156,24,3,3307,1280,571.396,,,,,,144,45,0,,,,, +156,25,3,3308,1280,571.396,,,,,,144,48,0,,,,, +156,26,3,3310,1408,571.61,,,,,,144,25,0,,,,, +156,27,3,3311,1408,571.61,,,,,,144,53,0,,,,, +157,0,0,3312,0,571.61,,,,,,,,,157,,,, +157,1,1,3313,0,571.61,128,8.0,G4,pp,8,144,67,8,,,,, +157,2,1,3314,0,571.61,128,8.0,D5,pp,8,144,74,8,,,,, +157,3,2,3315,0,571.61,192,8.0,E5,,,,,,,,,, +157,4,3,3316,0,571.61,1024,1.0,D#3,p,11,144,51,11,,,,, +157,5,4,3317,0,571.61,256,4.0,B3,,,,,,,,,, +156,22,2,3306,1280,571.685,,,,,,144,81,0,,,,, +157,2,1,3314,0,571.898,,,,,,144,74,0,,,,, +157,6,1,3318,128,571.898,128,8.0,G4,,,,,,,,,, +157,7,1,3319,128,571.898,128,8.0,G#4,pp-,7,144,68,7,,,,, +157,8,2,3320,192,572.043,64,16.0,B1,ff,22,144,35,22,,,,, +156,21,2,3305,1280,572.118,,,,,,144,76,0,,,,, +157,9,0,3321,256,572.187,,,,,,176,64,0,,,,,^ +157,10,1,3322,256,572.187,,,,,,176,102,0,,,,, +157,11,2,3323,256,572.187,512,2.0,B1,,,,,,,,,, +157,12,4,3324,256,572.187,256,4.0,G3,f,20,144,55,20,,,,, +157,1,1,3313,0,572.187,,,,,,144,67,0,,,,, +157,7,1,3319,128,572.187,,,,,,144,68,0,,,,, +155,4,4,3282,768,572.337,,,,,,144,59,0,,,,, +157,13,1,3325,384,572.475,128,8.0,C#4,p,11,144,61,11,,,,, +157,14,1,3326,,572.689,,8.0,G#5,p,11,144,80,11,,,,g, +157,14,1,3326,,572.739,,,,,,144,80,0,,,,, +157,13,1,3325,384,572.764,,,,,,144,61,0,,,,, +157,15,1,3327,512,572.764,128,8.0,A1,p,11,144,33,11,,,,, +157,16,4,3328,512,572.764,256,4.0,G3,,,,,,,,,, +157,17,4,3329,512,572.764,256,4.0,A3,pp,8,144,57,8,,,,, +157,15,1,3327,512,573.052,,,,,,144,33,0,,,,, +157,18,1,3330,640,573.052,128,8.0,F2,p,11,144,41,11,,,,, +157,17,4,3329,512,573.341,,,,,,144,57,0,,,,, +157,18,1,3330,640,573.341,,,,,,144,41,0,,,,, +157,19,1,3331,768,573.341,768,2.0,C#4,mp,14,144,61,14,,,,, +157,20,2,3332,768,573.341,768,2.0,B1,,,,,,,,,, +157,21,4,3333,768,573.341,768,2.0,G3,,,,,,,,,, +157,22,3,3334,1024,573.918,256,4.0,C1,mf,17,144,24,17,,,,, +157,23,3,3335,1024,573.918,256,4.0,G#1,mf,17,144,32,17,,,,, +157,24,3,3336,1024,573.918,256,4.0,D#3,,,,,,,,,, +157,23,3,3335,1024,574.494,,,,,,144,32,0,,,,, +157,26,3,3337,1280,574.494,256,4.0,C1,,,,,,,,,, +157,27,3,3338,1280,574.494,256,4.0,D#3,,,,,,,,,, +157,25,0,3339,1280,574.494,,,,,,176,64,127,,,,,V +158,0,0,3340,0,575.071,,,,,,,,,158,,,, +158,1,1,3341,0,575.071,256,4.0,C#4,,,,,,,,,, +158,2,2,3342,0,575.071,256,4.0,B1,,,,,,,,,, +158,3,3,3343,0,575.071,256,4.0,C1,,,,,,,,,, +158,4,3,3344,0,575.071,256,4.0,D#3,,,,,,,,,, +158,5,4,3345,0,575.071,256,4.0,G3,,,,,,,,,, +157,19,1,3331,768,575.648,,,,,,144,61,0,,,,, +157,4,3,3316,0,575.648,,,,,,144,51,0,,,,, +157,8,2,3320,192,575.648,,,,,,144,35,0,,,,, +157,22,3,3334,1024,575.648,,,,,,144,24,0,,,,, +158,6,1,3346,256,575.648,170,4.0,C#5,mp,14,144,73,14,,,,, +158,7,1,3347,256,575.648,256,4.0,D6,mp,14,144,86,14,,,,, +158,8,2,3348,256,575.648,,,,,,176,102,0,,,,, +158,9,3,3349,256,575.648,,,,,,176,102,0,,,,, +158,10,4,3350,256,575.648,170,4.0,G3,,,,,,,,,, +158,11,4,3351,256,575.648,256,4.0,G#3,f,20,144,56,20,,,,, +158,12,0,3352,426,575.881,,,,,,176,64,0,,,,,^ +157,12,4,3324,256,576.031,,,,,,144,55,0,,,,, +158,6,1,3346,256,576.031,,,,,,144,73,0,,,,, +158,13,1,3353,426,576.031,,,,,,176,102,0,,,,, +158,14,4,3354,426,576.031,171,4.0,F#2,f,20,144,42,20,,,,, +158,15,4,3355,426,576.031,256,4.0,A2,f,20,144,45,20,,,,, +158,16,4,3356,426,576.031,256,4.0,F3,f,20,144,53,20,,,,, +158,17,4,3357,426,576.031,256,4.0,A#3,f,20,144,58,20,,,,, +158,12,0,3358,426,576.181,,,,,,176,64,127,,,,,V +158,7,1,3347,256,576.225,,,,,,144,86,0,,,,, +158,11,4,3351,256,576.225,,,,,,144,56,0,,,,, +158,18,2,3359,512,576.225,,,,,,176,102,0,,,,, +158,,,3360,607,576.289,,,,,,176,64,0,,,,,^ +158,14,4,3354,426,576.417,,,,,,144,42,0,,,,, +158,19,1,3361,597,576.417,85,8.0,G#4,mp,14,144,68,14,,,,, +158,20,4,3362,597,576.417,171,4.0,E2,f-,19,144,40,19,,,,, +158,21,4,3363,597,576.417,256,4.0,A#2,f-,19,144,46,19,,,,, +158,22,4,3364,597,576.417,256,4.0,E3,f-,19,144,52,19,,,,, +158,,,3365,607,576.589,,,,,,176,64,127,,,,,V +158,23,1,3366,682,576.608,86,8.0,F2,mp+,15,144,41,15,,,,, +158,15,4,3355,426,576.608,,,,,,144,45,0,,,,, +158,16,4,3356,426,576.608,,,,,,144,53,0,,,,, +158,17,4,3357,426,576.608,,,,,,144,58,0,,,,, +158,19,1,3361,597,576.608,,,,,,144,68,0,,,,, +158,23,1,3366,682,576.802,,,,,,144,41,0,,,,, +158,24,1,3367,768,576.802,256,4.0,B6,mf,17,144,95,17,,,,, +158,25,2,3368,768,576.802,192,8.0,D4,mf,17,144,62,17,,,,, +158,26,2,3369,768,576.802,128,8.0,E6,mf,17,144,88,17,,,,, +158,27,3,3370,768,576.802,,,,,,176,102,0,,,,, +158,28,4,3371,768,576.802,192,8.0,F#3,f-,19,144,54,19,,,,, +158,20,4,3362,597,576.802,,,,,,144,40,0,,,,, +158,29,0,3372,814,576.906,,,,,,176,64,0,,,,,^ +158,21,4,3363,597,576.994,,,,,,144,46,0,,,,, +158,22,4,3364,597,576.994,,,,,,144,52,0,,,,, +158,26,2,3369,768,577.091,,,,,,144,88,0,,,,, +158,25,2,3368,768,577.235,,,,,,144,62,0,,,,, +158,28,4,3371,768,577.235,,,,,,144,54,0,,,,, +158,30,2,3373,960,577.235,,,,,,176,102,0,,,,, +158,31,4,3374,960,577.235,64,16.0,A#2,ff,22,144,46,22,,,,, +158,32,4,3375,960,577.235,64,16.0,C#3,ff,22,144,49,22,,,,, +158,24,1,3367,768,577.379,,,,,,144,95,0,,,,, +158,33,1,3376,1024,577.379,,,,,,176,102,0,,,,, +158,34,2,3377,1024,577.379,,,,,,176,102,0,,,,, +158,35,4,3378,1024,577.379,128,8.0,A#2,,,,,,,,,, +158,36,4,3379,1024,577.379,128,8.0,C#3,,,,,,,,,, +158,37,0,3380,1024,577.379,,,,,,,,,,5960,,, +158,31,4,3374,960,577.668,,,,,,144,46,0,,,,, +158,32,4,3375,960,577.668,,,,,,144,49,0,,,,, +158,38,4,3381,1152,577.668,128,8.0,A0,ff+,23,144,21,23,,,,, +159,0,0,3382,0,577.956,,,,,,,,,159,,,, +159,1,1,3383,0,577.956,,,,,,176,102,0,,,,, +159,2,3,3384,0,577.956,512,2.0,B3,p,11,144,59,11,,,,, +159,3,4,3385,0,577.956,1024,1.0,A0,,,,,,,,,, +159,4,3,3386,512,579.11,128,8.0,B3,,,,,,,,,, +159,2,3,3384,0,579.398,,,,,,144,59,0,,,,, +159,6,3,3387,640,579.398,128,8.0,A2,mf,17,144,45,17,,,,, +159,7,3,3388,640,579.398,128,8.0,G3,pp,8,144,55,8,,,,, +159,5,0,3389,640,579.398,,,,,,176,64,127,,,,,V +159,8,3,3390,768,579.687,256,4.0,A2,,,,,,,,,, +159,9,3,3391,768,579.687,256,4.0,G3,,,,,,,,,, +159,6,3,3387,640,580.264,,,,,,144,45,0,,,,, +159,7,3,3388,640,580.264,,,,,,144,55,0,,,,, +160,0,0,3392,0,580.264,,,,,,,,,160,,,, +160,1,1,3393,0,580.264,64,16.0,G#3,p,11,144,56,11,,,,, +160,2,2,3394,0,580.264,1024,1.0,A6,mf,17,144,93,17,,,,, +160,3,3,3395,0,580.264,,,,,,176,102,0,,,,, +160,4,4,3396,0,580.264,1024,1.0,A0,,,,,,,,,, +160,1,1,3393,0,580.408,,,,,,144,56,0,,,,, +160,5,1,3397,64,580.408,64,16.0,A1,mp-,13,144,33,13,,,,, +160,5,1,3397,64,580.552,,,,,,144,33,0,,,,, +160,6,1,3398,128,580.552,64,16.0,D4,mp,14,144,62,14,,,,, +160,6,1,3398,128,580.696,,,,,,144,62,0,,,,, +160,7,1,3399,192,580.696,64,16.0,C5,mf-,16,144,72,16,,,,, +160,8,0,3400,256,580.763,,,,,,176,64,0,,,,,^ +160,7,1,3399,192,580.841,,,,,,144,72,0,,,,, +160,9,1,3401,256,580.841,64,16.0,E3,mf,17,144,52,17,,,,, +160,9,1,3401,256,580.985,,,,,,144,52,0,,,,, +160,11,1,3402,320,580.985,64,16.0,A1,f-,19,144,33,19,,,,, +160,10,0,3403,320,581.063,,,,,,176,64,127,,,,,V +160,11,1,3402,320,581.129,,,,,,144,33,0,,,,, +160,12,1,3404,384,581.129,64,16.0,G#4,f,20,144,68,20,,,,, +160,12,1,3404,384,581.273,,,,,,144,68,0,,,,, +160,13,1,3405,448,581.273,64,16.0,C6,ff,22,144,84,22,,,,, +160,14,0,3406,512,581.418,,,,,,176,64,0,,,,,^ +160,15,1,3407,512,581.418,512,2.0,C6,,,,,,,,,, +161,0,0,3408,0,582.571,,,,,,,,,161,,,, +161,1,1,3409,0,582.571,256,4.0,C6,,,,,,,,,, +161,2,3,3410,0,582.571,,,,,,176,102,0,,,,, +161,3,4,3411,0,582.571,1024,1.0,A0,,,,,,,,,, +160,2,2,3394,0,582.571,,,,,,144,93,0,,,,, +161,4,1,3412,,582.773,,8.0,E5,fff,24,144,76,23,,,,g, +161,4,1,3412,,582.823,,,,,,144,76,0,,,,, +161,5,1,3413,,582.848,,8.0,G#4,fff,24,144,68,23,,,,g, +161,5,1,3413,,582.898,,,,,,144,68,0,,,,, +161,6,1,3414,,582.923,,8.0,A2,fff,24,144,45,23,,,,g, +161,6,1,3414,,582.973,,,,,,144,45,0,,,,, +161,7,1,3415,,582.998,,8.0,D6,fff,24,144,86,23,,,,g, +161,7,1,3415,,583.048,,,,,,144,86,0,,,,, +161,8,1,3416,,583.073,,8.0,G#4,fff,24,144,68,23,,,,g, +161,8,1,3416,,583.123,,,,,,144,68,0,,,,, +160,13,1,3405,448,583.148,,,,,,144,84,0,,,,, +161,9,1,3417,256,583.148,,,,,,176,102,0,,,,, +162,0,0,3418,0,584.879,,,,,,,,,162,,,, +162,1,1,3419,0,584.879,1024,1.0,F4,f,20,144,65,20,,,,, +162,2,1,3420,0,584.879,1024,1.0,C#6,f,20,144,85,20,,,,, +162,3,3,3421,0,584.879,,,,,,176,102,0,,,,, +162,4,4,3422,0,584.879,1024,1.0,A0,,,,,,,,,, +162,2,1,3420,0,587.187,,,,,,144,85,0,,,,, +163,0,0,3423,0,587.187,,,,,,,,,163,,,, +163,1,1,3424,0,587.187,192,8.0,F4,,,,,,,,,, +163,2,2,3425,0,587.187,,,,,,176,102,0,,,,, +163,3,3,3426,0,587.187,,,,,,176,102,0,,,,, +163,4,4,3427,0,587.187,1024,1.0,A0,,,,,,,,,, +163,5,1,3428,192,587.619,64,16.0,A#3,f+,21,144,58,21,,,,, +162,1,1,3419,0,587.619,,,,,,144,65,0,,,,, +163,6,1,3429,256,587.764,512,2.0,A#3,,,,,,,,,, +163,7,2,3430,256,587.764,,,,,,176,102,0,,,,, +163,8,3,3431,256,587.764,256,4.0,E4,ff,22,144,64,22,,,,, +163,9,2,3432,448,588.196,64,16.0,C5,p,11,144,72,11,,,,, +163,10,2,3433,512,588.341,128,8.0,C5,,,,,,,,,, +163,11,3,3434,512,588.341,128,8.0,E4,,,,,,,,,, +163,9,2,3432,448,588.629,,,,,,144,72,0,,,,, +163,12,2,3435,640,588.629,,,,,,176,102,0,,,,, +163,13,3,3436,640,588.629,21,32.0,G#3,mf,17,144,56,17,,,,, +163,8,3,3431,256,588.629,,,,,,144,64,0,,,,, +163,13,3,3436,640,588.676,,,,,,144,56,0,,,,, +163,14,3,3437,661,588.676,21,32.0,A1,fff,24,144,33,23,,,,, +163,15,3,3438,682,588.724,86,8.0,A1,,,,,,,,,, +163,16,1,3439,768,588.918,256,4.0,C2,ff,22,144,36,22,,,,, +163,17,2,3440,768,588.918,,,,,,176,102,0,,,,, +163,18,3,3441,768,588.918,85,8.0,A1,,,,,,,,,, +163,5,1,3428,192,588.918,,,,,,144,58,0,,,,, +163,14,3,3437,661,589.109,,,,,,144,33,0,,,,, +163,19,2,3442,853,589.109,21,32.0,C7,f,20,144,96,20,,,,, +163,20,3,3443,853,589.109,,,,,,176,102,0,,,,, +163,19,2,3442,853,589.156,,,,,,144,96,0,,,,, +163,21,2,3444,874,589.156,22,32.0,D5,mp-,13,144,74,13,,,,, +163,21,2,3444,874,589.206,,,,,,144,74,0,,,,, +163,22,2,3445,896,589.206,128,8.0,E4,pp,8,144,64,8,,,,, +163,22,2,3445,896,589.494,,,,,,144,64,0,,,,, +164,0,0,3446,0,589.494,,,,,,,,,164,,,, +164,1,1,3447,0,589.494,768,2.0,C2,,,,,,,,,, +164,2,2,3448,0,589.494,,,,,,176,102,0,,,,, +164,3,3,3449,0,589.494,,,,,,176,102,0,,,,, +164,4,4,3450,0,589.494,512,2.0,A0,,,,,,,,,, +164,5,4,3451,0,589.494,512,2.0,A#3,f,20,144,58,20,,,,, +164,6,2,3452,256,590.071,256,4.0,C5,mp,14,144,72,14,,,,, +164,7,3,3453,256,590.071,256,4.0,F2,pp,8,144,41,8,,,,, +164,5,4,3451,0,590.648,,,,,,144,58,0,,,,, +164,8,2,3454,512,590.648,64,16.0,C5,,,,,,,,,, +164,9,3,3455,512,590.648,64,16.0,F2,,,,,,,,,, +164,10,4,3456,512,590.648,64,16.0,A0,,,,,,,,,, +164,11,4,3457,512,590.648,64,16.0,E1,f,20,144,28,20,,,,, +164,6,2,3452,256,590.793,,,,,,144,72,0,,,,, +164,7,3,3453,256,590.793,,,,,,144,41,0,,,,, +164,11,4,3457,512,590.793,,,,,,144,28,0,,,,, +164,12,2,3458,576,590.793,,,,,,176,102,0,,,,, +164,13,3,3459,576,590.793,192,8.0,C#3,p,11,144,49,11,,,,, +164,14,4,3460,576,590.793,192,8.0,A0,,,,,,,,,, +164,13,3,3459,576,591.225,,,,,,144,49,0,,,,, +164,15,1,3461,768,591.225,85,8.0,C2,,,,,,,,,, +164,16,2,3462,768,591.225,,,,,,176,102,0,,,,, +164,17,3,3463,768,591.225,,,,,,176,102,0,,,,, +164,18,4,3464,768,591.225,256,4.0,A0,,,,,,,,,, +163,16,1,3439,768,591.417,,,,,,144,36,0,,,,, +164,19,1,3465,853,591.417,171,4.0,A#4,ff,22,144,70,22,,,,, +164,21,3,3466,896,591.514,128,8.0,E4,p,11,144,64,11,,,,, +164,20,0,3467,896,591.514,,,,,,176,64,127,,,,,V +165,0,0,3468,0,591.802,,,,,,,,,165,,,, +165,2,1,3469,0,591.802,1024,1.0,A#4,,,,,,,,,, +165,1,1,3470,,591.802,,8.0,E6,p,11,144,88,11,,,,g, +165,1,1,3470,,591.852,,,,,,144,88,0,,,,, +165,3,1,3471,0,591.877,1024,1.0,F5,p,11,144,77,11,,,,, +165,4,3,3472,0,591.877,1024,1.0,E4,,,,,,,,,, +165,5,4,3473,0,591.877,256,4.0,A0,,,,,,,,,, +165,6,4,3474,256,592.454,768,2.0,A0,,,,,,,,,, +165,7,4,3475,256,592.454,512,2.0,D2,ff,22,144,38,22,,,,, +164,21,3,3466,896,594.11,,,,,,144,64,0,,,,, +165,3,1,3471,0,594.185,,,,,,144,77,0,,,,, +166,0,0,3476,0,594.185,,,,,,,,,166,,,, +166,1,1,3477,0,594.185,512,2.0,A#4,,,,,,,,,, +166,2,2,3478,0,594.185,,,,,,176,102,0,,,,, +166,3,3,3479,0,594.185,,,,,,176,102,0,,,,, +166,4,4,3480,0,594.185,1024,1.0,A0,,,,,,,,,, +166,5,4,3481,0,594.185,1024,1.0,D2,,,,,,,,,, +166,6,1,3482,512,595.339,768,2.0,A#4,,,,,,,,,, +166,7,2,3483,512,595.339,512,2.0,B4,mf,17,144,71,17,,,,, +166,8,3,3484,512,595.339,,,,,,176,102,0,,,,, +166,10,3,3485,,596.343,,8.0,A#4,p,11,144,70,11,,,,g, +166,10,3,3485,,596.393,,,,,,144,70,0,,,,, +166,11,3,3486,,596.418,,8.0,F#2,p,11,144,42,11,,,,g, +166,11,3,3486,,596.468,,,,,,144,42,0,,,,, +166,9,2,3487,1024,596.493,42,16.0,B4,,,,,,,,,, +166,12,3,3488,1024,596.493,,,,,,176,102,0,,,,, +166,13,4,3489,1024,596.493,256,4.0,A0,,,,,,,,,, +166,14,4,3490,1024,596.493,256,4.0,D2,,,,,,,,,, +166,16,0,3491,1109,596.534,,,,,,176,64,0,,,,,^ +166,7,2,3483,512,596.587,,,,,,144,71,0,,,,, +166,15,2,3492,1066,596.587,,,,,,176,102,0,,,,, +166,18,2,3493,1109,596.684,,,,,,176,102,0,,,,, +166,19,3,3494,1109,596.684,171,4.0,A0,mf,17,144,21,17,,,,, +166,20,3,3495,1109,596.684,256,4.0,G#1,p,11,144,32,11,,,,, +166,21,0,3496,1109,596.684,,,,,,,,,,5961,,, +166,17,0,3497,1109,596.834,,,,,,176,64,127,,,,,V +166,19,3,3494,1109,597.069,,,,,,144,21,0,,,,, +167,0,0,3498,0,597.069,,,,,,,,,167,,,, +167,1,1,3499,0,597.069,512,2.0,A#4,,,,,,,,,, +167,2,2,3500,0,597.069,,,,,,176,102,0,,,,, +167,3,3,3501,0,597.069,256,4.0,G#1,,,,,,,,,, +167,4,4,3502,0,597.069,1024,1.0,A0,,,,,,,,,, +167,5,4,3503,0,597.069,1024,1.0,D2,,,,,,,,,, +167,6,2,3504,256,597.646,,,,,,176,102,0,,,,, +167,7,3,3505,256,597.646,170,4.0,G#1,,,,,,,,,, +167,8,0,3506,426,597.88,,,,,,176,64,0,,,,,^ +167,9,2,3507,426,598.03,86,8.0,A#4,mf,17,144,70,17,,,,, +167,10,3,3508,426,598.03,86,8.0,G1,mf,17,144,31,17,,,,, +167,8,0,3509,426,598.18,,,,,,176,64,127,,,,,V +166,20,3,3495,1109,598.221,,,,,,144,32,0,,,,, +167,9,2,3507,426,598.223,,,,,,144,70,0,,,,, +167,11,1,3510,512,598.223,768,2.0,A#4,,,,,,,,,, +167,12,2,3511,512,598.223,,,,,,176,102,0,,,,, +167,13,3,3512,512,598.223,512,2.0,G1,,,,,,,,,, +165,7,4,3475,256,599.089,,,,,,144,38,0,,,,, +167,14,2,3513,,599.227,,8.0,F6,mp,14,144,89,14,,,,g, +167,14,2,3513,,599.277,,,,,,144,89,0,,,,, +167,15,2,3514,,599.302,,8.0,C4,mf,17,144,60,17,,,,g, +167,15,2,3514,,599.352,,,,,,144,60,0,,,,, +167,10,3,3508,426,599.377,,,,,,144,31,0,,,,, +167,16,2,3515,1024,599.377,256,4.0,A#5,f,20,144,82,20,,,,, +167,17,3,3516,1024,599.377,256,4.0,D#3,f,20,144,51,20,,,,, +167,18,4,3517,1024,599.377,128,8.0,A0,,,,,,,,,, +167,19,4,3518,1024,599.377,128,8.0,D2,,,,,,,,,, +167,20,0,3519,1152,599.516,,,,,,176,64,0,,,,,^ +167,21,4,3520,1152,599.666,128,8.0,A0,,,,,,,,,, +167,22,4,3521,1152,599.666,128,8.0,F#1,f-,19,144,30,19,,,,, +167,20,0,3522,1152,599.816,,,,,,176,64,127,,,,,V +167,22,4,3521,1152,599.954,,,,,,144,30,0,,,,, +168,0,0,3523,0,599.954,,,,,,,,,168,,,, +168,1,1,3524,0,599.954,2048,0.5,A#4,,,,,,,,,, +168,2,2,3525,0,599.954,1024,1.0,G#4,ppp,5,144,68,5,,,,, +168,3,2,3526,0,599.954,1024,1.0,A#5,,,,,,,,,, +168,4,3,3527,0,599.954,512,2.0,D#3,,,,,,,,,, +168,5,4,3528,0,599.954,2048,0.5,A0,,,,,,,,,, +168,6,3,3529,512,601.108,128,8.0,D#3,,,,,,,,,, +168,7,3,3530,640,601.396,128,8.0,D#3,,,,,,,,,, +168,8,3,3531,640,601.396,128,8.0,F3,f,20,144,53,20,,,,, +168,9,3,3532,768,601.685,170,4.0,D#3,,,,,,,,,, +168,10,3,3533,768,601.685,256,4.0,F3,,,,,,,,,, +168,11,3,3534,938,602.068,86,8.0,B4,mf,17,144,71,17,,,,, +167,17,3,3516,1024,602.143,,,,,,144,51,0,,,,, +168,8,3,3531,640,602.262,,,,,,144,53,0,,,,, +168,11,3,3534,938,602.262,,,,,,144,71,0,,,,, +168,12,2,3535,1024,602.262,256,4.0,G#4,,,,,,,,,, +168,13,3,3536,1024,602.262,,,,,,176,102,0,,,,, +167,16,2,3515,1024,602.337,,,,,,144,82,0,,,,, +168,14,3,3537,1109,602.453,85,8.0,A0,f,20,144,21,20,,,,, +168,15,0,3538,1194,602.495,,,,,,176,64,0,,,,,^ +168,14,3,3537,1109,602.645,,,,,,144,21,0,,,,, +168,16,3,3539,1194,602.645,86,8.0,E6,ff,22,144,88,22,,,,, +168,15,0,3540,1194,602.795,,,,,,176,64,127,,,,,V +168,17,2,3541,1280,602.839,,,,,,176,102,0,,,,, +168,18,3,3542,1280,602.839,170,4.0,E6,,,,,,,,,, +168,2,2,3525,0,602.914,,,,,,144,68,0,,,,, +168,16,3,3539,1194,603.222,,,,,,144,88,0,,,,, +168,19,3,3543,1450,603.222,86,8.0,G1,mf,17,144,31,17,,,,, +168,19,3,3543,1450,603.416,,,,,,144,31,0,,,,, +168,,,3544,1536,603.416,,,,,,176,64,0,,,,,^ +168,20,2,3545,1536,603.416,,,,,,176,102,0,,,,, +168,21,3,3546,1536,603.416,,,,,,176,102,0,,,,, +168,22,2,3547,1706,603.799,86,8.0,E5,mf,17,144,76,17,,,,, +168,22,2,3547,1706,603.993,,,,,,144,76,0,,,,, +168,23,2,3548,1792,603.993,170,4.0,B3,mp,14,144,59,14,,,,, +168,23,2,3548,1792,604.376,,,,,,144,59,0,,,,, +168,24,2,3549,1962,604.376,,,,,,176,102,0,,,,, +169,0,0,3550,0,604.569,,,,,,,,,169,,,, +169,1,1,3551,0,604.569,768,2.0,A#4,,,,,,,,,, +169,2,2,3552,0,604.569,,,,,,176,102,0,,,,, +169,3,3,3553,0,604.569,,,,,,176,102,0,,,,, +169,4,4,3554,0,604.569,2048,0.5,A0,,,,,,,,,, +169,5,2,3555,256,605.146,,,,,,176,102,0,,,,, +169,7,2,3556,426,605.53,29,32.0,G#2,f,20,144,44,20,,,,, +169,8,2,3557,426,605.53,32,32.0,A#3,f,20,144,58,20,,,,, +169,6,0,3558,426,605.53,,,,,,176,64,127,,,,,V +169,7,2,3556,426,605.595,,,,,,144,44,0,,,,, +169,9,2,3559,455,605.595,28,32.0,C4,f,20,144,60,20,,,,, +169,8,2,3557,426,605.602,,,,,,144,58,0,,,,, +169,9,2,3559,455,605.658,,,,,,144,60,0,,,,, +169,10,2,3560,483,605.658,29,32.0,E7,f,20,144,100,20,,,,, +169,10,2,3560,483,605.723,,,,,,144,100,0,,,,, +169,11,2,3561,512,605.723,32,32.0,A#5,f,20,144,82,20,,,,, +169,11,2,3561,512,605.795,,,,,,144,82,0,,,,, +169,12,0,3562,544,605.795,,,,,,176,64,0,,,,,^ +169,13,2,3563,544,605.795,,,,,,176,102,0,,,,, +169,14,1,3564,768,606.3,170,4.0,A#4,,,,,,,,,, +169,15,2,3565,768,606.3,,,,,,176,102,0,,,,, +164,19,1,3465,853,606.683,,,,,,144,70,0,,,,, +169,16,1,3566,938,606.683,342,2.0,D6,mp,14,144,86,14,,,,, +169,17,2,3567,1024,606.877,,,,,,176,102,0,,,,, +169,18,3,3568,1024,606.877,,,,,,176,102,0,,,,, +169,19,1,3569,1280,607.454,85,8.0,D6,,,,,,,,,, +169,20,3,3570,1280,607.454,,,,,,176,102,0,,,,, +169,16,1,3566,938,607.646,,,,,,144,86,0,,,,, +169,21,1,3571,1365,607.646,85,8.0,C3,pp,8,144,48,8,,,,, +169,22,3,3572,1365,607.646,171,4.0,A#2,ppp,5,144,46,5,,,,, +169,21,1,3571,1365,607.837,,,,,,144,48,0,,,,, +169,23,1,3573,1450,607.837,,,,,,176,102,0,,,,, +169,22,3,3572,1365,608.031,,,,,,144,46,0,,,,, +169,24,1,3574,1536,608.031,42,16.0,B4,f,20,144,71,20,,,,, +169,25,1,3575,1536,608.031,64,16.0,A#5,f,20,144,82,20,,,,, +169,26,1,3576,1536,608.031,64,16.0,C#6,f,20,144,85,20,,,,, +169,27,3,3577,1536,608.031,42,16.0,E4,pppp,2,144,64,2,,,,, +169,24,1,3574,1536,608.126,,,,,,144,71,0,,,,, +169,27,3,3577,1536,608.126,,,,,,144,64,0,,,,, +169,28,1,3578,1578,608.126,,,,,,176,102,0,,,,, +169,29,3,3579,1578,608.126,43,16.0,F#3,pp,8,144,54,8,,,,, +169,25,1,3575,1536,608.175,,,,,,144,82,0,,,,, +169,26,1,3576,1536,608.175,,,,,,144,85,0,,,,, +169,29,3,3579,1578,608.223,,,,,,144,54,0,,,,, +169,30,3,3580,1621,608.223,43,16.0,C4,pp-,7,144,60,7,,,,, +169,30,3,3580,1621,608.319,,,,,,144,60,0,,,,, +169,31,1,3581,1664,608.319,,,,,,176,102,0,,,,, +169,32,3,3582,1664,608.319,,,,,,176,102,0,,,,, +169,33,1,3583,1792,608.608,,,,,,176,102,0,,,,, +169,34,2,3584,1792,608.608,256,4.0,E4,p,11,144,64,11,,,,, +169,35,2,3585,1792,608.608,256,4.0,A#4,p,11,144,70,11,,,,, +169,36,3,3586,,608.608,,8.0,F#2,pp-,7,144,42,7,,,,g, +169,36,3,3586,,608.658,,,,,,144,42,0,,,,, +169,37,3,3587,,608.683,,8.0,G3,pp,8,144,55,8,,,,g, +169,37,3,3587,,608.733,,,,,,144,55,0,,,,, +169,38,3,3588,1792,608.758,256,4.0,G#1,p,11,144,32,11,,,,, +170,0,0,3589,0,609.335,,,,,,,,,170,,,, +170,1,1,3590,0,609.335,,,,,,176,102,0,,,,, +170,2,2,3591,0,609.335,512,2.0,E4,,,,,,,,,, +170,3,2,3592,0,609.335,512,2.0,A#4,,,,,,,,,, +170,4,3,3593,0,609.335,512,2.0,G#1,,,,,,,,,, +170,5,4,3594,0,609.335,2048,0.5,A0,,,,,,,,,, +170,6,2,3595,512,610.489,85,8.0,E4,,,,,,,,,, +170,7,2,3596,512,610.489,128,8.0,A#4,,,,,,,,,, +170,8,3,3597,512,610.489,85,8.0,G#1,,,,,,,,,, +169,34,2,3584,1792,610.53,,,,,,144,64,0,,,,, +169,35,2,3585,1792,610.627,,,,,,144,70,0,,,,, +170,9,2,3598,597,610.68,128,8.0,D6,ppp,5,144,86,5,,,,, +170,10,3,3599,597,610.68,21,32.0,G#1,,,,,,,,,, +170,11,3,3600,597,610.68,32,32.0,B1,pp,8,144,35,8,,,,, +170,12,3,3601,618,610.728,22,32.0,F#1,pp,8,144,30,8,,,,, +170,13,3,3602,618,610.728,32,32.0,G#1,,,,,,,,,, +170,11,3,3600,597,610.752,,,,,,144,35,0,,,,, +170,12,3,3601,618,610.777,,,,,,144,30,0,,,,, +170,14,3,3603,640,610.777,128,8.0,G#1,,,,,,,,,, +170,9,2,3598,597,610.969,,,,,,144,86,0,,,,, +170,15,2,3604,725,610.969,43,16.0,G4,pppp,2,144,67,2,,,,, +170,16,2,3605,768,611.066,170,4.0,G4,,,,,,,,,, +170,17,3,3606,768,611.066,85,8.0,G#1,,,,,,,,,, +170,18,3,3607,853,611.257,171,4.0,C3,mf,17,144,48,17,,,,, +169,38,3,3588,1792,611.28,,,,,,144,32,0,,,,, +170,15,2,3604,725,611.449,,,,,,144,67,0,,,,, +170,19,2,3608,938,611.449,86,8.0,F#3,p,11,144,54,11,,,,, +170,18,3,3607,853,611.643,,,,,,144,48,0,,,,, +170,20,1,3609,1024,611.643,,,,,,176,102,0,,,,, +170,21,2,3610,1024,611.643,256,4.0,F#3,,,,,,,,,, +170,22,3,3611,1024,611.643,,,,,,176,102,0,,,,, +170,23,1,3612,1109,611.834,171,4.0,F6,ff,22,144,89,22,,,,, +170,24,1,3613,1280,612.219,85,8.0,F6,,,,,,,,,, +170,25,2,3614,1280,612.219,85,8.0,F#3,,,,,,,,,, +170,19,2,3608,938,612.411,,,,,,144,54,0,,,,, +170,23,1,3612,1109,612.411,,,,,,144,89,0,,,,, +170,26,1,3615,1365,612.411,171,4.0,B5,f-,19,144,83,19,,,,, +170,27,2,3616,1365,612.411,,,,,,176,102,0,,,,, +170,28,2,3617,1450,612.603,86,8.0,C4,mf,17,144,60,17,,,,, +170,26,1,3615,1365,612.796,,,,,,144,83,0,,,,, +170,28,2,3617,1450,612.796,,,,,,144,60,0,,,,, +170,29,1,3618,1536,612.796,,,,,,176,102,0,,,,, +170,30,2,3619,1536,612.796,,,,,,176,102,0,,,,, +170,32,3,3620,,613.223,,8.0,G3,pp,8,144,55,8,,,,g, +170,32,3,3620,,613.273,,,,,,144,55,0,,,,, +170,33,3,3621,,613.298,,8.0,C3,pp,8,144,48,8,,,,g, +170,33,3,3621,,613.348,,,,,,144,48,0,,,,, +170,31,1,3622,1792,613.373,256,4.0,F5,mf,17,144,77,17,,,,, +170,34,3,3623,1792,613.373,256,4.0,A#3,pp,8,144,58,8,,,,, +171,0,0,3624,0,613.95,,,,,,,,,171,,,, +171,1,1,3625,0,613.95,256,4.0,F5,,,,,,,,,, +171,2,2,3626,0,613.95,,,,,,176,102,0,,,,, +171,3,3,3627,0,613.95,256,4.0,A#3,,,,,,,,,, +171,4,4,3628,0,613.95,2048,0.5,A0,,,,,,,,,, +170,34,3,3623,1792,614.527,,,,,,144,58,0,,,,, +171,5,1,3629,256,614.527,170,4.0,F5,,,,,,,,,, +171,6,2,3630,256,614.527,,,,,,176,102,0,,,,, +171,7,3,3631,256,614.527,,,,,,176,102,0,,,,, +171,8,3,3632,341,614.719,,,,,,176,102,0,,,,, +171,9,2,3633,384,614.816,42,16.0,G5,mp,14,144,79,14,,,,, +171,10,2,3634,384,614.816,64,16.0,A5,f,20,144,81,20,,,,, +170,31,1,3622,1792,614.91,,,,,,144,77,0,,,,, +171,9,2,3633,384,614.91,,,,,,144,79,0,,,,, +171,11,1,3635,426,614.91,,,,,,176,102,0,,,,, +171,12,2,3636,426,614.91,43,16.0,G#4,f,20,144,68,20,,,,, +171,13,2,3637,426,614.91,64,16.0,B4,f,20,144,71,20,,,,, +171,14,3,3638,426,614.91,43,16.0,E3,f,20,144,52,20,,,,, +171,15,3,3639,426,614.91,64,16.0,C4,pp,8,144,60,8,,,,, +171,10,2,3634,384,614.96,,,,,,144,81,0,,,,, +171,12,2,3636,426,615.007,,,,,,144,68,0,,,,, +171,14,3,3638,426,615.007,,,,,,144,52,0,,,,, +171,16,2,3640,469,615.007,43,16.0,E6,pp,8,144,88,8,,,,, +171,17,3,3641,469,615.007,43,16.0,C#2,pp,8,144,37,8,,,,, +171,13,2,3637,426,615.055,,,,,,144,71,0,,,,, +171,15,3,3639,426,615.055,,,,,,144,60,0,,,,, +171,16,2,3640,469,615.104,,,,,,144,88,0,,,,, +171,18,1,3642,512,615.104,,,,,,176,102,0,,,,, +171,19,2,3643,512,615.104,,,,,,176,102,0,,,,, +171,20,3,3644,512,615.104,1024,1.0,C#2,,,,,,,,,, +171,22,1,3645,1536,617.412,512,2.0,A7,f,20,144,105,20,,,,, +171,23,3,3646,1536,617.412,512,2.0,C#2,,,,,,,,,, +171,24,3,3647,1536,617.412,512,2.0,G#2,ppp,5,144,44,5,,,,, +171,21,0,3648,1536,617.412,,,,,,176,64,127,,,,,V +172,0,0,3649,0,618.566,,,,,,,,,172,,,, +172,1,1,3650,0,618.566,,,,,,176,102,0,,,,, +172,2,3,3651,0,618.566,2048,0.5,G#2,,,,,,,,,, +172,3,4,3652,0,618.566,2048,0.5,A0,,,,,,,,,, +171,17,3,3641,469,618.716,,,,,,144,37,0,,,,, +171,22,1,3645,1536,618.716,,,,,,144,105,0,,,,, +172,4,1,3653,768,620.296,256,4.0,C#7,p,11,144,97,11,,,,, +172,5,1,3654,1024,620.873,1024,1.0,C#7,,,,,,,,,, +172,4,1,3653,768,623.181,,,,,,144,97,0,,,,, +173,0,0,3655,0,623.181,,,,,,,,,173,,,, +173,1,0,3656,0,623.181,,,,,,176,64,0,,,,,^ +173,2,1,3657,0,623.181,,,,,,176,102,0,,,,, +173,3,2,3658,0,623.181,,,,,,176,102,0,,,,, +173,4,3,3659,0,623.181,128,8.0,E2,pppp,2,144,40,2,,,,, +173,5,3,3660,0,623.181,128,8.0,C4,pppp,2,144,60,2,,,,, +173,6,4,3661,0,623.181,1536,1.0,A0,,,,,,,,,, +173,7,0,3662,0,623.181,,,,,,,,,,5962,,, +171,24,3,3647,1536,623.331,,,,,,144,44,0,,,,, +173,4,3,3659,0,623.469,,,,,,144,40,0,,,,, +173,5,3,3660,0,623.469,,,,,,144,60,0,,,,, +173,8,1,3663,,623.469,,8.0,F4,p,11,144,65,11,,,,g, +173,8,1,3663,,623.519,,,,,,144,65,0,,,,, +173,9,1,3664,,623.544,,8.0,D3,p,11,144,50,11,,,,g, +173,9,1,3664,,623.594,,,,,,144,50,0,,,,, +173,10,1,3665,128,623.619,128,8.0,C#5,mp,14,144,73,14,,,,, +173,11,3,3666,128,623.619,,,,,,176,102,0,,,,, +173,12,1,3667,256,623.908,1024,1.0,C#5,,,,,,,,,, +173,13,3,3668,256,623.908,,,,,,176,102,0,,,,, +173,14,3,3669,512,624.485,,,,,,176,102,0,,,,, +173,15,1,3670,1280,626.216,64,16.0,C#5,,,,,,,,,, +173,10,1,3665,128,626.36,,,,,,144,73,0,,,,, +173,16,1,3671,1344,626.36,192,8.0,F#1,ppp,5,144,30,5,,,,, +173,16,1,3671,1344,626.793,,,,,,144,30,0,,,,, +173,20,1,3672,1536,626.793,,,,,,176,102,0,,,,, +173,17,1,3673,,626.793,,8.0,G5,p,11,144,79,11,,,,g, +173,17,1,3673,,626.843,,,,,,144,79,0,,,,, +173,18,1,3674,,626.868,,8.0,C4,mp,14,144,60,14,,,,g, +173,19,1,3675,,626.868,,8.0,A6,mp,14,144,93,14,,,,g, +173,18,1,3674,,626.918,,,,,,144,60,0,,,,, +173,19,1,3675,,626.918,,,,,,144,93,0,,,,, +173,21,3,3676,1536,627.018,256,4.0,E3,mf,17,144,52,17,,,,, +173,22,4,3677,1536,627.018,256,4.0,A0,,,,,,,,,, +173,23,4,3678,1536,627.018,256,4.0,A#2,mf,17,144,46,17,,,,, +158,38,4,3381,1152,627.219,,,,,,144,21,0,,,,, +173,21,3,3676,1536,627.594,,,,,,144,52,0,,,,, +173,24,1,3679,1792,627.594,64,16.0,F1,ppp,5,144,29,5,,,,, +173,25,2,3680,1792,627.594,64,16.0,D1,ppp,5,144,26,5,,,,, +173,26,3,3681,,627.594,,8.0,G4,p,11,144,67,11,,,,g, +173,26,3,3681,,627.644,,,,,,144,67,0,,,,, +173,27,3,3682,,627.669,,8.0,C#3,p,11,144,49,11,,,,g, +173,27,3,3682,,627.719,,,,,,144,49,0,,,,, +173,25,2,3680,1792,627.739,,,,,,144,26,0,,,,, +173,28,3,3683,1792,627.744,32,32.0,G#1,mp,14,144,32,14,,,,, +173,29,4,3684,1792,627.744,256,4.0,A#2,,,,,,,,,, +173,28,3,3683,1792,627.817,,,,,,144,32,0,,,,, +173,30,3,3685,1824,627.817,32,32.0,G#3,p,11,144,56,11,,,,, +173,30,3,3685,1824,627.889,,,,,,144,56,0,,,,, +173,31,1,3686,1856,627.889,96,16.0,F1,,,,,,,,,, +173,32,2,3687,1856,627.889,64,16.0,C#1,p,11,144,25,11,,,,, +173,33,3,3688,1856,627.889,192,8.0,F2,p,11,144,41,11,,,,, +173,24,1,3679,1792,627.955,,,,,,144,29,0,,,,, +173,32,2,3687,1856,628.033,,,,,,144,25,0,,,,, +173,34,2,3689,1920,628.033,,,,,,176,102,0,,,,, +173,35,1,3690,1952,628.105,96,16.0,F#3,pp,8,144,54,8,,,,, +174,0,0,3691,0,628.321,,,,,,,,,174,,,, +174,1,1,3692,0,628.321,64,16.0,F#3,,,,,,,,,, +174,2,2,3693,0,628.321,,,,,,176,102,0,,,,, +174,3,3,3694,0,628.321,64,16.0,F2,,,,,,,,,, +174,4,4,3695,0,628.321,512,2.0,A#2,,,,,,,,,, +173,35,1,3690,1952,628.466,,,,,,144,54,0,,,,, +174,5,1,3696,64,628.466,128,8.0,B6,mp,14,144,95,14,,,,, +174,6,3,3697,64,628.466,192,8.0,C#3,mp,14,144,49,14,,,,, +173,33,3,3688,1856,628.466,,,,,,144,41,0,,,,, +174,5,1,3696,64,628.754,,,,,,144,95,0,,,,, +174,7,1,3698,192,628.754,,,,,,176,102,0,,,,, +174,8,1,3699,224,628.826,32,32.0,D4,p,11,144,62,11,,,,, +174,6,3,3697,64,628.898,,,,,,144,49,0,,,,, +174,9,1,3700,256,628.898,128,8.0,D4,,,,,,,,,, +174,10,3,3701,256,628.898,256,4.0,A4,mf,17,144,69,17,,,,, +174,8,1,3699,224,629.187,,,,,,144,62,0,,,,, +174,11,1,3702,384,629.187,128,8.0,A#4,pp,8,144,70,8,,,,, +173,23,4,3678,1536,629.397,,,,,,144,46,0,,,,, +174,10,3,3701,256,629.475,,,,,,144,69,0,,,,, +174,12,1,3703,512,629.475,32,32.0,A#4,,,,,,,,,, +174,13,2,3704,512,629.475,128,8.0,D2,pp,8,144,38,8,,,,, +174,14,3,3705,512,629.475,,,,,,176,102,0,,,,, +174,15,4,3706,512,629.475,32,32.0,A#2,,,,,,,,,, +174,16,4,3707,512,629.475,32,32.0,E3,pp,8,144,52,8,,,,, +174,11,1,3702,384,629.547,,,,,,144,70,0,,,,, +174,16,4,3707,512,629.547,,,,,,144,52,0,,,,, +174,17,1,3708,544,629.547,,,,,,176,102,0,,,,, +174,18,4,3709,544,629.547,96,16.0,B4,pp,8,144,71,8,,,,, +174,19,3,3710,608,629.692,32,32.0,A0,pp,8,144,21,8,,,,, +174,19,3,3710,608,629.764,,,,,,144,21,0,,,,, +174,20,2,3711,640,629.764,,,,,,176,102,0,,,,, +174,21,3,3712,640,629.764,64,16.0,G1,pp,8,144,31,8,,,,, +174,22,4,3713,640,629.764,,,,,,176,102,0,,,,, +174,13,2,3704,512,629.764,,,,,,144,38,0,,,,, +174,18,4,3709,544,629.764,,,,,,144,71,0,,,,, +174,21,3,3712,640,629.908,,,,,,144,31,0,,,,, +174,23,3,3714,704,629.908,64,16.0,A#1,pp,8,144,34,8,,,,, +174,24,4,3715,704,629.908,64,16.0,E6,pp,8,144,88,8,,,,, +174,25,0,3716,704,629.908,,,,,,,,,,5963,,, +174,23,3,3714,704,630.052,,,,,,144,34,0,,,,, +174,24,4,3715,704,630.052,,,,,,144,88,0,,,,, +174,26,1,3717,768,630.052,,,,,,176,102,0,,,,, +174,27,2,3718,768,630.052,,,,,,176,102,0,,,,, +174,28,3,3719,768,630.052,256,4.0,F2,mp,14,144,41,14,,,,, +174,29,4,3720,768,630.052,64,16.0,D#6,pp,8,144,87,8,,,,, +174,29,4,3720,768,630.196,,,,,,144,87,0,,,,, +174,30,4,3721,832,630.196,,,,,,176,102,0,,,,, +174,31,1,3722,1024,630.629,,,,,,176,102,0,,,,, +174,32,2,3723,1024,630.629,,,,,,176,102,0,,,,, +174,33,3,3724,1024,630.629,1024,1.0,F2,,,,,,,,,, +174,34,4,3725,1024,630.629,,,,,,176,102,0,,,,, +174,35,0,3726,1363,631.393,,,,,,176,64,127,,,,,V +175,0,0,3727,0,632.937,,,,,,,,,175,,,, +175,1,1,3728,0,632.937,,,,,,176,102,0,,,,, +175,2,3,3729,0,632.937,2048,0.5,F2,,,,,,,,,, +176,0,0,3730,0,637.552,,,,,,,,,176,,,, +176,1,1,3731,0,637.552,,,,,,176,102,0,,,,, +176,2,3,3732,0,637.552,2048,0.5,F2,,,,,,,,,, +176,3,4,3733,0,637.552,,,,,,176,102,0,,,,, +176,4,1,3734,1024,639.86,,,,,,176,102,0,,,,, +176,5,4,3735,1024,639.86,,,,,,176,102,0,,,,, +176,6,0,3736,1191,640.236,,,,,,176,64,0,,,,,^ +176,8,4,3737,,640.553,,8.0,F1,p,11,144,29,11,,,,g, +176,8,4,3737,,640.603,,,,,,144,29,0,,,,, +176,7,1,3738,1365,640.628,683,1.0,A#5,p,11,144,82,11,,,,, +176,9,4,3739,1365,640.628,341,2.0,E1,ppp,5,144,28,5,,,,, +176,9,4,3739,1365,641.397,,,,,,144,28,0,,,,, +176,10,4,3740,1706,641.397,,,,,,176,102,0,,,,, +177,0,0,3741,0,642.168,,,,,,,,,177,,,, +177,1,1,3742,0,642.168,2048,0.5,A#5,,,,,,,,,, +177,2,2,3743,0,642.168,,,,,,176,102,0,,,,, +177,3,3,3744,0,642.168,1536,1.0,F2,,,,,,,,,, +177,4,4,3745,0,642.168,,,,,,176,102,0,,,,, +177,5,2,3746,1536,645.629,,,,,,176,102,0,,,,, +177,6,3,3747,1536,645.629,192,8.0,F2,,,,,,,,,, +177,7,4,3748,1536,645.629,,,,,,176,102,0,,,,, +177,9,2,3749,1664,645.918,128,8.0,C#7,ppp,5,144,97,5,,,,, +177,10,4,3750,1664,645.918,384,4.0,F2,fff,24,144,41,23,,,,, +177,8,0,3751,1664,645.918,,,,,,176,64,127,,,,,V +177,11,3,3752,1728,646.062,64,16.0,F2,,,,,,,,,, +177,12,3,3753,1728,646.062,64,16.0,F#3,p,11,144,54,11,,,,, +177,12,3,3753,1728,646.206,,,,,,144,54,0,,,,, +177,13,0,3754,1792,646.206,,,,,,176,64,0,,,,,^ +177,14,2,3755,1792,646.206,64,16.0,D4,p-,10,144,62,10,,,,, +177,15,3,3756,1792,646.206,,,,,,176,102,0,,,,, +177,9,2,3749,1664,646.206,,,,,,144,97,0,,,,, +177,14,2,3755,1792,646.35,,,,,,144,62,0,,,,, +177,16,2,3757,1856,646.35,,,,,,176,102,0,,,,, +177,17,2,3758,1984,646.639,64,16.0,B5,mp,14,144,83,14,,,,, +174,28,3,3719,768,646.731,,,,,,144,41,0,,,,, +178,0,0,3759,0,646.783,,,,,,,,,178,,,, +178,1,1,3760,0,646.783,512,2.0,A#5,,,,,,,,,, +178,2,2,3761,0,646.783,1024,1.0,B5,,,,,,,,,, +178,3,3,3762,0,646.783,,,,,,176,102,0,,,,, +178,4,4,3763,0,646.783,512,2.0,F2,,,,,,,,,, +178,5,3,3764,384,647.648,128,8.0,A2,ppp,5,144,45,5,,,,, +178,5,3,3764,384,647.937,,,,,,144,45,0,,,,, +178,6,1,3765,512,647.937,128,8.0,D6,mp,14,144,86,14,,,,, +178,7,3,3766,512,647.937,,,,,,176,102,0,,,,, +178,8,4,3767,512,647.937,128,8.0,F2,,,,,,,,,, +176,7,1,3738,1365,647.937,,,,,,144,82,0,,,,, +178,6,1,3765,512,648.225,,,,,,144,86,0,,,,, +178,9,1,3768,640,648.225,128,8.0,G#5,mp,14,144,80,14,,,,, +178,10,3,3769,640,648.225,128,8.0,F#2,pp,8,144,42,8,,,,, +178,11,3,3770,640,648.225,128,8.0,E3,pp,8,144,52,8,,,,, +178,12,4,3771,640,648.225,384,4.0,F2,fff,24,144,41,23,,,,, +177,10,4,3750,1664,648.225,,,,,,144,41,0,,,,, +178,9,1,3768,640,648.514,,,,,,144,80,0,,,,, +178,11,3,3770,640,648.514,,,,,,144,52,0,,,,, +178,13,1,3772,768,648.514,,,,,,176,102,0,,,,, +178,14,3,3773,768,648.514,256,4.0,F#2,,,,,,,,,, +178,15,1,3774,1024,649.091,,,,,,176,102,0,,,,, +178,16,2,3775,1024,649.091,192,8.0,B5,,,,,,,,,, +178,17,3,3776,1024,649.091,512,2.0,F#2,,,,,,,,,, +178,18,4,3777,1024,649.091,1024,1.0,F2,,,,,,,,,, +178,19,2,3778,,649.448,,8.0,D6,mf,17,144,86,17,,,,g, +178,19,2,3778,,649.498,,,,,,144,86,0,,,,, +177,17,2,3758,1984,649.523,,,,,,144,83,0,,,,, +178,20,2,3779,1216,649.523,64,16.0,A2,mf,17,144,45,17,,,,, +178,21,2,3780,1216,649.523,64,16.0,D3,mf,17,144,50,17,,,,, +178,22,2,3781,1280,649.668,64,16.0,A2,,,,,,,,,, +178,23,2,3782,1280,649.668,64,16.0,D3,,,,,,,,,, +178,24,2,3783,1344,649.812,128,8.0,D3,,,,,,,,,, +178,25,2,3784,1344,649.812,128,8.0,F3,mf+,18,144,53,18,,,,, +178,20,2,3779,1216,649.812,,,,,,144,45,0,,,,, +178,25,2,3784,1344,650.1,,,,,,144,53,0,,,,, +178,26,2,3785,1472,650.1,,,,,,176,102,0,,,,, +178,21,2,3780,1216,650.1,,,,,,144,50,0,,,,, +178,27,1,3786,1536,650.244,,,,,,176,102,0,,,,, +178,28,2,3787,1536,650.244,,,,,,176,102,0,,,,, +178,32,3,3788,1536,650.244,256,4.0,F#2,,,,,,,,,, +178,29,3,3789,,650.244,,8.0,C#5,f,20,144,73,20,,,,g, +178,29,3,3789,,650.294,,,,,,144,73,0,,,,, +178,30,3,3790,,650.319,,8.0,A3,f,20,144,57,20,,,,g, +178,30,3,3790,,650.369,,,,,,144,57,0,,,,, +178,31,3,3791,,650.394,,8.0,G#5,f,20,144,80,20,,,,g, +178,31,3,3791,,650.444,,,,,,144,80,0,,,,, +178,33,3,3792,1536,650.469,256,4.0,C#4,ff,22,144,61,22,,,,, +178,34,1,3793,1792,651.046,64,16.0,A#4,pp,8,144,70,8,,,,, +178,35,2,3794,1792,651.046,256,4.0,G5,mp,14,144,79,14,,,,, +178,36,3,3795,1792,651.046,64,16.0,F#2,,,,,,,,,, +178,37,3,3796,1792,651.046,64,16.0,C#4,,,,,,,,,, +178,33,3,3792,1536,651.191,,,,,,144,61,0,,,,, +178,34,1,3793,1792,651.191,,,,,,144,70,0,,,,, +178,38,1,3797,1856,651.191,192,8.0,D6,fff,24,144,86,23,,,,, +178,39,3,3798,1856,651.191,192,8.0,F#2,,,,,,,,,, +178,12,4,3771,640,651.398,,,,,,144,41,0,,,,, +179,0,0,3799,0,651.623,,,,,,,,,179,,,, +179,1,1,3800,0,651.623,1536,1.0,D6,,,,,,,,,, +179,2,2,3801,0,651.623,1536,1.0,G5,,,,,,,,,, +179,3,3,3802,0,651.623,2048,0.5,F#2,,,,,,,,,, +179,4,4,3803,0,651.623,,,,,,176,102,0,,,,, +179,5,0,3804,79,651.801,,,,,,176,64,127,,,,,V +179,6,4,3805,256,652.2,,,,,,176,102,0,,,,, +179,7,4,3806,448,652.633,64,16.0,F#2,f,20,144,42,20,,,,, +179,7,4,3806,448,652.777,,,,,,144,42,0,,,,, +179,8,4,3807,512,652.777,,,,,,176,102,0,,,,, +179,9,1,3808,1536,655.085,128,8.0,D6,,,,,,,,,, +179,10,1,3809,1536,655.085,128,8.0,A6,fff,24,144,93,23,,,,, +179,11,2,3810,1536,655.085,128,8.0,G5,,,,,,,,,, +179,12,4,3811,1536,655.085,128,8.0,F2,ff,22,144,41,22,,,,, +179,13,4,3812,1536,655.085,128,8.0,C#3,ff,22,144,49,22,,,,, +179,10,1,3809,1536,655.373,,,,,,144,93,0,,,,, +179,12,4,3811,1536,655.373,,,,,,144,41,0,,,,, +179,13,4,3812,1536,655.373,,,,,,144,49,0,,,,, +179,14,1,3813,1664,655.373,128,8.0,C#6,ff,22,144,85,22,,,,, +179,15,2,3814,1664,655.373,,,,,,176,102,0,,,,, +179,16,4,3815,1664,655.373,256,4.0,D4,ff,22,144,62,22,,,,, +179,17,4,3816,1664,655.373,256,4.0,E4,ff,22,144,64,22,,,,, +179,18,4,3817,1664,655.373,256,4.0,G#4,ff,22,144,68,22,,,,, +178,38,1,3797,1856,655.373,,,,,,144,86,0,,,,, +178,35,2,3794,1792,655.373,,,,,,144,79,0,,,,, +179,19,1,3818,1792,655.662,256,4.0,C#6,,,,,,,,,, +179,20,2,3819,1792,655.662,,,,,,176,102,0,,,,, +179,16,4,3815,1664,655.95,,,,,,144,62,0,,,,, +179,17,4,3816,1664,655.95,,,,,,144,64,0,,,,, +179,18,4,3817,1664,655.95,,,,,,144,68,0,,,,, +179,21,0,3820,1920,655.95,,,,,,176,64,0,,,,,^ +179,22,4,3821,1920,655.95,0,8.0,F#2,s,0,,,,,,,, +179,23,4,3822,1920,655.95,,,,,,176,102,0,,,,, +180,0,0,3823,0,656.239,,,,,,,,,180,,,, +180,1,1,3824,0,656.239,64,16.0,C#6,,,,,,,,,, +180,2,3,3825,0,656.239,2048,0.5,F#2,,,,,,,,,, +180,3,4,3826,0,656.239,,,,,,176,102,0,,,,, +179,14,1,3813,1664,656.383,,,,,,144,85,0,,,,, +180,4,1,3827,64,656.383,64,16.0,A#4,ff,22,144,70,22,,,,, +180,4,1,3827,64,656.527,,,,,,144,70,0,,,,, +180,5,1,3828,128,656.527,64,16.0,F5,ff,22,144,77,22,,,,, +180,5,1,3828,128,656.671,,,,,,144,77,0,,,,, +180,6,1,3829,192,656.671,,,,,,176,102,0,,,,, +180,7,0,3830,192,656.671,,,,,,,,,,5964,,, +180,9,1,3831,256,656.816,,,,,,176,102,0,,,,, +180,10,4,3832,256,656.816,1536,1.0,A#3,ff,22,144,58,22,,,,, +180,8,0,3833,256,656.816,,,,,,176,64,127,,,,,V +180,11,1,3834,512,657.393,,,,,,176,102,0,,,,, +180,12,4,3835,1792,660.277,64,16.0,A#3,,,,,,,,,, +180,13,4,3836,1856,660.421,192,8.0,E1,fff,24,144,28,23,,,,, +180,10,4,3832,256,660.646,,,,,,144,58,0,,,,, +180,13,4,3836,1856,660.854,,,,,,144,28,0,,,,, +181,0,0,3837,0,660.854,,,,,,,,,181,,,, +181,1,1,3838,0,660.854,,,,,,176,102,0,,,,, +181,2,2,3839,0,660.854,768,2.0,A7,fff,24,144,105,23,,,,, +181,3,3,3840,0,660.854,2048,0.5,F#2,,,,,,,,,, +181,4,4,3841,0,660.854,,,,,,176,102,0,,,,, +181,2,2,3839,0,662.585,,,,,,144,105,0,,,,, +181,5,1,3842,768,662.585,,,,,,176,102,0,,,,, +181,6,2,3843,768,662.585,512,2.0,C#7,p,11,144,97,11,,,,, +181,7,1,3844,896,662.873,128,8.0,C5,p,11,144,72,11,,,,, +181,8,1,3845,1024,663.162,128,8.0,C5,,,,,,,,,, +181,7,1,3844,896,663.45,,,,,,144,72,0,,,,, +181,9,1,3846,1152,663.45,128,8.0,C#2,p,11,144,37,11,,,,, +181,6,2,3843,768,663.739,,,,,,144,97,0,,,,, +181,10,1,3847,1280,663.739,128,8.0,C#2,,,,,,,,,, +181,11,2,3848,1280,663.739,128,8.0,F5,ppp,5,144,77,5,,,,, +181,9,1,3846,1152,664.027,,,,,,144,37,0,,,,, +181,11,2,3848,1280,664.027,,,,,,144,77,0,,,,, +181,12,1,3849,1408,664.027,,,,,,176,102,0,,,,, +181,13,2,3850,1408,664.027,,,,,,176,102,0,,,,, +181,14,0,3851,1474,664.176,,,,,,176,64,0,,,,,^ +181,15,1,3852,1536,664.316,256,4.0,B6,f,20,144,95,20,,,,, +181,16,2,3853,1536,664.316,256,4.0,G5,mp,14,144,79,14,,,,, +181,15,1,3852,1536,664.893,,,,,,144,95,0,,,,, +181,17,1,3854,1792,664.893,256,4.0,D4,ff,22,144,62,22,,,,, +181,18,2,3855,1792,664.893,85,8.0,G5,,,,,,,,,, +181,16,2,3853,1536,665.084,,,,,,144,79,0,,,,, +181,19,2,3856,1877,665.084,43,16.0,E3,mf,17,144,52,17,,,,, +181,19,2,3856,1877,665.181,,,,,,144,52,0,,,,, +181,20,2,3857,1920,665.181,42,16.0,G#1,mp,14,144,32,14,,,,, +181,20,2,3857,1920,665.276,,,,,,144,32,0,,,,, +181,21,2,3858,1962,665.276,43,16.0,C#1,p+,12,144,25,12,,,,, +181,21,2,3858,1962,665.373,,,,,,144,25,0,,,,, +181,22,2,3859,2005,665.373,,,,,,176,102,0,,,,, +181,17,1,3854,1792,665.469,,,,,,144,62,0,,,,, +182,0,0,3860,0,665.469,,,,,,,,,182,,,, +182,1,1,3861,0,665.469,,,,,,176,102,0,,,,, +182,2,2,3862,0,665.469,,,,,,176,102,0,,,,, +182,3,3,3863,0,665.469,2048,0.5,F#2,,,,,,,,,, +182,4,4,3864,0,665.469,32,32.0,F1,fff,24,144,29,23,,,,, +182,4,4,3864,0,665.542,,,,,,144,29,0,,,,, +182,5,1,3865,32,665.542,224,8.0,F#3,fff,24,144,54,23,,,,, +182,6,4,3866,32,665.542,32,32.0,C4,f,20,144,60,20,,,,, +182,6,4,3866,32,665.614,,,,,,144,60,0,,,,, +182,7,4,3867,64,665.614,32,32.0,E3,f,20,144,52,20,,,,, +182,8,4,3868,96,665.686,32,32.0,C#2,f,20,144,37,20,,,,, +182,9,4,3869,96,665.686,32,32.0,E3,,,,,,,,,, +182,8,4,3868,96,665.758,,,,,,144,37,0,,,,, +182,10,4,3870,128,665.758,32,32.0,E3,,,,,,,,,, +182,11,4,3871,160,665.83,96,16.0,A1,p,11,144,33,11,,,,, +182,7,4,3867,64,665.83,,,,,,144,52,0,,,,, +182,11,4,3871,160,666.046,,,,,,144,33,0,,,,, +182,12,1,3872,256,666.046,256,4.0,A#5,f,20,144,82,20,,,,, +182,13,2,3873,256,666.046,,,,,,176,102,0,,,,, +182,14,4,3874,256,666.046,,,,,,176,102,0,,,,, +182,5,1,3865,32,666.046,,,,,,144,54,0,,,,, +182,15,1,3875,,666.473,,8.0,G5,mf,17,144,79,17,,,,g, +182,15,1,3875,,666.523,,,,,,144,79,0,,,,, +182,17,1,3876,,666.548,,8.0,C#3,mf,17,144,49,17,,,,g, +182,16,1,3877,,666.548,,8.0,F2,mf,17,144,41,17,,,,g, +182,17,1,3876,,666.598,,,,,,144,49,0,,,,, +182,16,1,3877,,666.598,,,,,,144,41,0,,,,, +182,12,1,3872,256,666.623,,,,,,144,82,0,,,,, +182,18,1,3878,512,666.623,,,,,,176,102,0,,,,, +182,19,2,3879,512,666.623,1536,1.0,E4,ff,22,144,64,22,,,,, +182,20,4,3880,512,666.623,,,,,,176,102,0,,,,, +182,21,4,3881,,666.768,,8.0,B5,ff,22,144,83,22,,,,g, +182,21,4,3881,,666.818,,,,,,144,83,0,,,,, +182,22,4,3882,,666.843,,8.0,D3,mp,14,144,50,14,,,,g, +182,22,4,3882,,666.893,,,,,,144,50,0,,,,, +182,19,2,3879,512,666.918,,,,,,144,64,0,,,,, +182,23,4,3883,,666.918,,8.0,E4,p,11,144,64,11,,,,g, +182,24,4,3884,,666.918,,8.0,A#4,ff,22,144,70,22,,,,g, +182,24,4,3884,,666.968,,,,,,144,70,0,,,,, +182,25,4,3885,,666.993,,8.0,F#2,mp,14,144,42,14,,,,g, +182,25,4,3885,,667.043,,,,,,144,42,0,,,,, +182,26,4,3886,576,667.143,,,,,,176,102,0,,,,, +182,27,4,3887,768,667.575,,,,,,176,102,0,,,,, +182,28,4,3888,1536,669.306,,,,,,176,102,0,,,,, +183,0,0,3889,0,670.46,,,,,,,,,183,,,, +183,1,2,3890,0,670.46,2048,0.5,E4,,,,,,,,,, +183,2,3,3891,0,670.46,2048,0.5,F#2,,,,,,,,,, +183,3,4,3892,0,670.46,,,,,,176,102,0,,,,, +184,0,0,3893,0,675.075,,,,,,,,,184,,,, +184,1,1,3894,0,675.075,,,,,,176,102,0,,,,, +184,2,2,3895,0,675.075,768,2.0,E4,,,,,,,,,, +184,3,3,3896,0,675.075,2048,0.5,F#2,,,,,,,,,, +184,4,4,3897,0,675.075,,,,,,176,102,0,,,,, +184,5,1,3898,64,675.219,192,8.0,G#5,ff,22,144,80,22,,,,, +184,6,1,3899,256,675.652,128,8.0,G#5,,,,,,,,,, +184,5,1,3898,64,675.941,,,,,,144,80,0,,,,, +184,7,1,3900,384,675.941,128,8.0,A1,mf-,16,144,33,16,,,,, +184,8,1,3901,512,676.229,192,8.0,A1,,,,,,,,,, +184,7,1,3900,384,676.662,,,,,,144,33,0,,,,, +184,9,1,3902,704,676.662,64,16.0,F2,p-,10,144,41,10,,,,, +184,10,1,3903,768,676.806,85,8.0,F2,,,,,,,,,, +184,11,2,3904,768,676.806,170,4.0,E4,,,,,,,,,, +184,12,1,3905,853,676.998,85,8.0,D5,pp-,7,144,74,7,,,,, +184,12,1,3905,853,677.189,,,,,,144,74,0,,,,, +184,13,1,3906,938,677.189,86,8.0,F1,ppp,5,144,29,5,,,,, +184,14,1,3907,938,677.189,128,8.0,G#1,ppp,5,144,32,5,,,,, +184,15,2,3908,938,677.189,,,,,,176,102,0,,,,, +182,23,4,3883,,677.189,,,,,,144,64,0,,,,, +184,9,1,3902,704,677.373,,,,,,144,41,0,,,,, +184,13,1,3906,938,677.383,,,,,,144,29,0,,,,, +184,16,1,3909,1024,677.383,,,,,,176,102,0,,,,, +184,17,2,3910,1024,677.383,,,,,,176,102,0,,,,, +184,14,1,3907,938,677.478,,,,,,144,32,0,,,,, +184,18,4,3911,1536,678.537,,,,,,176,102,0,,,,, +184,19,4,3912,1792,679.114,,,,,,176,102,0,,,,, +184,20,4,3913,1920,679.402,128,8.0,F#3,ppp,5,144,54,5,,,,, +184,21,0,3914,2047,679.688,,,,,,176,64,127,,,,,V +185,0,0,3915,0,679.691,,,,,,,,,185,,,, +185,1,1,3916,0,679.691,,,,,,176,102,0,,,,, +185,2,3,3917,0,679.691,2048,0.5,F#2,,,,,,,,,, +185,3,4,3918,0,679.691,2048,0.5,F#3,,,,,,,,,, +185,4,1,3919,1536,683.152,341,2.0,C#7,p,11,144,97,11,,,,, +185,4,1,3919,1536,683.921,,,,,,144,97,0,,,,, +185,5,1,3920,1877,683.921,,,,,,176,102,0,,,,, +185,6,1,3921,1962,684.112,86,8.0,A1,p,11,144,33,11,,,,, +186,0,0,3922,0,684.306,,,,,,,,,186,,,, +186,1,1,3923,0,684.306,341,2.0,A1,,,,,,,,,, +186,2,2,3924,0,684.306,,,,,,176,102,0,,,,, +186,3,3,3925,0,684.306,1024,1.0,F#2,,,,,,,,,, +186,4,4,3926,0,684.306,341,2.0,F#3,,,,,,,,,, +185,6,1,3921,1962,685.075,,,,,,144,33,0,,,,, +186,5,1,3927,341,685.075,85,8.0,F1,p,11,144,29,11,,,,, +186,6,4,3928,341,685.075,85,8.0,F#3,,,,,,,,,, +184,20,4,3913,1920,685.266,,,,,,144,54,0,,,,, +186,5,1,3927,341,685.266,,,,,,144,29,0,,,,, +186,7,1,3929,426,685.266,,,,,,176,102,0,,,,, +186,8,4,3930,426,685.266,86,8.0,A#4,p-,10,144,70,10,,,,, +186,8,4,3930,426,685.46,,,,,,144,70,0,,,,, +186,9,0,3931,512,685.46,,,,,,176,64,0,,,,,^ +186,10,1,3932,512,685.46,,,,,,176,102,0,,,,, +186,11,2,3933,512,685.46,768,2.0,C#6,pp,8,144,85,8,,,,, +186,12,4,3934,512,685.46,,,,,,176,102,0,,,,, +186,14,3,3935,,686.539,,8.0,G#2,mp,14,144,44,14,,,,g, +186,14,3,3935,,686.589,,,,,,144,44,0,,,,, +186,13,1,3936,1024,686.614,512,2.0,F6,mf,17,144,89,17,,,,, +186,15,3,3937,1024,686.614,1024,1.0,F#2,,,,,,,,,, +186,16,4,3938,1024,686.614,,,,,,176,102,0,,,,, +186,11,2,3933,512,687.191,,,,,,144,85,0,,,,, +186,17,2,3939,1280,687.191,,,,,,176,102,0,,,,, +186,18,4,3940,1280,687.191,,,,,,176,102,0,,,,, +186,19,0,3941,1280,687.191,,,,,,,,,,5965,,, +186,24,4,3942,,687.393,,8.0,A0,mf,17,144,21,17,,,,g, +186,24,4,3942,,687.443,,,,,,144,21,0,,,,, +186,25,4,3943,,687.468,,8.0,E1,mf+,18,144,28,18,,,,g, +186,25,4,3943,,687.518,,,,,,144,28,0,,,,, +186,26,4,3944,,687.543,,8.0,A#3,mf+,18,144,58,18,,,,g, +186,26,4,3944,,687.593,,,,,,144,58,0,,,,, +186,27,4,3945,,687.618,,8.0,E2,f-,19,144,40,19,,,,g, +186,27,4,3945,,687.668,,,,,,144,40,0,,,,, +186,28,4,3946,,687.693,,8.0,A1,f,20,144,33,20,,,,g, +186,28,4,3946,,687.743,,,,,,144,33,0,,,,, +186,13,1,3936,1024,687.768,,,,,,144,89,0,,,,, +186,20,1,3947,1536,687.768,512,2.0,A#5,mp,14,144,82,14,,,,, +186,21,1,3948,1536,687.768,512,2.0,D6,mp,14,144,86,14,,,,, +186,22,1,3949,1536,687.768,512,2.0,C#7,f,20,144,97,20,,,,, +186,23,2,3950,1536,687.768,512,2.0,G5,ff,22,144,79,22,,,,, +186,29,4,3951,1536,687.768,,,,,,176,102,0,,,,, +186,30,4,3952,,688.696,,,,,,176,102,0,,,,, +186,31,4,3953,,688.771,,8.0,A2,f,20,144,45,20,,,,g, +186,31,4,3953,,688.821,,,,,,144,45,0,,,,, +186,32,4,3954,,688.846,,8.0,A#3,f,20,144,58,20,,,,g, +186,32,4,3954,,688.896,,,,,,144,58,0,,,,, +186,22,1,3949,1536,688.921,,,,,,144,97,0,,,,, +187,0,0,3955,0,688.921,,,,,,,,,187,,,, +187,1,1,3956,0,688.921,1536,1.0,A#5,,,,,,,,,, +187,2,1,3957,0,688.921,1024,1.0,D6,,,,,,,,,, +187,3,2,3958,0,688.921,2048,0.5,G5,,,,,,,,,, +187,4,3,3959,0,688.921,2048,0.5,F#2,,,,,,,,,, +187,5,4,3960,0,688.921,,,,,,176,102,0,,,,, +186,21,1,3948,1536,691.229,,,,,,144,86,0,,,,, +186,20,1,3947,1536,692.383,,,,,,144,82,0,,,,, +187,6,1,3961,1536,692.383,,,,,,176,102,0,,,,, +187,7,4,3962,1536,692.383,512,2.0,G#1,pp,8,144,32,8,,,,, +187,8,1,3963,,693.537,,8.0,G#5,pp,8,144,80,8,,,,g, +187,9,1,3964,,693.537,,8.0,C#6,f,20,144,85,20,,,,g, +187,8,1,3963,,693.587,,,,,,144,80,0,,,,, +187,9,1,3964,,693.587,,,,,,144,85,0,,,,, +187,10,1,3965,,693.612,,8.0,E3,f,20,144,52,20,,,,g, +187,11,1,3966,,693.612,,8.0,C#4,pp,8,144,61,8,,,,g, +187,10,1,3965,,693.662,,,,,,144,52,0,,,,, +187,11,1,3966,,693.662,,,,,,144,61,0,,,,, +187,12,1,3967,,693.687,,8.0,A#4,f,20,144,70,20,,,,g, +187,12,1,3967,,693.737,,,,,,144,70,0,,,,, +188,0,0,3968,0,693.912,,,,,,,,,188,,,, +188,1,1,3969,0,693.912,,,,,,176,102,0,,,,, +188,2,2,3970,0,693.912,2048,0.5,G5,,,,,,,,,, +188,3,3,3971,0,693.912,2048,0.5,F#2,,,,,,,,,, +188,4,4,3972,0,693.912,2048,0.5,G#1,,,,,,,,,, +188,6,1,3973,1536,697.373,341,2.0,C#7,mp,14,144,97,14,,,,, +188,5,0,3974,1536,697.373,,,,,,176,64,127,,,,,V +188,6,1,3973,1536,698.142,,,,,,144,97,0,,,,, +188,7,1,3975,1877,698.142,,,,,,176,102,0,,,,, +186,23,2,3950,1536,698.152,,,,,,144,79,0,,,,, +188,8,1,3976,1962,698.333,22,32.0,A1,mp,14,144,33,14,,,,, +188,8,1,3976,1962,698.383,,,,,,144,33,0,,,,, +188,9,1,3977,1984,698.383,21,32.0,E2,f,20,144,40,20,,,,, +188,9,1,3977,1984,698.43,,,,,,144,40,0,,,,, +188,10,1,3978,2005,698.43,43,16.0,F1,fff,24,144,29,23,,,,, +188,10,1,3978,2005,698.527,,,,,,144,29,0,,,,, +189,0,0,3979,0,698.527,,,,,,,,,189,,,, +189,1,1,3980,0,698.527,42,16.0,A#4,f,20,144,70,20,,,,, +189,2,3,3981,0,698.527,2048,0.5,F#2,,,,,,,,,, +189,3,3,3982,0,698.527,2048,0.5,E3,ff,22,144,52,22,,,,, +189,4,4,3983,0,698.527,2048,0.5,G#1,,,,,,,,,, +189,1,1,3980,0,698.622,,,,,,144,70,0,,,,, +189,5,1,3984,42,698.622,22,32.0,A#5,p-,10,144,82,10,,,,, +189,5,1,3984,42,698.671,,,,,,144,82,0,,,,, +189,6,1,3985,64,698.671,192,8.0,C#7,ppp,5,144,97,5,,,,, +189,7,1,3986,256,699.104,256,4.0,C#7,,,,,,,,,, +189,6,1,3985,64,699.681,,,,,,144,97,0,,,,, +189,8,0,3987,512,699.681,,,,,,176,64,0,,,,,^ +189,9,1,3988,512,699.681,,,,,,176,102,0,,,,, +189,10,3,3989,,702.993,,8.0,G#1,s,0,144,32,0,,,,g, +189,10,3,3989,,703.043,,,,,,144,32,0,,,,, +189,11,4,3990,,703.068,,8.0,F#2,s,0,144,42,0,,,,g, +189,11,4,3990,,703.118,,,,,,144,42,0,,,,, +190,0,0,3991,0,703.143,,,,,,,,,190,,,, +190,1,1,3992,0,703.143,,,,,,176,102,0,,,,, +190,2,2,3993,0,703.143,,,,,,176,102,0,,,,, +190,3,3,3994,0,703.143,2048,0.5,F#2,,,,,,,,,, +190,4,3,3995,0,703.143,2048,0.5,E3,,,,,,,,,, +190,5,4,3996,0,703.143,1920,1.0,G#1,,,,,,,,,, +190,7,1,3997,128,703.431,128,8.0,F1,f,20,144,29,20,,,,, +190,6,0,3998,128,703.431,,,,,,176,64,127,,,,,V +190,8,1,3999,256,703.719,192,8.0,F1,,,,,,,,,, +190,9,2,4000,256,703.719,,,,,,176,102,0,,,,, +190,10,1,4001,448,704.152,64,16.0,A5,p,11,144,81,11,,,,, +190,10,1,4001,448,704.296,,,,,,144,81,0,,,,, +190,11,1,4002,512,704.296,85,8.0,G#3,p,11,144,56,11,,,,, +190,12,2,4003,512,704.296,,,,,,176,102,0,,,,, +190,13,0,4004,576,704.441,,,,,,176,64,0,,,,,^ +190,14,1,4005,597,704.488,85,8.0,C#3,p-,10,144,49,10,,,,, +190,11,1,4002,512,704.488,,,,,,144,56,0,,,,, +190,7,1,3997,128,704.527,,,,,,144,29,0,,,,, +190,14,1,4005,597,704.68,,,,,,144,49,0,,,,, +190,15,1,4006,682,704.68,86,8.0,A4,p-,10,144,69,10,,,,, +190,15,1,4006,682,704.873,,,,,,144,69,0,,,,, +190,16,1,4007,768,704.873,170,4.0,F2,pp+,9,144,41,9,,,,, +190,16,1,4007,768,705.256,,,,,,144,41,0,,,,, +190,17,1,4008,938,705.256,86,8.0,C#3,pp-,7,144,49,7,,,,, +190,17,1,4008,938,705.45,,,,,,144,49,0,,,,, +190,18,1,4009,1024,705.45,,,,,,176,102,0,,,,, +190,19,2,4010,1024,705.45,,,,,,176,102,0,,,,, +190,20,1,4011,1152,705.739,128,8.0,A#5,ppp+,6,144,82,6,,,,, +190,21,2,4012,,705.739,,8.0,F3,ppp+,6,144,53,6,,,,g, +190,21,2,4012,,705.789,,,,,,144,53,0,,,,, +190,22,2,4013,,705.814,,8.0,G#5,ppp,5,144,80,5,,,,g, +190,22,2,4013,,705.864,,,,,,144,80,0,,,,, +190,23,2,4014,1152,705.889,128,8.0,D2,ppp,5,144,38,5,,,,, +190,23,2,4014,1152,706.177,,,,,,144,38,0,,,,, +190,24,1,4015,1280,706.177,384,4.0,A#5,,,,,,,,,, +190,25,2,4016,1280,706.177,,,,,,176,102,0,,,,, +190,20,1,4011,1152,706.893,,,,,,144,82,0,,,,, +190,26,1,4017,1664,707.043,64,16.0,F1,ppp-,4,144,29,4,,,,, +190,27,2,4018,1664,707.043,,,,,,176,102,0,,,,, +190,26,1,4017,1664,707.187,,,,,,144,29,0,,,,, +190,28,1,4019,1728,707.187,,,,,,176,102,0,,,,, +190,29,1,4020,1792,707.331,,,,,,176,102,0,,,,, +190,30,2,4021,1792,707.331,,,,,,176,102,0,,,,, +187,7,4,3962,1536,707.469,,,,,,144,32,0,,,,, +190,31,1,4022,1920,707.619,42,16.0,C3,pppp,2,144,48,2,,,,, +190,32,4,4023,1920,707.619,,,,,,176,102,0,,,,, +190,31,1,4022,1920,707.714,,,,,,144,48,0,,,,, +190,33,1,4024,1962,707.714,43,16.0,F6,pppp,2,144,89,2,,,,, +190,33,1,4024,1962,707.811,,,,,,144,89,0,,,,, +190,34,1,4025,2005,707.811,43,16.0,E7,pppp,2,144,100,2,,,,, +190,34,1,4025,2005,707.908,,,,,,144,100,0,,,,, +191,0,0,4026,0,707.908,,,,,,,,,191,,,, +191,1,1,4027,0,707.908,,,,,,176,102,0,,,,, +191,2,3,4028,0,707.908,2048,0.5,F#2,,,,,,,,,, +191,3,3,4029,0,707.908,2048,0.5,E3,,,,,,,,,, +191,4,4,4030,0,707.908,,,,,,176,102,0,,,,, +191,5,1,4031,768,709.639,,,,,,176,102,0,,,,, +191,6,1,4032,,710.066,,8.0,G#4,pppp,2,144,68,2,,,,g, +191,6,1,4032,,710.116,,,,,,144,68,0,,,,, +191,7,1,4033,,710.141,,8.0,A5,pppp,2,144,81,2,,,,g, +191,7,1,4033,,710.191,,,,,,144,81,0,,,,, +191,8,1,4034,1024,710.216,,,,,,176,102,0,,,,, +191,10,1,4035,1792,711.946,256,4.0,A#6,pp,8,144,94,8,,,,, +191,11,4,4036,1792,711.946,256,4.0,D2,pp,8,144,38,8,,,,, +191,9,0,4037,1792,711.946,,,,,,176,64,127,,,,,V +191,10,1,4035,1792,712.523,,,,,,144,94,0,,,,, +192,0,0,4038,0,712.523,,,,,,,,,192,,,, +192,1,1,4039,0,712.523,,,,,,176,102,0,,,,, +192,2,3,4040,0,712.523,768,2.0,F#2,,,,,,,,,, +192,3,4,4041,0,712.523,768,2.0,D2,,,,,,,,,, +189,3,3,3982,0,712.748,,,,,,144,52,0,,,,, +192,4,0,4042,768,714.104,,,,,,176,64,0,,,,,^ +178,10,3,3769,640,714.104,,,,,,144,42,0,,,,, +191,11,4,4036,1792,714.254,,,,,,144,38,0,,,,, +192,5,3,4043,768,714.254,,,,,,176,102,0,,,,, +192,6,4,4044,768,714.254,256,4.0,F2,pp,8,144,41,8,,,,, +192,4,0,4045,768,714.404,,,,,,176,64,127,,,,,V +192,7,3,4046,1024,714.831,,,,,,176,102,0,,,,, +192,8,4,4047,1024,714.831,1024,1.0,F2,,,,,,,,,, +192,9,0,4048,1152,714.969,,,,,,176,64,0,,,,,^ +192,10,3,4049,1152,715.119,128,8.0,G#2,ppp,5,144,44,5,,,,, +192,9,0,4050,1152,715.269,,,,,,176,64,127,,,,,V +192,11,3,4051,1280,715.408,768,2.0,G#2,,,,,,,,,, +193,0,0,4052,0,717.139,,,,,,,,,193,,,, +193,1,1,4053,0,717.139,,,,,,176,102,0,,,,, +193,2,3,4054,0,717.139,1024,1.0,G#2,,,,,,,,,, +193,3,4,4055,0,717.139,,,,,,176,102,0,,,,, +192,6,4,4044,768,717.289,,,,,,144,41,0,,,,, +193,4,3,4056,1024,719.446,1024,1.0,G#2,,,,,,,,,, +193,5,4,4057,1024,719.446,1024,1.0,G#1,ff,22,144,32,22,,,,, +193,6,0,4058,1024,719.446,,,,,,,,,,5966,,, +194,0,0,4059,0,721.754,,,,,,,,,194,,,, +194,1,1,4060,0,721.754,,,,,,176,102,0,,,,, +194,2,3,4061,0,721.754,2048,0.5,G#2,,,,,,,,,, +194,3,4,4062,0,721.754,2048,0.5,G#1,,,,,,,,,, +194,4,1,4063,512,722.908,1536,1.0,C6,fff,24,144,84,23,,,,, +194,4,1,4063,512,726.369,,,,,,144,84,0,,,,, +195,0,0,4064,0,726.369,,,,,,,,,195,,,, +195,1,1,4065,0,726.369,,,,,,176,102,0,,,,, +195,2,3,4066,0,726.369,2048,0.5,G#2,,,,,,,,,, +195,3,4,4067,0,726.369,2048,0.5,G#1,,,,,,,,,, +195,4,3,4068,2048,730.985,2048,0.5,G#2,,,,,,,,,, +195,5,4,4069,2048,730.985,2048,0.5,G#1,,,,,,,,,, +195,6,3,4070,4096,735.6,2048,0.5,G#2,,,,,,,,,, +195,7,4,4071,4096,735.6,2048,0.5,G#1,,,,,,,,,, +193,5,4,4057,1024,740.216,,,,,,144,32,0,,,,, +196,0,0,4072,0,740.216,,,,,,,,,196,,,, +196,1,1,4073,0,740.216,,,,,,176,102,0,,,,, +196,2,3,4074,0,740.216,,,,,,176,102,0,,,,, +196,3,4,4075,0,740.216,256,4.0,C4,ppp,5,144,60,5,,,,, +192,10,3,4049,1152,740.366,,,,,,144,44,0,,,,, +196,3,4,4075,0,740.793,,,,,,144,60,0,,,,, +196,4,0,4076,256,740.793,,,,,,176,64,0,,,,,^ +196,5,4,4077,256,740.793,256,4.0,C#1,ppp,5,144,25,5,,,,, +196,6,0,4078,256,740.793,,,,,,,,,,5967,,, +196,5,4,4077,256,741.369,,,,,,144,25,0,,,,, +196,8,3,4079,512,741.369,,,,,,176,102,0,,,,, +196,9,4,4080,512,741.369,2048,0.5,A4,fff,24,144,69,23,,,,, +196,7,0,4081,512,741.369,,,,,,176,64,127,,,,,V +196,9,4,4080,512,745.985,,,,,,144,69,0,,,,, +196,10,3,4082,2560,745.985,,,,,,176,102,0,,,,, +196,11,4,4083,2560,745.985,2048,0.5,C#4,ppp,5,144,61,5,,,,, +196,11,4,4083,2560,750.6,,,,,,144,61,0,,,,, +196,13,0,4084,4607,751.833,,,,,,176,64,0,,,,,^ +196,12,0,4085,4607,751.982,,,,,,,,,,,80,, +197,0,0,4086,0,751.985,,,,,,,,,197,,,, +197,1,0,4087,0,751.985,,,,,,,,,,,80,, +197,2,0,4088,0,751.985,,,,,,,,,,5968,,, +197,4,1,4089,0,751.985,,,,,,176,102,0,,,,, +197,5,3,4090,0,751.985,28,32.0,A2,ppp,5,144,45,5,,,,, +197,5,3,4090,0,752.067,,,,,,144,45,0,,,,, +197,6,3,4091,28,752.067,28,32.0,F#1,ppp,5,144,30,5,,,,, +197,3,0,4092,0,752.133,,,,,,176,64,127,,,,,V +197,6,3,4091,28,752.149,,,,,,144,30,0,,,,, +197,7,3,4093,56,752.149,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,7,3,4093,56,752.234,,,,,,144,37,0,,,,, +197,8,3,4094,85,752.234,28,32.0,A2,ppp,5,144,45,5,,,,, +197,8,3,4094,85,752.316,,,,,,144,45,0,,,,, +197,9,3,4095,113,752.316,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,9,3,4095,113,752.401,,,,,,144,37,0,,,,, +197,10,3,4096,142,752.401,57,16.0,F#1,ppp,5,144,30,5,,,,, +197,10,3,4096,142,752.568,,,,,,144,30,0,,,,, +197,11,3,4097,199,752.568,28,32.0,A2,ppp,5,144,45,5,,,,, +197,11,3,4097,199,752.65,,,,,,144,45,0,,,,, +197,12,3,4098,227,752.65,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,12,3,4098,227,752.735,,,,,,144,37,0,,,,, +197,13,3,4099,256,752.735,28,32.0,A2,ppp,5,144,45,5,,,,, +197,13,3,4099,256,752.817,,,,,,144,45,0,,,,, +197,14,3,4100,284,752.817,28,32.0,F#1,ppp,5,144,30,5,,,,, +197,14,3,4100,284,752.899,,,,,,144,30,0,,,,, +197,15,3,4101,312,752.899,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,15,3,4101,312,752.984,,,,,,144,37,0,,,,, +197,16,3,4102,341,752.984,28,32.0,A2,ppp,5,144,45,5,,,,, +197,16,3,4102,341,753.066,,,,,,144,45,0,,,,, +197,17,3,4103,369,753.066,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,17,3,4103,369,753.151,,,,,,144,37,0,,,,, +197,18,3,4104,398,753.151,57,16.0,F#1,ppp,5,144,30,5,,,,, +197,18,3,4104,398,753.318,,,,,,144,30,0,,,,, +197,19,3,4105,455,753.318,28,32.0,A2,ppp,5,144,45,5,,,,, +197,19,3,4105,455,753.4,,,,,,144,45,0,,,,, +197,20,3,4106,483,753.4,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,20,3,4106,483,753.485,,,,,,144,37,0,,,,, +197,21,3,4107,512,753.485,28,32.0,A2,ppp,5,144,45,5,,,,, +197,21,3,4107,512,753.567,,,,,,144,45,0,,,,, +197,22,3,4108,540,753.567,28,32.0,F#1,ppp,5,144,30,5,,,,, +197,22,3,4108,540,753.649,,,,,,144,30,0,,,,, +197,23,3,4109,568,753.649,29,32.0,C#2,ppp,5,144,37,5,,,,, +197,23,3,4109,568,753.734,,,,,,144,37,0,,,,, +197,24,3,4110,597,753.734,28,32.0,A2,ppp,5,144,45,5,,,,, +197,24,3,4110,597,753.816,,,,,,144,45,0,,,,, +197,25,3,4111,625,753.816,29,32.0,C#2,ppp+,6,144,37,6,,,,, +197,25,3,4111,625,753.901,,,,,,144,37,0,,,,, +197,26,3,4112,654,753.901,57,16.0,F#1,ppp+,6,144,30,6,,,,, +197,26,3,4112,654,754.068,,,,,,144,30,0,,,,, +197,27,3,4113,711,754.068,28,32.0,A2,ppp+,6,144,45,6,,,,, +197,27,3,4113,711,754.15,,,,,,144,45,0,,,,, +197,28,3,4114,739,754.15,29,32.0,C#2,ppp+,6,144,37,6,,,,, +197,28,3,4114,739,754.235,,,,,,144,37,0,,,,, +197,29,3,4115,768,754.235,28,32.0,A2,ppp+,6,144,45,6,,,,, +197,29,3,4115,768,754.317,,,,,,144,45,0,,,,, +197,30,3,4116,796,754.317,28,32.0,F#1,ppp+,6,144,30,6,,,,, +197,30,3,4116,796,754.399,,,,,,144,30,0,,,,, +197,31,3,4117,824,754.399,29,32.0,C#2,ppp+,6,144,37,6,,,,, +197,31,3,4117,824,754.484,,,,,,144,37,0,,,,, +197,32,3,4118,853,754.484,28,32.0,A2,pp-,7,144,45,7,,,,, +197,32,3,4118,853,754.566,,,,,,144,45,0,,,,, +197,33,3,4119,881,754.566,29,32.0,C#2,pp-,7,144,37,7,,,,, +197,33,3,4119,881,754.651,,,,,,144,37,0,,,,, +197,34,3,4120,910,754.651,57,16.0,F#1,pp-,7,144,30,7,,,,, +197,34,3,4120,910,754.818,,,,,,144,30,0,,,,, +197,35,3,4121,967,754.818,28,32.0,A2,pp-,7,144,45,7,,,,, +197,35,3,4121,967,754.9,,,,,,144,45,0,,,,, +197,36,3,4122,995,754.9,29,32.0,C#2,pp-,7,144,37,7,,,,, +197,36,3,4122,995,754.985,,,,,,144,37,0,,,,, +197,37,3,4123,1024,754.985,28,32.0,A2,pp-,7,144,45,7,,,,, +197,37,3,4123,1024,755.067,,,,,,144,45,0,,,,, +197,38,3,4124,1052,755.067,28,32.0,F#1,pp-,7,144,30,7,,,,, +197,38,3,4124,1052,755.149,,,,,,144,30,0,,,,, +197,39,3,4125,1080,755.149,29,32.0,C#2,pp,8,144,37,8,,,,, +197,39,3,4125,1080,755.234,,,,,,144,37,0,,,,, +197,40,3,4126,1109,755.234,28,32.0,A2,pp,8,144,45,8,,,,, +197,40,3,4126,1109,755.316,,,,,,144,45,0,,,,, +197,41,3,4127,1137,755.316,29,32.0,C#2,pp,8,144,37,8,,,,, +197,41,3,4127,1137,755.401,,,,,,144,37,0,,,,, +197,42,3,4128,1166,755.401,57,16.0,F#1,pp,8,144,30,8,,,,, +197,42,3,4128,1166,755.568,,,,,,144,30,0,,,,, +197,43,3,4129,1223,755.568,28,32.0,A2,pp,8,144,45,8,,,,, +197,43,3,4129,1223,755.65,,,,,,144,45,0,,,,, +197,44,3,4130,1251,755.65,29,32.0,C#2,pp,8,144,37,8,,,,, +197,44,3,4130,1251,755.735,,,,,,144,37,0,,,,, +197,45,3,4131,1280,755.735,28,32.0,A2,pp,8,144,45,8,,,,, +197,45,3,4131,1280,755.817,,,,,,144,45,0,,,,, +197,46,3,4132,1308,755.817,28,32.0,F#1,pp+,9,144,30,9,,,,, +197,46,3,4132,1308,755.899,,,,,,144,30,0,,,,, +197,47,3,4133,1336,755.899,29,32.0,C#2,pp+,9,144,37,9,,,,, +197,47,3,4133,1336,755.984,,,,,,144,37,0,,,,, +197,48,3,4134,1365,755.984,28,32.0,A2,pp+,9,144,45,9,,,,, +197,48,3,4134,1365,756.066,,,,,,144,45,0,,,,, +197,49,3,4135,1393,756.066,29,32.0,C#2,pp+,9,144,37,9,,,,, +197,49,3,4135,1393,756.151,,,,,,144,37,0,,,,, +197,50,3,4136,1422,756.151,57,16.0,F#1,pp+,9,144,30,9,,,,, +197,50,3,4136,1422,756.318,,,,,,144,30,0,,,,, +197,51,3,4137,1479,756.318,57,16.0,C#2,pp+,9,144,37,9,,,,, +197,51,3,4137,1479,756.485,,,,,,144,37,0,,,,, +198,0,0,4138,0,756.485,,,,,,,,,198,,,, +198,2,3,4139,,756.485,,8.0,F4,p,11,144,65,11,,,,g, +198,2,3,4139,,756.535,,,,,,144,65,0,,,,, +198,1,1,4140,0,756.56,512,2.0,D#5,p,11,144,75,11,,,,, +198,3,3,4141,0,756.56,102,8.0,C1,pp,8,144,24,8,,,,, +198,4,3,4142,0,756.56,128,8.0,A#1,pp,8,144,34,8,,,,, +198,3,3,4141,0,756.859,,,,,,144,24,0,,,,, +198,4,3,4142,0,756.859,,,,,,144,34,0,,,,, +198,5,3,4143,102,756.859,51,16.0,C1,pp,8,144,24,8,,,,, +198,6,3,4144,102,756.859,64,16.0,A#1,pp,8,144,34,8,,,,, +198,5,3,4143,102,757.008,,,,,,144,24,0,,,,, +198,6,3,4144,102,757.008,,,,,,144,34,0,,,,, +198,7,3,4145,153,757.008,51,16.0,A#1,pp+,9,144,34,9,,,,, +198,7,3,4145,153,757.158,,,,,,144,34,0,,,,, +198,8,3,4146,204,757.158,52,16.0,C1,pp+,9,144,24,9,,,,, +198,9,3,4147,256,757.31,51,16.0,C1,,,,,,,,,, +198,8,3,4146,204,757.459,,,,,,144,24,0,,,,, +198,10,3,4148,307,757.459,51,16.0,A#1,pp+,9,144,34,9,,,,, +198,10,3,4148,307,757.609,,,,,,144,34,0,,,,, +198,11,3,4149,358,757.609,51,16.0,C1,pp+,9,144,24,9,,,,, +198,11,3,4149,358,757.758,,,,,,144,24,0,,,,, +198,12,3,4150,409,757.758,103,8.0,A#1,pp+,9,144,34,9,,,,, +198,1,1,4140,0,758.06,,,,,,144,75,0,,,,, +198,12,3,4150,409,758.06,,,,,,144,34,0,,,,, +198,13,1,4151,512,758.06,,,,,,176,102,0,,,,, +198,14,3,4152,512,758.06,51,16.0,C1,p-,10,144,24,10,,,,, +198,14,3,4152,512,758.209,,,,,,144,24,0,,,,, +198,15,3,4153,563,758.209,51,16.0,A#1,p-,10,144,34,10,,,,, +198,15,3,4153,563,758.359,,,,,,144,34,0,,,,, +198,16,3,4154,614,758.359,51,16.0,C1,p-,10,144,24,10,,,,, +198,16,3,4154,614,758.508,,,,,,144,24,0,,,,, +198,17,3,4155,665,758.508,103,8.0,A#1,p-,10,144,34,10,,,,, +198,18,3,4156,768,758.81,51,16.0,A#1,,,,,,,,,, +198,17,3,4155,665,758.959,,,,,,144,34,0,,,,, +198,19,3,4157,819,758.959,51,16.0,C1,p,11,144,24,11,,,,, +198,19,3,4157,819,759.109,,,,,,144,24,0,,,,, +198,20,3,4158,870,759.109,154,8.0,A#1,p,11,144,34,11,,,,, +198,20,3,4158,870,759.56,,,,,,144,34,0,,,,, +198,21,1,4159,1024,759.56,512,2.0,C1,mf,17,144,24,17,,,,, +198,22,3,4160,1024,759.56,28,32.0,A2,ppp,5,144,45,5,,,,, +198,22,3,4160,1024,759.642,,,,,,144,45,0,,,,, +198,23,3,4161,1052,759.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +198,23,3,4161,1052,759.724,,,,,,144,30,0,,,,, +198,24,3,4162,1080,759.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,24,3,4162,1080,759.809,,,,,,144,37,0,,,,, +198,25,3,4163,1109,759.809,28,32.0,A2,ppp,5,144,45,5,,,,, +198,25,3,4163,1109,759.891,,,,,,144,45,0,,,,, +198,26,3,4164,1137,759.891,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,26,3,4164,1137,759.976,,,,,,144,37,0,,,,, +198,27,3,4165,1166,759.976,57,16.0,F#1,ppp,5,144,30,5,,,,, +198,27,3,4165,1166,760.143,,,,,,144,30,0,,,,, +198,28,3,4166,1223,760.143,28,32.0,A2,ppp,5,144,45,5,,,,, +198,28,3,4166,1223,760.225,,,,,,144,45,0,,,,, +198,29,3,4167,1251,760.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,29,3,4167,1251,760.31,,,,,,144,37,0,,,,, +198,30,3,4168,1280,760.31,28,32.0,A2,ppp,5,144,45,5,,,,, +198,30,3,4168,1280,760.392,,,,,,144,45,0,,,,, +198,31,3,4169,1308,760.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +198,31,3,4169,1308,760.474,,,,,,144,30,0,,,,, +198,32,3,4170,1336,760.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,32,3,4170,1336,760.559,,,,,,144,37,0,,,,, +198,33,3,4171,1365,760.559,28,32.0,A2,ppp,5,144,45,5,,,,, +198,33,3,4171,1365,760.641,,,,,,144,45,0,,,,, +198,34,3,4172,1393,760.641,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,34,3,4172,1393,760.726,,,,,,144,37,0,,,,, +198,35,3,4173,1422,760.726,57,16.0,F#1,ppp,5,144,30,5,,,,, +198,35,3,4173,1422,760.893,,,,,,144,30,0,,,,, +198,36,3,4174,1479,760.893,28,32.0,A2,ppp,5,144,45,5,,,,, +198,36,3,4174,1479,760.975,,,,,,144,45,0,,,,, +198,37,3,4175,1507,760.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,37,3,4175,1507,761.06,,,,,,144,37,0,,,,, +199,0,0,4176,0,761.06,,,,,,,,,199,,,, +199,1,1,4177,0,761.06,1024,1.0,C1,,,,,,,,,, +199,2,3,4178,0,761.06,28,32.0,A2,ppp,5,144,45,5,,,,, +199,2,3,4178,0,761.142,,,,,,144,45,0,,,,, +199,3,3,4179,28,761.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +199,3,3,4179,28,761.224,,,,,,144,30,0,,,,, +199,4,3,4180,56,761.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,4,3,4180,56,761.309,,,,,,144,37,0,,,,, +199,5,3,4181,85,761.309,28,32.0,A2,ppp,5,144,45,5,,,,, +199,5,3,4181,85,761.391,,,,,,144,45,0,,,,, +199,6,3,4182,113,761.391,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,6,3,4182,113,761.476,,,,,,144,37,0,,,,, +199,7,3,4183,142,761.476,57,16.0,F#1,ppp,5,144,30,5,,,,, +199,7,3,4183,142,761.643,,,,,,144,30,0,,,,, +199,8,3,4184,199,761.643,28,32.0,A2,ppp,5,144,45,5,,,,, +199,8,3,4184,199,761.725,,,,,,144,45,0,,,,, +199,9,3,4185,227,761.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,9,3,4185,227,761.81,,,,,,144,37,0,,,,, +199,10,3,4186,256,761.81,28,32.0,A2,ppp,5,144,45,5,,,,, +199,10,3,4186,256,761.892,,,,,,144,45,0,,,,, +199,11,3,4187,284,761.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +199,11,3,4187,284,761.974,,,,,,144,30,0,,,,, +199,12,3,4188,312,761.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,12,3,4188,312,762.059,,,,,,144,37,0,,,,, +199,13,3,4189,341,762.059,28,32.0,A2,ppp,5,144,45,5,,,,, +199,13,3,4189,341,762.141,,,,,,144,45,0,,,,, +199,14,3,4190,369,762.141,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,14,3,4190,369,762.226,,,,,,144,37,0,,,,, +199,15,3,4191,398,762.226,57,16.0,F#1,ppp,5,144,30,5,,,,, +199,15,3,4191,398,762.393,,,,,,144,30,0,,,,, +199,16,3,4192,455,762.393,28,32.0,A2,ppp,5,144,45,5,,,,, +199,16,3,4192,455,762.475,,,,,,144,45,0,,,,, +199,17,3,4193,483,762.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,17,3,4193,483,762.56,,,,,,144,37,0,,,,, +199,18,3,4194,512,762.56,28,32.0,A2,ppp,5,144,45,5,,,,, +199,18,3,4194,512,762.642,,,,,,144,45,0,,,,, +199,19,3,4195,540,762.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +199,19,3,4195,540,762.724,,,,,,144,30,0,,,,, +199,20,3,4196,568,762.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,20,3,4196,568,762.809,,,,,,144,37,0,,,,, +199,21,3,4197,597,762.809,28,32.0,A2,ppp,5,144,45,5,,,,, +199,21,3,4197,597,762.891,,,,,,144,45,0,,,,, +199,22,3,4198,625,762.891,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,22,3,4198,625,762.976,,,,,,144,37,0,,,,, +199,23,3,4199,654,762.976,57,16.0,F#1,ppp,5,144,30,5,,,,, +199,23,3,4199,654,763.143,,,,,,144,30,0,,,,, +199,24,3,4200,711,763.143,28,32.0,A2,ppp,5,144,45,5,,,,, +199,24,3,4200,711,763.225,,,,,,144,45,0,,,,, +199,25,3,4201,739,763.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,25,3,4201,739,763.31,,,,,,144,37,0,,,,, +199,26,3,4202,768,763.31,28,32.0,A2,ppp,5,144,45,5,,,,, +199,26,3,4202,768,763.392,,,,,,144,45,0,,,,, +199,27,3,4203,796,763.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +199,27,3,4203,796,763.474,,,,,,144,30,0,,,,, +199,28,3,4204,824,763.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,28,3,4204,824,763.559,,,,,,144,37,0,,,,, +199,29,3,4205,853,763.559,28,32.0,A2,ppp,5,144,45,5,,,,, +199,29,3,4205,853,763.641,,,,,,144,45,0,,,,, +199,30,3,4206,881,763.641,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,30,3,4206,881,763.726,,,,,,144,37,0,,,,, +199,31,3,4207,910,763.726,57,16.0,F#1,ppp,5,144,30,5,,,,, +199,31,3,4207,910,763.893,,,,,,144,30,0,,,,, +199,32,3,4208,967,763.893,28,32.0,A2,ppp,5,144,45,5,,,,, +199,32,3,4208,967,763.975,,,,,,144,45,0,,,,, +199,33,3,4209,995,763.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +198,21,1,4159,1024,764.06,,,,,,144,24,0,,,,, +199,33,3,4209,995,764.06,,,,,,144,37,0,,,,, +199,34,3,4210,1024,764.06,,,,,,176,102,0,,,,, +199,35,1,4211,1024,764.06,512,2.0,C#5,pp,8,144,73,8,,,,, +199,36,3,4212,1080,764.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,36,3,4212,1080,764.309,,,,,,144,37,0,,,,, +199,37,3,4213,1109,764.309,28,32.0,A2,ppp,5,144,45,5,,,,, +199,37,3,4213,1109,764.391,,,,,,144,45,0,,,,, +199,38,3,4214,1137,764.391,29,32.0,C#2,ppp,5,144,37,5,,,,, +199,38,3,4214,1137,764.476,,,,,,144,37,0,,,,, +199,39,3,4215,1166,764.476,57,16.0,F#1,ppp,5,144,30,5,,,,, +199,39,3,4215,1166,764.643,,,,,,144,30,0,,,,, +199,40,3,4216,1223,764.643,28,32.0,A2,ppp+,6,144,45,6,,,,, +199,40,3,4216,1223,764.725,,,,,,144,45,0,,,,, +199,41,3,4217,1251,764.725,29,32.0,C#2,ppp+,6,144,37,6,,,,, +199,41,3,4217,1251,764.81,,,,,,144,37,0,,,,, +199,42,3,4218,1280,764.81,28,32.0,A2,ppp+,6,144,45,6,,,,, +199,42,3,4218,1280,764.892,,,,,,144,45,0,,,,, +199,43,3,4219,1308,764.892,28,32.0,F#1,ppp+,6,144,30,6,,,,, +199,43,3,4219,1308,764.974,,,,,,144,30,0,,,,, +199,44,3,4220,1336,764.974,29,32.0,C#2,ppp+,6,144,37,6,,,,, +199,44,3,4220,1336,765.059,,,,,,144,37,0,,,,, +199,45,3,4221,1365,765.059,28,32.0,A2,ppp+,6,144,45,6,,,,, +199,45,3,4221,1365,765.141,,,,,,144,45,0,,,,, +199,46,3,4222,1393,765.141,29,32.0,C#2,pp-,7,144,37,7,,,,, +199,46,3,4222,1393,765.226,,,,,,144,37,0,,,,, +199,47,3,4223,1422,765.226,57,16.0,F#1,pp-,7,144,30,7,,,,, +199,47,3,4223,1422,765.393,,,,,,144,30,0,,,,, +199,48,3,4224,1479,765.393,28,32.0,A2,pp-,7,144,45,7,,,,, +199,48,3,4224,1479,765.475,,,,,,144,45,0,,,,, +199,49,3,4225,1507,765.475,29,32.0,C#2,pp-,7,144,37,7,,,,, +199,49,3,4225,1507,765.56,,,,,,144,37,0,,,,, +200,0,0,4226,0,765.56,,,,,,,,,200,,,, +200,1,1,4227,0,765.56,512,2.0,C#5,,,,,,,,,, +200,2,3,4228,0,765.56,28,32.0,A2,pp-,7,144,45,7,,,,, +200,2,3,4228,0,765.642,,,,,,144,45,0,,,,, +200,3,3,4229,28,765.642,28,32.0,F#1,pp-,7,144,30,7,,,,, +200,3,3,4229,28,765.724,,,,,,144,30,0,,,,, +200,4,3,4230,56,765.724,29,32.0,C#2,pp,8,144,37,8,,,,, +200,4,3,4230,56,765.809,,,,,,144,37,0,,,,, +200,5,3,4231,85,765.809,28,32.0,A2,pp,8,144,45,8,,,,, +200,5,3,4231,85,765.891,,,,,,144,45,0,,,,, +200,6,3,4232,113,765.891,29,32.0,C#2,pp,8,144,37,8,,,,, +200,6,3,4232,113,765.976,,,,,,144,37,0,,,,, +200,7,3,4233,142,765.976,57,16.0,F#1,pp,8,144,30,8,,,,, +200,7,3,4233,142,766.143,,,,,,144,30,0,,,,, +200,8,3,4234,199,766.143,28,32.0,A2,pp,8,144,45,8,,,,, +200,8,3,4234,199,766.225,,,,,,144,45,0,,,,, +200,9,3,4235,227,766.225,29,32.0,C#2,pp,8,144,37,8,,,,, +200,9,3,4235,227,766.31,,,,,,144,37,0,,,,, +200,10,3,4236,256,766.31,28,32.0,A2,pp+,9,144,45,9,,,,, +200,10,3,4236,256,766.392,,,,,,144,45,0,,,,, +200,11,3,4237,284,766.392,28,32.0,F#1,pp+,9,144,30,9,,,,, +200,11,3,4237,284,766.474,,,,,,144,30,0,,,,, +200,12,3,4238,312,766.474,29,32.0,C#2,pp+,9,144,37,9,,,,, +200,12,3,4238,312,766.559,,,,,,144,37,0,,,,, +200,13,3,4239,341,766.559,28,32.0,A2,pp+,9,144,45,9,,,,, +200,13,3,4239,341,766.641,,,,,,144,45,0,,,,, +200,14,3,4240,369,766.641,29,32.0,C#2,pp+,9,144,37,9,,,,, +200,14,3,4240,369,766.726,,,,,,144,37,0,,,,, +200,15,3,4241,398,766.726,114,8.0,F#1,pp+,9,144,30,9,,,,, +199,35,1,4211,1024,767.06,,,,,,144,73,0,,,,, +200,15,3,4241,398,767.06,,,,,,144,30,0,,,,, +200,16,3,4242,512,767.06,28,32.0,A2,ppp,5,144,45,5,,,,, +200,17,1,4243,512,767.06,1024,1.0,C1,mp,14,144,24,14,,,,, +200,16,3,4242,512,767.142,,,,,,144,45,0,,,,, +200,18,3,4244,540,767.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +200,19,3,4245,568,767.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,18,3,4244,540,767.299,,,,,,144,30,0,,,,, +200,19,3,4245,568,767.309,,,,,,144,37,0,,,,, +200,20,3,4246,597,767.309,28,32.0,A2,ppp,5,144,45,5,,,,, +200,20,3,4246,597,767.391,,,,,,144,45,0,,,,, +200,21,3,4247,625,767.391,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,21,3,4247,625,767.476,,,,,,144,37,0,,,,, +200,22,3,4248,654,767.476,57,16.0,F#1,ppp,5,144,30,5,,,,, +200,22,3,4248,654,767.643,,,,,,144,30,0,,,,, +200,23,3,4249,711,767.643,28,32.0,A2,ppp,5,144,45,5,,,,, +200,23,3,4249,711,767.725,,,,,,144,45,0,,,,, +200,24,3,4250,739,767.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,24,3,4250,739,767.81,,,,,,144,37,0,,,,, +200,25,3,4251,768,767.81,28,32.0,A2,ppp,5,144,45,5,,,,, +200,25,3,4251,768,767.892,,,,,,144,45,0,,,,, +200,26,3,4252,796,767.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +200,26,3,4252,796,767.974,,,,,,144,30,0,,,,, +200,27,3,4253,824,767.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,27,3,4253,824,768.059,,,,,,144,37,0,,,,, +200,28,3,4254,853,768.059,28,32.0,A2,ppp,5,144,45,5,,,,, +200,28,3,4254,853,768.141,,,,,,144,45,0,,,,, +200,29,3,4255,881,768.141,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,29,3,4255,881,768.226,,,,,,144,37,0,,,,, +200,30,3,4256,910,768.226,57,16.0,F#1,ppp,5,144,30,5,,,,, +200,30,3,4256,910,768.393,,,,,,144,30,0,,,,, +200,31,3,4257,967,768.393,28,32.0,A2,ppp,5,144,45,5,,,,, +200,31,3,4257,967,768.475,,,,,,144,45,0,,,,, +200,32,3,4258,995,768.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,32,3,4258,995,768.56,,,,,,144,37,0,,,,, +200,33,3,4259,1024,768.56,28,32.0,A2,ppp,5,144,45,5,,,,, +200,33,3,4259,1024,768.642,,,,,,144,45,0,,,,, +200,34,3,4260,1052,768.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +200,34,3,4260,1052,768.724,,,,,,144,30,0,,,,, +200,35,3,4261,1080,768.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,35,3,4261,1080,768.809,,,,,,144,37,0,,,,, +200,36,3,4262,1109,768.809,28,32.0,A2,ppp,5,144,45,5,,,,, +200,36,3,4262,1109,768.891,,,,,,144,45,0,,,,, +200,37,3,4263,1137,768.891,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,37,3,4263,1137,768.976,,,,,,144,37,0,,,,, +200,38,3,4264,1166,768.976,57,16.0,F#1,ppp,5,144,30,5,,,,, +200,38,3,4264,1166,769.143,,,,,,144,30,0,,,,, +200,39,3,4265,1223,769.143,28,32.0,A2,ppp,5,144,45,5,,,,, +200,39,3,4265,1223,769.225,,,,,,144,45,0,,,,, +200,40,3,4266,1251,769.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,40,3,4266,1251,769.31,,,,,,144,37,0,,,,, +200,41,3,4267,1280,769.31,28,32.0,A2,ppp,5,144,45,5,,,,, +200,41,3,4267,1280,769.392,,,,,,144,45,0,,,,, +200,42,3,4268,1308,769.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +200,42,3,4268,1308,769.474,,,,,,144,30,0,,,,, +200,43,3,4269,1336,769.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,43,3,4269,1336,769.559,,,,,,144,37,0,,,,, +200,44,3,4270,1365,769.559,28,32.0,A2,ppp,5,144,45,5,,,,, +200,44,3,4270,1365,769.641,,,,,,144,45,0,,,,, +200,45,3,4271,1393,769.641,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,45,3,4271,1393,769.726,,,,,,144,37,0,,,,, +200,46,3,4272,1422,769.726,57,16.0,F#1,ppp,5,144,30,5,,,,, +200,46,3,4272,1422,769.893,,,,,,144,30,0,,,,, +200,47,3,4273,1479,769.893,28,32.0,A2,ppp,5,144,45,5,,,,, +200,47,3,4273,1479,769.975,,,,,,144,45,0,,,,, +200,48,3,4274,1507,769.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +200,17,1,4243,512,770.06,,,,,,144,24,0,,,,, +200,48,3,4274,1507,770.06,,,,,,144,37,0,,,,, +201,0,0,4275,0,770.06,,,,,,,,,201,,,, +201,1,1,4276,0,770.06,1536,1.0,E6,mf,17,144,88,17,,,,, +201,2,3,4277,0,770.06,56,16.0,C1,mf,17,144,24,17,,,,, +201,2,3,4277,0,770.224,,,,,,144,24,0,,,,, +201,3,3,4278,56,770.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,3,3,4278,56,770.309,,,,,,144,37,0,,,,, +201,4,3,4279,85,770.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,4,3,4279,85,770.391,,,,,,144,30,0,,,,, +201,5,3,4280,113,770.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,5,3,4280,113,770.558,,,,,,144,37,0,,,,, +201,6,3,4281,170,770.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,6,3,4281,170,770.643,,,,,,144,30,0,,,,, +201,7,3,4282,199,770.643,28,32.0,A2,ppp,5,144,45,5,,,,, +201,7,3,4282,199,770.725,,,,,,144,45,0,,,,, +201,8,3,4283,227,770.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,8,3,4283,227,770.81,,,,,,144,37,0,,,,, +201,9,3,4284,256,770.81,28,32.0,A2,ppp,5,144,45,5,,,,, +201,9,3,4284,256,770.892,,,,,,144,45,0,,,,, +201,10,3,4285,284,770.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,10,3,4285,284,770.974,,,,,,144,30,0,,,,, +201,11,3,4286,312,770.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,11,3,4286,312,771.059,,,,,,144,37,0,,,,, +201,12,3,4287,341,771.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,12,3,4287,341,771.141,,,,,,144,30,0,,,,, +201,13,3,4288,369,771.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,13,3,4288,369,771.308,,,,,,144,37,0,,,,, +201,14,3,4289,426,771.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,14,3,4289,426,771.393,,,,,,144,30,0,,,,, +201,15,3,4290,455,771.393,28,32.0,A2,ppp,5,144,45,5,,,,, +201,15,3,4290,455,771.475,,,,,,144,45,0,,,,, +201,16,3,4291,483,771.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,16,3,4291,483,771.56,,,,,,144,37,0,,,,, +201,17,3,4292,512,771.56,28,32.0,A2,ppp,5,144,45,5,,,,, +201,17,3,4292,512,771.642,,,,,,144,45,0,,,,, +201,18,3,4293,540,771.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,18,3,4293,540,771.724,,,,,,144,30,0,,,,, +201,19,3,4294,568,771.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,19,3,4294,568,771.809,,,,,,144,37,0,,,,, +201,20,3,4295,597,771.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,20,3,4295,597,771.891,,,,,,144,30,0,,,,, +201,21,3,4296,625,771.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,21,3,4296,625,772.058,,,,,,144,37,0,,,,, +201,22,3,4297,682,772.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,22,3,4297,682,772.143,,,,,,144,30,0,,,,, +201,23,3,4298,711,772.143,28,32.0,A2,ppp,5,144,45,5,,,,, +201,23,3,4298,711,772.225,,,,,,144,45,0,,,,, +201,24,3,4299,739,772.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,24,3,4299,739,772.31,,,,,,144,37,0,,,,, +201,25,3,4300,768,772.31,28,32.0,A2,ppp,5,144,45,5,,,,, +201,25,3,4300,768,772.392,,,,,,144,45,0,,,,, +201,26,3,4301,796,772.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,26,3,4301,796,772.474,,,,,,144,30,0,,,,, +201,27,3,4302,824,772.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,27,3,4302,824,772.559,,,,,,144,37,0,,,,, +201,28,3,4303,853,772.559,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,28,3,4303,853,772.641,,,,,,144,30,0,,,,, +201,29,3,4304,881,772.641,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,29,3,4304,881,772.808,,,,,,144,37,0,,,,, +201,30,3,4305,938,772.808,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,30,3,4305,938,772.893,,,,,,144,30,0,,,,, +201,31,3,4306,967,772.893,28,32.0,A2,ppp,5,144,45,5,,,,, +201,31,3,4306,967,772.975,,,,,,144,45,0,,,,, +201,32,3,4307,995,772.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,32,3,4307,995,773.06,,,,,,144,37,0,,,,, +201,33,3,4308,1024,773.06,28,32.0,A2,ppp,5,144,45,5,,,,, +201,33,3,4308,1024,773.142,,,,,,144,45,0,,,,, +201,34,3,4309,1052,773.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,34,3,4309,1052,773.224,,,,,,144,30,0,,,,, +201,35,3,4310,1080,773.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,35,3,4310,1080,773.309,,,,,,144,37,0,,,,, +201,36,3,4311,1109,773.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,36,3,4311,1109,773.391,,,,,,144,30,0,,,,, +201,37,3,4312,1137,773.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,37,3,4312,1137,773.558,,,,,,144,37,0,,,,, +201,38,3,4313,1194,773.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,38,3,4313,1194,773.643,,,,,,144,30,0,,,,, +201,39,3,4314,1223,773.643,28,32.0,A2,ppp,5,144,45,5,,,,, +201,39,3,4314,1223,773.725,,,,,,144,45,0,,,,, +201,40,3,4315,1251,773.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,40,3,4315,1251,773.81,,,,,,144,37,0,,,,, +201,41,3,4316,1280,773.81,28,32.0,A2,ppp,5,144,45,5,,,,, +201,41,3,4316,1280,773.892,,,,,,144,45,0,,,,, +201,42,3,4317,1308,773.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,42,3,4317,1308,773.974,,,,,,144,30,0,,,,, +201,43,3,4318,1336,773.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,43,3,4318,1336,774.059,,,,,,144,37,0,,,,, +201,44,3,4319,1365,774.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +201,44,3,4319,1365,774.141,,,,,,144,30,0,,,,, +201,45,3,4320,1393,774.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +201,45,3,4320,1393,774.308,,,,,,144,37,0,,,,, +201,46,3,4321,1450,774.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +201,46,3,4321,1450,774.393,,,,,,144,30,0,,,,, +201,47,3,4322,1479,774.393,28,32.0,A2,ppp,5,144,45,5,,,,, +201,47,3,4322,1479,774.475,,,,,,144,45,0,,,,, +201,48,3,4323,1507,774.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +201,1,1,4276,0,774.56,,,,,,144,88,0,,,,, +201,48,3,4323,1507,774.56,,,,,,144,37,0,,,,, +202,0,0,4324,0,774.56,,,,,,,,,202,,,, +202,1,1,4325,0,774.56,102,8.0,C1,pp,8,144,24,8,,,,, +202,2,1,4326,0,774.56,128,8.0,A#1,pp,8,144,34,8,,,,, +202,3,3,4327,0,774.56,28,32.0,A2,ppp,5,144,45,5,,,,, +202,3,3,4327,0,774.642,,,,,,144,45,0,,,,, +202,4,3,4328,28,774.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,4,3,4328,28,774.724,,,,,,144,30,0,,,,, +202,5,3,4329,56,774.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,5,3,4329,56,774.809,,,,,,144,37,0,,,,, +202,6,3,4330,85,774.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,1,1,4325,0,774.859,,,,,,144,24,0,,,,, +202,2,1,4326,0,774.859,,,,,,144,34,0,,,,, +202,7,1,4331,102,774.859,51,16.0,C1,pp,8,144,24,8,,,,, +202,8,1,4332,102,774.859,64,16.0,A#1,pp,8,144,34,8,,,,, +202,6,3,4330,85,774.891,,,,,,144,30,0,,,,, +202,9,3,4333,113,774.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,7,1,4331,102,775.008,,,,,,144,24,0,,,,, +202,8,1,4332,102,775.008,,,,,,144,34,0,,,,, +202,10,1,4334,153,775.008,51,16.0,A#1,pp+,9,144,34,9,,,,, +202,9,3,4333,113,775.058,,,,,,144,37,0,,,,, +202,11,3,4335,170,775.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,11,3,4335,170,775.143,,,,,,144,30,0,,,,, +202,12,3,4336,199,775.143,28,32.0,A2,ppp,5,144,45,5,,,,, +202,10,1,4334,153,775.158,,,,,,144,34,0,,,,, +202,13,1,4337,204,775.158,52,16.0,C1,pp+,9,144,24,9,,,,, +202,12,3,4336,199,775.225,,,,,,144,45,0,,,,, +202,14,3,4338,227,775.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,14,3,4338,227,775.31,,,,,,144,37,0,,,,, +202,15,3,4339,256,775.31,28,32.0,A2,ppp,5,144,45,5,,,,, +202,16,1,4340,256,775.31,51,16.0,C1,,,,,,,,,, +202,15,3,4339,256,775.392,,,,,,144,45,0,,,,, +202,17,3,4341,284,775.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,13,1,4337,204,775.459,,,,,,144,24,0,,,,, +202,18,1,4342,307,775.459,51,16.0,A#1,pp+,9,144,34,9,,,,, +202,17,3,4341,284,775.474,,,,,,144,30,0,,,,, +202,19,3,4343,312,775.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,19,3,4343,312,775.559,,,,,,144,37,0,,,,, +202,20,3,4344,341,775.559,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,18,1,4342,307,775.609,,,,,,144,34,0,,,,, +202,21,1,4345,358,775.609,51,16.0,C1,p-,10,144,24,10,,,,, +202,20,3,4344,341,775.641,,,,,,144,30,0,,,,, +202,22,3,4346,369,775.641,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,21,1,4345,358,775.758,,,,,,144,24,0,,,,, +202,23,1,4347,409,775.758,103,8.0,A#1,p-,10,144,34,10,,,,, +202,22,3,4346,369,775.808,,,,,,144,37,0,,,,, +202,24,3,4348,426,775.808,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,24,3,4348,426,775.893,,,,,,144,30,0,,,,, +202,25,3,4349,455,775.893,28,32.0,A2,ppp,5,144,45,5,,,,, +202,25,3,4349,455,775.975,,,,,,144,45,0,,,,, +202,26,3,4350,483,775.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,23,1,4347,409,776.06,,,,,,144,34,0,,,,, +202,26,3,4350,483,776.06,,,,,,144,37,0,,,,, +202,27,3,4351,512,776.06,28,32.0,A2,ppp,5,144,45,5,,,,, +202,28,1,4352,512,776.06,51,16.0,C1,p-,10,144,24,10,,,,, +202,27,3,4351,512,776.142,,,,,,144,45,0,,,,, +202,29,3,4353,540,776.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,28,1,4352,512,776.209,,,,,,144,24,0,,,,, +202,30,1,4354,563,776.209,51,16.0,A#1,p,11,144,34,11,,,,, +202,29,3,4353,540,776.224,,,,,,144,30,0,,,,, +202,31,3,4355,568,776.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,31,3,4355,568,776.309,,,,,,144,37,0,,,,, +202,32,3,4356,597,776.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,30,1,4354,563,776.359,,,,,,144,34,0,,,,, +202,33,1,4357,614,776.359,51,16.0,C1,p,11,144,24,11,,,,, +202,32,3,4356,597,776.391,,,,,,144,30,0,,,,, +202,34,3,4358,625,776.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,33,1,4357,614,776.508,,,,,,144,24,0,,,,, +202,35,1,4359,665,776.508,103,8.0,A#1,p,11,144,34,11,,,,, +202,34,3,4358,625,776.558,,,,,,144,37,0,,,,, +202,36,3,4360,682,776.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,36,3,4360,682,776.643,,,,,,144,30,0,,,,, +202,37,3,4361,711,776.643,28,32.0,A2,ppp,5,144,45,5,,,,, +202,37,3,4361,711,776.725,,,,,,144,45,0,,,,, +202,38,3,4362,739,776.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,38,3,4362,739,776.81,,,,,,144,37,0,,,,, +202,39,3,4363,768,776.81,28,32.0,A2,ppp,5,144,45,5,,,,, +202,40,1,4364,768,776.81,51,16.0,A#1,,,,,,,,,, +202,39,3,4363,768,776.892,,,,,,144,45,0,,,,, +202,41,3,4365,796,776.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,35,1,4359,665,776.959,,,,,,144,34,0,,,,, +202,42,1,4366,819,776.959,51,16.0,C1,p+,12,144,24,12,,,,, +202,41,3,4365,796,776.974,,,,,,144,30,0,,,,, +202,43,3,4367,824,776.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,43,3,4367,824,777.059,,,,,,144,37,0,,,,, +202,44,3,4368,853,777.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,42,1,4366,819,777.109,,,,,,144,24,0,,,,, +202,45,1,4369,870,777.109,154,8.0,A#1,p+,12,144,34,12,,,,, +202,44,3,4368,853,777.141,,,,,,144,30,0,,,,, +202,46,3,4370,881,777.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,46,3,4370,881,777.308,,,,,,144,37,0,,,,, +202,47,3,4371,938,777.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,47,3,4371,938,777.393,,,,,,144,30,0,,,,, +202,48,3,4372,967,777.393,28,32.0,A2,ppp,5,144,45,5,,,,, +202,48,3,4372,967,777.475,,,,,,144,45,0,,,,, +202,49,3,4373,995,777.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,45,1,4369,870,777.56,,,,,,144,34,0,,,,, +202,49,3,4373,995,777.56,,,,,,144,37,0,,,,, +202,50,3,4374,1024,777.56,28,32.0,A2,ppp,5,144,45,5,,,,, +202,51,1,4375,1024,777.56,,,,,,176,102,0,,,,, +202,50,3,4374,1024,777.642,,,,,,144,45,0,,,,, +202,52,3,4376,1052,777.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,52,3,4376,1052,777.724,,,,,,144,30,0,,,,, +202,53,3,4377,1080,777.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,53,3,4377,1080,777.809,,,,,,144,37,0,,,,, +202,54,3,4378,1109,777.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,54,3,4378,1109,777.891,,,,,,144,30,0,,,,, +202,55,3,4379,1137,777.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,55,3,4379,1137,778.058,,,,,,144,37,0,,,,, +202,56,3,4380,1194,778.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,56,3,4380,1194,778.143,,,,,,144,30,0,,,,, +202,57,3,4381,1223,778.143,28,32.0,A2,ppp,5,144,45,5,,,,, +202,57,3,4381,1223,778.225,,,,,,144,45,0,,,,, +202,58,3,4382,1251,778.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,58,3,4382,1251,778.31,,,,,,144,37,0,,,,, +202,59,3,4383,1280,778.31,28,32.0,A2,ppp,5,144,45,5,,,,, +202,60,1,4384,1280,778.31,,,,,,176,102,0,,,,, +202,59,3,4383,1280,778.392,,,,,,144,45,0,,,,, +202,61,3,4385,1308,778.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,61,3,4385,1308,778.474,,,,,,144,30,0,,,,, +202,62,3,4386,1336,778.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,62,3,4386,1336,778.559,,,,,,144,37,0,,,,, +202,63,3,4387,1365,778.559,28,32.0,F#1,ppp,5,144,30,5,,,,, +202,63,3,4387,1365,778.641,,,,,,144,30,0,,,,, +202,64,3,4388,1393,778.641,57,16.0,C#2,ppp,5,144,37,5,,,,, +202,64,3,4388,1393,778.808,,,,,,144,37,0,,,,, +202,65,3,4389,1450,778.808,29,32.0,F#1,ppp,5,144,30,5,,,,, +202,65,3,4389,1450,778.893,,,,,,144,30,0,,,,, +202,66,3,4390,1479,778.893,28,32.0,A2,ppp,5,144,45,5,,,,, +202,66,3,4390,1479,778.975,,,,,,144,45,0,,,,, +202,67,3,4391,1507,778.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +202,67,3,4391,1507,779.06,,,,,,144,37,0,,,,, +203,0,0,4392,0,779.06,,,,,,,,,203,,,, +203,1,1,4393,0,779.06,,,,,,176,102,0,,,,, +203,2,3,4394,0,779.06,28,32.0,A2,ppp,5,144,45,5,,,,, +203,2,3,4394,0,779.142,,,,,,144,45,0,,,,, +203,3,3,4395,28,779.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,3,3,4395,28,779.224,,,,,,144,30,0,,,,, +203,4,3,4396,56,779.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,4,3,4396,56,779.309,,,,,,144,37,0,,,,, +203,5,3,4397,85,779.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,5,3,4397,85,779.391,,,,,,144,30,0,,,,, +203,6,3,4398,113,779.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,6,3,4398,113,779.558,,,,,,144,37,0,,,,, +203,7,3,4399,170,779.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,7,3,4399,170,779.643,,,,,,144,30,0,,,,, +203,8,3,4400,199,779.643,28,32.0,A2,ppp,5,144,45,5,,,,, +203,8,3,4400,199,779.725,,,,,,144,45,0,,,,, +203,9,3,4401,227,779.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,9,3,4401,227,779.81,,,,,,144,37,0,,,,, +203,10,3,4402,256,779.81,28,32.0,A2,ppp,5,144,45,5,,,,, +203,10,3,4402,256,779.892,,,,,,144,45,0,,,,, +203,11,3,4403,284,779.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,11,3,4403,284,779.974,,,,,,144,30,0,,,,, +203,12,3,4404,312,779.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,12,3,4404,312,780.059,,,,,,144,37,0,,,,, +203,13,3,4405,341,780.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,13,3,4405,341,780.141,,,,,,144,30,0,,,,, +203,14,3,4406,369,780.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,14,3,4406,369,780.308,,,,,,144,37,0,,,,, +203,15,3,4407,426,780.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,15,3,4407,426,780.393,,,,,,144,30,0,,,,, +203,16,3,4408,455,780.393,28,32.0,A2,ppp,5,144,45,5,,,,, +203,16,3,4408,455,780.475,,,,,,144,45,0,,,,, +203,17,3,4409,483,780.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,17,3,4409,483,780.56,,,,,,144,37,0,,,,, +203,18,3,4410,512,780.56,28,32.0,A2,ppp,5,144,45,5,,,,, +203,18,3,4410,512,780.642,,,,,,144,45,0,,,,, +203,19,3,4411,540,780.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,19,3,4411,540,780.724,,,,,,144,30,0,,,,, +203,20,3,4412,568,780.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,20,3,4412,568,780.809,,,,,,144,37,0,,,,, +203,21,3,4413,597,780.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,21,3,4413,597,780.891,,,,,,144,30,0,,,,, +203,22,3,4414,625,780.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,22,3,4414,625,781.058,,,,,,144,37,0,,,,, +203,23,3,4415,682,781.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,23,3,4415,682,781.143,,,,,,144,30,0,,,,, +203,24,3,4416,711,781.143,28,32.0,A2,ppp,5,144,45,5,,,,, +203,24,3,4416,711,781.225,,,,,,144,45,0,,,,, +203,25,3,4417,739,781.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,25,3,4417,739,781.31,,,,,,144,37,0,,,,, +203,26,3,4418,768,781.31,28,32.0,A2,ppp,5,144,45,5,,,,, +203,26,3,4418,768,781.392,,,,,,144,45,0,,,,, +203,27,3,4419,796,781.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,27,3,4419,796,781.474,,,,,,144,30,0,,,,, +203,28,3,4420,824,781.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,28,3,4420,824,781.559,,,,,,144,37,0,,,,, +203,29,3,4421,853,781.559,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,29,3,4421,853,781.641,,,,,,144,30,0,,,,, +203,30,3,4422,881,781.641,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,30,3,4422,881,781.808,,,,,,144,37,0,,,,, +203,31,3,4423,938,781.808,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,31,3,4423,938,781.893,,,,,,144,30,0,,,,, +203,32,3,4424,967,781.893,28,32.0,A2,ppp,5,144,45,5,,,,, +203,32,3,4424,967,781.975,,,,,,144,45,0,,,,, +203,33,3,4425,995,781.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,33,3,4425,995,782.06,,,,,,144,37,0,,,,, +203,34,3,4426,1024,782.06,28,32.0,A2,ppp,5,144,45,5,,,,, +203,34,3,4426,1024,782.142,,,,,,144,45,0,,,,, +203,35,3,4427,1052,782.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,35,3,4427,1052,782.224,,,,,,144,30,0,,,,, +203,36,3,4428,1080,782.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,36,3,4428,1080,782.309,,,,,,144,37,0,,,,, +203,37,3,4429,1109,782.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,37,3,4429,1109,782.391,,,,,,144,30,0,,,,, +203,38,3,4430,1137,782.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,38,3,4430,1137,782.558,,,,,,144,37,0,,,,, +203,39,3,4431,1194,782.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,39,3,4431,1194,782.643,,,,,,144,30,0,,,,, +203,40,3,4432,1223,782.643,28,32.0,A2,ppp,5,144,45,5,,,,, +203,40,3,4432,1223,782.725,,,,,,144,45,0,,,,, +203,41,3,4433,1251,782.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,41,3,4433,1251,782.81,,,,,,144,37,0,,,,, +203,42,3,4434,1280,782.81,28,32.0,A2,ppp,5,144,45,5,,,,, +203,42,3,4434,1280,782.892,,,,,,144,45,0,,,,, +203,43,3,4435,1308,782.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,43,3,4435,1308,782.974,,,,,,144,30,0,,,,, +203,44,3,4436,1336,782.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,44,3,4436,1336,783.059,,,,,,144,37,0,,,,, +203,45,3,4437,1365,783.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +203,45,3,4437,1365,783.141,,,,,,144,30,0,,,,, +203,46,3,4438,1393,783.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +203,46,3,4438,1393,783.308,,,,,,144,37,0,,,,, +203,47,3,4439,1450,783.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +203,47,3,4439,1450,783.393,,,,,,144,30,0,,,,, +203,48,3,4440,1479,783.393,28,32.0,A2,ppp,5,144,45,5,,,,, +203,48,3,4440,1479,783.475,,,,,,144,45,0,,,,, +203,49,3,4441,1507,783.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +203,49,3,4441,1507,783.56,,,,,,144,37,0,,,,, +204,0,0,4442,0,783.56,,,,,,,,,204,,,, +204,1,1,4443,0,783.56,256,4.0,G#5,mf,17,144,80,17,,,,, +204,2,1,4444,0,783.56,256,4.0,E6,mf,17,144,88,17,,,,, +204,3,3,4445,0,783.56,56,16.0,C1,mf,17,144,24,17,,,,, +204,3,3,4445,0,783.724,,,,,,144,24,0,,,,, +204,4,3,4446,56,783.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,4,3,4446,56,783.809,,,,,,144,37,0,,,,, +204,5,3,4447,85,783.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,5,3,4447,85,783.891,,,,,,144,30,0,,,,, +204,6,3,4448,113,783.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +204,6,3,4448,113,784.058,,,,,,144,37,0,,,,, +204,7,3,4449,170,784.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,7,3,4449,170,784.143,,,,,,144,30,0,,,,, +204,8,3,4450,199,784.143,28,32.0,A2,ppp,5,144,45,5,,,,, +204,8,3,4450,199,784.225,,,,,,144,45,0,,,,, +204,9,3,4451,227,784.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,2,1,4444,0,784.31,,,,,,144,88,0,,,,, +204,9,3,4451,227,784.31,,,,,,144,37,0,,,,, +204,10,3,4452,256,784.31,28,32.0,A2,ppp,5,144,45,5,,,,, +204,11,1,4453,256,784.31,28,32.0,G#5,,,,,,,,,, +204,1,1,4443,0,784.392,,,,,,144,80,0,,,,, +204,10,3,4452,256,784.392,,,,,,144,45,0,,,,, +204,12,3,4454,284,784.392,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,13,1,4455,284,784.392,114,8.0,A5,mp,14,144,81,14,,,,, +204,12,3,4454,284,784.474,,,,,,144,30,0,,,,, +204,14,3,4456,312,784.474,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,14,3,4456,312,784.559,,,,,,144,37,0,,,,, +204,15,3,4457,341,784.559,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,15,3,4457,341,784.641,,,,,,144,30,0,,,,, +204,16,3,4458,369,784.641,57,16.0,C#2,ppp,5,144,37,5,,,,, +204,13,1,4455,284,784.726,,,,,,144,81,0,,,,, +204,17,1,4459,398,784.726,114,8.0,F#3,p,11,144,54,11,,,,, +204,16,3,4458,369,784.808,,,,,,144,37,0,,,,, +204,18,3,4460,426,784.808,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,18,3,4460,426,784.893,,,,,,144,30,0,,,,, +204,19,3,4461,455,784.893,28,32.0,A2,ppp,5,144,45,5,,,,, +204,19,3,4461,455,784.975,,,,,,144,45,0,,,,, +204,20,3,4462,483,784.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,20,3,4462,483,785.06,,,,,,144,37,0,,,,, +204,21,3,4463,512,785.06,28,32.0,A2,ppp,5,144,45,5,,,,, +204,22,1,4464,512,785.06,1024,1.0,F#3,,,,,,,,,, +204,21,3,4463,512,785.142,,,,,,144,45,0,,,,, +204,23,3,4465,540,785.142,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,23,3,4465,540,785.224,,,,,,144,30,0,,,,, +204,24,3,4466,568,785.224,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,24,3,4466,568,785.309,,,,,,144,37,0,,,,, +204,25,3,4467,597,785.309,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,25,3,4467,597,785.391,,,,,,144,30,0,,,,, +204,26,3,4468,625,785.391,57,16.0,C#2,ppp,5,144,37,5,,,,, +204,26,3,4468,625,785.558,,,,,,144,37,0,,,,, +204,27,3,4469,682,785.558,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,27,3,4469,682,785.643,,,,,,144,30,0,,,,, +204,28,3,4470,711,785.643,28,32.0,A2,ppp,5,144,45,5,,,,, +204,28,3,4470,711,785.725,,,,,,144,45,0,,,,, +204,29,3,4471,739,785.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,29,3,4471,739,785.81,,,,,,144,37,0,,,,, +204,30,3,4472,768,785.81,28,32.0,A2,ppp,5,144,45,5,,,,, +204,30,3,4472,768,785.892,,,,,,144,45,0,,,,, +204,31,3,4473,796,785.892,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,31,3,4473,796,785.974,,,,,,144,30,0,,,,, +204,32,3,4474,824,785.974,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,32,3,4474,824,786.059,,,,,,144,37,0,,,,, +204,33,3,4475,853,786.059,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,33,3,4475,853,786.141,,,,,,144,30,0,,,,, +204,34,3,4476,881,786.141,57,16.0,C#2,ppp,5,144,37,5,,,,, +204,34,3,4476,881,786.308,,,,,,144,37,0,,,,, +204,35,3,4477,938,786.308,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,35,3,4477,938,786.393,,,,,,144,30,0,,,,, +204,36,3,4478,967,786.393,28,32.0,A2,ppp,5,144,45,5,,,,, +204,36,3,4478,967,786.475,,,,,,144,45,0,,,,, +204,37,3,4479,995,786.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,37,3,4479,995,786.56,,,,,,144,37,0,,,,, +204,38,3,4480,1024,786.56,28,32.0,A2,ppp,5,144,45,5,,,,, +204,38,3,4480,1024,786.642,,,,,,144,45,0,,,,, +204,39,3,4481,1052,786.642,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,39,3,4481,1052,786.724,,,,,,144,30,0,,,,, +204,40,3,4482,1080,786.724,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,40,3,4482,1080,786.809,,,,,,144,37,0,,,,, +204,41,3,4483,1109,786.809,28,32.0,F#1,ppp,5,144,30,5,,,,, +204,41,3,4483,1109,786.891,,,,,,144,30,0,,,,, +204,42,3,4484,1137,786.891,57,16.0,C#2,ppp,5,144,37,5,,,,, +204,42,3,4484,1137,787.058,,,,,,144,37,0,,,,, +204,43,3,4485,1194,787.058,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,46,0,4486,1251,787.117,,,,,,176,64,0,,,,,^ +204,43,3,4485,1194,787.143,,,,,,144,30,0,,,,, +204,44,3,4487,1223,787.143,28,32.0,A2,ppp,5,144,45,5,,,,, +204,44,3,4487,1223,787.225,,,,,,144,45,0,,,,, +204,45,3,4488,1251,787.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,45,3,4488,1251,787.31,,,,,,144,37,0,,,,, +204,47,3,4489,1280,787.31,28,32.0,A4,ppp,5,144,69,5,,,,, +204,48,0,4490,1280,787.31,,,,,,,,,,5969,,, +204,47,3,4489,1280,787.392,,,,,,144,69,0,,,,, +204,50,3,4491,1308,787.392,28,32.0,C1,ppp,5,144,24,5,,,,, +204,49,0,4492,1280,787.417,,,,,,176,64,127,,,,,V +204,50,3,4491,1308,787.474,,,,,,144,24,0,,,,, +204,51,3,4493,1336,787.474,29,32.0,F#1,ppp,5,144,30,5,,,,, +204,51,3,4493,1336,787.559,,,,,,144,30,0,,,,, +204,52,3,4494,1365,787.559,28,32.0,A4,ppp,5,144,69,5,,,,, +204,52,3,4494,1365,787.641,,,,,,144,69,0,,,,, +204,53,3,4495,1393,787.641,29,32.0,C1,ppp,5,144,24,5,,,,, +204,53,3,4495,1393,787.726,,,,,,144,24,0,,,,, +204,54,3,4496,1422,787.726,57,16.0,F#1,ppp,5,144,30,5,,,,, +204,54,3,4496,1422,787.893,,,,,,144,30,0,,,,, +204,55,3,4497,1479,787.893,28,32.0,A4,ppp,5,144,69,5,,,,, +204,55,3,4497,1479,787.975,,,,,,144,69,0,,,,, +204,56,3,4498,1507,787.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +204,17,1,4459,398,788.06,,,,,,144,54,0,,,,, +204,56,3,4498,1507,788.06,,,,,,144,37,0,,,,, +205,0,0,4499,0,788.06,,,,,,,,,205,,,, +205,1,1,4500,0,788.06,,,,,,176,102,0,,,,, +205,2,3,4501,0,788.06,28,32.0,A4,ppp,5,144,69,5,,,,, +205,2,3,4501,0,788.142,,,,,,144,69,0,,,,, +205,3,3,4502,28,788.142,28,32.0,C1,ppp,5,144,24,5,,,,, +205,3,3,4502,28,788.224,,,,,,144,24,0,,,,, +205,4,3,4503,56,788.224,29,32.0,F#1,ppp,5,144,30,5,,,,, +205,4,3,4503,56,788.309,,,,,,144,30,0,,,,, +205,5,3,4504,85,788.309,28,32.0,A4,ppp,5,144,69,5,,,,, +205,5,3,4504,85,788.391,,,,,,144,69,0,,,,, +205,6,3,4505,113,788.391,29,32.0,C1,ppp,5,144,24,5,,,,, +205,6,3,4505,113,788.476,,,,,,144,24,0,,,,, +205,7,3,4506,142,788.476,57,16.0,F#1,ppp,5,144,30,5,,,,, +205,7,3,4506,142,788.643,,,,,,144,30,0,,,,, +205,8,3,4507,199,788.643,28,32.0,A4,ppp,5,144,69,5,,,,, +205,8,3,4507,199,788.725,,,,,,144,69,0,,,,, +205,9,3,4508,227,788.725,29,32.0,C#2,ppp,5,144,37,5,,,,, +205,9,3,4508,227,788.81,,,,,,144,37,0,,,,, +205,10,3,4509,256,788.81,28,32.0,A4,ppp,5,144,69,5,,,,, +205,10,3,4509,256,788.892,,,,,,144,69,0,,,,, +205,11,3,4510,284,788.892,28,32.0,C1,ppp,5,144,24,5,,,,, +205,11,3,4510,284,788.974,,,,,,144,24,0,,,,, +205,12,3,4511,312,788.974,29,32.0,F#1,ppp,5,144,30,5,,,,, +205,12,3,4511,312,789.059,,,,,,144,30,0,,,,, +205,13,3,4512,341,789.059,28,32.0,A4,ppp,5,144,69,5,,,,, +205,13,3,4512,341,789.141,,,,,,144,69,0,,,,, +205,14,3,4513,369,789.141,29,32.0,C1,ppp,5,144,24,5,,,,, +205,14,3,4513,369,789.226,,,,,,144,24,0,,,,, +205,15,3,4514,398,789.226,57,16.0,F#1,ppp,5,144,30,5,,,,, +205,15,3,4514,398,789.393,,,,,,144,30,0,,,,, +205,16,3,4515,455,789.393,28,32.0,A4,ppp,5,144,69,5,,,,, +205,16,3,4515,455,789.475,,,,,,144,69,0,,,,, +205,17,3,4516,483,789.475,29,32.0,C#2,ppp,5,144,37,5,,,,, +205,17,3,4516,483,789.56,,,,,,144,37,0,,,,, +205,18,3,4517,512,789.56,28,32.0,A4,ppp,5,144,69,5,,,,, +205,19,1,4518,512,789.56,,,,,,176,102,0,,,,, +205,18,3,4517,512,789.642,,,,,,144,69,0,,,,, +205,20,3,4519,540,789.642,28,32.0,C1,ppp,5,144,24,5,,,,, +205,20,3,4519,540,789.724,,,,,,144,24,0,,,,, +205,21,3,4520,568,789.724,29,32.0,F#1,ppp,5,144,30,5,,,,, +205,21,3,4520,568,789.809,,,,,,144,30,0,,,,, +205,22,3,4521,597,789.809,28,32.0,A4,ppp,5,144,69,5,,,,, +205,22,3,4521,597,789.891,,,,,,144,69,0,,,,, +205,23,3,4522,625,789.891,29,32.0,C1,ppp,5,144,24,5,,,,, +205,23,3,4522,625,789.976,,,,,,144,24,0,,,,, +205,24,3,4523,654,789.976,57,16.0,F#1,ppp,5,144,30,5,,,,, +205,24,3,4523,654,790.143,,,,,,144,30,0,,,,, +205,25,3,4524,711,790.143,28,32.0,A4,ppp,5,144,69,5,,,,, +205,25,3,4524,711,790.225,,,,,,144,69,0,,,,, +205,26,3,4525,739,790.225,29,32.0,C#2,ppp,5,144,37,5,,,,, +205,26,3,4525,739,790.31,,,,,,144,37,0,,,,, +205,27,3,4526,768,790.31,28,32.0,A4,ppp,5,144,69,5,,,,, +205,27,3,4526,768,790.392,,,,,,144,69,0,,,,, +205,28,3,4527,796,790.392,28,32.0,C1,ppp,5,144,24,5,,,,, +205,28,3,4527,796,790.474,,,,,,144,24,0,,,,, +205,29,3,4528,824,790.474,29,32.0,F#1,ppp,5,144,30,5,,,,, +205,29,3,4528,824,790.559,,,,,,144,30,0,,,,, +205,30,3,4529,853,790.559,28,32.0,A4,ppp,5,144,69,5,,,,, +205,30,3,4529,853,790.641,,,,,,144,69,0,,,,, +205,31,3,4530,881,790.641,29,32.0,C1,ppp,5,144,24,5,,,,, +205,31,3,4530,881,790.726,,,,,,144,24,0,,,,, +205,32,3,4531,910,790.726,57,16.0,F#1,ppp,5,144,30,5,,,,, +205,32,3,4531,910,790.893,,,,,,144,30,0,,,,, +205,33,3,4532,967,790.893,28,32.0,A4,ppp,5,144,69,5,,,,, +205,33,3,4532,967,790.975,,,,,,144,69,0,,,,, +205,34,3,4533,995,790.975,29,32.0,C#2,ppp,5,144,37,5,,,,, +205,34,3,4533,995,791.06,,,,,,144,37,0,,,,, +205,35,3,4534,1024,791.06,28,32.0,A4,ppp,5,144,69,5,,,,, +205,36,1,4535,1024,791.06,512,2.0,E5,p,11,144,76,11,,,,, +205,35,3,4534,1024,791.142,,,,,,144,69,0,,,,, +205,37,3,4536,1052,791.142,28,32.0,C2,ppp,5,144,36,5,,,,, +205,37,3,4536,1052,791.224,,,,,,144,36,0,,,,, +205,38,3,4537,1080,791.224,29,32.0,F#2,ppp,5,144,42,5,,,,, +205,38,3,4537,1080,791.309,,,,,,144,42,0,,,,, +205,39,3,4538,1109,791.309,28,32.0,A4,ppp,5,144,69,5,,,,, +205,39,3,4538,1109,791.391,,,,,,144,69,0,,,,, +205,40,3,4539,1137,791.391,29,32.0,C2,ppp,5,144,36,5,,,,, +205,40,3,4539,1137,791.476,,,,,,144,36,0,,,,, +205,41,3,4540,1166,791.476,57,16.0,F#2,ppp,5,144,42,5,,,,, +205,41,3,4540,1166,791.643,,,,,,144,42,0,,,,, +205,42,3,4541,1223,791.643,28,32.0,A4,ppp,5,144,69,5,,,,, +205,42,3,4541,1223,791.725,,,,,,144,69,0,,,,, +205,43,3,4542,1251,791.725,29,32.0,C2,ppp,5,144,36,5,,,,, +205,43,3,4542,1251,791.81,,,,,,144,36,0,,,,, +205,44,3,4543,1280,791.81,28,32.0,A4,ppp,5,144,69,5,,,,, +205,44,3,4543,1280,791.892,,,,,,144,69,0,,,,, +205,45,3,4544,1308,791.892,28,32.0,C2,ppp,5,144,36,5,,,,, +205,45,3,4544,1308,791.974,,,,,,144,36,0,,,,, +205,46,3,4545,1336,791.974,29,32.0,F#2,ppp,5,144,42,5,,,,, +205,46,3,4545,1336,792.059,,,,,,144,42,0,,,,, +205,47,3,4546,1365,792.059,28,32.0,A4,ppp,5,144,69,5,,,,, +205,47,3,4546,1365,792.141,,,,,,144,69,0,,,,, +205,48,3,4547,1393,792.141,29,32.0,C2,ppp,5,144,36,5,,,,, +205,48,3,4547,1393,792.226,,,,,,144,36,0,,,,, +205,49,3,4548,1422,792.226,57,16.0,F#2,ppp,5,144,42,5,,,,, +205,49,3,4548,1422,792.393,,,,,,144,42,0,,,,, +205,50,3,4549,1479,792.393,28,32.0,A4,ppp,5,144,69,5,,,,, +205,50,3,4549,1479,792.475,,,,,,144,69,0,,,,, +205,51,3,4550,1507,792.475,29,32.0,C2,ppp,5,144,36,5,,,,, +205,51,3,4550,1507,792.56,,,,,,144,36,0,,,,, +206,0,0,4551,0,792.56,,,,,,,,,206,,,, +206,1,1,4552,0,792.56,512,2.0,E5,,,,,,,,,, +206,2,3,4553,0,792.56,28,32.0,A4,ppp,5,144,69,5,,,,, +206,2,3,4553,0,792.642,,,,,,144,69,0,,,,, +206,3,3,4554,28,792.642,28,32.0,C2,ppp,5,144,36,5,,,,, +206,3,3,4554,28,792.724,,,,,,144,36,0,,,,, +206,4,3,4555,56,792.724,29,32.0,F#2,ppp,5,144,42,5,,,,, +206,4,3,4555,56,792.809,,,,,,144,42,0,,,,, +206,5,3,4556,85,792.809,28,32.0,A4,ppp,5,144,69,5,,,,, +206,5,3,4556,85,792.891,,,,,,144,69,0,,,,, +206,6,3,4557,113,792.891,29,32.0,C2,ppp,5,144,36,5,,,,, +206,6,3,4557,113,792.976,,,,,,144,36,0,,,,, +206,7,3,4558,142,792.976,57,16.0,F#2,ppp,5,144,42,5,,,,, +206,7,3,4558,142,793.143,,,,,,144,42,0,,,,, +206,8,3,4559,199,793.143,28,32.0,A4,ppp,5,144,69,5,,,,, +206,8,3,4559,199,793.225,,,,,,144,69,0,,,,, +206,9,3,4560,227,793.225,29,32.0,C2,ppp,5,144,36,5,,,,, +206,9,3,4560,227,793.31,,,,,,144,36,0,,,,, +206,10,3,4561,256,793.31,28,32.0,A4,ppp,5,144,69,5,,,,, +206,10,3,4561,256,793.392,,,,,,144,69,0,,,,, +206,11,3,4562,284,793.392,28,32.0,C2,ppp,5,144,36,5,,,,, +206,11,3,4562,284,793.474,,,,,,144,36,0,,,,, +206,12,3,4563,312,793.474,29,32.0,F#2,ppp,5,144,42,5,,,,, +206,12,3,4563,312,793.559,,,,,,144,42,0,,,,, +206,13,3,4564,341,793.559,28,32.0,A4,ppp,5,144,69,5,,,,, +206,13,3,4564,341,793.641,,,,,,144,69,0,,,,, +206,14,3,4565,369,793.641,29,32.0,C2,ppp,5,144,36,5,,,,, +206,14,3,4565,369,793.726,,,,,,144,36,0,,,,, +206,15,3,4566,398,793.726,57,16.0,F#2,ppp,5,144,42,5,,,,, +206,15,3,4566,398,793.893,,,,,,144,42,0,,,,, +206,16,3,4567,455,793.893,28,32.0,A4,ppp,5,144,69,5,,,,, +206,16,3,4567,455,793.975,,,,,,144,69,0,,,,, +206,17,3,4568,483,793.975,29,32.0,C2,ppp,5,144,36,5,,,,, +205,36,1,4535,1024,794.06,,,,,,144,76,0,,,,, +206,17,3,4568,483,794.06,,,,,,144,36,0,,,,, +206,18,3,4569,512,794.06,28,32.0,A4,mp,14,144,69,14,,,,, +206,19,1,4570,512,794.06,,,,,,176,102,0,,,,, +206,18,3,4569,512,794.142,,,,,,144,69,0,,,,, +206,20,3,4571,540,794.142,28,32.0,C2,mp,14,144,36,14,,,,, +206,20,3,4571,540,794.224,,,,,,144,36,0,,,,, +206,21,3,4572,568,794.224,29,32.0,F#2,mp-,13,144,42,13,,,,, +206,21,3,4572,568,794.309,,,,,,144,42,0,,,,, +206,22,3,4573,597,794.309,114,8.0,E5,mp-,13,144,76,13,,,,, +206,22,3,4573,597,794.643,,,,,,144,76,0,,,,, +206,23,3,4574,711,794.643,28,32.0,A4,p+,12,144,69,12,,,,, +206,23,3,4574,711,794.725,,,,,,144,69,0,,,,, +206,24,3,4575,739,794.725,29,32.0,C2,p+,12,144,36,12,,,,, +206,24,3,4575,739,794.81,,,,,,144,36,0,,,,, +206,25,3,4576,768,794.81,,,,,,176,102,0,,,,, +206,26,1,4577,768,794.81,,,,,,176,102,0,,,,, +206,27,3,4578,824,794.974,29,32.0,F#2,p,11,144,42,11,,,,, +206,27,3,4578,824,795.059,,,,,,144,42,0,,,,, +206,28,3,4579,853,795.059,114,8.0,E5,p,11,144,76,11,,,,, +206,28,3,4579,853,795.393,,,,,,144,76,0,,,,, +206,29,3,4580,967,795.393,57,16.0,G#4,pp+,9,144,68,9,,,,, +206,29,3,4580,967,795.56,,,,,,144,68,0,,,,, +206,30,3,4581,1024,795.56,,,,,,176,102,0,,,,, +206,31,3,4582,1052,795.642,28,32.0,C2,pp+,9,144,36,9,,,,, +206,31,3,4582,1052,795.724,,,,,,144,36,0,,,,, +206,32,3,4583,1080,795.724,29,32.0,F#2,pp,8,144,42,8,,,,, +206,32,3,4583,1080,795.809,,,,,,144,42,0,,,,, +206,33,3,4584,1109,795.809,114,8.0,E5,pp,8,144,76,8,,,,, +206,33,3,4584,1109,796.143,,,,,,144,76,0,,,,, +206,34,3,4585,1223,796.143,28,32.0,G#4,pp,8,144,68,8,,,,, +206,34,3,4585,1223,796.225,,,,,,144,68,0,,,,, +206,35,3,4586,1251,796.225,29,32.0,A4,pp,8,144,69,8,,,,, +206,35,3,4586,1251,796.31,,,,,,144,69,0,,,,, +206,36,3,4587,1280,796.31,,,,,,176,102,0,,,,, +206,38,0,4588,1408,796.535,,,,,,176,64,0,,,,,^ +206,37,3,4589,1408,796.685,25,32.0,A1,ppp,5,144,33,5,,,,, +206,37,3,4589,1408,796.758,,,,,,144,33,0,,,,, +206,40,3,4590,1433,796.758,26,32.0,G5,ppp,5,144,79,5,,,,, +206,40,3,4590,1433,796.834,,,,,,144,79,0,,,,, +206,41,3,4591,1459,796.834,25,32.0,A1,ppp,5,144,33,5,,,,, +206,39,0,4592,1408,796.835,,,,,,176,64,127,,,,,V +206,41,3,4591,1459,796.908,,,,,,144,33,0,,,,, +206,42,3,4593,1484,796.908,52,16.0,G5,ppp+,6,144,79,6,,,,, +206,42,3,4593,1484,797.06,,,,,,144,79,0,,,,, +207,0,0,4594,0,797.06,,,,,,,,,207,,,, +207,1,1,4595,0,797.06,,,,,,176,102,0,,,,, +207,2,3,4596,0,797.06,25,32.0,A#1,ppp+,6,144,34,6,,,,, +207,2,3,4596,0,797.133,,,,,,144,34,0,,,,, +207,3,3,4597,25,797.133,26,32.0,A1,ppp+,6,144,33,6,,,,, +207,3,3,4597,25,797.209,,,,,,144,33,0,,,,, +207,4,3,4598,51,797.209,25,32.0,A#1,ppp+,6,144,34,6,,,,, +207,5,1,4599,56,797.224,57,16.0,G5,ppp+,6,144,79,6,,,,, +207,4,3,4598,51,797.283,,,,,,144,34,0,,,,, +207,6,3,4600,76,797.283,52,16.0,A1,ppp+,6,144,33,6,,,,, +207,5,1,4599,56,797.391,,,,,,144,79,0,,,,, +207,7,1,4601,113,797.391,57,16.0,C#5,pp-,7,144,73,7,,,,, +207,6,3,4600,76,797.435,,,,,,144,33,0,,,,, +207,8,3,4602,128,797.435,25,32.0,A#1,pp-,7,144,34,7,,,,, +207,8,3,4602,128,797.508,,,,,,144,34,0,,,,, +207,9,3,4603,153,797.508,26,32.0,A1,pp-,7,144,33,7,,,,, +207,7,1,4601,113,797.558,,,,,,144,73,0,,,,, +207,10,1,4604,170,797.558,86,16.0,G5,pp-,7,144,79,7,,,,, +207,9,3,4603,153,797.584,,,,,,144,33,0,,,,, +207,11,3,4605,179,797.584,25,32.0,A#1,pp-,7,144,34,7,,,,, +207,11,3,4605,179,797.658,,,,,,144,34,0,,,,, +207,12,3,4606,204,797.658,52,16.0,A1,pp-,7,144,33,7,,,,, +207,10,1,4604,170,797.81,,,,,,144,79,0,,,,, +207,12,3,4606,204,797.81,,,,,,144,33,0,,,,, +207,13,1,4607,256,797.81,56,16.0,C#5,pp,8,144,73,8,,,,, +207,14,3,4608,256,797.81,25,32.0,A#1,pp,8,144,34,8,,,,, +207,14,3,4608,256,797.883,,,,,,144,34,0,,,,, +207,15,3,4609,281,797.883,26,32.0,A1,pp,8,144,33,8,,,,, +207,15,3,4609,281,797.959,,,,,,144,33,0,,,,, +207,16,3,4610,307,797.959,25,32.0,A#1,pp,8,144,34,8,,,,, +207,13,1,4607,256,797.974,,,,,,144,73,0,,,,, +207,17,1,4611,312,797.974,57,16.0,G5,pp,8,144,79,8,,,,, +207,16,3,4610,307,798.033,,,,,,144,34,0,,,,, +207,18,3,4612,332,798.033,52,16.0,A1,pp,8,144,33,8,,,,, +207,17,1,4611,312,798.141,,,,,,144,79,0,,,,, +207,19,1,4613,369,798.141,57,16.0,C#5,pp+,9,144,73,9,,,,, +207,18,3,4612,332,798.185,,,,,,144,33,0,,,,, +207,20,3,4614,384,798.185,25,32.0,A#1,pp+,9,144,34,9,,,,, +207,20,3,4614,384,798.258,,,,,,144,34,0,,,,, +207,21,3,4615,409,798.258,26,32.0,A1,pp+,9,144,33,9,,,,, +207,19,1,4613,369,798.308,,,,,,144,73,0,,,,, +207,22,1,4616,426,798.308,86,16.0,G5,pp+,9,144,79,9,,,,, +207,24,0,4617,460,798.334,,,,,,176,64,0,,,,,^ +207,21,3,4615,409,798.334,,,,,,144,33,0,,,,, +207,23,3,4618,435,798.334,25,32.0,A#1,pp+,9,144,34,9,,,,, +207,23,3,4618,435,798.408,,,,,,144,34,0,,,,, +207,25,3,4619,460,798.408,52,16.0,A1,pp+,9,144,33,9,,,,, +207,26,0,4620,460,798.408,,,,,,,,,,5970,,, +207,22,1,4616,426,798.56,,,,,,144,79,0,,,,, +207,25,3,4619,460,798.56,,,,,,144,33,0,,,,, +207,28,3,4621,512,798.56,512,2.0,A#2,p,11,144,46,11,,,,, +207,29,1,4622,512,798.56,28,32.0,A4,p,11,144,69,11,,,,, +207,27,0,4623,512,798.634,,,,,,176,64,127,,,,,V +207,29,1,4622,512,798.642,,,,,,144,69,0,,,,, +207,30,1,4624,540,798.642,28,32.0,C2,p,11,144,36,11,,,,, +207,30,1,4624,540,798.724,,,,,,144,36,0,,,,, +207,31,1,4625,568,798.724,29,32.0,F#2,p-,10,144,42,10,,,,, +207,31,1,4625,568,798.809,,,,,,144,42,0,,,,, +207,32,1,4626,597,798.809,114,8.0,E5,p-,10,144,76,10,,,,, +207,32,1,4626,597,799.143,,,,,,144,76,0,,,,, +207,33,1,4627,711,799.143,57,16.0,G#4,pp+,9,144,68,9,,,,, +207,34,1,4628,768,799.31,56,16.0,G#4,,,,,,,,,, +207,33,1,4627,711,799.474,,,,,,144,68,0,,,,, +207,35,1,4629,824,799.474,57,16.0,E5,pp-,7,144,76,7,,,,, +207,35,1,4629,824,799.641,,,,,,144,76,0,,,,, +207,36,1,4630,881,799.641,57,16.0,G#4,ppp+,6,144,68,6,,,,, +207,36,1,4630,881,799.808,,,,,,144,68,0,,,,, +207,37,1,4631,938,799.808,57,16.0,A4,ppp+,6,144,69,6,,,,, +207,39,0,4632,1023,799.908,,,,,,176,64,0,,,,,^ +207,37,1,4631,938,799.975,,,,,,144,69,0,,,,, +207,38,1,4633,995,799.975,29,32.0,G#4,ppp,5,144,68,5,,,,, +207,28,3,4621,512,800.06,,,,,,144,46,0,,,,, +207,38,1,4633,995,800.06,,,,,,144,68,0,,,,, +207,41,3,4634,1024,800.06,,,,,,176,102,0,,,,, +207,42,1,4635,1024,800.06,25,32.0,C2,ppp,5,144,36,5,,,,, +207,42,1,4635,1024,800.133,,,,,,144,36,0,,,,, +207,43,1,4636,1049,800.133,26,32.0,A5,ppp,5,144,81,5,,,,, +207,40,0,4637,1024,800.208,,,,,,176,64,127,,,,,V +207,43,1,4636,1049,800.209,,,,,,144,81,0,,,,, +207,44,1,4638,1075,800.209,25,32.0,E6,ppp,5,144,88,5,,,,, +207,44,1,4638,1075,800.283,,,,,,144,88,0,,,,, +207,45,1,4639,1100,800.283,26,32.0,A5,ppp,5,144,81,5,,,,, +207,45,1,4639,1100,800.359,,,,,,144,81,0,,,,, +207,46,1,4640,1126,800.359,26,32.0,E6,ppp,5,144,88,5,,,,, +207,47,1,4641,1152,800.435,25,32.0,E6,,,,,,,,,, +207,46,1,4640,1126,800.508,,,,,,144,88,0,,,,, +207,48,1,4642,1177,800.508,26,32.0,A5,ppp,5,144,81,5,,,,, +207,48,1,4642,1177,800.584,,,,,,144,81,0,,,,, +207,49,1,4643,1203,800.584,51,16.0,E6,ppp,5,144,88,5,,,,, +207,49,1,4643,1203,800.734,,,,,,144,88,0,,,,, +207,50,1,4644,1254,800.734,26,32.0,F#3,ppp,5,144,54,5,,,,, +207,50,1,4644,1254,800.81,,,,,,144,54,0,,,,, +207,51,1,4645,1280,800.81,25,32.0,C2,ppp,5,144,36,5,,,,, +207,51,1,4645,1280,800.883,,,,,,144,36,0,,,,, +207,52,1,4646,1305,800.883,26,32.0,A5,ppp,5,144,81,5,,,,, +207,52,1,4646,1305,800.959,,,,,,144,81,0,,,,, +207,53,1,4647,1331,800.959,25,32.0,E6,ppp,5,144,88,5,,,,, +207,53,1,4647,1331,801.033,,,,,,144,88,0,,,,, +207,54,1,4648,1356,801.033,26,32.0,F#3,ppp,5,144,54,5,,,,, +207,54,1,4648,1356,801.109,,,,,,144,54,0,,,,, +207,55,1,4649,1382,801.109,26,32.0,G#5,ppp,5,144,80,5,,,,, +207,56,1,4650,1408,801.185,25,32.0,G#5,,,,,,,,,, +207,55,1,4649,1382,801.258,,,,,,144,80,0,,,,, +207,57,1,4651,1433,801.258,26,32.0,A5,ppp,5,144,81,5,,,,, +207,57,1,4651,1433,801.334,,,,,,144,81,0,,,,, +207,58,1,4652,1459,801.334,25,32.0,F#3,ppp,5,144,54,5,,,,, +207,58,1,4652,1459,801.408,,,,,,144,54,0,,,,, +207,59,1,4653,1484,801.408,52,16.0,A4,ppp,5,144,69,5,,,,, +207,59,1,4653,1484,801.56,,,,,,144,69,0,,,,, +208,0,0,4654,0,801.56,,,,,,,,,208,,,, +208,1,1,4655,0,801.56,512,2.0,C2,ppp,5,144,36,5,,,,, +208,2,2,4656,0,801.56,,,,,,176,102,0,,,,, +208,3,3,4657,0,801.56,512,2.0,A#2,p,11,144,46,11,,,,, +208,4,4,4658,0,801.56,,,,,,176,102,0,,,,, +208,5,0,4659,512,802.941,,,,,,176,64,0,,,,,^ +208,1,1,4655,0,803.06,,,,,,144,36,0,,,,, +208,3,3,4657,0,803.06,,,,,,144,46,0,,,,, +208,6,1,4660,512,803.06,,,,,,176,102,0,,,,, +208,7,3,4661,512,803.06,21,32.0,C2,f,20,144,36,20,,,,, +208,7,3,4661,512,803.121,,,,,,144,36,0,,,,, +208,9,3,4662,533,803.121,21,32.0,A5,f-,19,144,81,19,,,,, +208,9,3,4662,533,803.183,,,,,,144,81,0,,,,, +208,10,3,4663,554,803.183,22,32.0,E6,f-,19,144,88,19,,,,, +208,8,0,4664,533,803.241,,,,,,176,64,127,,,,,V +208,10,3,4663,554,803.247,,,,,,144,88,0,,,,, +208,11,3,4665,576,803.247,32,32.0,C1,mf+,18,144,24,18,,,,, +208,11,3,4665,576,803.341,,,,,,144,24,0,,,,, +208,12,3,4666,608,803.341,32,32.0,E6,mf+,18,144,88,18,,,,, +208,12,3,4666,608,803.435,,,,,,144,88,0,,,,, +208,13,3,4667,640,803.435,21,32.0,C3,mf,17,144,48,17,,,,, +208,13,3,4667,640,803.496,,,,,,144,48,0,,,,, +208,14,3,4668,661,803.496,21,32.0,A5,mf-,16,144,81,16,,,,, +208,14,3,4668,661,803.558,,,,,,144,81,0,,,,, +208,15,3,4669,682,803.558,22,32.0,E6,mf-,16,144,88,16,,,,, +208,15,3,4669,682,803.622,,,,,,144,88,0,,,,, +208,16,3,4670,704,803.622,32,32.0,C2,mp+,15,144,36,15,,,,, +208,16,3,4670,704,803.716,,,,,,144,36,0,,,,, +208,17,3,4671,736,803.716,32,32.0,E6,mp,14,144,88,14,,,,, +208,17,3,4671,736,803.81,,,,,,144,88,0,,,,, +208,18,2,4672,768,803.81,,,,,,176,102,0,,,,, +208,19,3,4673,768,803.81,21,32.0,F#3,mp-,13,144,54,13,,,,, +208,20,4,4674,768,803.81,,,,,,176,102,0,,,,, +208,19,3,4673,768,803.871,,,,,,144,54,0,,,,, +208,21,3,4675,789,803.871,21,32.0,G#5,mp-,13,144,80,13,,,,, +208,21,3,4675,789,803.933,,,,,,144,80,0,,,,, +208,22,3,4676,810,803.933,22,32.0,A5,p+,12,144,81,12,,,,, +208,22,3,4676,810,803.997,,,,,,144,81,0,,,,, +208,23,3,4677,832,803.997,21,32.0,F#3,p+,12,144,54,12,,,,, +208,23,3,4677,832,804.059,,,,,,144,54,0,,,,, +208,24,3,4678,853,804.059,21,32.0,E6,p,11,144,88,11,,,,, +208,24,3,4678,853,804.12,,,,,,144,88,0,,,,, +208,25,3,4679,874,804.12,22,32.0,G#5,p,11,144,80,11,,,,, +208,25,3,4679,874,804.185,,,,,,144,80,0,,,,, +208,26,3,4680,896,804.185,21,32.0,C3,p-,10,144,48,10,,,,, +208,26,3,4680,896,804.246,,,,,,144,48,0,,,,, +208,27,3,4681,917,804.246,21,32.0,E6,p-,10,144,88,10,,,,, +208,27,3,4681,917,804.308,,,,,,144,88,0,,,,, +208,28,3,4682,938,804.308,22,32.0,F#3,pp+,9,144,54,9,,,,, +208,30,0,4683,981,804.356,,,,,,176,64,0,,,,,^ +208,28,3,4682,938,804.372,,,,,,144,54,0,,,,, +208,29,3,4684,960,804.372,21,32.0,G#5,pp+,9,144,80,9,,,,, +208,29,3,4684,960,804.434,,,,,,144,80,0,,,,, +208,31,3,4685,981,804.434,21,32.0,A5,pp,8,144,81,8,,,,, +208,31,3,4685,981,804.495,,,,,,144,81,0,,,,, +208,32,3,4686,1002,804.495,22,32.0,A6,pp,8,144,93,8,,,,, +208,32,3,4686,1002,804.56,,,,,,144,93,0,,,,, +208,33,0,4687,1024,804.577,,,,,,,,,,,63,, +208,34,0,4688,1024,804.577,,,,,,,,,,5971,,, +208,36,1,4689,1024,804.577,512,2.0,D#5,mp,14,144,75,14,,,,, +208,37,2,4690,1024,804.577,102,8.0,D3,pp,8,144,50,8,,,,, +208,38,2,4691,1024,804.577,128,8.0,E4,pp,8,144,64,8,,,,, +208,39,3,4692,1024,804.577,512,2.0,A#2,p,11,144,46,11,,,,, +208,40,4,4693,1024,804.577,512,2.0,C2,mf,17,144,36,17,,,,, +208,35,0,4694,1024,804.656,,,,,,176,64,127,,,,,V +208,37,2,4690,1024,804.957,,,,,,144,50,0,,,,, +208,38,2,4691,1024,804.957,,,,,,144,64,0,,,,, +208,41,2,4695,1126,804.957,154,8.0,E4,pp+,9,144,64,9,,,,, +208,42,2,4696,1126,804.957,128,8.0,F5,pp+,9,144,77,9,,,,, +208,42,2,4696,1126,805.433,,,,,,144,77,0,,,,, +208,41,2,4695,1126,805.53,,,,,,144,64,0,,,,, +208,43,2,4697,1280,805.53,256,4.0,D3,p,11,144,50,11,,,,, +208,44,2,4698,1280,805.53,256,4.0,E4,p,11,144,64,11,,,,, +209,0,0,4699,0,806.482,,,,,,,,,209,,,, +209,1,1,4700,0,806.482,256,4.0,D#5,,,,,,,,,, +209,2,2,4701,0,806.482,51,16.0,D3,,,,,,,,,, +209,3,2,4702,0,806.482,64,16.0,E4,,,,,,,,,, +209,4,3,4703,0,806.482,256,4.0,A#2,,,,,,,,,, +209,5,4,4704,0,806.482,256,4.0,C2,,,,,,,,,, +208,43,2,4697,1280,806.672,,,,,,144,50,0,,,,, +209,6,2,4705,51,806.672,205,4.0,D3,mp+,15,144,50,15,,,,, +209,7,2,4706,51,806.672,256,4.0,E4,mp+,15,144,64,15,,,,, +209,8,2,4707,51,806.672,256,4.0,F5,mp+,15,144,77,15,,,,, +208,44,2,4698,1280,806.72,,,,,,144,64,0,,,,, +208,36,1,4689,1024,807.434,,,,,,144,75,0,,,,, +208,39,3,4692,1024,807.434,,,,,,144,46,0,,,,, +208,40,4,4693,1024,807.434,,,,,,144,36,0,,,,, +209,6,2,4705,51,807.434,,,,,,144,50,0,,,,, +209,7,2,4706,51,807.434,,,,,,144,64,0,,,,, +209,8,2,4707,51,807.434,,,,,,144,77,0,,,,, +209,9,1,4708,256,807.434,768,2.0,D#5,mf,17,144,75,17,,,,, +209,10,2,4709,256,807.434,768,2.0,D3,mf,17,144,50,17,,,,, +209,11,2,4710,256,807.434,512,2.0,E4,mf,17,144,64,17,,,,, +209,12,2,4711,256,807.434,512,2.0,F5,mf,17,144,77,17,,,,, +209,13,3,4712,256,807.434,768,2.0,A#2,pp,8,144,46,8,,,,, +209,14,4,4713,256,807.434,768,2.0,C2,pp,8,144,36,8,,,,, +209,11,2,4710,256,809.339,,,,,,144,64,0,,,,, +209,12,2,4711,256,809.339,,,,,,144,77,0,,,,, +209,9,1,4708,256,810.292,,,,,,144,75,0,,,,, +209,10,2,4709,256,810.292,,,,,,144,50,0,,,,, +209,13,3,4712,256,810.292,,,,,,144,46,0,,,,, +209,14,4,4713,256,810.292,,,,,,144,36,0,,,,, +209,15,0,4714,1024,810.292,,,,,,176,64,0,,,,,^ +209,16,1,4715,1024,810.292,64,16.0,D#5,mp,14,144,75,14,,,,, +209,17,2,4716,1024,810.292,64,16.0,D3,mp,14,144,50,14,,,,, +209,18,2,4717,1024,810.292,64,16.0,E4,mp,14,144,64,14,,,,, +209,19,2,4718,1024,810.292,64,16.0,F5,mp,14,144,77,14,,,,, +209,20,3,4719,1024,810.292,64,16.0,A#2,mp,14,144,46,14,,,,, +209,21,4,4720,1024,810.292,64,16.0,C2,mp,14,144,36,14,,,,, +209,16,1,4715,1024,810.53,,,,,,144,75,0,,,,, +209,17,2,4716,1024,810.53,,,,,,144,50,0,,,,, +209,18,2,4717,1024,810.53,,,,,,144,64,0,,,,, +209,19,2,4718,1024,810.53,,,,,,144,77,0,,,,, +209,20,3,4719,1024,810.53,,,,,,144,46,0,,,,, +209,21,4,4720,1024,810.53,,,,,,144,36,0,,,,, +209,22,1,4721,1088,810.53,,,,,,176,102,0,,,,, +209,23,2,4722,1088,810.53,,,,,,176,102,0,,,,, +209,24,3,4723,1088,810.53,,,,,,176,102,0,,,,, +209,25,4,4724,1088,810.53,,,,,,176,102,0,,,,, +209,26,0,4725,1152,810.768,,,,,,176,64,127,,,,,V +209,27,1,4726,1280,811.244,,,,,,176,102,0,,,,, +209,28,2,4727,1280,811.244,,,,,,176,102,0,,,,, +209,29,3,4728,1280,811.244,,,,,,176,102,0,,,,, +209,30,4,4729,1280,811.244,,,,,,176,102,0,,,,, +210,0,0,4730,0,812.196,,,,,,,,,210,,,, +210,1,1,4731,0,812.196,,,,,,176,102,0,,,,, +210,2,3,4732,0,812.196,,,,,,176,102,0,,,,, +210,3,1,4733,85,812.513,,,,,,176,102,0,,,,, +210,4,1,4734,170,812.829,86,8.0,E4,pp,8,144,64,8,,,,, +210,4,1,4734,170,813.149,,,,,,144,64,0,,,,, +210,5,1,4735,256,813.149,85,8.0,C6,p,11,144,84,11,,,,, +210,5,1,4735,256,813.465,,,,,,144,84,0,,,,, +210,6,1,4736,341,813.465,171,4.0,G#3,mp,14,144,56,14,,,,, +210,7,1,4737,341,813.465,256,4.0,E4,mp,14,144,64,14,,,,, +210,8,1,4738,341,813.465,256,4.0,C6,mp,14,144,84,14,,,,, +210,9,1,4739,512,814.101,85,8.0,G#3,,,,,,,,,, +210,10,1,4740,512,814.101,128,8.0,E4,,,,,,,,,, +210,11,1,4741,512,814.101,128,8.0,C6,,,,,,,,,, +210,12,1,4742,597,814.417,171,4.0,G#3,ppp,5,144,56,5,,,,, +210,13,1,4743,597,814.417,256,4.0,E4,ppp,5,144,64,5,,,,, +210,14,1,4744,597,814.417,256,4.0,C6,ppp,5,144,84,5,,,,, +210,6,1,4736,341,814.417,,,,,,144,56,0,,,,, +210,7,1,4737,341,814.893,,,,,,144,64,0,,,,, +210,8,1,4738,341,814.893,,,,,,144,84,0,,,,, +210,12,1,4742,597,815.053,,,,,,144,56,0,,,,, +210,15,1,4745,768,815.053,153,8.0,D3,pp,8,144,50,8,,,,, +210,13,1,4743,597,815.37,,,,,,144,64,0,,,,, +210,14,1,4744,597,815.37,,,,,,144,84,0,,,,, +210,15,1,4745,768,815.623,,,,,,144,50,0,,,,, +210,16,0,4746,921,815.623,,,,,,176,64,0,,,,,^ +210,17,1,4747,921,815.623,103,8.0,F5,p,11,144,77,11,,,,, +210,17,1,4747,921,816.006,,,,,,144,77,0,,,,, +210,19,1,4748,1024,816.006,512,2.0,D3,mp,14,144,50,14,,,,, +210,20,1,4749,1024,816.006,512,2.0,A4,mp,14,144,69,14,,,,, +210,21,1,4750,1024,816.006,512,2.0,F5,mp,14,144,77,14,,,,, +210,22,3,4751,1024,816.006,,,,,,176,102,0,,,,, +210,18,0,4752,1024,816.006,,,,,,176,64,127,,,,,V +210,23,3,4753,1280,816.958,85,8.0,A#2,mp,14,144,46,14,,,,, +210,23,3,4753,1280,817.274,,,,,,144,46,0,,,,, +210,24,3,4754,1365,817.274,85,8.0,C#5,p-,10,144,73,10,,,,, +210,24,3,4754,1365,817.591,,,,,,144,73,0,,,,, +210,25,3,4755,1450,817.591,86,8.0,A2,ppp,5,144,45,5,,,,, +210,25,3,4755,1450,817.911,,,,,,144,45,0,,,,, +211,0,0,4756,0,817.911,,,,,,,,,211,,,, +211,1,0,4757,0,817.911,,,,,,,,,,,80,, +211,2,1,4758,0,817.911,21,32.0,F4,ppp,5,144,65,5,,,,, +211,3,3,4759,0,817.911,,,,,,176,102,0,,,,, +210,19,1,4748,1024,817.911,,,,,,144,50,0,,,,, +210,20,1,4749,1024,817.911,,,,,,144,69,0,,,,, +210,21,1,4750,1024,817.911,,,,,,144,77,0,,,,, +211,2,1,4758,0,817.972,,,,,,144,65,0,,,,, +211,4,1,4760,21,817.972,21,32.0,G5,ppp,5,144,79,5,,,,, +211,4,1,4760,21,818.034,,,,,,144,79,0,,,,, +211,5,1,4761,42,818.034,22,32.0,F4,ppp,5,144,65,5,,,,, +211,5,1,4761,42,818.098,,,,,,144,65,0,,,,, +211,6,1,4762,64,818.098,32,32.0,G5,ppp,5,144,79,5,,,,, +211,6,1,4762,64,818.192,,,,,,144,79,0,,,,, +211,7,1,4763,96,818.192,32,32.0,F4,ppp,5,144,65,5,,,,, +211,7,1,4763,96,818.286,,,,,,144,65,0,,,,, +211,8,1,4764,128,818.286,128,8.0,C#5,ppp,5,144,73,5,,,,, +211,9,3,4765,128,818.286,128,8.0,A2,ppp,5,144,45,5,,,,, +211,10,3,4766,128,818.286,128,8.0,A#2,ppp,5,144,46,5,,,,, +211,8,1,4764,128,818.661,,,,,,144,73,0,,,,, +211,9,3,4765,128,818.661,,,,,,144,45,0,,,,, +211,10,3,4766,128,818.661,,,,,,144,46,0,,,,, +211,11,1,4767,256,818.661,21,32.0,F4,pp-,7,144,65,7,,,,, +211,12,1,4768,256,818.661,32,32.0,C#5,pp-,7,144,73,7,,,,, +211,13,3,4769,256,818.661,102,8.0,A#2,pp-,7,144,46,7,,,,, +211,11,1,4767,256,818.722,,,,,,144,65,0,,,,, +211,14,1,4770,277,818.722,21,32.0,G5,pp-,7,144,79,7,,,,, +211,12,1,4768,256,818.754,,,,,,144,73,0,,,,, +211,14,1,4770,277,818.784,,,,,,144,79,0,,,,, +211,15,1,4771,298,818.784,22,32.0,F4,pp-,7,144,65,7,,,,, +211,15,1,4771,298,818.848,,,,,,144,65,0,,,,, +211,16,1,4772,320,818.848,32,32.0,C#5,pp-,7,144,73,7,,,,, +211,17,1,4773,320,818.848,32,32.0,G5,pp-,7,144,79,7,,,,, +211,16,1,4772,320,818.942,,,,,,144,73,0,,,,, +211,17,1,4773,320,818.942,,,,,,144,79,0,,,,, +211,18,1,4774,352,818.942,32,32.0,F4,pp-,7,144,65,7,,,,, +211,13,3,4769,256,818.959,,,,,,144,46,0,,,,, +211,19,3,4775,358,818.959,154,8.0,A2,pp,8,144,45,8,,,,, +211,18,1,4774,352,819.036,,,,,,144,65,0,,,,, +211,20,1,4776,384,819.036,,,,,,176,102,0,,,,, +211,19,3,4775,358,819.411,,,,,,144,45,0,,,,, +211,21,1,4777,512,819.411,21,32.0,F4,pp+,9,144,65,9,,,,, +211,22,1,4778,512,819.411,32,32.0,C#5,pp+,9,144,73,9,,,,, +211,23,3,4779,512,819.411,102,8.0,A#2,pp+,9,144,46,9,,,,, +211,21,1,4777,512,819.472,,,,,,144,65,0,,,,, +211,24,1,4780,533,819.472,21,32.0,G5,pp+,9,144,79,9,,,,, +211,22,1,4778,512,819.504,,,,,,144,73,0,,,,, +211,24,1,4780,533,819.534,,,,,,144,79,0,,,,, +211,25,1,4781,554,819.534,22,32.0,F4,pp+,9,144,65,9,,,,, +211,25,1,4781,554,819.598,,,,,,144,65,0,,,,, +211,26,1,4782,576,819.598,32,32.0,C#5,pp+,9,144,73,9,,,,, +211,27,1,4783,576,819.598,32,32.0,G5,pp+,9,144,79,9,,,,, +211,26,1,4782,576,819.692,,,,,,144,73,0,,,,, +211,27,1,4783,576,819.692,,,,,,144,79,0,,,,, +211,28,1,4784,608,819.692,32,32.0,F4,pp+,9,144,65,9,,,,, +211,23,3,4779,512,819.709,,,,,,144,46,0,,,,, +211,29,3,4785,614,819.709,154,8.0,A2,pp+,9,144,45,9,,,,, +211,28,1,4784,608,819.786,,,,,,144,65,0,,,,, +211,30,1,4786,640,819.786,,,,,,176,102,0,,,,, +211,29,3,4785,614,820.161,,,,,,144,45,0,,,,, +211,31,1,4787,768,820.161,,,,,,176,102,0,,,,, +211,32,3,4788,768,820.161,,,,,,176,102,0,,,,, +211,33,1,4789,853,820.41,,,,,,176,102,0,,,,, +211,34,0,4790,938,820.635,,,,,,176,64,0,,,,,^ +211,35,1,4791,938,820.659,86,8.0,G#3,pp+,9,144,56,9,,,,, +211,36,1,4792,938,820.659,128,8.0,E4,pp+,9,144,64,9,,,,, +211,37,1,4793,938,820.659,128,8.0,C6,pp+,9,144,84,9,,,,, +211,35,1,4791,938,820.911,,,,,,144,56,0,,,,, +211,39,1,4794,1024,820.911,85,16.0,A#4,p,11,144,70,11,,,,, +211,38,0,4795,1024,820.935,,,,,,176,64,127,,,,,V +211,36,1,4792,938,821.034,,,,,,144,64,0,,,,, +211,37,1,4793,938,821.034,,,,,,144,84,0,,,,, +211,39,1,4794,1024,821.16,,,,,,144,70,0,,,,, +211,40,1,4796,1109,821.16,85,16.0,C#6,mp,14,144,85,14,,,,, +211,40,1,4796,1109,821.409,,,,,,144,85,0,,,,, +211,41,1,4797,1194,821.409,29,32.0,G#3,mf-,16,144,56,16,,,,, +211,42,1,4798,1194,821.409,32,32.0,E4,mf-,16,144,64,16,,,,, +211,43,1,4799,1194,821.409,32,32.0,C6,mf-,16,144,84,16,,,,, +211,41,1,4797,1194,821.494,,,,,,144,56,0,,,,, +211,44,1,4800,1223,821.494,28,32.0,A#4,mf,17,144,70,17,,,,, +211,45,1,4801,1223,821.494,32,32.0,C#7,mf,17,144,97,17,,,,, +211,42,1,4798,1194,821.502,,,,,,144,64,0,,,,, +211,43,1,4799,1194,821.502,,,,,,144,84,0,,,,, +211,44,1,4800,1223,821.576,,,,,,144,70,0,,,,, +211,46,1,4802,1251,821.576,29,32.0,G#3,mf,17,144,56,17,,,,, +211,47,1,4803,1251,821.576,32,32.0,E4,mf,17,144,64,17,,,,, +211,48,1,4804,1251,821.576,32,32.0,C6,mf,17,144,84,17,,,,, +211,45,1,4801,1223,821.587,,,,,,144,97,0,,,,, +211,46,1,4802,1251,821.661,,,,,,144,56,0,,,,, +211,49,1,4805,1280,821.661,,,,,,176,102,0,,,,, +211,47,1,4803,1251,821.669,,,,,,144,64,0,,,,, +211,48,1,4804,1251,821.669,,,,,,144,84,0,,,,, +212,0,0,4806,0,822.411,,,,,,,,,212,,,, +212,3,0,4807,403,822.411,,,,,,176,64,0,,,,,^ +212,1,1,4808,0,822.411,,,,,,176,102,0,,,,, +212,2,3,4809,0,822.411,,,,,,176,102,0,,,,, +212,4,0,4810,403,822.411,,,,,,,,,,5972,,, +212,6,3,4811,512,822.73,28,32.0,A#2,ppp,5,144,46,5,,,,, +212,5,0,4812,512,822.73,,,,,,176,64,127,,,,,V +212,6,3,4811,512,822.812,,,,,,144,46,0,,,,, +212,7,3,4813,540,822.812,28,32.0,E2,ppp,5,144,40,5,,,,, +212,7,3,4813,540,822.894,,,,,,144,40,0,,,,, +212,8,3,4814,568,822.894,29,32.0,C#7,ppp,5,144,97,5,,,,, +212,8,3,4814,568,822.979,,,,,,144,97,0,,,,, +212,9,3,4815,597,822.979,28,32.0,A#2,ppp,5,144,46,5,,,,, +212,9,3,4815,597,823.061,,,,,,144,46,0,,,,, +212,10,3,4816,625,823.061,29,32.0,C#7,ppp,5,144,97,5,,,,, +212,10,3,4816,625,823.146,,,,,,144,97,0,,,,, +212,11,3,4817,654,823.146,28,32.0,E2,ppp,5,144,40,5,,,,, +212,11,3,4817,654,823.228,,,,,,144,40,0,,,,, +212,12,3,4818,682,823.228,29,32.0,C6,ppp,5,144,84,5,,,,, +212,12,3,4818,682,823.313,,,,,,144,84,0,,,,, +212,13,3,4819,711,823.313,57,16.0,G#1,ppp,5,144,32,5,,,,, +212,13,3,4819,711,823.48,,,,,,144,32,0,,,,, +212,14,3,4820,768,823.48,28,32.0,A#2,ppp,5,144,46,5,,,,, +212,14,3,4820,768,823.562,,,,,,144,46,0,,,,, +212,15,3,4821,796,823.562,28,32.0,E2,ppp,5,144,40,5,,,,, +212,15,3,4821,796,823.644,,,,,,144,40,0,,,,, +212,16,3,4822,824,823.644,29,32.0,G#1,ppp,5,144,32,5,,,,, +212,16,3,4822,824,823.729,,,,,,144,32,0,,,,, +212,17,3,4823,853,823.729,28,32.0,A#2,ppp,5,144,46,5,,,,, +212,17,3,4823,853,823.811,,,,,,144,46,0,,,,, +212,18,3,4824,881,823.811,57,16.0,E2,ppp,5,144,40,5,,,,, +212,18,3,4824,881,823.978,,,,,,144,40,0,,,,, +212,19,3,4825,938,823.978,29,32.0,G#1,ppp,5,144,32,5,,,,, +212,19,3,4825,938,824.063,,,,,,144,32,0,,,,, +212,20,3,4826,967,824.063,28,32.0,A#2,ppp+,6,144,46,6,,,,, +212,20,3,4826,967,824.145,,,,,,144,46,0,,,,, +212,21,3,4827,995,824.145,29,32.0,E2,ppp+,6,144,40,6,,,,, +212,21,3,4827,995,824.23,,,,,,144,40,0,,,,, +212,22,3,4828,1024,824.23,28,32.0,A#2,ppp+,6,144,46,6,,,,, +212,23,1,4829,1024,824.23,,,,,,176,102,0,,,,, +212,22,3,4828,1024,824.312,,,,,,144,46,0,,,,, +212,24,3,4830,1052,824.312,28,32.0,E2,ppp+,6,144,40,6,,,,, +212,25,1,4831,1075,824.379,51,16.0,C#7,ppp,5,144,97,5,,,,, +212,24,3,4830,1052,824.394,,,,,,144,40,0,,,,, +212,26,3,4832,1080,824.394,29,32.0,G#1,ppp+,6,144,32,6,,,,, +212,26,3,4832,1080,824.479,,,,,,144,32,0,,,,, +212,27,3,4833,1109,824.479,28,32.0,A#2,ppp+,6,144,46,6,,,,, +212,25,1,4831,1075,824.529,,,,,,144,97,0,,,,, +212,28,1,4834,1126,824.529,51,16.0,C6,ppp,5,144,84,5,,,,, +212,27,3,4833,1109,824.561,,,,,,144,46,0,,,,, +212,29,3,4835,1137,824.561,57,16.0,E2,ppp+,6,144,40,6,,,,, +212,28,1,4834,1126,824.678,,,,,,144,84,0,,,,, +212,30,1,4836,1177,824.678,51,16.0,C#7,ppp,5,144,97,5,,,,, +212,29,3,4835,1137,824.728,,,,,,144,40,0,,,,, +212,31,3,4837,1194,824.728,29,32.0,G#1,pp-,7,144,32,7,,,,, +212,31,3,4837,1194,824.813,,,,,,144,32,0,,,,, +212,32,3,4838,1223,824.813,28,32.0,A#2,pp-,7,144,46,7,,,,, +212,30,1,4836,1177,824.828,,,,,,144,97,0,,,,, +212,33,1,4839,1228,824.828,52,16.0,C6,ppp,5,144,84,5,,,,, +212,32,3,4838,1223,824.895,,,,,,144,46,0,,,,, +212,34,3,4840,1251,824.895,29,32.0,E2,pp-,7,144,40,7,,,,, +212,33,1,4839,1228,824.98,,,,,,144,84,0,,,,, +212,34,3,4840,1251,824.98,,,,,,144,40,0,,,,, +212,35,3,4841,1280,824.98,28,32.0,A#2,pp-,7,144,46,7,,,,, +212,36,1,4842,1280,824.98,,,,,,176,102,0,,,,, +212,35,3,4841,1280,825.062,,,,,,144,46,0,,,,, +212,37,3,4843,1308,825.062,28,32.0,E2,pp-,7,144,40,7,,,,, +212,38,1,4844,1331,825.129,51,16.0,C#7,ppp,5,144,97,5,,,,, +212,37,3,4843,1308,825.144,,,,,,144,40,0,,,,, +212,39,3,4845,1336,825.144,29,32.0,G#1,pp-,7,144,32,7,,,,, +212,39,3,4845,1336,825.229,,,,,,144,32,0,,,,, +212,40,3,4846,1365,825.229,28,32.0,A#2,pp-,7,144,46,7,,,,, +212,38,1,4844,1331,825.279,,,,,,144,97,0,,,,, +212,41,1,4847,1382,825.279,51,16.0,C6,ppp,5,144,84,5,,,,, +212,40,3,4846,1365,825.311,,,,,,144,46,0,,,,, +212,42,3,4848,1393,825.311,57,16.0,E2,pp,8,144,40,8,,,,, +212,41,1,4847,1382,825.428,,,,,,144,84,0,,,,, +212,43,1,4849,1433,825.428,51,16.0,C#7,ppp,5,144,97,5,,,,, +212,42,3,4848,1393,825.478,,,,,,144,40,0,,,,, +212,44,3,4850,1450,825.478,29,32.0,G#1,pp,8,144,32,8,,,,, +212,44,3,4850,1450,825.563,,,,,,144,32,0,,,,, +212,45,3,4851,1479,825.563,28,32.0,A#2,pp,8,144,46,8,,,,, +212,43,1,4849,1433,825.578,,,,,,144,97,0,,,,, +212,46,1,4852,1484,825.578,52,16.0,C6,ppp,5,144,84,5,,,,, +212,45,3,4851,1479,825.645,,,,,,144,46,0,,,,, +212,47,3,4853,1507,825.645,29,32.0,E2,pp,8,144,40,8,,,,, +212,46,1,4852,1484,825.73,,,,,,144,84,0,,,,, +212,47,3,4853,1507,825.73,,,,,,144,40,0,,,,, +213,0,0,4854,0,825.73,,,,,,,,,213,,,, +213,1,1,4855,0,825.73,,,,,,176,102,0,,,,, +213,2,3,4856,0,825.73,28,32.0,A#2,pp,8,144,46,8,,,,, +213,2,3,4856,0,825.812,,,,,,144,46,0,,,,, +213,3,3,4857,28,825.812,28,32.0,E2,pp,8,144,40,8,,,,, +213,4,1,4858,51,825.879,51,16.0,C#7,ppp,5,144,97,5,,,,, +213,3,3,4857,28,825.894,,,,,,144,40,0,,,,, +213,5,3,4859,56,825.894,29,32.0,G#1,pp,8,144,32,8,,,,, +213,5,3,4859,56,825.979,,,,,,144,32,0,,,,, +213,6,3,4860,85,825.979,28,32.0,A#2,pp+,9,144,46,9,,,,, +213,4,1,4858,51,826.029,,,,,,144,97,0,,,,, +213,7,1,4861,102,826.029,51,16.0,C6,ppp,5,144,84,5,,,,, +213,6,3,4860,85,826.061,,,,,,144,46,0,,,,, +213,8,3,4862,113,826.061,57,16.0,E2,pp+,9,144,40,9,,,,, +213,7,1,4861,102,826.178,,,,,,144,84,0,,,,, +213,9,1,4863,153,826.178,51,16.0,C#7,ppp,5,144,97,5,,,,, +213,8,3,4862,113,826.228,,,,,,144,40,0,,,,, +213,10,3,4864,170,826.228,86,16.0,G#1,pp+,9,144,32,9,,,,, +213,9,1,4863,153,826.328,,,,,,144,97,0,,,,, +213,11,1,4865,204,826.328,52,16.0,C6,ppp,5,144,84,5,,,,, +213,10,3,4864,170,826.48,,,,,,144,32,0,,,,, +213,11,1,4865,204,826.48,,,,,,144,84,0,,,,, +213,12,3,4866,256,826.48,28,32.0,E3,pp,8,144,52,8,,,,, +213,13,1,4867,256,826.48,,,,,,176,102,0,,,,, +213,12,3,4866,256,826.562,,,,,,144,52,0,,,,, +213,14,3,4868,284,826.562,28,32.0,A#3,pp,8,144,58,8,,,,, +213,14,3,4868,284,826.644,,,,,,144,58,0,,,,, +213,15,3,4869,312,826.644,29,32.0,C5,pp,8,144,72,8,,,,, +213,15,3,4869,312,826.729,,,,,,144,72,0,,,,, +213,16,3,4870,341,826.729,28,32.0,C#6,pp,8,144,85,8,,,,, +213,16,3,4870,341,826.811,,,,,,144,85,0,,,,, +213,17,3,4871,369,826.811,29,32.0,G#2,pp,8,144,44,8,,,,, +213,17,3,4871,369,826.896,,,,,,144,44,0,,,,, +213,18,3,4872,398,826.896,28,32.0,A#3,pp+,9,144,58,9,,,,, +213,18,3,4872,398,826.978,,,,,,144,58,0,,,,, +213,19,3,4873,426,826.978,29,32.0,C5,pp+,9,144,72,9,,,,, +213,19,3,4873,426,827.063,,,,,,144,72,0,,,,, +213,20,3,4874,455,827.063,28,32.0,C#6,pp+,9,144,85,9,,,,, +213,20,3,4874,455,827.145,,,,,,144,85,0,,,,, +213,21,3,4875,483,827.145,29,32.0,A#3,pp+,9,144,58,9,,,,, +213,21,3,4875,483,827.23,,,,,,144,58,0,,,,, +213,22,3,4876,512,827.23,28,32.0,E3,pp+,9,144,52,9,,,,, +213,23,1,4877,512,827.23,,,,,,176,102,0,,,,, +213,22,3,4876,512,827.312,,,,,,144,52,0,,,,, +213,24,3,4878,540,827.312,28,32.0,C5,pp+,9,144,72,9,,,,, +213,24,3,4878,540,827.394,,,,,,144,72,0,,,,, +213,25,3,4879,568,827.394,29,32.0,G#2,p-,10,144,44,10,,,,, +213,25,3,4879,568,827.479,,,,,,144,44,0,,,,, +213,26,3,4880,597,827.479,28,32.0,A#3,p-,10,144,58,10,,,,, +213,26,3,4880,597,827.561,,,,,,144,58,0,,,,, +213,27,3,4881,625,827.561,57,16.0,C#6,p-,10,144,85,10,,,,, +213,27,3,4881,625,827.728,,,,,,144,85,0,,,,, +213,28,3,4882,682,827.728,29,32.0,E3,p-,10,144,52,10,,,,, +213,28,3,4882,682,827.813,,,,,,144,52,0,,,,, +213,29,3,4883,711,827.813,28,32.0,C5,p-,10,144,72,10,,,,, +213,29,3,4883,711,827.895,,,,,,144,72,0,,,,, +213,30,3,4884,739,827.895,29,32.0,G#2,p,11,144,44,11,,,,, +213,30,3,4884,739,827.98,,,,,,144,44,0,,,,, +213,31,3,4885,768,827.98,28,32.0,A#3,p,11,144,58,11,,,,, +213,32,1,4886,768,827.98,,,,,,176,102,0,,,,, +213,31,3,4885,768,828.062,,,,,,144,58,0,,,,, +213,33,3,4887,796,828.062,28,32.0,E3,p,11,144,52,11,,,,, +213,34,1,4888,819,828.129,51,16.0,C#6,p,11,144,85,11,,,,, +213,33,3,4887,796,828.144,,,,,,144,52,0,,,,, +213,35,3,4889,824,828.144,29,32.0,G#2,p,11,144,44,11,,,,, +213,35,3,4889,824,828.229,,,,,,144,44,0,,,,, +213,36,3,4890,853,828.229,28,32.0,A#3,p,11,144,58,11,,,,, +213,34,1,4888,819,828.279,,,,,,144,85,0,,,,, +213,37,1,4891,870,828.279,51,16.0,C5,p,11,144,72,11,,,,, +213,36,3,4890,853,828.311,,,,,,144,58,0,,,,, +213,38,3,4892,881,828.311,57,16.0,E3,p,11,144,52,11,,,,, +213,37,1,4891,870,828.428,,,,,,144,72,0,,,,, +213,39,1,4893,921,828.428,51,16.0,C#6,p+,12,144,85,12,,,,, +213,38,3,4892,881,828.478,,,,,,144,52,0,,,,, +213,40,3,4894,938,828.478,29,32.0,G#2,p+,12,144,44,12,,,,, +213,40,3,4894,938,828.563,,,,,,144,44,0,,,,, +213,41,3,4895,967,828.563,28,32.0,A#3,p+,12,144,58,12,,,,, +213,39,1,4893,921,828.578,,,,,,144,85,0,,,,, +213,42,1,4896,972,828.578,52,16.0,C5,p+,12,144,72,12,,,,, +213,41,3,4895,967,828.645,,,,,,144,58,0,,,,, +213,43,3,4897,995,828.645,29,32.0,E3,p+,12,144,52,12,,,,, +213,42,1,4896,972,828.73,,,,,,144,72,0,,,,, +213,43,3,4897,995,828.73,,,,,,144,52,0,,,,, +213,44,3,4898,1024,828.73,28,32.0,A#3,p+,12,144,58,12,,,,, +213,45,1,4899,1024,828.73,,,,,,176,102,0,,,,, +213,44,3,4898,1024,828.812,,,,,,144,58,0,,,,, +213,46,3,4900,1052,828.812,28,32.0,E3,p+,12,144,52,12,,,,, +213,47,1,4901,1075,828.879,51,16.0,C#6,p+,12,144,85,12,,,,, +213,46,3,4900,1052,828.894,,,,,,144,52,0,,,,, +213,48,3,4902,1080,828.894,29,32.0,G#2,mp-,13,144,44,13,,,,, +213,48,3,4902,1080,828.979,,,,,,144,44,0,,,,, +213,49,3,4903,1109,828.979,28,32.0,A#3,mp-,13,144,58,13,,,,, +213,47,1,4901,1075,829.029,,,,,,144,85,0,,,,, +213,50,1,4904,1126,829.029,51,16.0,C5,mp-,13,144,72,13,,,,, +213,49,3,4903,1109,829.061,,,,,,144,58,0,,,,, +213,51,3,4905,1137,829.061,57,16.0,E3,mp-,13,144,52,13,,,,, +213,50,1,4904,1126,829.178,,,,,,144,72,0,,,,, +213,52,1,4906,1177,829.178,51,16.0,C#6,mp-,13,144,85,13,,,,, +213,51,3,4905,1137,829.228,,,,,,144,52,0,,,,, +213,53,3,4907,1194,829.228,29,32.0,G#2,mp-,13,144,44,13,,,,, +213,53,3,4907,1194,829.313,,,,,,144,44,0,,,,, +213,54,3,4908,1223,829.313,28,32.0,A#3,mp-,13,144,58,13,,,,, +213,52,1,4906,1177,829.328,,,,,,144,85,0,,,,, +213,55,1,4909,1228,829.328,52,16.0,C5,mp-,13,144,72,13,,,,, +213,54,3,4908,1223,829.395,,,,,,144,58,0,,,,, +213,56,3,4910,1251,829.395,29,32.0,E3,mp,14,144,52,14,,,,, +213,55,1,4909,1228,829.48,,,,,,144,72,0,,,,, +213,56,3,4910,1251,829.48,,,,,,144,52,0,,,,, +213,57,3,4911,1280,829.48,28,32.0,A#3,mp,14,144,58,14,,,,, +213,58,1,4912,1280,829.48,,,,,,176,102,0,,,,, +213,57,3,4911,1280,829.562,,,,,,144,58,0,,,,, +213,59,3,4913,1308,829.562,28,32.0,E3,mp,14,144,52,14,,,,, +213,60,1,4914,1331,829.629,51,16.0,C#6,mp,14,144,85,14,,,,, +213,59,3,4913,1308,829.644,,,,,,144,52,0,,,,, +213,61,3,4915,1336,829.644,29,32.0,G#2,mp,14,144,44,14,,,,, +213,61,3,4915,1336,829.729,,,,,,144,44,0,,,,, +213,62,3,4916,1365,829.729,28,32.0,A#3,mp,14,144,58,14,,,,, +213,60,1,4914,1331,829.779,,,,,,144,85,0,,,,, +213,63,1,4917,1382,829.779,51,16.0,C5,mp,14,144,72,14,,,,, +213,62,3,4916,1365,829.811,,,,,,144,58,0,,,,, +213,64,3,4918,1393,829.811,57,16.0,E3,mp,14,144,52,14,,,,, +213,63,1,4917,1382,829.928,,,,,,144,72,0,,,,, +213,65,1,4919,1433,829.928,51,16.0,C#6,mp,14,144,85,14,,,,, +213,64,3,4918,1393,829.978,,,,,,144,52,0,,,,, +213,66,3,4920,1450,829.978,29,32.0,G#2,mp,14,144,44,14,,,,, +213,68,0,4921,1484,830.041,,,,,,176,64,0,,,,,^ +213,66,3,4920,1450,830.063,,,,,,144,44,0,,,,, +213,67,3,4922,1479,830.063,28,32.0,A#3,mp,14,144,58,14,,,,, +213,65,1,4919,1433,830.078,,,,,,144,85,0,,,,, +213,69,1,4923,1484,830.078,52,16.0,C5,mp,14,144,72,14,,,,, +213,67,3,4922,1479,830.145,,,,,,144,58,0,,,,, +213,70,3,4924,1507,830.145,29,32.0,E3,mp,14,144,52,14,,,,, +213,69,1,4923,1484,830.23,,,,,,144,72,0,,,,, +213,70,3,4924,1507,830.23,,,,,,144,52,0,,,,, +214,0,0,4925,0,830.23,,,,,,,,,214,,,, +214,1,0,4926,0,830.23,,,,,,,,,,5973,,, +214,2,0,4927,0,830.23,,,,,,,,,,,63,, +214,4,1,4928,,830.23,,8.0,F5,p,11,144,77,11,,,,g, +214,4,1,4928,,830.28,,,,,,144,77,0,,,,, +214,5,1,4929,0,830.305,102,8.0,A3,p,11,144,57,11,,,,, +214,6,3,4930,0,830.305,1024,1.0,C2,pp,8,144,36,8,,,,, +214,7,4,4931,0,830.305,102,8.0,E4,mf,17,144,64,17,,,,, +214,3,0,4932,0,830.341,,,,,,176,64,127,,,,,V +214,5,1,4929,0,830.684,,,,,,144,57,0,,,,, +214,7,4,4931,0,830.684,,,,,,144,64,0,,,,, +214,8,1,4933,102,830.684,154,8.0,A3,p,11,144,57,11,,,,, +214,9,1,4934,102,830.684,128,8.0,F5,p,11,144,77,11,,,,, +214,10,4,4935,102,830.684,154,8.0,E4,mp+,15,144,64,15,,,,, +214,11,4,4936,102,830.684,128,8.0,A#4,mp+,15,144,70,15,,,,, +214,9,1,4934,102,831.161,,,,,,144,77,0,,,,, +214,11,4,4936,102,831.161,,,,,,144,70,0,,,,, +214,8,1,4933,102,831.257,,,,,,144,57,0,,,,, +214,10,4,4935,102,831.257,,,,,,144,64,0,,,,, +214,12,1,4937,256,831.257,102,8.0,A3,p,11,144,57,11,,,,, +214,13,1,4938,256,831.257,128,8.0,F5,p,11,144,77,11,,,,, +214,14,4,4939,256,831.257,102,8.0,E4,mp-,13,144,64,13,,,,, +214,15,4,4940,256,831.257,128,8.0,A#4,mp-,13,144,70,13,,,,, +214,16,1,4941,358,831.637,154,8.0,A3,,,,,,,,,, +214,17,1,4942,358,831.637,128,8.0,F5,,,,,,,,,, +214,18,4,4943,358,831.637,154,8.0,E4,,,,,,,,,, +214,19,4,4944,358,831.637,128,8.0,A#4,,,,,,,,,, +214,12,1,4937,256,832.21,,,,,,144,57,0,,,,, +214,13,1,4938,256,832.21,,,,,,144,77,0,,,,, +214,20,1,4945,512,832.21,170,4.0,E7,mp,14,144,100,14,,,,, +214,21,4,4946,512,832.21,51,16.0,E4,,,,,,,,,, +214,22,4,4947,512,832.21,64,16.0,A#4,,,,,,,,,, +214,14,4,4939,256,832.399,,,,,,144,64,0,,,,, +214,23,4,4948,563,832.399,205,4.0,A3,pp,8,144,57,8,,,,, +214,24,4,4949,563,832.399,256,4.0,E4,pp,8,144,64,8,,,,, +214,25,4,4950,563,832.399,256,4.0,A#4,pp,8,144,70,8,,,,, +214,26,4,4951,563,832.399,256,4.0,F5,pp,8,144,77,8,,,,, +214,15,4,4940,256,832.448,,,,,,144,70,0,,,,, +214,20,1,4945,512,832.842,,,,,,144,100,0,,,,, +214,27,1,4952,682,832.842,256,4.0,G#6,p,11,144,92,11,,,,, +214,23,4,4948,563,833.162,,,,,,144,57,0,,,,, +214,28,4,4953,768,833.162,,,,,,176,102,0,,,,, +214,24,4,4949,563,833.352,,,,,,144,64,0,,,,, +214,25,4,4950,563,833.352,,,,,,144,70,0,,,,, +214,26,4,4951,563,833.352,,,,,,144,77,0,,,,, +214,27,1,4952,682,833.795,,,,,,144,92,0,,,,, +214,29,1,4954,938,833.795,86,8.0,F#4,pp,8,144,66,8,,,,, +214,30,1,4955,938,833.795,128,8.0,G#6,pp,8,144,92,8,,,,, +214,31,1,4956,938,833.795,128,8.0,E7,pp,8,144,100,8,,,,, +214,32,0,4957,1024,834.046,,,,,,,,,,,80,, +214,33,1,4958,1024,834.046,,,,,,176,102,0,,,,, +214,34,3,4959,1024,834.046,28,32.0,C#2,ppp,5,144,37,5,,,,, +214,6,3,4930,0,834.114,,,,,,144,36,0,,,,, +214,29,1,4954,938,834.114,,,,,,144,66,0,,,,, +214,34,3,4959,1024,834.129,,,,,,144,37,0,,,,, +214,35,3,4960,1052,834.129,28,32.0,B1,ppp,5,144,35,5,,,,, +214,35,3,4960,1052,834.211,,,,,,144,35,0,,,,, +214,36,3,4961,1080,834.211,29,32.0,C#2,ppp,5,144,37,5,,,,, +214,30,1,4955,938,834.271,,,,,,144,92,0,,,,, +214,31,1,4956,938,834.271,,,,,,144,100,0,,,,, +214,36,3,4961,1080,834.296,,,,,,144,37,0,,,,, +214,37,3,4962,1109,834.296,28,32.0,B1,ppp,5,144,35,5,,,,, +214,37,3,4962,1109,834.378,,,,,,144,35,0,,,,, +214,38,3,4963,1137,834.378,29,32.0,C#2,ppp,5,144,37,5,,,,, +214,38,3,4963,1137,834.462,,,,,,144,37,0,,,,, +214,39,3,4964,1166,834.462,28,32.0,B1,ppp,5,144,35,5,,,,, +214,39,3,4964,1166,834.545,,,,,,144,35,0,,,,, +214,40,3,4965,1194,834.545,29,32.0,C#2,ppp,5,144,37,5,,,,, +214,40,3,4965,1194,834.629,,,,,,144,37,0,,,,, +214,41,3,4966,1223,834.629,28,32.0,B1,ppp,5,144,35,5,,,,, +214,41,3,4966,1223,834.712,,,,,,144,35,0,,,,, +214,42,3,4967,1251,834.712,29,32.0,C#2,ppp,5,144,37,5,,,,, +214,42,3,4967,1251,834.796,,,,,,144,37,0,,,,, +214,43,3,4968,1280,834.796,28,32.0,B1,ppp,5,144,35,5,,,,, +214,43,3,4968,1280,834.879,,,,,,144,35,0,,,,, +214,44,3,4969,1308,834.879,28,32.0,C#2,ppp,5,144,37,5,,,,, +214,44,3,4969,1308,834.961,,,,,,144,37,0,,,,, +214,46,0,4970,1336,834.961,,,,,,176,64,0,,,,,^ +214,45,3,4971,1336,834.961,29,32.0,B1,ppp,5,144,35,5,,,,, +214,45,3,4971,1336,835.046,,,,,,144,35,0,,,,, +214,47,3,4972,1365,835.046,57,16.0,A3,ppp,5,144,57,5,,,,, +214,47,3,4972,1365,835.212,,,,,,144,57,0,,,,, +214,48,3,4973,1422,835.212,57,16.0,C#2,pp,8,144,37,8,,,,, +214,48,3,4973,1422,835.379,,,,,,144,37,0,,,,, +214,49,3,4974,1479,835.379,57,16.0,B1,p,11,144,35,11,,,,, +214,49,3,4974,1479,835.546,,,,,,144,35,0,,,,, +215,0,0,4975,0,835.546,,,,,,,,,215,,,, +215,1,0,4976,0,835.546,,,,,,,,,,5974,,, +215,2,1,4977,0,835.546,256,4.0,F#4,p,11,144,66,11,,,,, +215,3,1,4978,0,835.546,256,4.0,G#6,p,11,144,92,11,,,,, +215,4,1,4979,0,835.546,256,4.0,E7,p,11,144,100,11,,,,, +215,5,2,4980,0,835.546,,,,,,176,102,0,,,,, +215,6,3,4981,0,835.546,256,4.0,E4,mp,14,144,64,14,,,,, +215,7,3,4982,0,835.546,256,4.0,A#4,mp,14,144,70,14,,,,, +215,8,0,4983,97,835.831,,,,,,176,64,127,,,,,V +215,2,1,4977,0,836.296,,,,,,144,66,0,,,,, +215,3,1,4978,0,836.296,,,,,,144,92,0,,,,, +215,4,1,4979,0,836.296,,,,,,144,100,0,,,,, +215,6,3,4981,0,836.296,,,,,,144,64,0,,,,, +215,7,3,4982,0,836.296,,,,,,144,70,0,,,,, +215,9,1,4984,256,836.296,,,,,,176,102,0,,,,, +215,10,3,4985,256,836.296,56,16.0,A6,pp,8,144,93,8,,,,, +215,10,3,4985,256,836.461,,,,,,144,93,0,,,,, +215,11,3,4986,312,836.461,29,32.0,C#6,pp-,7,144,85,7,,,,, +215,11,3,4986,312,836.546,,,,,,144,85,0,,,,, +215,12,3,4987,341,836.546,28,32.0,D6,pp-,7,144,86,7,,,,, +215,12,3,4987,341,836.628,,,,,,144,86,0,,,,, +215,13,3,4988,369,836.628,29,32.0,B5,pp-,7,144,83,7,,,,, +215,13,3,4988,369,836.712,,,,,,144,83,0,,,,, +215,14,3,4989,398,836.712,28,32.0,D6,ppp+,6,144,86,6,,,,, +215,14,3,4989,398,836.795,,,,,,144,86,0,,,,, +215,15,3,4990,426,836.795,29,32.0,B5,ppp+,6,144,83,6,,,,, +215,15,3,4990,426,836.879,,,,,,144,83,0,,,,, +215,16,3,4991,455,836.879,28,32.0,D6,ppp,5,144,86,5,,,,, +215,16,3,4991,455,836.962,,,,,,144,86,0,,,,, +215,17,3,4992,483,836.962,29,32.0,F7,ppp,5,144,101,5,,,,, +215,17,3,4992,483,837.046,,,,,,144,101,0,,,,, +215,18,3,4993,512,837.046,,,,,,176,102,0,,,,, +215,19,1,4994,512,837.046,102,8.0,A4,mp,14,144,69,14,,,,, +215,20,1,4995,512,837.046,128,8.0,D#5,mp,14,144,75,14,,,,, +215,21,3,4996,597,837.296,28,32.0,C#6,ppp,5,144,85,5,,,,, +215,19,1,4994,512,837.345,,,,,,144,69,0,,,,, +215,22,1,4997,614,837.345,51,16.0,F7,ppp,5,144,101,5,,,,, +215,21,3,4996,597,837.378,,,,,,144,85,0,,,,, +215,23,3,4998,625,837.378,29,32.0,D6,ppp,5,144,86,5,,,,, +215,20,1,4995,512,837.421,,,,,,144,75,0,,,,, +215,23,3,4998,625,837.462,,,,,,144,86,0,,,,, +215,24,3,4999,654,837.462,28,32.0,B5,ppp,5,144,83,5,,,,, +215,22,1,4997,614,837.495,,,,,,144,101,0,,,,, +215,25,1,5000,665,837.495,51,16.0,A6,ppp,5,144,93,5,,,,, +215,24,3,4999,654,837.545,,,,,,144,83,0,,,,, +215,26,3,5001,682,837.545,29,32.0,C#6,ppp,5,144,85,5,,,,, +215,26,3,5001,682,837.629,,,,,,144,85,0,,,,, +215,27,3,5002,711,837.629,28,32.0,B5,ppp,5,144,83,5,,,,, +215,25,1,5000,665,837.644,,,,,,144,93,0,,,,, +215,28,1,5003,716,837.644,52,16.0,F7,ppp,5,144,101,5,,,,, +215,27,3,5002,711,837.712,,,,,,144,83,0,,,,, +215,29,3,5004,739,837.712,29,32.0,D6,ppp,5,144,86,5,,,,, +215,28,1,5003,716,837.796,,,,,,144,101,0,,,,, +215,29,3,5004,739,837.796,,,,,,144,86,0,,,,, +215,30,3,5005,768,837.796,28,32.0,C#6,ppp,5,144,85,5,,,,, +215,31,1,5006,768,837.796,,,,,,176,102,0,,,,, +215,30,3,5005,768,837.879,,,,,,144,85,0,,,,, +215,32,3,5007,796,837.879,28,32.0,D6,ppp,5,144,86,5,,,,, +215,33,1,5008,819,837.946,51,16.0,A6,ppp,5,144,93,5,,,,, +215,32,3,5007,796,837.961,,,,,,144,86,0,,,,, +215,34,3,5009,824,837.961,29,32.0,B5,ppp,5,144,83,5,,,,, +215,34,3,5009,824,838.046,,,,,,144,83,0,,,,, +215,35,3,5010,853,838.046,28,32.0,C#6,ppp,5,144,85,5,,,,, +215,33,1,5008,819,838.095,,,,,,144,93,0,,,,, +215,36,1,5011,870,838.095,51,16.0,F7,ppp,5,144,101,5,,,,, +215,35,3,5010,853,838.128,,,,,,144,85,0,,,,, +215,37,3,5012,881,838.128,29,32.0,B5,ppp,5,144,83,5,,,,, +215,37,3,5012,881,838.212,,,,,,144,83,0,,,,, +215,38,3,5013,910,838.212,28,32.0,D6,ppp,5,144,86,5,,,,, +215,36,1,5011,870,838.245,,,,,,144,101,0,,,,, +215,39,1,5014,921,838.245,51,16.0,A6,ppp,5,144,93,5,,,,, +215,38,3,5013,910,838.295,,,,,,144,86,0,,,,, +215,40,3,5015,938,838.295,29,32.0,C#6,ppp,5,144,85,5,,,,, +215,44,0,5016,995,838.354,,,,,,176,64,0,,,,,^ +215,40,3,5015,938,838.379,,,,,,144,85,0,,,,, +215,41,3,5017,967,838.379,28,32.0,B5,ppp,5,144,83,5,,,,, +215,39,1,5014,921,838.394,,,,,,144,93,0,,,,, +215,42,1,5018,972,838.394,52,16.0,F7,ppp,5,144,101,5,,,,, +215,41,3,5017,967,838.462,,,,,,144,83,0,,,,, +215,43,3,5019,995,838.462,29,32.0,D6,ppp,5,144,86,5,,,,, +215,42,1,5018,972,838.546,,,,,,144,101,0,,,,, +215,43,3,5019,995,838.546,,,,,,144,86,0,,,,, +215,45,3,5020,1024,838.546,256,4.0,E4,pp,8,144,64,8,,,,, +215,46,3,5021,1024,838.546,256,4.0,A#4,pp,8,144,70,8,,,,, +215,48,1,5022,1024,838.546,256,4.0,F#4,pp,8,144,66,8,,,,, +215,49,1,5023,1024,838.546,256,4.0,G#6,pp,8,144,92,8,,,,, +215,50,1,5024,1024,838.546,256,4.0,F7,pp,8,144,101,8,,,,, +215,51,2,5025,1024,838.546,,,,,,176,102,0,,,,, +215,52,0,5026,1024,838.546,,,,,,,,,,5975,,, +215,53,2,5027,1049,838.62,,,,,,176,102,0,,,,, +215,47,0,5028,1024,838.654,,,,,,176,64,127,,,,,V +215,54,2,5029,1088,838.734,38,32.0,A6,pp,8,144,93,8,,,,, +215,54,2,5029,1088,838.845,,,,,,144,93,0,,,,, +215,55,2,5030,1126,838.845,26,32.0,C#6,pp,8,144,85,8,,,,, +215,55,2,5030,1126,838.921,,,,,,144,85,0,,,,, +215,56,2,5031,1152,838.921,25,32.0,D6,pp,8,144,86,8,,,,, +215,56,2,5031,1152,838.995,,,,,,144,86,0,,,,, +215,57,2,5032,1177,838.995,39,32.0,B5,pp,8,144,83,8,,,,, +215,57,2,5032,1177,839.109,,,,,,144,83,0,,,,, +215,58,2,5033,1216,839.109,38,32.0,D6,pp,8,144,86,8,,,,, +215,50,1,5024,1024,839.22,,,,,,144,101,0,,,,, +215,58,2,5033,1216,839.22,,,,,,144,86,0,,,,, +215,59,2,5034,1254,839.22,26,32.0,F7,pp,8,144,101,8,,,,, +215,45,3,5020,1024,839.296,,,,,,144,64,0,,,,, +215,46,3,5021,1024,839.296,,,,,,144,70,0,,,,, +215,48,1,5022,1024,839.296,,,,,,144,66,0,,,,, +215,49,1,5023,1024,839.296,,,,,,144,92,0,,,,, +215,59,2,5034,1254,839.296,,,,,,144,101,0,,,,, +215,60,3,5035,1280,839.296,256,4.0,A4,mp,14,144,69,14,,,,, +215,61,3,5036,1280,839.296,256,4.0,D#5,mp,14,144,75,14,,,,, +215,62,1,5037,1280,839.296,38,32.0,C#5,pp,8,144,73,8,,,,, +215,63,2,5038,1280,839.296,,,,,,176,102,0,,,,, +215,62,1,5037,1280,839.408,,,,,,144,73,0,,,,, +215,64,1,5039,1318,839.408,38,32.0,B4,pp,8,144,71,8,,,,, +215,64,1,5039,1318,839.519,,,,,,144,71,0,,,,, +215,65,1,5040,1356,839.519,39,32.0,D6,pp,8,144,86,8,,,,, +215,65,1,5040,1356,839.633,,,,,,144,86,0,,,,, +215,66,1,5041,1395,839.633,25,32.0,F7,pp+,9,144,101,9,,,,, +215,66,1,5041,1395,839.707,,,,,,144,101,0,,,,, +215,67,1,5042,1420,839.707,39,32.0,A6,pp+,9,144,93,9,,,,, +215,67,1,5042,1420,839.821,,,,,,144,93,0,,,,, +215,68,1,5043,1459,839.821,38,32.0,C#5,pp+,9,144,73,9,,,,, +215,68,1,5043,1459,839.932,,,,,,144,73,0,,,,, +215,69,1,5044,1497,839.932,26,32.0,B4,pp+,9,144,71,9,,,,, +215,69,1,5044,1497,840.008,,,,,,144,71,0,,,,, +215,70,1,5045,1523,840.008,13,64.0,A5,p-,10,144,81,10,,,,, +215,60,3,5035,1280,840.046,,,,,,144,69,0,,,,, +215,61,3,5036,1280,840.046,,,,,,144,75,0,,,,, +216,0,0,5046,0,840.046,,,,,,,,,216,,,, +216,1,1,5047,0,840.046,25,32.0,A5,,,,,,,,,, +216,2,3,5048,0,840.046,,,,,,176,102,0,,,,, +215,70,1,5045,1523,840.12,,,,,,144,81,0,,,,, +216,3,1,5049,25,840.12,39,32.0,C#4,p-,10,144,61,10,,,,, +216,3,1,5049,25,840.234,,,,,,144,61,0,,,,, +216,4,1,5050,64,840.234,38,32.0,B3,p-,10,144,59,10,,,,, +216,4,1,5050,64,840.345,,,,,,144,59,0,,,,, +216,5,1,5051,102,840.345,26,32.0,D5,p-,10,144,74,10,,,,, +216,5,1,5051,102,840.421,,,,,,144,74,0,,,,, +216,6,1,5052,128,840.421,38,32.0,B3,p-,10,144,59,10,,,,, +216,6,1,5052,128,840.533,,,,,,144,59,0,,,,, +216,7,1,5053,166,840.533,38,32.0,D5,p,11,144,74,11,,,,, +216,7,1,5053,166,840.644,,,,,,144,74,0,,,,, +216,8,1,5054,204,840.644,26,32.0,F7,p,11,144,101,11,,,,, +216,8,1,5054,204,840.72,,,,,,144,101,0,,,,, +216,9,1,5055,230,840.72,26,32.0,A4,p,11,144,69,11,,,,, +216,10,1,5056,256,840.796,25,32.0,A4,,,,,,,,,, +216,9,1,5055,230,840.87,,,,,,144,69,0,,,,, +216,11,1,5057,281,840.87,39,32.0,C#3,pp,8,144,49,8,,,,, +216,11,1,5057,281,840.984,,,,,,144,49,0,,,,, +216,12,1,5058,320,840.984,38,32.0,D4,pp,8,144,62,8,,,,, +216,13,1,5059,358,841.095,51,16.0,B2,pp,8,144,47,8,,,,, +216,12,1,5058,320,841.17,,,,,,144,62,0,,,,, +216,13,1,5059,358,841.245,,,,,,144,47,0,,,,, +216,14,1,5060,409,841.245,51,16.0,D4,pp,8,144,62,8,,,,, +216,14,1,5060,409,841.394,,,,,,144,62,0,,,,, +216,15,1,5061,460,841.394,52,16.0,F6,pp,8,144,89,8,,,,, +216,15,1,5061,460,841.546,,,,,,144,89,0,,,,, +216,16,1,5062,512,841.546,42,16.0,A4,mp,14,144,69,14,,,,, +216,17,1,5063,512,841.546,64,16.0,D#5,mp,14,144,75,14,,,,, +216,16,1,5062,512,841.67,,,,,,144,69,0,,,,, +216,18,1,5064,554,841.67,43,16.0,F#3,mp,14,144,54,14,,,,, +216,17,1,5063,512,841.734,,,,,,144,75,0,,,,, +216,18,1,5064,554,841.796,,,,,,144,54,0,,,,, +216,19,1,5065,597,841.796,43,16.0,F5,mp,14,144,77,14,,,,, +216,19,1,5065,597,841.921,,,,,,144,77,0,,,,, +216,20,1,5066,640,841.921,85,8.0,C#4,mp,14,144,61,14,,,,, +216,20,1,5066,640,842.171,,,,,,144,61,0,,,,, +216,21,1,5067,725,842.171,21,32.0,A4,mf,17,144,69,17,,,,, +216,22,1,5068,725,842.171,32,32.0,D#5,mf,17,144,75,17,,,,, +216,23,1,5069,725,842.171,32,32.0,F5,mf,17,144,77,17,,,,, +216,21,1,5067,725,842.232,,,,,,144,69,0,,,,, +216,24,1,5070,746,842.232,22,32.0,F#3,mf+,18,144,54,18,,,,, +216,22,1,5068,725,842.264,,,,,,144,75,0,,,,, +216,23,1,5069,725,842.264,,,,,,144,77,0,,,,, +216,24,1,5070,746,842.296,,,,,,144,54,0,,,,, +216,25,1,5071,768,842.296,21,32.0,A4,f-,19,144,69,19,,,,, +216,26,1,5072,768,842.296,32,32.0,D#5,f-,19,144,75,19,,,,, +216,27,1,5073,768,842.296,32,32.0,F5,f-,19,144,77,19,,,,, +216,25,1,5071,768,842.358,,,,,,144,69,0,,,,, +216,28,1,5074,789,842.358,21,32.0,C#4,f-,19,144,61,19,,,,, +216,26,1,5072,768,842.39,,,,,,144,75,0,,,,, +216,27,1,5073,768,842.39,,,,,,144,77,0,,,,, +216,28,1,5074,789,842.42,,,,,,144,61,0,,,,, +216,29,1,5075,810,842.42,32,32.0,A4,f,20,144,69,20,,,,, +216,30,1,5076,810,842.42,32,32.0,D#5,f,20,144,75,20,,,,, +216,31,1,5077,810,842.42,32,32.0,F5,f,20,144,77,20,,,,, +216,29,1,5075,810,842.513,,,,,,144,69,0,,,,, +216,30,1,5076,810,842.513,,,,,,144,75,0,,,,, +216,31,1,5077,810,842.513,,,,,,144,77,0,,,,, +216,32,1,5078,842,842.513,32,32.0,C#4,f,20,144,61,20,,,,, +216,32,1,5078,842,842.607,,,,,,144,61,0,,,,, +216,33,1,5079,874,842.607,22,32.0,F#3,f,20,144,54,20,,,,, +216,33,1,5079,874,842.671,,,,,,144,54,0,,,,, +216,34,1,5080,896,842.671,,,,,,176,102,0,,,,, +216,35,1,5081,1024,843.046,,,,,,176,102,0,,,,, +216,36,3,5082,1024,843.046,256,4.0,E4,mp,14,144,64,14,,,,, +216,37,3,5083,1024,843.046,256,4.0,A#4,mp,14,144,70,14,,,,, +216,38,3,5084,1024,843.046,256,4.0,C6,mp,14,144,84,14,,,,, +216,36,3,5082,1024,843.796,,,,,,144,64,0,,,,, +216,37,3,5083,1024,843.796,,,,,,144,70,0,,,,, +216,38,3,5084,1024,843.796,,,,,,144,84,0,,,,, +216,39,1,5085,1280,843.796,,,,,,176,102,0,,,,, +216,40,3,5086,1280,843.796,,,,,,176,102,0,,,,, +216,41,1,5087,1344,843.984,32,32.0,D#5,f,20,144,75,20,,,,, +216,41,1,5087,1344,844.078,,,,,,144,75,0,,,,, +216,42,1,5088,1376,844.078,32,32.0,A3,f,20,144,57,20,,,,, +216,42,1,5088,1376,844.171,,,,,,144,57,0,,,,, +216,43,1,5089,1408,844.171,21,32.0,F#2,f,20,144,42,20,,,,, +216,43,1,5089,1408,844.233,,,,,,144,42,0,,,,, +216,44,1,5090,1429,844.233,21,32.0,A3,f,20,144,57,20,,,,, +216,45,1,5091,1429,844.233,32,32.0,D#5,f,20,144,75,20,,,,, +216,46,1,5092,1429,844.233,32,32.0,F5,f,20,144,77,20,,,,, +216,44,1,5090,1429,844.295,,,,,,144,57,0,,,,, +216,47,1,5093,1450,844.295,22,32.0,F#2,f,20,144,42,20,,,,, +216,45,1,5091,1429,844.327,,,,,,144,75,0,,,,, +216,46,1,5092,1429,844.327,,,,,,144,77,0,,,,, +216,47,1,5093,1450,844.359,,,,,,144,42,0,,,,, +216,48,1,5094,1472,844.359,32,32.0,C#3,f,20,144,49,20,,,,, +216,48,1,5094,1472,844.453,,,,,,144,49,0,,,,, +216,49,1,5095,1504,844.453,32,32.0,F#2,f,20,144,42,20,,,,, +216,49,1,5095,1504,844.546,,,,,,144,42,0,,,,, +217,0,0,5096,0,844.546,,,,,,,,,217,,,, +217,1,1,5097,0,844.546,85,8.0,E4,mf,17,144,64,17,,,,, +217,2,1,5098,0,844.546,128,8.0,A#4,mf,17,144,70,17,,,,, +217,3,1,5099,0,844.546,128,8.0,C6,mf,17,144,84,17,,,,, +217,4,3,5100,0,844.546,,,,,,176,102,0,,,,, +217,1,1,5097,0,844.796,,,,,,144,64,0,,,,, +217,5,1,5101,85,844.796,128,8.0,G#3,mf+,18,144,56,18,,,,, +217,2,1,5098,0,844.921,,,,,,144,70,0,,,,, +217,3,1,5099,0,844.921,,,,,,144,84,0,,,,, +217,6,0,5102,213,845.12,,,,,,176,64,0,,,,,^ +217,5,1,5101,85,845.171,,,,,,144,56,0,,,,, +217,7,1,5103,213,845.171,43,16.0,E4,f,20,144,64,20,,,,, +217,8,1,5104,213,845.171,64,16.0,A#4,f,20,144,70,20,,,,, +217,9,1,5105,213,845.171,64,16.0,C6,f,20,144,84,20,,,,, +217,10,1,5106,213,845.171,64,16.0,C#7,f,20,144,97,20,,,,, +217,11,1,5107,256,845.296,768,2.0,E4,,,,,,,,,, +217,12,1,5108,256,845.296,512,2.0,A#4,,,,,,,,,, +217,13,1,5109,256,845.296,512,2.0,C6,,,,,,,,,, +217,14,1,5110,256,845.296,512,2.0,C#7,,,,,,,,,, +217,15,3,5111,256,845.296,,,,,,176,102,0,,,,, +217,17,3,5112,281,845.37,,,,,,176,102,0,,,,, +217,16,0,5113,281,845.42,,,,,,176,64,127,,,,,V +217,18,3,5114,320,845.484,38,32.0,A4,mp,14,144,69,14,,,,, +217,18,3,5114,320,845.595,,,,,,144,69,0,,,,, +217,19,3,5115,358,845.595,26,32.0,C#3,mp,14,144,49,14,,,,, +217,19,3,5115,358,845.671,,,,,,144,49,0,,,,, +217,20,3,5116,384,845.671,25,32.0,D3,mp-,13,144,50,13,,,,, +217,20,3,5116,384,845.745,,,,,,144,50,0,,,,, +217,21,3,5117,409,845.745,39,32.0,B2,mp-,13,144,47,13,,,,, +217,21,3,5117,409,845.859,,,,,,144,47,0,,,,, +217,22,3,5118,448,845.859,38,32.0,D3,mp-,13,144,50,13,,,,, +217,22,3,5118,448,845.97,,,,,,144,50,0,,,,, +217,23,3,5119,486,845.97,26,32.0,F5,mp-,13,144,77,13,,,,, +217,23,3,5119,486,846.046,,,,,,144,77,0,,,,, +217,24,3,5120,512,846.046,38,32.0,C#2,p+,12,144,37,12,,,,, +217,25,3,5121,512,846.046,32,32.0,A4,p+,12,144,69,12,,,,, +217,25,3,5121,512,846.14,,,,,,144,69,0,,,,, +217,24,3,5120,512,846.158,,,,,,144,37,0,,,,, +217,26,3,5122,550,846.158,38,32.0,B1,p+,12,144,35,12,,,,, +217,26,3,5122,550,846.269,,,,,,144,35,0,,,,, +217,27,3,5123,588,846.269,39,32.0,D3,p+,12,144,50,12,,,,, +217,27,3,5123,588,846.383,,,,,,144,50,0,,,,, +217,28,3,5124,627,846.383,25,32.0,B1,p,11,144,35,11,,,,, +217,29,3,5125,627,846.383,32,32.0,C#2,p,11,144,37,11,,,,, +217,30,3,5126,627,846.383,32,32.0,F4,p,11,144,65,11,,,,, +217,28,3,5124,627,846.457,,,,,,144,35,0,,,,, +217,31,3,5127,652,846.457,39,32.0,A3,p,11,144,57,11,,,,, +217,29,3,5125,627,846.477,,,,,,144,37,0,,,,, +217,30,3,5126,627,846.477,,,,,,144,65,0,,,,, +217,31,3,5127,652,846.571,,,,,,144,57,0,,,,, +217,32,3,5128,691,846.571,38,32.0,C#2,p,11,144,37,11,,,,, +217,32,3,5128,691,846.682,,,,,,144,37,0,,,,, +217,33,3,5129,729,846.682,26,32.0,B1,p,11,144,35,11,,,,, +217,33,3,5129,729,846.758,,,,,,144,35,0,,,,, +217,34,3,5130,755,846.758,13,64.0,A2,p-,10,144,45,10,,,,, +217,35,3,5131,768,846.796,25,32.0,A2,,,,,,,,,, +217,8,1,5104,213,846.858,,,,,,144,70,0,,,,, +217,9,1,5105,213,846.858,,,,,,144,84,0,,,,, +217,10,1,5106,213,846.858,,,,,,144,97,0,,,,, +217,34,3,5130,755,846.87,,,,,,144,45,0,,,,, +217,36,3,5132,793,846.87,39,32.0,C#1,p-,10,144,25,10,,,,, +217,36,3,5132,793,846.984,,,,,,144,25,0,,,,, +217,37,3,5133,832,846.984,38,32.0,B0,p-,10,144,23,10,,,,, +217,37,3,5133,832,847.095,,,,,,144,23,0,,,,, +217,38,3,5134,870,847.095,26,32.0,D2,pp+,9,144,38,9,,,,, +217,38,3,5134,870,847.171,,,,,,144,38,0,,,,, +217,39,3,5135,896,847.171,38,32.0,B0,pp+,9,144,23,9,,,,, +217,39,3,5135,896,847.283,,,,,,144,23,0,,,,, +217,40,3,5136,934,847.283,38,32.0,D2,pp+,9,144,38,9,,,,, +217,40,3,5136,934,847.394,,,,,,144,38,0,,,,, +217,41,3,5137,972,847.394,26,32.0,F3,pp+,9,144,53,9,,,,, +217,41,3,5137,972,847.47,,,,,,144,53,0,,,,, +217,42,3,5138,998,847.47,26,32.0,A1,pp,8,144,33,8,,,,, +217,7,1,5103,213,847.546,,,,,,144,64,0,,,,, +217,44,0,5139,1024,847.546,,,,,,176,64,0,,,,,^ +217,43,3,5140,1024,847.546,25,32.0,A1,,,,,,,,,, +217,45,1,5141,1024,847.546,,,,,,176,102,0,,,,, +217,42,3,5138,998,847.62,,,,,,144,33,0,,,,, +217,46,3,5142,1049,847.62,39,32.0,C#1,pp,8,144,25,8,,,,, +217,46,3,5142,1049,847.734,,,,,,144,25,0,,,,, +217,47,3,5143,1088,847.734,38,32.0,D1,pp,8,144,26,8,,,,, +217,47,3,5143,1088,847.845,,,,,,144,26,0,,,,, +217,48,3,5144,1126,847.845,51,16.0,B0,pp,8,144,23,8,,,,, +217,48,3,5144,1126,847.995,,,,,,144,23,0,,,,, +217,49,3,5145,1177,847.995,51,16.0,D1,pp,8,144,26,8,,,,, +217,49,3,5145,1177,848.144,,,,,,144,26,0,,,,, +217,50,3,5146,1228,848.144,52,16.0,F2,pp,8,144,41,8,,,,, +217,50,3,5146,1228,848.296,,,,,,144,41,0,,,,, +217,52,1,5147,1280,848.296,,,,,,176,102,0,,,,, +217,53,3,5148,1280,848.296,76,16.0,B0,pp,8,144,23,8,,,,, +217,54,3,5149,1280,848.296,64,16.0,C#1,pp,8,144,25,8,,,,, +217,55,3,5150,1280,848.296,64,16.0,A1,pp,8,144,33,8,,,,, +217,51,0,5151,1280,848.296,,,,,,176,64,127,,,,,V +217,54,3,5149,1280,848.484,,,,,,144,25,0,,,,, +217,55,3,5150,1280,848.484,,,,,,144,33,0,,,,, +217,53,3,5148,1280,848.519,,,,,,144,23,0,,,,, +217,56,3,5152,1356,848.519,52,16.0,D1,pp,8,144,26,8,,,,, +217,56,3,5152,1356,848.671,,,,,,144,26,0,,,,, +217,57,3,5153,1408,848.671,51,16.0,F2,pp,8,144,41,8,,,,, +217,57,3,5153,1408,848.821,,,,,,144,41,0,,,,, +217,58,3,5154,1459,848.821,,,,,,176,102,0,,,,, +217,59,1,5155,1472,848.859,32,32.0,A#1,mp,14,144,34,14,,,,, +217,59,1,5155,1472,848.953,,,,,,144,34,0,,,,, +217,60,1,5156,1504,848.953,32,32.0,F2,mp-,13,144,41,13,,,,, +217,60,1,5156,1504,849.046,,,,,,144,41,0,,,,, +218,0,0,5157,0,849.046,,,,,,,,,218,,,, +218,1,1,5158,0,849.046,96,16.0,C#4,p+,12,144,61,12,,,,, +218,2,3,5159,0,849.046,,,,,,176,102,0,,,,, +218,1,1,5158,0,849.328,,,,,,144,61,0,,,,, +218,3,1,5160,96,849.328,32,32.0,A#1,p-,10,144,34,10,,,,, +218,4,1,5161,96,849.328,32,32.0,F3,p-,10,144,53,10,,,,, +218,3,1,5160,96,849.421,,,,,,144,34,0,,,,, +218,4,1,5161,96,849.421,,,,,,144,53,0,,,,, +218,5,1,5162,128,849.421,32,32.0,C#4,pp+,9,144,61,9,,,,, +218,5,1,5162,128,849.515,,,,,,144,61,0,,,,, +218,6,1,5163,160,849.515,96,16.0,A#1,pp,8,144,34,8,,,,, +218,6,1,5163,160,849.796,,,,,,144,34,0,,,,, +218,7,0,5164,256,849.89,,,,,,,,,,,60,, +218,8,1,5165,256,849.89,1024,1.0,C#5,pp,8,144,73,8,,,,, +218,9,3,5166,256,849.89,,,,,,176,102,0,,,,, +218,11,0,5167,1280,852.89,,,,,,176,64,0,,,,,^ +218,10,0,5168,1280,852.89,,,,,,,,,,,80,, +218,12,1,5169,1280,852.89,,,,,,176,102,0,,,,, +218,13,3,5170,1280,852.89,,,,,,176,102,0,,,,, +219,0,0,5171,0,853.64,,,,,,,,,219,,,, +219,1,0,5172,0,853.64,,,,,,,,,,5976,,, +219,2,1,5173,0,853.64,512,2.0,D#5,mp,14,144,75,14,,,,, +219,3,2,5174,0,853.64,341,2.0,A5,mp,14,144,81,14,,,,, +219,4,3,5175,0,853.64,128,8.0,G#4,ppp,5,144,68,5,,,,, +219,5,4,5176,0,853.64,,,,,,176,102,0,,,,, +218,8,1,5165,256,853.89,,,,,,144,73,0,,,,, +219,4,3,5175,0,854.015,,,,,,144,68,0,,,,, +219,6,3,5177,128,854.015,128,8.0,D3,ppp+,6,144,50,6,,,,, +219,6,3,5177,128,854.39,,,,,,144,50,0,,,,, +219,8,3,5178,256,854.39,256,4.0,F#5,pp,8,144,78,8,,,,, +219,9,4,5179,256,854.39,,,,,,176,102,0,,,,, +219,7,0,5180,256,854.39,,,,,,176,64,127,,,,,V +219,10,4,5181,288,854.484,32,32.0,A1,ff,22,144,33,22,,,,, +219,10,4,5181,288,854.578,,,,,,144,33,0,,,,, +219,11,4,5182,320,854.578,128,8.0,G4,ff,22,144,67,22,,,,, +219,3,2,5174,0,854.639,,,,,,144,81,0,,,,, +219,12,2,5183,341,854.639,171,4.0,D4,mp,14,144,62,14,,,,, +219,11,4,5182,320,854.953,,,,,,144,67,0,,,,, +219,13,4,5184,448,854.953,32,32.0,A1,pp,8,144,33,8,,,,, +219,13,4,5184,448,855.046,,,,,,144,33,0,,,,, +219,14,0,5185,480,855.046,,,,,,176,64,0,,,,,^ +219,15,4,5186,480,855.046,32,32.0,G4,pp,8,144,67,8,,,,, +219,2,1,5173,0,855.14,,,,,,144,75,0,,,,, +219,8,3,5178,256,855.14,,,,,,144,78,0,,,,, +219,12,2,5183,341,855.14,,,,,,144,62,0,,,,, +219,15,4,5186,480,855.14,,,,,,144,67,0,,,,, +219,16,1,5187,512,855.14,256,4.0,F5,mp,14,144,77,14,,,,, +219,17,2,5188,512,855.14,42,16.0,B2,pp,8,144,47,8,,,,, +219,18,3,5189,512,855.14,512,2.0,E2,pp,8,144,40,8,,,,, +219,19,4,5190,512,855.14,512,2.0,A#1,pp,8,144,34,8,,,,, +219,17,2,5188,512,855.263,,,,,,144,47,0,,,,, +219,20,2,5191,554,855.263,43,16.0,A#6,p,11,144,94,11,,,,, +219,20,2,5191,554,855.389,,,,,,144,94,0,,,,, +219,21,2,5192,597,855.389,,,,,,176,102,0,,,,, +219,22,2,5193,682,855.638,86,8.0,F7,pp,8,144,101,8,,,,, +219,16,1,5187,512,855.89,,,,,,144,77,0,,,,, +219,22,2,5193,682,855.89,,,,,,144,101,0,,,,, +219,23,1,5194,768,855.89,128,8.0,D#5,pp-,7,144,75,7,,,,, +219,24,2,5195,768,855.89,256,4.0,F#5,ppp,5,144,78,5,,,,, +219,23,1,5194,768,856.265,,,,,,144,75,0,,,,, +219,25,1,5196,896,856.265,,,,,,176,102,0,,,,, +219,18,3,5189,512,856.64,,,,,,144,40,0,,,,, +219,19,4,5190,512,856.64,,,,,,144,34,0,,,,, +219,24,2,5195,768,856.64,,,,,,144,78,0,,,,, +219,26,1,5197,,856.64,,8.0,B3,pp-,7,144,59,7,,,,g, +219,26,1,5197,,856.69,,,,,,144,59,0,,,,, +219,27,1,5198,,856.715,,8.0,G#4,pp-,7,144,68,7,,,,g, +219,27,1,5198,,856.765,,,,,,144,68,0,,,,, +220,0,0,5199,0,856.79,,,,,,,,,220,,,, +220,1,1,5200,0,856.79,256,4.0,A4,pp,8,144,69,8,,,,, +220,2,1,5201,0,856.79,256,4.0,A#5,pp,8,144,82,8,,,,, +220,3,2,5202,0,856.79,,,,,,176,102,0,,,,, +220,4,3,5203,0,856.79,42,16.0,C#2,pp,8,144,37,8,,,,, +220,5,4,5204,0,856.79,179,8.0,C1,pp,8,144,24,8,,,,, +220,4,3,5203,0,856.913,,,,,,144,37,0,,,,, +220,6,3,5205,42,856.913,43,16.0,B1,pp,8,144,35,8,,,,, +220,6,3,5205,42,857.039,,,,,,144,35,0,,,,, +220,7,3,5206,85,857.039,43,16.0,C#2,pp,8,144,37,8,,,,, +220,7,3,5206,85,857.165,,,,,,144,37,0,,,,, +220,8,3,5207,128,857.165,42,16.0,B1,pp,8,144,35,8,,,,, +220,8,3,5207,128,857.288,,,,,,144,35,0,,,,, +220,9,3,5208,170,857.288,86,8.0,A3,pp,8,144,57,8,,,,, +220,5,4,5204,0,857.315,,,,,,144,24,0,,,,, +220,11,4,5209,179,857.315,25,32.0,E6,pp,8,144,88,8,,,,, +220,10,0,5210,179,857.315,,,,,,176,64,127,,,,,V +220,11,4,5209,179,857.388,,,,,,144,88,0,,,,, +220,12,4,5211,204,857.388,26,32.0,C1,pp,8,144,24,8,,,,, +220,12,4,5211,204,857.464,,,,,,144,24,0,,,,, +220,13,4,5212,230,857.464,26,32.0,E6,pp,8,144,88,8,,,,, +220,1,1,5200,0,857.54,,,,,,144,69,0,,,,, +220,2,1,5201,0,857.54,,,,,,144,82,0,,,,, +220,9,3,5208,170,857.54,,,,,,144,57,0,,,,, +220,14,1,5213,256,857.54,256,4.0,A#5,pp,8,144,82,8,,,,, +220,15,2,5214,256,857.54,,,,,,176,102,0,,,,, +220,16,3,5215,256,857.54,,,,,,176,102,0,,,,, +220,17,4,5216,256,857.54,153,8.0,E6,,,,,,,,,, +220,13,4,5212,230,857.988,,,,,,144,88,0,,,,, +220,18,4,5217,409,857.988,26,32.0,A5,pp,8,144,81,8,,,,, +220,18,4,5217,409,858.065,,,,,,144,81,0,,,,, +220,19,4,5218,435,858.065,25,32.0,F#3,pp,8,144,54,8,,,,, +220,19,4,5218,435,858.138,,,,,,144,54,0,,,,, +220,20,4,5219,460,858.138,52,16.0,G#5,pp,8,144,80,8,,,,, +220,14,1,5213,256,858.29,,,,,,144,82,0,,,,, +220,20,4,5219,460,858.29,,,,,,144,80,0,,,,, +220,21,1,5220,512,858.29,256,4.0,D2,pp,8,144,38,8,,,,, +220,22,2,5221,512,858.29,,,,,,176,102,0,,,,, +220,23,3,5222,512,858.29,256,4.0,C#1,pp,8,144,25,8,,,,, +220,24,4,5223,512,858.29,25,32.0,A5,pp,8,144,81,8,,,,, +220,24,4,5223,512,858.363,,,,,,144,81,0,,,,, +220,25,4,5224,537,858.363,26,32.0,G#5,pp,8,144,80,8,,,,, +220,25,4,5224,537,858.44,,,,,,144,80,0,,,,, +220,26,4,5225,563,858.44,25,32.0,C2,pp,8,144,36,8,,,,, +220,26,4,5225,563,858.513,,,,,,144,36,0,,,,, +220,27,4,5226,588,858.513,26,32.0,A4,pp,8,144,69,8,,,,, +220,27,4,5226,588,858.589,,,,,,144,69,0,,,,, +220,28,4,5227,614,858.589,77,16.0,E5,pp,8,144,76,8,,,,, +220,28,4,5227,614,858.815,,,,,,144,76,0,,,,, +220,29,4,5228,691,858.815,25,32.0,G#4,pp,8,144,68,8,,,,, +220,29,4,5228,691,858.888,,,,,,144,68,0,,,,, +220,30,4,5229,716,858.888,26,32.0,E5,pp,8,144,76,8,,,,, +220,30,4,5229,716,858.964,,,,,,144,76,0,,,,, +220,31,4,5230,742,858.964,26,32.0,G#4,pp,8,144,68,8,,,,, +220,21,1,5220,512,859.04,,,,,,144,38,0,,,,, +220,23,3,5222,512,859.04,,,,,,144,25,0,,,,, +220,31,4,5230,742,859.04,,,,,,144,68,0,,,,, +220,32,1,5231,768,859.04,,,,,,176,102,0,,,,, +220,33,2,5232,768,859.04,,,,,,176,102,0,,,,, +220,34,3,5233,768,859.04,64,16.0,D2,pp,8,144,38,8,,,,, +220,35,4,5234,768,859.04,25,32.0,E5,pp,8,144,76,8,,,,, +220,35,4,5234,768,859.113,,,,,,144,76,0,,,,, +220,36,4,5235,793,859.113,26,32.0,G#4,pp,8,144,68,8,,,,, +220,36,4,5235,793,859.19,,,,,,144,68,0,,,,, +220,37,4,5236,819,859.19,25,32.0,F#2,pp,8,144,42,8,,,,, +220,34,3,5233,768,859.228,,,,,,144,38,0,,,,, +220,38,3,5237,832,859.228,,,,,,176,102,0,,,,, +220,37,4,5236,819,859.263,,,,,,144,42,0,,,,, +220,39,4,5238,844,859.263,26,32.0,A4,pp,8,144,69,8,,,,, +220,40,1,5239,853,859.289,171,4.0,F5,pp,8,144,77,8,,,,, +220,39,4,5238,844,859.339,,,,,,144,69,0,,,,, +220,41,4,5240,870,859.339,26,32.0,G#4,pp,8,144,68,8,,,,, +220,41,4,5240,870,859.415,,,,,,144,68,0,,,,, +220,42,3,5241,896,859.415,32,32.0,F#4,pp,8,144,66,8,,,,, +220,43,4,5242,896,859.415,25,32.0,A4,pp,8,144,69,8,,,,, +220,43,4,5242,896,859.488,,,,,,144,69,0,,,,, +220,44,4,5243,921,859.488,26,32.0,E5,pp,8,144,76,8,,,,, +220,42,3,5241,896,859.509,,,,,,144,66,0,,,,, +220,45,3,5244,928,859.509,32,32.0,G#3,pp,8,144,56,8,,,,, +220,44,4,5243,921,859.565,,,,,,144,76,0,,,,, +220,46,4,5245,947,859.565,25,32.0,G#4,pp,8,144,68,8,,,,, +220,45,3,5244,928,859.603,,,,,,144,56,0,,,,, +220,47,3,5246,960,859.603,32,32.0,D1,pp,8,144,26,8,,,,, +220,46,4,5245,947,859.638,,,,,,144,68,0,,,,, +220,48,4,5247,972,859.638,26,32.0,F#2,pp,8,144,42,8,,,,, +220,47,3,5246,960,859.696,,,,,,144,26,0,,,,, +220,49,3,5248,992,859.696,,,,,,176,102,0,,,,, +220,48,4,5247,972,859.714,,,,,,144,42,0,,,,, +220,50,4,5249,998,859.714,26,32.0,A3,pp,8,144,57,8,,,,, +220,51,0,5250,1023,859.787,,,,,,176,64,0,,,,,^ +220,40,1,5239,853,859.79,,,,,,144,77,0,,,,, +220,50,4,5249,998,859.79,,,,,,144,57,0,,,,, +221,0,0,5251,0,859.79,,,,,,,,,221,,,, +221,1,0,5252,0,859.79,,,,,,,,,,5977,,, +221,2,1,5253,0,859.79,,,,,,176,102,0,,,,, +221,3,3,5254,0,859.79,64,16.0,D4,pp,8,144,62,8,,,,, +221,4,4,5255,0,859.79,256,4.0,C1,pp,8,144,24,8,,,,, +221,5,4,5256,0,859.79,256,4.0,E3,mf,17,144,52,17,,,,, +221,6,4,5257,0,859.79,256,4.0,B3,p,11,144,59,11,,,,, +221,3,3,5254,0,859.978,,,,,,144,62,0,,,,, +221,7,3,5258,64,859.978,192,8.0,C2,p,11,144,36,11,,,,, +221,9,1,5259,102,860.089,102,8.0,A2,p,11,144,45,11,,,,, +221,8,0,5260,102,860.089,,,,,,176,64,127,,,,,V +221,9,1,5259,102,860.388,,,,,,144,45,0,,,,, +221,10,1,5261,204,860.388,52,16.0,A2,mp,14,144,45,14,,,,, +221,11,1,5262,204,860.388,64,16.0,G5,mp,14,144,79,14,,,,, +221,4,4,5255,0,860.54,,,,,,144,24,0,,,,, +221,5,4,5256,0,860.54,,,,,,144,52,0,,,,, +221,6,4,5257,0,860.54,,,,,,144,59,0,,,,, +221,7,3,5258,64,860.54,,,,,,144,36,0,,,,, +221,10,1,5261,204,860.54,,,,,,144,45,0,,,,, +221,12,1,5263,256,860.54,,,,,,176,102,0,,,,, +221,13,3,5264,256,860.54,64,16.0,A#2,mp+,15,144,46,15,,,,, +221,14,4,5265,256,860.54,,,,,,176,102,0,,,,, +221,11,1,5262,204,860.575,,,,,,144,79,0,,,,, +221,13,3,5264,256,860.728,,,,,,144,46,0,,,,, +221,15,3,5266,320,860.728,42,16.0,C#5,mf,17,144,73,17,,,,, +221,15,3,5266,320,860.851,,,,,,144,73,0,,,,, +221,16,3,5267,362,860.851,43,16.0,A#2,mf+,18,144,46,18,,,,, +221,17,3,5268,362,860.851,64,16.0,F3,mf+,18,144,53,18,,,,, +221,18,3,5269,362,860.851,64,16.0,C#5,mf+,18,144,73,18,,,,, +221,16,3,5267,362,860.977,,,,,,144,46,0,,,,, +221,19,3,5270,405,860.977,64,16.0,A1,f-,19,144,33,19,,,,, +221,17,3,5268,362,861.038,,,,,,144,53,0,,,,, +221,18,3,5269,362,861.038,,,,,,144,73,0,,,,, +221,20,0,5271,469,861.152,,,,,,176,64,0,,,,,^ +221,19,3,5270,405,861.164,,,,,,144,33,0,,,,, +221,21,3,5272,,861.164,,8.0,A5,f+,21,144,81,21,,,,g, +221,21,3,5272,,861.214,,,,,,144,81,0,,,,, +221,22,3,5273,,861.239,,8.0,D5,f+,21,144,74,21,,,,g, +221,22,3,5273,,861.289,,,,,,144,74,0,,,,, +221,23,3,5274,469,861.314,43,16.0,G5,ff,22,144,79,22,,,,, +221,23,3,5274,469,861.44,,,,,,144,79,0,,,,, +221,25,1,5275,512,861.44,32,32.0,C#2,p,11,144,37,11,,,,, +221,26,3,5276,512,861.44,512,2.0,A#1,ff,22,144,34,22,,,,, +221,27,4,5277,512,861.44,,,,,,176,102,0,,,,, +221,24,0,5278,512,861.452,,,,,,176,64,127,,,,,V +221,25,1,5275,512,861.534,,,,,,144,37,0,,,,, +221,28,1,5279,544,861.534,32,32.0,B1,p,11,144,35,11,,,,, +221,28,1,5279,544,861.628,,,,,,144,35,0,,,,, +221,29,1,5280,576,861.628,32,32.0,D5,p,11,144,74,11,,,,, +221,29,1,5280,576,861.721,,,,,,144,74,0,,,,, +221,30,1,5281,608,861.721,32,32.0,F6,p,11,144,89,11,,,,, +221,30,1,5281,608,861.815,,,,,,144,89,0,,,,, +221,31,0,5282,640,861.815,,,,,,176,64,0,,,,,^ +221,32,1,5283,640,861.815,,,,,,176,102,0,,,,, +221,33,4,5284,704,862.003,32,32.0,D4,ff,22,144,62,22,,,,, +221,33,4,5284,704,862.096,,,,,,144,62,0,,,,, +221,34,4,5285,736,862.096,32,32.0,C2,ff,22,144,36,22,,,,, +221,34,4,5285,736,862.19,,,,,,144,36,0,,,,, +221,36,1,5286,768,862.19,96,16.0,B3,mf,17,144,59,17,,,,, +221,37,4,5287,768,862.19,256,4.0,C1,pp,8,144,24,8,,,,, +221,38,4,5288,768,862.19,256,4.0,A#2,pp,8,144,46,8,,,,, +221,39,4,5289,768,862.19,256,4.0,E3,pp,8,144,52,8,,,,, +221,35,0,5290,768,862.19,,,,,,176,64,127,,,,,V +221,36,1,5286,768,862.471,,,,,,144,59,0,,,,, +221,40,1,5291,864,862.471,32,32.0,A#5,mf,17,144,82,17,,,,, +221,41,1,5292,896,862.565,128,8.0,A#5,,,,,,,,,, +221,26,3,5276,512,862.94,,,,,,144,34,0,,,,, +221,37,4,5287,768,862.94,,,,,,144,24,0,,,,, +221,38,4,5288,768,862.94,,,,,,144,46,0,,,,, +221,39,4,5289,768,862.94,,,,,,144,52,0,,,,, +221,40,1,5291,864,862.94,,,,,,144,82,0,,,,, +222,0,0,5293,0,862.94,,,,,,,,,222,,,, +222,1,1,5294,0,862.94,32,32.0,C#3,p,11,144,49,11,,,,, +222,2,3,5295,0,862.94,,,,,,176,102,0,,,,, +222,3,4,5296,0,862.94,,,,,,176,102,0,,,,, +222,1,1,5294,0,863.034,,,,,,144,49,0,,,,, +222,4,1,5297,32,863.034,32,32.0,B2,p+,12,144,47,12,,,,, +222,4,1,5297,32,863.128,,,,,,144,47,0,,,,, +222,5,1,5298,64,863.128,32,32.0,D5,mp,14,144,74,14,,,,, +222,6,3,5299,85,863.189,,,,,,176,102,0,,,,, +222,5,1,5298,64,863.221,,,,,,144,74,0,,,,, +222,7,1,5300,96,863.221,32,32.0,F6,mf-,16,144,89,16,,,,, +222,7,1,5300,96,863.315,,,,,,144,89,0,,,,, +222,8,1,5301,128,863.315,128,8.0,A4,mf,17,144,69,17,,,,, +222,9,3,5302,170,863.438,43,16.0,E3,p,11,144,52,11,,,,, +222,9,3,5302,170,863.564,,,,,,144,52,0,,,,, +222,10,3,5303,213,863.564,43,16.0,D4,mp-,13,144,62,13,,,,, +222,10,3,5303,213,863.69,,,,,,144,62,0,,,,, +222,11,1,5304,256,863.69,256,4.0,A4,,,,,,,,,, +222,12,3,5305,256,863.69,,,,,,176,102,0,,,,, +222,13,4,5306,256,863.69,64,16.0,A#1,mp+,15,144,34,15,,,,, +222,13,4,5306,256,863.878,,,,,,144,34,0,,,,, +222,14,4,5307,320,863.878,64,16.0,E3,mf,17,144,52,17,,,,, +222,15,3,5308,341,863.939,,,,,,176,102,0,,,,, +222,16,3,5309,362,864.001,64,16.0,C1,pp,8,144,24,8,,,,, +222,14,4,5307,320,864.065,,,,,,144,52,0,,,,, +222,17,4,5310,384,864.065,64,16.0,D4,f,20,144,62,20,,,,, +222,16,3,5309,362,864.188,,,,,,144,24,0,,,,, +222,18,3,5311,426,864.188,43,16.0,E4,p,11,144,64,11,,,,, +222,17,4,5310,384,864.253,,,,,,144,62,0,,,,, +222,19,4,5312,448,864.253,,,,,,176,102,0,,,,, +222,18,3,5311,426,864.314,,,,,,144,64,0,,,,, +222,20,3,5313,469,864.314,43,16.0,F#2,p+,12,144,42,12,,,,, +222,8,1,5301,128,864.44,,,,,,144,69,0,,,,, +222,20,3,5313,469,864.44,,,,,,144,42,0,,,,, +222,21,1,5314,512,864.44,512,2.0,G#4,f,20,144,68,20,,,,, +222,22,3,5315,512,864.44,64,16.0,E4,mp,14,144,64,14,,,,, +222,23,4,5316,512,864.44,,,,,,176,102,0,,,,, +222,22,3,5315,512,864.628,,,,,,144,64,0,,,,, +222,24,3,5317,576,864.628,32,32.0,G#3,p,11,144,56,11,,,,, +222,24,3,5317,576,864.721,,,,,,144,56,0,,,,, +222,25,3,5318,608,864.721,32,32.0,A3,p-,10,144,57,10,,,,, +222,25,3,5318,608,864.815,,,,,,144,57,0,,,,, +222,26,3,5319,640,864.815,32,32.0,G#3,pp+,9,144,56,9,,,,, +222,26,3,5319,640,864.909,,,,,,144,56,0,,,,, +222,27,3,5320,672,864.909,32,32.0,A3,pp-,7,144,57,7,,,,, +222,27,3,5320,672,865.003,,,,,,144,57,0,,,,, +222,28,3,5321,704,865.003,21,32.0,C1,ppp+,6,144,24,6,,,,, +222,28,3,5321,704,865.064,,,,,,144,24,0,,,,, +222,29,3,5322,725,865.064,43,16.0,F#1,ppp,5,144,30,5,,,,, +222,29,3,5322,725,865.19,,,,,,144,30,0,,,,, +222,30,3,5323,768,865.19,,,,,,176,102,0,,,,, +222,21,1,5314,512,865.94,,,,,,144,68,0,,,,, +223,0,0,5324,0,865.94,,,,,,,,,223,,,, +223,1,1,5325,0,865.94,,,,,,176,102,0,,,,, +223,2,3,5326,0,865.94,,,,,,176,102,0,,,,, +223,3,4,5327,0,865.94,,,,,,176,102,0,,,,, +223,4,0,5328,128,866.315,,,,,,176,64,0,,,,,^ +223,5,3,5329,128,866.315,128,8.0,A#1,p,11,144,34,11,,,,, +223,6,3,5330,128,866.315,128,8.0,E3,p,11,144,52,11,,,,, +223,7,3,5331,128,866.315,128,8.0,D4,p,11,144,62,11,,,,, +223,8,3,5332,128,866.315,128,8.0,E4,p,11,144,64,11,,,,, +223,9,4,5333,128,866.315,128,8.0,C1,pp,8,144,24,8,,,,, +223,10,4,5334,128,866.315,128,8.0,F#1,pp,8,144,30,8,,,,, +223,11,4,5335,128,866.315,128,8.0,G#3,pp,8,144,56,8,,,,, +223,12,4,5336,128,866.315,128,8.0,A3,pp,8,144,57,8,,,,, +223,5,3,5329,128,866.69,,,,,,144,34,0,,,,, +223,6,3,5330,128,866.69,,,,,,144,52,0,,,,, +223,7,3,5331,128,866.69,,,,,,144,62,0,,,,, +223,8,3,5332,128,866.69,,,,,,144,64,0,,,,, +223,9,4,5333,128,866.69,,,,,,144,24,0,,,,, +223,10,4,5334,128,866.69,,,,,,144,30,0,,,,, +223,11,4,5335,128,866.69,,,,,,144,56,0,,,,, +223,12,4,5336,128,866.69,,,,,,144,57,0,,,,, +223,14,1,5337,256,866.69,128,8.0,G#4,mf,17,144,68,17,,,,, +223,15,1,5338,256,866.69,128,8.0,F#5,mf,17,144,78,17,,,,, +223,16,3,5339,256,866.69,,,,,,176,102,0,,,,, +223,17,4,5340,256,866.69,,,,,,176,102,0,,,,, +223,13,0,5341,256,866.69,,,,,,176,64,127,,,,,V +223,14,1,5337,256,867.065,,,,,,144,68,0,,,,, +223,15,1,5338,256,867.065,,,,,,144,78,0,,,,, +223,18,1,5342,384,867.065,85,8.0,B3,p,11,144,59,11,,,,, +223,18,1,5342,384,867.314,,,,,,144,59,0,,,,, +223,19,1,5343,469,867.314,21,32.0,D3,p-,10,144,50,10,,,,, +223,19,1,5343,469,867.376,,,,,,144,50,0,,,,, +223,20,1,5344,490,867.376,22,32.0,A#5,pp+,9,144,82,9,,,,, +223,20,1,5344,490,867.44,,,,,,144,82,0,,,,, +223,21,1,5345,512,867.44,21,32.0,B3,pp+,9,144,59,9,,,,, +223,22,3,5346,512,867.44,,,,,,176,102,0,,,,, +223,23,4,5347,512,867.44,,,,,,176,102,0,,,,, +223,21,1,5345,512,867.502,,,,,,144,59,0,,,,, +223,24,1,5348,533,867.502,21,32.0,A#5,pp,8,144,82,8,,,,, +223,24,1,5348,533,867.563,,,,,,144,82,0,,,,, +223,25,1,5349,554,867.563,32,32.0,B3,pp,8,144,59,8,,,,, +223,25,1,5349,554,867.657,,,,,,144,59,0,,,,, +223,26,1,5350,586,867.657,32,32.0,A#6,ppp+,6,144,94,6,,,,, +223,27,1,5351,618,867.751,22,32.0,D3,ppp,5,144,50,5,,,,, +223,27,1,5351,618,867.815,,,,,,144,50,0,,,,, +223,28,1,5352,640,867.815,,,,,,176,102,0,,,,, +223,26,1,5350,586,867.901,,,,,,144,94,0,,,,, +223,29,1,5353,768,868.19,,,,,,176,102,0,,,,, +224,0,0,5354,0,868.94,,,,,,,,,224,,,, +224,1,1,5355,0,868.94,,,,,,176,102,0,,,,, +224,2,3,5356,0,868.94,,,,,,176,102,0,,,,, +224,3,0,5357,256,869.69,,,,,,176,64,0,,,,,^ +224,4,3,5358,256,869.69,,,,,,176,102,0,,,,, +224,5,0,5359,256,869.69,,,,,,,,,,5978,,, +224,6,3,5360,341,869.939,,,,,,176,102,0,,,,, +224,8,3,5361,,870.113,,8.0,C2,pp,8,144,36,8,,,,g, +224,8,3,5361,,870.163,,,,,,144,36,0,,,,, +224,9,3,5362,426,870.188,86,8.0,A4,pp,8,144,69,8,,,,, +224,7,0,5363,426,870.188,,,,,,176,64,127,,,,,V +224,10,3,5364,512,870.44,85,8.0,A4,,,,,,,,,, +224,9,3,5362,426,870.689,,,,,,144,69,0,,,,, +224,11,3,5365,597,870.689,171,4.0,F#3,pp,8,144,54,8,,,,, +224,11,3,5365,597,871.19,,,,,,144,54,0,,,,, +224,12,1,5366,,871.19,,8.0,F#6,pp,8,144,90,8,,,,g, +224,12,1,5366,,871.24,,,,,,144,90,0,,,,, +224,13,1,5367,,871.265,,8.0,G#5,pp,8,144,80,8,,,,g, +224,13,1,5367,,871.315,,,,,,144,80,0,,,,, +224,14,1,5368,,871.34,,8.0,F#6,pp,8,144,90,8,,,,g, +224,14,1,5368,,871.39,,,,,,144,90,0,,,,, +224,15,1,5369,768,871.415,32,32.0,B4,pp,8,144,71,8,,,,, +224,16,3,5370,768,871.415,,,,,,176,102,0,,,,, +224,15,1,5369,768,871.509,,,,,,144,71,0,,,,, +224,17,1,5371,800,871.509,48,32.0,G#5,pp,8,144,80,8,,,,, +224,17,1,5371,800,871.65,,,,,,144,80,0,,,,, +224,18,1,5372,848,871.65,48,32.0,F#6,pp,8,144,90,8,,,,, +224,18,1,5372,848,871.79,,,,,,144,90,0,,,,, +224,19,1,5373,896,871.79,32,32.0,B4,pp+,9,144,71,9,,,,, +224,19,1,5373,896,871.884,,,,,,144,71,0,,,,, +224,20,1,5374,928,871.884,48,32.0,G#5,p,11,144,80,11,,,,, +224,20,1,5374,928,872.025,,,,,,144,80,0,,,,, +224,21,1,5375,976,872.025,48,32.0,F#6,p+,12,144,90,12,,,,, +224,21,1,5375,976,872.165,,,,,,144,90,0,,,,, +225,0,0,5376,0,872.165,,,,,,,,,225,,,, +225,1,1,5377,0,872.165,256,4.0,B3,p+,12,144,59,12,,,,, +225,2,3,5378,0,872.165,85,8.0,E3,mp,14,144,52,14,,,,, +225,3,3,5379,0,872.165,128,8.0,D4,mp,14,144,62,14,,,,, +225,2,3,5378,0,872.414,,,,,,144,52,0,,,,, +225,4,3,5380,85,872.414,43,16.0,A#1,mf-,16,144,34,16,,,,, +225,5,3,5381,128,872.54,42,16.0,E3,mf-,16,144,52,16,,,,, +225,3,3,5379,0,872.663,,,,,,144,62,0,,,,, +225,5,3,5381,128,872.663,,,,,,144,52,0,,,,, +225,6,3,5382,170,872.663,86,8.0,D4,mf,17,144,62,17,,,,, +225,4,3,5380,85,872.69,,,,,,144,34,0,,,,, +225,1,1,5377,0,872.915,,,,,,144,59,0,,,,, +225,6,3,5382,170,872.915,,,,,,144,62,0,,,,, +225,7,1,5383,256,872.915,21,32.0,B3,mp,14,144,59,14,,,,, +225,8,3,5384,256,872.915,,,,,,176,102,0,,,,, +225,9,1,5385,277,872.977,21,32.0,F#6,mp+,15,144,90,15,,,,, +225,9,1,5385,277,873.038,,,,,,144,90,0,,,,, +225,10,1,5386,298,873.038,32,32.0,G#5,mf-,16,144,80,16,,,,, +225,7,1,5383,256,873.065,,,,,,144,59,0,,,,, +225,10,1,5386,298,873.132,,,,,,144,80,0,,,,, +225,11,1,5387,330,873.132,32,32.0,F#6,mf+,18,144,90,18,,,,, +225,11,1,5387,330,873.226,,,,,,144,90,0,,,,, +225,12,1,5388,362,873.226,64,16.0,B3,f,20,144,59,20,,,,, +225,12,1,5388,362,873.413,,,,,,144,59,0,,,,, +225,13,1,5389,426,873.413,64,16.0,A#6,f,20,144,94,20,,,,, +225,13,1,5389,426,873.601,,,,,,144,94,0,,,,, +225,14,1,5390,490,873.601,22,32.0,D3,f,20,144,50,20,,,,, +225,14,1,5390,490,873.665,,,,,,144,50,0,,,,, +225,15,1,5391,512,873.665,,,,,,176,102,0,,,,, +225,16,3,5392,512,873.665,170,4.0,A3,p,11,144,57,11,,,,, +225,16,3,5392,512,874.163,,,,,,144,57,0,,,,, +225,17,3,5393,682,874.163,342,2.0,F#2,p,11,144,42,11,,,,, +225,18,1,5394,768,874.415,,,,,,176,102,0,,,,, +225,19,1,5395,853,874.664,,,,,,176,102,0,,,,, +225,20,0,5396,938,874.889,,,,,,176,64,0,,,,,^ +225,21,1,5397,938,874.913,86,8.0,D3,f,20,144,50,20,,,,, +225,22,1,5398,938,874.913,128,8.0,B3,f,20,144,59,20,,,,, +225,23,1,5399,938,874.913,128,8.0,G#5,f,20,144,80,20,,,,, +225,24,1,5400,938,874.913,128,8.0,F#6,f,20,144,90,20,,,,, +225,25,1,5401,938,874.913,128,8.0,A#6,f,20,144,94,20,,,,, +225,17,3,5393,682,875.165,,,,,,144,42,0,,,,, +225,21,1,5397,938,875.165,,,,,,144,50,0,,,,, +226,0,0,5402,0,875.165,,,,,,,,,226,,,, +226,2,1,5403,0,875.165,85,8.0,A#1,ff,22,144,34,22,,,,, +226,3,1,5404,0,875.165,128,8.0,C#5,ff,22,144,73,22,,,,, +226,4,3,5405,0,875.165,64,16.0,A#3,f,20,144,58,20,,,,, +226,1,0,5406,0,875.189,,,,,,176,64,127,,,,,V +225,22,1,5398,938,875.288,,,,,,144,59,0,,,,, +225,23,1,5399,938,875.288,,,,,,144,80,0,,,,, +225,24,1,5400,938,875.288,,,,,,144,90,0,,,,, +225,25,1,5401,938,875.288,,,,,,144,94,0,,,,, +226,4,3,5405,0,875.353,,,,,,144,58,0,,,,, +226,5,3,5407,64,875.353,42,16.0,C#6,f,20,144,85,20,,,,, +226,2,1,5403,0,875.414,,,,,,144,34,0,,,,, +226,6,1,5408,85,875.414,85,8.0,E5,p,11,144,76,11,,,,, +226,5,3,5407,64,875.476,,,,,,144,85,0,,,,, +226,7,3,5409,106,875.476,22,32.0,G#1,f,20,144,32,20,,,,, +226,3,1,5404,0,875.54,,,,,,144,73,0,,,,, +226,7,3,5409,106,875.54,,,,,,144,32,0,,,,, +226,8,3,5410,128,875.54,,,,,,176,102,0,,,,, +226,6,1,5408,85,875.663,,,,,,144,76,0,,,,, +226,9,1,5411,170,875.663,86,8.0,G#4,p,11,144,68,11,,,,, +226,10,3,5412,213,875.789,,,,,,176,102,0,,,,, +226,11,3,5413,234,875.851,22,32.0,E3,mf,17,144,52,17,,,,, +226,9,1,5411,170,875.915,,,,,,144,68,0,,,,, +226,11,3,5413,234,875.915,,,,,,144,52,0,,,,, +226,12,1,5414,256,875.915,,,,,,176,102,0,,,,, +226,13,3,5415,256,875.915,21,32.0,D4,mf,17,144,62,17,,,,, +226,13,3,5415,256,875.977,,,,,,144,62,0,,,,, +226,14,3,5416,277,875.977,21,32.0,A#1,ff,22,144,34,22,,,,, +226,14,3,5416,277,876.038,,,,,,144,34,0,,,,, +226,15,3,5417,298,876.038,22,32.0,E3,ff,22,144,52,22,,,,, +226,15,3,5417,298,876.103,,,,,,144,52,0,,,,, +226,16,3,5418,320,876.103,21,32.0,A#1,ff,22,144,34,22,,,,, +226,17,3,5419,320,876.103,32,32.0,D4,ff,22,144,62,22,,,,, +226,16,3,5418,320,876.164,,,,,,144,34,0,,,,, +226,18,1,5420,341,876.164,,,,,,176,102,0,,,,, +226,19,3,5421,341,876.164,21,32.0,F#1,ff,22,144,30,22,,,,, +226,20,3,5422,341,876.164,32,32.0,E3,ff,22,144,52,22,,,,, +226,17,3,5419,320,876.196,,,,,,144,62,0,,,,, +226,19,3,5421,341,876.226,,,,,,144,30,0,,,,, +226,21,3,5423,362,876.226,22,32.0,A#1,ff,22,144,34,22,,,,, +226,22,3,5424,362,876.226,32,32.0,G2,ff,22,144,43,22,,,,, +226,23,3,5425,362,876.226,32,32.0,D4,ff,22,144,62,22,,,,, +226,20,3,5422,341,876.258,,,,,,144,52,0,,,,, +226,21,3,5423,362,876.29,,,,,,144,34,0,,,,, +226,24,3,5426,384,876.29,,,,,,176,102,0,,,,, +226,22,3,5424,362,876.32,,,,,,144,43,0,,,,, +226,23,3,5425,362,876.32,,,,,,144,62,0,,,,, +226,26,0,5427,448,876.358,,,,,,176,64,0,,,,,^ +226,25,1,5428,426,876.413,,,,,,176,102,0,,,,, +226,28,1,5429,469,876.539,43,16.0,D3,ff,22,144,50,22,,,,, +226,29,1,5430,469,876.539,64,16.0,B3,ff,22,144,59,22,,,,, +226,30,1,5431,469,876.539,64,16.0,G#5,ff,22,144,80,22,,,,, +226,31,1,5432,469,876.539,64,16.0,F#6,ff,22,144,90,22,,,,, +226,32,1,5433,469,876.539,64,16.0,A#6,ff,22,144,94,22,,,,, +226,27,0,5434,469,876.658,,,,,,176,64,127,,,,,V +226,33,1,5435,512,876.665,256,4.0,D3,,,,,,,,,, +226,34,1,5436,512,876.665,256,4.0,B3,,,,,,,,,, +226,35,1,5437,512,876.665,256,4.0,G#5,,,,,,,,,, +226,36,1,5438,512,876.665,256,4.0,F#6,,,,,,,,,, +226,37,1,5439,512,876.665,256,4.0,A#6,,,,,,,,,, +226,38,3,5440,512,876.665,,,,,,176,102,0,,,,, +226,39,3,5441,640,877.04,21,32.0,A#4,p,11,144,70,11,,,,, +226,39,3,5441,640,877.102,,,,,,144,70,0,,,,, +226,40,3,5442,661,877.102,21,32.0,F#4,p+,12,144,66,12,,,,, +226,40,3,5442,661,877.163,,,,,,144,66,0,,,,, +226,41,3,5443,682,877.163,22,32.0,E6,mp-,13,144,88,13,,,,, +226,41,3,5443,682,877.228,,,,,,144,88,0,,,,, +226,42,3,5444,704,877.228,32,32.0,A#4,mp,14,144,70,14,,,,, +226,42,3,5444,704,877.321,,,,,,144,70,0,,,,, +226,43,3,5445,736,877.321,32,32.0,E6,mp+,15,144,88,15,,,,, +226,43,3,5445,736,877.415,,,,,,144,88,0,,,,, +226,44,1,5446,768,877.415,224,8.0,D3,,,,,,,,,, +226,45,1,5447,768,877.415,128,8.0,B3,,,,,,,,,, +226,46,1,5448,768,877.415,128,8.0,G#5,,,,,,,,,, +226,47,1,5449,768,877.415,128,8.0,F#6,,,,,,,,,, +226,48,1,5450,768,877.415,128,8.0,A#6,,,,,,,,,, +226,49,3,5451,768,877.415,21,32.0,A#4,mf-,16,144,70,16,,,,, +226,49,3,5451,768,877.477,,,,,,144,70,0,,,,, +226,50,3,5452,789,877.477,21,32.0,G5,mf,17,144,79,17,,,,, +226,50,3,5452,789,877.538,,,,,,144,79,0,,,,, +226,51,3,5453,810,877.538,22,32.0,D7,mf+,18,144,98,18,,,,, +226,51,3,5453,810,877.603,,,,,,144,98,0,,,,, +226,52,3,5454,832,877.603,32,32.0,E6,f-,19,144,88,19,,,,, +226,52,3,5454,832,877.696,,,,,,144,88,0,,,,, +226,53,3,5455,864,877.696,32,32.0,D7,f+,21,144,98,21,,,,, +226,53,3,5455,864,877.79,,,,,,144,98,0,,,,, +226,54,3,5456,896,877.79,21,32.0,F#3,ff,22,144,54,22,,,,, +226,29,1,5430,469,877.852,,,,,,144,59,0,,,,, +226,30,1,5431,469,877.852,,,,,,144,80,0,,,,, +226,31,1,5432,469,877.852,,,,,,144,90,0,,,,, +226,32,1,5433,469,877.852,,,,,,144,94,0,,,,, +226,54,3,5456,896,877.852,,,,,,144,54,0,,,,, +226,55,3,5457,917,877.852,21,32.0,E6,ff,22,144,88,22,,,,, +226,55,3,5457,917,877.913,,,,,,144,88,0,,,,, +226,56,3,5458,938,877.913,22,32.0,G5,ff,22,144,79,22,,,,, +226,56,3,5458,938,877.978,,,,,,144,79,0,,,,, +226,57,3,5459,960,877.978,32,32.0,F#3,ff,22,144,54,22,,,,, +226,60,0,5460,1023,878.014,,,,,,176,64,0,,,,,^ +226,28,1,5429,469,878.071,,,,,,144,50,0,,,,, +226,57,3,5459,960,878.071,,,,,,144,54,0,,,,, +226,58,1,5461,992,878.071,32,32.0,A4,mp,14,144,69,14,,,,, +226,59,3,5462,992,878.071,32,32.0,G5,ff,22,144,79,22,,,,, +226,58,1,5461,992,878.165,,,,,,144,69,0,,,,, +226,59,3,5462,992,878.165,,,,,,144,79,0,,,,, +227,0,0,5463,0,878.165,,,,,,,,,227,,,, +227,2,1,5464,0,878.165,32,32.0,F#3,mf,17,144,54,17,,,,, +227,3,1,5465,0,878.165,32,32.0,A4,mf,17,144,69,17,,,,, +227,4,3,5466,0,878.165,,,,,,176,102,0,,,,, +227,2,1,5464,0,878.259,,,,,,144,54,0,,,,, +227,3,1,5465,0,878.259,,,,,,144,69,0,,,,, +227,5,1,5467,32,878.259,224,8.0,F#3,f,20,144,54,20,,,,, +227,6,1,5468,32,878.259,128,8.0,C#4,f,20,144,61,20,,,,, +227,1,0,5469,0,878.314,,,,,,176,64,127,,,,,V +227,7,3,5470,64,878.353,32,32.0,A4,mp,14,144,69,14,,,,, +227,7,3,5470,64,878.446,,,,,,144,69,0,,,,, +227,8,3,5471,96,878.446,32,32.0,C#2,mp,14,144,37,14,,,,, +227,8,3,5471,96,878.54,,,,,,144,37,0,,,,, +227,9,3,5472,128,878.54,128,8.0,D3,mp,14,144,50,14,,,,, +227,6,1,5468,32,878.634,,,,,,144,61,0,,,,, +227,10,0,5473,256,878.765,,,,,,176,64,0,,,,,^ +227,5,1,5467,32,878.915,,,,,,144,54,0,,,,, +227,9,3,5472,128,878.915,,,,,,144,50,0,,,,, +227,12,1,5474,256,878.915,,,,,,176,102,0,,,,, +227,13,3,5475,256,878.915,85,8.0,B2,mp,14,144,47,14,,,,, +227,11,0,5476,256,879.065,,,,,,176,64,127,,,,,V +227,13,3,5475,256,879.164,,,,,,144,47,0,,,,, +227,14,1,5477,341,879.164,,,,,,176,102,0,,,,, +227,15,3,5478,341,879.164,85,8.0,A#6,ff,22,144,94,22,,,,, +227,15,3,5478,341,879.413,,,,,,144,94,0,,,,, +227,16,1,5479,426,879.413,86,8.0,A#6,ff,22,144,94,22,,,,, +227,17,3,5480,426,879.413,86,8.0,D2,ff,22,144,38,22,,,,, +227,18,3,5481,426,879.413,128,8.0,B2,ff,22,144,47,22,,,,, +227,16,1,5479,426,879.665,,,,,,144,94,0,,,,, +227,17,3,5480,426,879.665,,,,,,144,38,0,,,,, +227,19,0,5482,512,879.665,,,,,,176,64,0,,,,,^ +227,20,1,5483,512,879.665,,,,,,176,102,0,,,,, +227,21,3,5484,512,879.665,,,,,,176,102,0,,,,, +227,22,0,5485,512,879.665,,,,,,,,,,5979,,, +227,18,3,5481,426,879.788,,,,,,144,47,0,,,,, +227,24,3,5486,640,880.04,48,32.0,D5,pp,8,144,74,8,,,,, +227,23,0,5487,640,880.04,,,,,,176,64,127,,,,,V +227,24,3,5486,640,880.181,,,,,,144,74,0,,,,, +227,25,3,5488,688,880.181,32,32.0,C2,pp,8,144,36,8,,,,, +227,25,3,5488,688,880.275,,,,,,144,36,0,,,,, +227,26,3,5489,720,880.275,48,32.0,A#2,pp,8,144,46,8,,,,, +227,26,3,5489,720,880.415,,,,,,144,46,0,,,,, +227,27,1,5490,768,880.415,48,32.0,F#5,pp,8,144,78,8,,,,, +227,28,3,5491,768,880.415,,,,,,176,102,0,,,,, +227,27,1,5490,768,880.556,,,,,,144,78,0,,,,, +227,29,1,5492,816,880.556,32,32.0,D#6,pp,8,144,87,8,,,,, +227,30,3,5493,816,880.556,,,,,,176,102,0,,,,, +227,29,1,5492,816,880.65,,,,,,144,87,0,,,,, +227,31,1,5494,848,880.65,48,32.0,D5,p,11,144,74,11,,,,, +227,32,1,5495,848,880.65,32,32.0,F#5,p,11,144,78,11,,,,, +227,33,3,5496,848,880.65,48,32.0,C2,p,11,144,36,11,,,,, +227,34,3,5497,848,880.65,32,32.0,A#2,p,11,144,46,11,,,,, +227,32,1,5495,848,880.743,,,,,,144,78,0,,,,, +227,34,3,5497,848,880.743,,,,,,144,46,0,,,,, +227,31,1,5494,848,880.79,,,,,,144,74,0,,,,, +227,33,3,5496,848,880.79,,,,,,144,36,0,,,,, +227,35,1,5498,896,880.79,48,32.0,D#5,f,20,144,75,20,,,,, +227,36,3,5499,896,880.79,,,,,,176,102,0,,,,, +227,35,1,5498,896,880.931,,,,,,144,75,0,,,,, +227,37,1,5500,944,880.931,32,32.0,D#5,f,20,144,75,20,,,,, +227,38,3,5501,944,880.931,32,32.0,A3,f,20,144,57,20,,,,, +227,42,0,5502,1000,880.98,,,,,,176,64,0,,,,,^ +227,37,1,5500,944,881.025,,,,,,144,75,0,,,,, +227,38,3,5501,944,881.025,,,,,,144,57,0,,,,, +227,39,1,5503,976,881.025,48,32.0,D#5,f,20,144,75,20,,,,, +227,40,1,5504,976,881.025,32,32.0,F5,f,20,144,77,20,,,,, +227,41,3,5505,976,881.025,48,32.0,A3,f,20,144,57,20,,,,, +227,40,1,5504,976,881.118,,,,,,144,77,0,,,,, +227,39,1,5503,976,881.165,,,,,,144,75,0,,,,, +227,41,3,5505,976,881.165,,,,,,144,57,0,,,,, +228,0,0,5506,0,881.165,,,,,,,,,228,,,, +228,2,1,5507,0,881.165,85,8.0,D5,p,11,144,74,11,,,,, +228,3,1,5508,0,881.165,128,8.0,F#5,p,11,144,78,11,,,,, +228,4,1,5509,0,881.165,128,8.0,D#6,p,11,144,87,11,,,,, +228,5,3,5510,0,881.165,85,8.0,C2,p,11,144,36,11,,,,, +228,6,3,5511,0,881.165,128,8.0,A#2,p,11,144,46,11,,,,, +228,1,0,5512,0,881.28,,,,,,176,64,127,,,,,V +228,2,1,5507,0,881.414,,,,,,144,74,0,,,,, +228,5,3,5510,0,881.414,,,,,,144,36,0,,,,, +228,7,1,5513,85,881.414,,,,,,176,102,0,,,,, +228,8,3,5514,85,881.414,32,32.0,F#4,mp-,13,144,66,13,,,,, +228,8,3,5514,85,881.508,,,,,,144,66,0,,,,, +228,9,3,5515,117,881.508,21,32.0,B2,mp,14,144,47,14,,,,, +228,3,1,5508,0,881.54,,,,,,144,78,0,,,,, +228,4,1,5509,0,881.54,,,,,,144,87,0,,,,, +228,6,3,5511,0,881.54,,,,,,144,46,0,,,,, +228,9,3,5515,117,881.57,,,,,,144,47,0,,,,, +228,10,3,5516,138,881.57,32,32.0,F#4,mp,14,144,66,14,,,,, +228,10,3,5516,138,881.663,,,,,,144,66,0,,,,, +228,11,3,5517,170,881.663,22,32.0,B2,mp+,15,144,47,15,,,,, +228,11,3,5517,170,881.728,,,,,,144,47,0,,,,, +228,12,3,5518,192,881.728,32,32.0,G#3,mp+,15,144,56,15,,,,, +228,12,3,5518,192,881.821,,,,,,144,56,0,,,,, +228,13,3,5519,224,881.821,32,32.0,F#5,mf-,16,144,78,16,,,,, +228,13,3,5519,224,881.915,,,,,,144,78,0,,,,, +228,14,1,5520,256,881.915,,,,,,176,102,0,,,,, +228,15,3,5521,256,881.915,21,32.0,B1,mf,17,144,35,17,,,,, +228,15,3,5521,256,881.977,,,,,,144,35,0,,,,, +228,16,3,5522,277,881.977,21,32.0,G#4,mf,17,144,68,17,,,,, +228,16,3,5522,277,882.038,,,,,,144,68,0,,,,, +228,17,3,5523,298,882.038,22,32.0,D1,mf+,18,144,26,18,,,,, +228,17,3,5523,298,882.103,,,,,,144,26,0,,,,, +228,18,3,5524,320,882.103,32,32.0,A#5,mf+,18,144,82,18,,,,, +228,18,3,5524,320,882.196,,,,,,144,82,0,,,,, +228,19,3,5525,352,882.196,32,32.0,D1,f-,19,144,26,19,,,,, +228,19,3,5525,352,882.29,,,,,,144,26,0,,,,, +228,20,3,5526,384,882.29,32,32.0,F#5,f,20,144,78,20,,,,, +228,20,3,5526,384,882.384,,,,,,144,78,0,,,,, +228,21,3,5527,416,882.384,21,32.0,B2,f+,21,144,47,21,,,,, +228,21,3,5527,416,882.446,,,,,,144,47,0,,,,, +228,22,3,5528,437,882.446,21,32.0,G#4,f+,21,144,68,21,,,,, +228,22,3,5528,437,882.507,,,,,,144,68,0,,,,, +228,23,3,5529,458,882.507,22,32.0,D2,f+,21,144,38,21,,,,, +228,24,3,5530,480,882.571,32,32.0,A#5,ff,22,144,82,22,,,,, +228,24,3,5530,480,882.665,,,,,,144,82,0,,,,, +228,25,1,5531,512,882.665,,,,,,176,102,0,,,,, +228,26,3,5532,512,882.665,,,,,,176,102,0,,,,, +228,23,3,5529,458,882.796,,,,,,144,38,0,,,,, +228,27,1,5533,560,882.806,48,32.0,D3,mp,14,144,50,14,,,,, +228,27,1,5533,560,882.946,,,,,,144,50,0,,,,, +228,28,1,5534,608,882.946,32,32.0,F6,mf-,16,144,89,16,,,,, +228,28,1,5534,608,883.04,,,,,,144,89,0,,,,, +228,29,1,5535,640,883.04,48,32.0,B2,mf,17,144,47,17,,,,, +228,29,1,5535,640,883.181,,,,,,144,47,0,,,,, +228,30,1,5536,688,883.181,48,32.0,D3,mf+,18,144,50,18,,,,, +228,30,1,5536,688,883.321,,,,,,144,50,0,,,,, +228,31,1,5537,736,883.321,32,32.0,F6,f,20,144,89,20,,,,, +228,31,1,5537,736,883.415,,,,,,144,89,0,,,,, +228,32,1,5538,768,883.415,256,4.0,G#4,fff,24,144,68,23,,,,, +228,33,3,5539,768,883.415,,,,,,176,102,0,,,,, +228,34,3,5540,896,883.79,16,64.0,F#2,fff,24,144,42,23,,,,, +228,34,3,5540,896,883.837,,,,,,144,42,0,,,,, +228,35,0,5541,912,883.837,,,,,,176,64,0,,,,,^ +228,36,3,5542,912,883.837,16,64.0,C#3,fff,24,144,49,23,,,,, +228,36,3,5542,912,883.884,,,,,,144,49,0,,,,, +228,37,3,5543,928,883.884,96,16.0,D#5,fff,24,144,75,23,,,,, +229,0,0,5544,0,884.165,,,,,,,,,229,,,, +229,1,1,5545,0,884.165,128,8.0,G#4,,,,,,,,,, +229,2,2,5546,0,884.165,128,8.0,A#2,fff,24,144,46,23,,,,, +229,3,3,5547,0,884.165,128,8.0,D#5,,,,,,,,,, +228,32,1,5538,768,884.54,,,,,,144,68,0,,,,, +228,37,3,5543,928,884.54,,,,,,144,75,0,,,,, +229,2,2,5546,0,884.54,,,,,,144,46,0,,,,, +229,4,1,5548,128,884.54,,,,,,176,102,0,,,,, +229,5,2,5549,128,884.54,,,,,,176,102,0,,,,, +229,6,3,5550,128,884.54,,,,,,176,102,0,,,,, +229,8,3,5551,149,884.602,21,32.0,E3,p,11,144,52,11,,,,, +229,7,0,5552,149,884.602,,,,,,176,64,127,,,,,V +229,8,3,5551,149,884.663,,,,,,144,52,0,,,,, +229,9,3,5553,170,884.663,22,32.0,A#3,p+,12,144,58,12,,,,, +229,9,3,5553,170,884.728,,,,,,144,58,0,,,,, +229,10,3,5554,192,884.728,21,32.0,E3,mp-,13,144,52,13,,,,, +229,10,3,5554,192,884.789,,,,,,144,52,0,,,,, +229,11,3,5555,213,884.789,21,32.0,A#3,mp,14,144,58,14,,,,, +229,11,3,5555,213,884.851,,,,,,144,58,0,,,,, +229,12,3,5556,234,884.851,22,32.0,E3,mp,14,144,52,14,,,,, +229,12,3,5556,234,884.915,,,,,,144,52,0,,,,, +229,13,1,5557,256,884.915,,,,,,176,102,0,,,,, +229,14,2,5558,256,884.915,,,,,,176,102,0,,,,, +229,15,3,5559,256,884.915,21,32.0,C4,mp+,15,144,60,15,,,,, +229,15,3,5559,256,884.977,,,,,,144,60,0,,,,, +229,16,3,5560,277,884.977,21,32.0,G#2,mf-,16,144,44,16,,,,, +229,16,3,5560,277,885.038,,,,,,144,44,0,,,,, +229,17,3,5561,298,885.038,86,8.0,C#7,mf,17,144,97,17,,,,, +229,17,3,5561,298,885.29,,,,,,144,97,0,,,,, +229,18,3,5562,384,885.29,,,,,,176,102,0,,,,, +229,19,1,5563,512,885.665,,,,,,176,102,0,,,,, +229,20,2,5564,512,885.665,,,,,,176,102,0,,,,, +229,21,3,5565,512,885.665,256,4.0,C1,mf,17,144,24,17,,,,, +229,22,2,5566,576,885.853,64,16.0,D4,mp,14,144,62,14,,,,, +229,22,2,5566,576,886.04,,,,,,144,62,0,,,,, +229,23,2,5567,640,886.04,128,8.0,A5,mp,14,144,81,14,,,,, +229,24,1,5568,682,886.163,171,4.0,A#2,fff,24,144,46,23,,,,, +229,25,1,5569,682,886.163,256,4.0,E5,fff,24,144,76,23,,,,, +229,21,3,5565,512,886.415,,,,,,144,24,0,,,,, +229,23,2,5567,640,886.415,,,,,,144,81,0,,,,, +229,26,2,5570,768,886.415,,,,,,176,102,0,,,,, +229,27,3,5571,768,886.415,,,,,,176,102,0,,,,, +229,24,1,5568,682,886.664,,,,,,144,46,0,,,,, +229,25,1,5569,682,886.664,,,,,,144,76,0,,,,, +229,28,1,5572,853,886.664,171,4.0,E5,fff,24,144,76,23,,,,, +229,29,1,5573,853,886.664,256,4.0,D7,fff,24,144,98,23,,,,, +229,30,3,5574,853,886.664,,,,,,176,102,0,,,,, +229,31,3,5575,981,887.039,43,16.0,G#3,mp,14,144,56,14,,,,, +229,32,3,5576,981,887.039,64,16.0,E4,mp,14,144,64,14,,,,, +229,33,3,5577,981,887.039,64,16.0,A#4,mp,14,144,70,14,,,,, +229,34,3,5578,981,887.039,64,16.0,C6,mp,14,144,84,14,,,,, +229,35,3,5579,981,887.039,64,16.0,C#7,mp,14,144,97,14,,,,, +229,36,0,5580,1023,887.162,,,,,,176,64,0,,,,,^ +229,28,1,5572,853,887.165,,,,,,144,76,0,,,,, +229,31,3,5575,981,887.165,,,,,,144,56,0,,,,, +230,0,0,5581,0,887.165,,,,,,,,,230,,,, +230,1,1,5582,0,887.165,512,2.0,G#4,fff,24,144,68,23,,,,, +230,2,1,5583,0,887.165,512,2.0,F#5,fff,24,144,78,23,,,,, +230,3,3,5584,0,887.165,,,,,,176,102,0,,,,, +229,32,3,5576,981,887.227,,,,,,144,64,0,,,,, +229,33,3,5577,981,887.227,,,,,,144,70,0,,,,, +229,34,3,5578,981,887.227,,,,,,144,84,0,,,,, +229,35,3,5579,981,887.227,,,,,,144,97,0,,,,, +229,29,1,5573,853,887.414,,,,,,144,98,0,,,,, +230,5,3,5585,128,887.54,384,4.0,C1,ppp,5,144,24,5,,,,, +230,4,0,5586,128,887.54,,,,,,176,64,127,,,,,V +230,1,1,5582,0,888.665,,,,,,144,68,0,,,,, +230,2,1,5583,0,888.665,,,,,,144,78,0,,,,, +230,5,3,5585,128,888.665,,,,,,144,24,0,,,,, +230,6,1,5587,512,888.665,,,,,,176,102,0,,,,, +230,7,3,5588,512,888.665,256,4.0,E3,ppp,5,144,52,5,,,,, +230,7,3,5588,512,889.415,,,,,,144,52,0,,,,, +230,8,1,5589,768,889.415,256,4.0,A#3,pp,8,144,58,8,,,,, +230,9,3,5590,768,889.415,25,32.0,A2,ppp,5,144,45,5,,,,, +230,9,3,5590,768,889.488,,,,,,144,45,0,,,,, +230,10,3,5591,793,889.488,26,32.0,G#2,ppp,5,144,44,5,,,,, +230,10,3,5591,793,889.565,,,,,,144,44,0,,,,, +230,11,3,5592,819,889.565,25,32.0,A2,ppp,5,144,45,5,,,,, +230,11,3,5592,819,889.638,,,,,,144,45,0,,,,, +230,12,3,5593,844,889.638,26,32.0,G#2,ppp,5,144,44,5,,,,, +230,12,3,5593,844,889.714,,,,,,144,44,0,,,,, +230,13,0,5594,870,889.714,,,,,,176,64,0,,,,,^ +230,14,3,5595,870,889.714,26,32.0,A2,ppp,5,144,45,5,,,,, +230,14,3,5595,870,889.79,,,,,,144,45,0,,,,, +230,15,3,5596,896,889.79,51,16.0,G#2,ppp,5,144,44,5,,,,, +230,15,3,5596,896,889.94,,,,,,144,44,0,,,,, +230,16,3,5597,947,889.94,77,16.0,A2,ppp,5,144,45,5,,,,, +230,16,3,5597,947,890.165,,,,,,144,45,0,,,,, +231,0,0,5598,0,890.165,,,,,,,,,231,,,, +231,1,1,5599,0,890.165,128,8.0,A#3,,,,,,,,,, +231,2,3,5600,0,890.165,170,4.0,F#2,ppp,5,144,42,5,,,,, +230,8,1,5589,768,890.54,,,,,,144,58,0,,,,, +231,3,1,5601,128,890.54,128,8.0,F#5,pp,8,144,78,8,,,,, +231,2,3,5600,0,890.663,,,,,,144,42,0,,,,, +231,4,3,5602,170,890.663,22,32.0,F#1,fff,24,144,30,23,,,,, +231,4,3,5602,170,890.728,,,,,,144,30,0,,,,, +231,6,3,5603,192,890.728,10,64.0,G3,f,20,144,55,20,,,,, +231,5,0,5604,192,890.728,,,,,,176,64,127,,,,,V +231,6,3,5603,192,890.757,,,,,,144,55,0,,,,, +231,7,3,5605,202,890.757,11,64.0,E3,mf+,18,144,52,18,,,,, +231,7,3,5605,202,890.789,,,,,,144,52,0,,,,, +231,8,3,5606,213,890.789,11,64.0,A#1,mp+,15,144,34,15,,,,, +231,8,3,5606,213,890.821,,,,,,144,34,0,,,,, +231,9,3,5607,224,890.821,10,64.0,F#1,mp-,13,144,30,13,,,,, +231,9,3,5607,224,890.851,,,,,,144,30,0,,,,, +231,10,3,5608,234,890.851,11,64.0,D4,p-,10,144,62,10,,,,, +231,10,3,5608,234,890.883,,,,,,144,62,0,,,,, +231,11,0,5609,245,890.883,,,,,,176,64,0,,,,,^ +231,12,3,5610,245,890.883,11,64.0,G3,pp,8,144,55,8,,,,, +231,12,3,5610,245,890.915,,,,,,144,55,0,,,,, +231,13,1,5611,256,890.915,128,8.0,F#5,,,,,,,,,, +231,14,3,5612,256,890.915,512,2.0,A#1,pp,8,144,34,8,,,,, +231,3,1,5601,128,891.29,,,,,,144,78,0,,,,, +231,16,1,5613,384,891.29,25,32.0,D5,pp,8,144,74,8,,,,, +231,15,0,5614,384,891.29,,,,,,176,64,127,,,,,V +231,16,1,5613,384,891.363,,,,,,144,74,0,,,,, +231,17,1,5615,409,891.363,26,32.0,D#6,pp,8,144,87,8,,,,, +231,17,1,5615,409,891.44,,,,,,144,87,0,,,,, +231,18,1,5616,435,891.44,25,32.0,D5,pp,8,144,74,8,,,,, +231,18,1,5616,435,891.513,,,,,,144,74,0,,,,, +231,19,1,5617,460,891.513,26,32.0,D#6,pp,8,144,87,8,,,,, +231,19,1,5617,460,891.589,,,,,,144,87,0,,,,, +231,20,1,5618,486,891.589,26,32.0,D5,pp,8,144,74,8,,,,, +231,20,1,5618,486,891.665,,,,,,144,74,0,,,,, +231,21,1,5619,512,891.665,51,16.0,D#6,pp,8,144,87,8,,,,, +231,21,1,5619,512,891.815,,,,,,144,87,0,,,,, +231,22,1,5620,563,891.815,77,16.0,D5,pp,8,144,74,8,,,,, +231,22,1,5620,563,892.04,,,,,,144,74,0,,,,, +231,23,1,5621,640,892.04,128,8.0,C3,pp,8,144,48,8,,,,, +231,23,1,5621,640,892.415,,,,,,144,48,0,,,,, +231,24,1,5622,768,892.415,,,,,,176,102,0,,,,, +231,25,3,5623,768,892.415,256,4.0,A#1,,,,,,,,,, +231,26,3,5624,768,892.415,256,4.0,C2,ppp,5,144,36,5,,,,, +231,27,3,5625,768,892.415,256,4.0,F#2,ppp,5,144,42,5,,,,, +231,28,3,5626,768,892.415,256,4.0,G#2,ppp,5,144,44,5,,,,, +231,29,3,5627,768,892.415,256,4.0,A2,ppp,5,144,45,5,,,,, +231,30,1,5628,864,892.696,64,16.0,D#5,ff,22,144,75,22,,,,, +231,30,1,5628,864,892.884,,,,,,144,75,0,,,,, +231,31,1,5629,928,892.884,96,16.0,A3,ff,22,144,57,22,,,,, +231,32,1,5630,928,892.884,64,16.0,D#5,ff,22,144,75,22,,,,, +231,33,0,5631,1023,893.014,,,,,,176,64,0,,,,,^ +231,32,1,5630,928,893.071,,,,,,144,75,0,,,,, +231,14,3,5612,256,893.165,,,,,,144,34,0,,,,, +231,31,1,5629,928,893.165,,,,,,144,57,0,,,,, +232,0,0,5632,0,893.165,,,,,,,,,232,,,, +232,2,1,5633,0,893.165,512,2.0,G#4,p,11,144,68,11,,,,, +232,3,1,5634,0,893.165,512,2.0,F#5,p,11,144,78,11,,,,, +232,4,3,5635,0,893.165,51,16.0,C2,,,,,,,,,, +232,5,3,5636,0,893.165,64,16.0,F#2,,,,,,,,,, +232,6,3,5637,0,893.165,64,16.0,G#2,,,,,,,,,, +232,7,3,5638,0,893.165,64,16.0,A2,,,,,,,,,, +232,1,0,5639,0,893.314,,,,,,176,64,127,,,,,V +231,26,3,5624,768,893.315,,,,,,144,36,0,,,,, +232,8,3,5640,51,893.315,25,32.0,A2,ppp,5,144,45,5,,,,, +231,27,3,5625,768,893.353,,,,,,144,42,0,,,,, +231,28,3,5626,768,893.353,,,,,,144,44,0,,,,, +231,29,3,5627,768,893.353,,,,,,144,45,0,,,,, +232,8,3,5640,51,893.388,,,,,,144,45,0,,,,, +232,9,3,5641,76,893.388,26,32.0,G#2,ppp,5,144,44,5,,,,, +232,9,3,5641,76,893.464,,,,,,144,44,0,,,,, +232,10,3,5642,102,893.464,26,32.0,A2,ppp,5,144,45,5,,,,, +232,10,3,5642,102,893.54,,,,,,144,45,0,,,,, +232,11,3,5643,128,893.54,51,16.0,G#2,ppp,5,144,44,5,,,,, +232,11,3,5643,128,893.69,,,,,,144,44,0,,,,, +232,12,3,5644,179,893.69,77,16.0,A2,ppp,5,144,45,5,,,,, +232,12,3,5644,179,893.915,,,,,,144,45,0,,,,, +232,13,3,5645,256,893.915,102,8.0,F#2,ppp,5,144,42,5,,,,, +232,13,3,5645,256,894.214,,,,,,144,42,0,,,,, +232,14,3,5646,358,894.214,154,8.0,C2,ppp,5,144,36,5,,,,, +232,15,3,5647,358,894.214,128,8.0,F#2,ppp,5,144,42,5,,,,, +232,16,3,5648,358,894.214,128,8.0,G#2,ppp,5,144,44,5,,,,, +232,17,3,5649,358,894.214,128,8.0,A2,ppp,5,144,45,5,,,,, +232,18,3,5650,358,894.214,128,8.0,E3,ppp,5,144,52,5,,,,, +232,2,1,5633,0,894.665,,,,,,144,68,0,,,,, +232,3,1,5634,0,894.665,,,,,,144,78,0,,,,, +232,19,0,5651,512,894.665,,,,,,176,64,0,,,,,^ +232,20,1,5652,512,894.665,64,16.0,B2,f,20,144,47,20,,,,, +232,21,1,5653,512,894.665,64,16.0,G#4,f,20,144,68,20,,,,, +232,22,1,5654,512,894.665,64,16.0,F#5,f,20,144,78,20,,,,, +232,23,3,5655,512,894.665,128,8.0,C2,,,,,,,,,, +232,24,3,5656,512,894.665,128,8.0,F#2,,,,,,,,,, +232,25,3,5657,512,894.665,128,8.0,G#2,,,,,,,,,, +232,26,3,5658,512,894.665,128,8.0,A2,,,,,,,,,, +232,27,3,5659,512,894.665,128,8.0,E3,,,,,,,,,, +232,20,1,5652,512,894.853,,,,,,144,47,0,,,,, +232,21,1,5653,512,894.853,,,,,,144,68,0,,,,, +232,22,1,5654,512,894.853,,,,,,144,78,0,,,,, +232,28,1,5660,576,894.853,192,8.0,B2,pp,8,144,47,8,,,,, +232,29,1,5661,576,894.853,128,8.0,G#4,pp,8,144,68,8,,,,, +232,30,1,5662,576,894.853,128,8.0,F#5,pp,8,144,78,8,,,,, +232,15,3,5647,358,894.964,,,,,,144,42,0,,,,, +232,16,3,5648,358,894.964,,,,,,144,44,0,,,,, +232,17,3,5649,358,894.964,,,,,,144,45,0,,,,, +232,18,3,5650,358,894.964,,,,,,144,52,0,,,,, +232,14,3,5646,358,895.04,,,,,,144,36,0,,,,, +232,31,3,5663,640,895.04,,,,,,176,102,0,,,,, +232,32,3,5664,672,895.134,32,32.0,F#2,f,20,144,42,20,,,,, +232,33,3,5665,672,895.134,32,32.0,A3,f,20,144,57,20,,,,, +232,29,1,5661,576,895.228,,,,,,144,68,0,,,,, +232,30,1,5662,576,895.228,,,,,,144,78,0,,,,, +232,32,3,5664,672,895.228,,,,,,144,42,0,,,,, +232,33,3,5665,672,895.228,,,,,,144,57,0,,,,, +232,34,3,5666,704,895.228,32,32.0,C#3,mp,14,144,49,14,,,,, +232,34,3,5666,704,895.321,,,,,,144,49,0,,,,, +232,35,3,5667,736,895.321,32,32.0,D#5,pp,8,144,75,8,,,,, +232,36,3,5668,736,895.321,32,32.0,F5,pp,8,144,77,8,,,,, +232,28,1,5660,576,895.415,,,,,,144,47,0,,,,, +232,35,3,5667,736,895.415,,,,,,144,75,0,,,,, +232,36,3,5668,736,895.415,,,,,,144,77,0,,,,, +232,38,1,5669,768,895.415,102,8.0,A#3,pp,8,144,58,8,,,,, +232,39,3,5670,768,895.415,,,,,,176,102,0,,,,, +232,37,0,5671,768,895.415,,,,,,176,64,127,,,,,V +232,38,1,5669,768,895.714,,,,,,144,58,0,,,,, +232,40,1,5672,870,895.714,154,8.0,F#5,pp,8,144,78,8,,,,, +232,40,1,5672,870,896.165,,,,,,144,78,0,,,,, +233,0,0,5673,0,896.165,,,,,,,,,233,,,, +233,1,1,5674,0,896.165,25,32.0,D5,pp,8,144,74,8,,,,, +233,2,3,5675,0,896.165,,,,,,176,102,0,,,,, +233,1,1,5674,0,896.238,,,,,,144,74,0,,,,, +233,3,1,5676,25,896.238,26,32.0,D#6,pp,8,144,87,8,,,,, +233,3,1,5676,25,896.315,,,,,,144,87,0,,,,, +233,4,1,5677,51,896.315,51,16.0,D5,pp,8,144,74,8,,,,, +233,4,1,5677,51,896.464,,,,,,144,74,0,,,,, +233,5,1,5678,102,896.464,154,8.0,C3,pp,8,144,48,8,,,,, +233,5,1,5678,102,896.915,,,,,,144,48,0,,,,, +233,6,1,5679,256,896.915,,,,,,176,102,0,,,,, +233,7,3,5680,256,896.915,102,8.0,C1,ppp,5,144,24,5,,,,, +233,7,3,5680,256,897.214,,,,,,144,24,0,,,,, +233,8,3,5681,358,897.214,154,8.0,E3,ppp,5,144,52,5,,,,, +233,8,3,5681,358,897.665,,,,,,144,52,0,,,,, +233,9,1,5682,512,897.665,,,,,,176,102,0,,,,, +233,10,3,5683,512,897.665,25,32.0,A2,ppp,5,144,45,5,,,,, +233,10,3,5683,512,897.738,,,,,,144,45,0,,,,, +233,11,3,5684,537,897.738,26,32.0,G#2,ppp,5,144,44,5,,,,, +233,11,3,5684,537,897.815,,,,,,144,44,0,,,,, +233,12,3,5685,563,897.815,51,16.0,A2,ppp,5,144,45,5,,,,, +233,12,3,5685,563,897.964,,,,,,144,45,0,,,,, +233,13,3,5686,614,897.964,154,8.0,F#2,ppp,5,144,42,5,,,,, +233,13,3,5686,614,898.415,,,,,,144,42,0,,,,, +233,14,3,5687,768,898.415,,,,,,176,102,0,,,,, +234,0,0,5688,0,899.165,,,,,,,,,234,,,, +234,1,1,5689,0,899.165,,,,,,176,102,0,,,,, +234,2,3,5690,0,899.165,,,,,,176,102,0,,,,, +234,3,0,5691,768,901.415,,,,,,176,64,0,,,,,^ +234,4,3,5692,768,901.415,,,,,,176,102,0,,,,, +234,5,0,5693,768,901.415,,,,,,,,,,5980,,, +234,6,0,5694,1023,902.321,,,,,,,,,,,66,, +235,0,0,5695,0,902.324,,,,,,,,,235,,,, +235,2,1,5696,0,902.324,512,2.0,A#4,mp,14,144,70,14,,,,, +235,3,1,5697,0,902.324,512,2.0,A#6,f,20,144,94,20,,,,, +235,4,2,5698,0,902.324,,,,,,176,102,0,,,,, +235,5,3,5699,0,902.324,,,,,,176,102,0,,,,, +235,1,0,5700,0,902.324,,,,,,176,64,127,,,,,V +235,6,3,5701,256,903.233,768,2.0,A1,ppp,5,144,33,5,,,,, +235,7,0,5702,512,903.993,,,,,,176,64,0,,,,,^ +235,8,1,5703,512,904.143,512,2.0,D2,mp,14,144,38,14,,,,, +235,9,1,5704,512,904.143,512,2.0,E4,pp,8,144,64,8,,,,, +235,2,1,5696,0,904.143,,,,,,144,70,0,,,,, +235,3,1,5697,0,904.143,,,,,,144,94,0,,,,, +235,,,5705,512,904.293,,,,,,176,64,127,,,,,V +235,6,3,5701,256,905.961,,,,,,144,33,0,,,,, +235,8,1,5703,512,905.961,,,,,,144,38,0,,,,, +235,9,1,5704,512,905.961,,,,,,144,64,0,,,,, +235,10,1,5706,1024,905.961,,,,,,176,102,0,,,,, +235,11,3,5707,1024,905.961,,,,,,176,102,0,,,,, +235,12,1,5708,1408,907.324,128,8.0,C6,p,11,144,84,11,,,,, +235,13,1,5709,1408,907.324,128,8.0,G6,ppp,5,144,91,5,,,,, +235,13,1,5709,1408,907.779,,,,,,144,91,0,,,,, +236,0,0,5710,0,907.779,,,,,,,,,236,,,, +236,1,1,5711,0,907.779,128,8.0,F3,ppp,5,144,53,5,,,,, +236,2,1,5712,0,907.779,128,8.0,C6,,,,,,,,,, +236,3,4,5713,0,907.779,,,,,,176,102,0,,,,, +236,4,3,5714,0,907.779,,,,,,176,102,0,,,,, +236,5,2,5715,0,907.779,,,,,,176,102,0,,,,, +235,12,1,5708,1408,908.233,,,,,,144,84,0,,,,, +236,1,1,5711,0,908.233,,,,,,144,53,0,,,,, +236,6,1,5716,128,908.233,25,32.0,C#3,ppp,5,144,49,5,,,,, +236,7,3,5717,128,908.233,128,8.0,F3,ppp,5,144,53,5,,,,, +236,8,4,5718,128,908.233,128,8.0,A#1,ppp,5,144,34,5,,,,, +236,9,0,5719,153,908.263,,,,,,176,64,0,,,,,^ +236,6,1,5716,128,908.322,,,,,,144,49,0,,,,, +236,10,1,5720,153,908.322,26,32.0,B2,ppp,5,144,47,5,,,,, +236,10,1,5720,153,908.415,,,,,,144,47,0,,,,, +236,11,1,5721,179,908.415,25,32.0,C#3,ppp,5,144,49,5,,,,, +236,11,1,5721,179,908.503,,,,,,144,49,0,,,,, +236,13,1,5722,204,908.503,52,16.0,B2,ppp,5,144,47,5,,,,, +236,12,0,5723,204,908.563,,,,,,176,64,127,,,,,V +236,13,1,5722,204,908.688,,,,,,144,47,0,,,,, +236,14,3,5724,256,908.688,256,4.0,F3,,,,,,,,,, +236,15,4,5725,256,908.688,128,8.0,A#1,,,,,,,,,, +236,16,1,5726,256,908.688,25,32.0,C#3,ppp,5,144,49,5,,,,, +236,16,1,5726,256,908.777,,,,,,144,49,0,,,,, +236,17,1,5727,281,908.777,26,32.0,B2,ppp,5,144,47,5,,,,, +236,17,1,5727,281,908.869,,,,,,144,47,0,,,,, +236,18,1,5728,307,908.869,25,32.0,C#3,ppp,5,144,49,5,,,,, +236,19,0,5729,332,908.9,,,,,,176,64,0,,,,,^ +236,18,1,5728,307,908.958,,,,,,144,49,0,,,,, +236,20,1,5730,332,908.958,52,16.0,F7,ppp,5,144,101,5,,,,, +236,20,1,5730,332,909.143,,,,,,144,101,0,,,,, +236,22,4,5731,384,909.143,128,8.0,D4,pp,8,144,62,8,,,,, +236,23,1,5732,384,909.143,,,,,,176,102,0,,,,, +236,8,4,5718,128,909.143,,,,,,144,34,0,,,,, +236,21,0,5733,384,909.2,,,,,,176,64,127,,,,,V +236,24,1,5734,435,909.324,25,32.0,A4,ppp,5,144,69,5,,,,, +236,24,1,5734,435,909.412,,,,,,144,69,0,,,,, +236,25,1,5735,460,909.412,26,32.0,D3,ppp,5,144,50,5,,,,, +236,25,1,5735,460,909.505,,,,,,144,50,0,,,,, +236,26,1,5736,486,909.505,26,32.0,C#2,ppp,5,144,37,5,,,,, +236,26,1,5736,486,909.597,,,,,,144,37,0,,,,, +236,27,1,5737,512,909.597,,,,,,176,102,0,,,,, +236,28,2,5738,,909.597,,8.0,G#4,f,20,144,68,20,,,,g, +236,22,4,5731,384,909.597,,,,,,144,62,0,,,,, +236,7,3,5717,128,909.597,,,,,,144,53,0,,,,, +236,28,2,5738,,909.647,,,,,,144,68,0,,,,, +236,29,2,5739,512,909.672,341,2.0,C6,f,20,144,84,20,,,,, +236,30,2,5740,512,909.672,512,2.0,E6,f,20,144,88,20,,,,, +236,31,2,5741,512,909.672,512,2.0,C#7,p,11,144,97,11,,,,, +236,32,3,5742,512,909.672,25,32.0,D3,pp,8,144,50,8,,,,, +236,33,4,5743,512,909.672,,,,,,176,102,0,,,,, +236,32,3,5742,512,909.761,,,,,,144,50,0,,,,, +236,34,3,5744,537,909.761,26,32.0,C#2,pp,8,144,37,8,,,,, +236,34,3,5744,537,909.853,,,,,,144,37,0,,,,, +236,35,3,5745,563,909.853,25,32.0,D3,pp,8,144,50,8,,,,, +236,35,3,5745,563,909.942,,,,,,144,50,0,,,,, +236,36,3,5746,588,909.942,52,16.0,C#2,pp,8,144,37,8,,,,, +236,36,3,5746,588,910.127,,,,,,144,37,0,,,,, +236,37,3,5747,640,910.127,25,32.0,D3,pp,8,144,50,8,,,,, +236,37,3,5747,640,910.215,,,,,,144,50,0,,,,, +236,38,3,5748,665,910.215,26,32.0,C#2,pp,8,144,37,8,,,,, +236,38,3,5748,665,910.308,,,,,,144,37,0,,,,, +236,39,3,5749,691,910.308,25,32.0,D3,pp,8,144,50,8,,,,, +236,39,3,5749,691,910.396,,,,,,144,50,0,,,,, +236,40,3,5750,716,910.396,52,16.0,F6,pp,8,144,89,8,,,,, +236,41,0,5751,739,910.424,,,,,,176,64,0,,,,,^ +236,40,3,5750,716,910.581,,,,,,144,89,0,,,,, +236,42,1,5752,768,910.581,128,8.0,C1,mf,17,144,24,17,,,,, +236,43,3,5753,768,910.581,25,32.0,B1,ppp,5,144,35,5,,,,, +236,44,4,5754,768,910.581,,,,,,176,102,0,,,,, +236,43,3,5753,768,910.67,,,,,,144,35,0,,,,, +236,46,3,5755,793,910.67,26,32.0,D2,ppp,5,144,38,5,,,,, +236,45,0,5756,793,910.724,,,,,,176,64,127,,,,,V +236,46,3,5755,793,910.762,,,,,,144,38,0,,,,, +236,47,3,5757,819,910.762,25,32.0,B1,ppp,5,144,35,5,,,,, +236,47,3,5757,819,910.851,,,,,,144,35,0,,,,, +236,48,3,5758,844,910.851,52,16.0,D2,ppp,5,144,38,5,,,,, +236,49,2,5759,853,910.883,341,2.0,E4,p,11,144,64,11,,,,, +236,29,2,5739,512,910.883,,,,,,144,84,0,,,,, +236,48,3,5758,844,911.036,,,,,,144,38,0,,,,, +236,50,1,5760,896,911.036,,,,,,176,102,0,,,,, +236,51,3,5761,896,911.036,32,32.0,B1,ppp,5,144,35,5,,,,, +236,42,1,5752,768,911.036,,,,,,144,24,0,,,,, +236,51,3,5761,896,911.149,,,,,,144,35,0,,,,, +236,52,3,5762,928,911.149,32,32.0,D2,ppp,5,144,38,5,,,,, +236,52,3,5762,928,911.263,,,,,,144,38,0,,,,, +236,53,3,5763,960,911.263,32,32.0,A2,ppp,5,144,45,5,,,,, +236,54,0,5764,992,911.283,,,,,,176,64,0,,,,,^ +236,53,3,5763,960,911.377,,,,,,144,45,0,,,,, +236,55,3,5765,992,911.377,32,32.0,F5,ppp,5,144,77,5,,,,, +236,55,3,5765,992,911.49,,,,,,144,77,0,,,,, +236,57,1,5766,1024,911.49,512,2.0,F#4,f,20,144,66,20,,,,, +236,58,1,5767,1024,911.49,512,2.0,F#5,mp,14,144,78,14,,,,, +236,59,3,5768,1024,911.49,512,2.0,C#2,ppp,5,144,37,5,,,,, +236,30,2,5740,512,911.49,,,,,,144,88,0,,,,, +236,31,2,5741,512,911.49,,,,,,144,97,0,,,,, +236,56,0,5769,1024,911.583,,,,,,176,64,127,,,,,V +236,49,2,5759,853,912.094,,,,,,144,64,0,,,,, +236,60,2,5770,1194,912.094,33,16.0,F#7,p,11,144,102,11,,,,, +236,60,2,5770,1194,912.211,,,,,,144,102,0,,,,, +236,61,2,5771,1227,912.211,53,16.0,A4,p+,12,144,69,12,,,,, +236,61,2,5771,1227,912.399,,,,,,144,69,0,,,,, +236,62,2,5772,1280,912.399,33,16.0,F#6,mp,14,144,90,14,,,,, +236,62,2,5772,1280,912.517,,,,,,144,90,0,,,,, +236,63,2,5773,1313,912.517,52,16.0,G#2,mp+,15,144,44,15,,,,, +236,63,2,5773,1313,912.701,,,,,,144,44,0,,,,, +236,64,2,5774,1365,912.701,33,16.0,F#6,mf,17,144,90,17,,,,, +236,64,2,5774,1365,912.818,,,,,,144,90,0,,,,, +236,65,2,5775,1398,912.818,52,16.0,A4,mf+,18,144,69,18,,,,, +236,65,2,5775,1398,913.003,,,,,,144,69,0,,,,, +236,66,2,5776,1450,913.003,16,32.0,G#2,f,20,144,44,20,,,,, +236,66,2,5776,1450,913.06,,,,,,144,44,0,,,,, +236,67,2,5777,1466,913.06,35,16.0,A4,f,20,144,69,20,,,,, +236,67,2,5777,1466,913.184,,,,,,144,69,0,,,,, +236,68,2,5778,1501,913.184,17,32.0,F#6,f+,21,144,90,21,,,,, +236,68,2,5778,1501,913.244,,,,,,144,90,0,,,,, +236,69,2,5779,1518,913.244,18,32.0,G#1,ff,22,144,32,22,,,,, +236,57,1,5766,1024,913.308,,,,,,144,66,0,,,,, +236,58,1,5767,1024,913.308,,,,,,144,78,0,,,,, +236,59,3,5768,1024,913.308,,,,,,144,37,0,,,,, +236,69,2,5779,1518,913.308,,,,,,144,32,0,,,,, +237,0,0,5780,0,913.308,,,,,,,,,237,,,, +237,1,1,5781,0,913.308,,,,,,176,102,0,,,,, +237,2,2,5782,0,913.308,,,,,,176,102,0,,,,, +237,3,3,5783,0,913.308,341,2.0,A3,ff,22,144,57,22,,,,, +237,4,4,5784,0,913.308,,,,,,176,102,0,,,,, +237,3,3,5783,0,914.519,,,,,,144,57,0,,,,, +237,5,3,5785,341,914.519,171,4.0,C3,mf-,16,144,48,16,,,,, +237,6,0,5786,426,914.821,,,,,,176,64,0,,,,,^ +237,7,1,5787,512,915.127,153,8.0,A5,p,11,144,81,11,,,,, +237,8,2,5788,512,915.127,153,8.0,G#4,ff,22,144,68,22,,,,, +237,9,2,5789,512,915.127,128,8.0,D#5,f,20,144,75,20,,,,, +237,11,3,5790,512,915.127,512,2.0,C3,,,,,,,,,, +237,12,4,5791,512,915.127,384,4.0,E1,mf,17,144,28,17,,,,, +237,13,4,5792,512,915.127,256,4.0,B1,pp,8,144,35,8,,,,, +237,10,0,5793,512,915.127,,,,,,176,64,127,,,,,V +237,9,2,5789,512,915.581,,,,,,144,75,0,,,,, +237,7,1,5787,512,915.67,,,,,,144,81,0,,,,, +237,8,2,5788,512,915.67,,,,,,144,68,0,,,,, +237,14,1,5794,665,915.67,103,8.0,A5,p,11,144,81,11,,,,, +237,15,2,5795,665,915.67,103,8.0,G#4,mf,17,144,68,17,,,,, +237,16,2,5796,665,915.67,128,8.0,D#5,mf,17,144,75,17,,,,, +237,13,4,5792,512,916.036,,,,,,144,35,0,,,,, +237,17,1,5797,768,916.036,128,8.0,A5,,,,,,,,,, +237,18,2,5798,768,916.036,128,8.0,G#4,,,,,,,,,, +237,19,2,5799,768,916.036,128,8.0,D#5,,,,,,,,,, +237,23,0,5800,896,916.34,,,,,,176,64,0,,,,,^ +237,12,4,5791,512,916.49,,,,,,144,28,0,,,,, +237,14,1,5794,665,916.49,,,,,,144,81,0,,,,, +237,15,2,5795,665,916.49,,,,,,144,68,0,,,,, +237,20,1,5801,896,916.49,128,8.0,A5,p,11,144,81,11,,,,, +237,21,2,5802,896,916.49,128,8.0,G#4,p,11,144,68,11,,,,, +237,22,2,5803,896,916.49,128,8.0,D#5,p,11,144,75,11,,,,, +237,24,4,5804,896,916.49,128,8.0,E1,p,11,144,28,11,,,,, +237,16,2,5796,665,916.579,,,,,,144,75,0,,,,, +237,23,0,5805,896,916.64,,,,,,176,64,127,,,,,V +237,5,3,5785,341,916.945,,,,,,144,48,0,,,,, +237,25,1,5806,1024,916.945,102,8.0,A5,,,,,,,,,, +237,26,2,5807,1024,916.945,102,8.0,G#4,,,,,,,,,, +237,27,2,5808,1024,916.945,128,8.0,D#5,,,,,,,,,, +237,28,3,5809,1024,916.945,128,8.0,G#3,ppp,5,144,56,5,,,,, +237,29,4,5810,1024,916.945,102,8.0,E1,,,,,,,,,, +237,30,0,5811,1126,917.157,,,,,,176,64,0,,,,,^ +237,20,1,5801,896,917.307,,,,,,144,81,0,,,,, +237,21,2,5802,896,917.307,,,,,,144,68,0,,,,, +237,24,4,5804,896,917.307,,,,,,144,28,0,,,,, +237,31,1,5812,1126,917.307,154,8.0,A5,ppp,5,144,81,5,,,,, +237,32,2,5813,1126,917.307,154,8.0,G#4,ppp,5,144,68,5,,,,, +237,33,2,5814,1126,917.307,128,8.0,D#5,ppp,5,144,75,5,,,,, +237,34,4,5815,1126,917.307,154,8.0,E1,ppp,5,144,28,5,,,,, +237,22,2,5803,896,917.399,,,,,,144,75,0,,,,, +237,35,3,5816,1152,917.399,25,32.0,F#6,ppp,5,144,90,5,,,,, +237,28,3,5809,1024,917.399,,,,,,144,56,0,,,,, +237,30,0,5817,1126,917.457,,,,,,176,64,127,,,,,V +237,35,3,5816,1152,917.488,,,,,,144,90,0,,,,, +237,36,3,5818,1177,917.488,26,32.0,C4,ppp,5,144,60,5,,,,, +237,36,3,5818,1177,917.58,,,,,,144,60,0,,,,, +237,37,3,5819,1203,917.58,25,32.0,A4,ppp,5,144,69,5,,,,, +237,37,3,5819,1203,917.669,,,,,,144,69,0,,,,, +237,38,3,5820,1228,917.669,52,16.0,C4,ppp,5,144,60,5,,,,, +237,38,3,5820,1228,917.854,,,,,,144,60,0,,,,, +237,39,1,5821,1280,917.854,256,4.0,A5,,,,,,,,,, +237,40,2,5822,1280,917.854,256,4.0,G#4,,,,,,,,,, +237,41,2,5823,1280,917.854,256,4.0,D#5,,,,,,,,,, +237,42,4,5824,1280,917.854,256,4.0,A3,p,11,144,57,11,,,,, +237,43,4,5825,1280,917.854,256,4.0,G#4,p,11,144,68,11,,,,, +237,44,3,5826,1280,917.854,25,32.0,A4,ppp,5,144,69,5,,,,, +237,34,4,5815,1126,917.854,,,,,,144,28,0,,,,, +237,44,3,5826,1280,917.943,,,,,,144,69,0,,,,, +237,45,3,5827,1305,917.943,26,32.0,C4,ppp,5,144,60,5,,,,, +237,45,3,5827,1305,918.035,,,,,,144,60,0,,,,, +237,46,3,5828,1331,918.035,25,32.0,A4,p,11,144,69,11,,,,, +237,46,3,5828,1331,918.124,,,,,,144,69,0,,,,, +237,47,3,5829,1356,918.124,52,16.0,C4,p,11,144,60,11,,,,, +237,47,3,5829,1356,918.308,,,,,,144,60,0,,,,, +237,48,3,5830,1408,918.308,25,32.0,A4,p+,12,144,69,12,,,,, +237,48,3,5830,1408,918.397,,,,,,144,69,0,,,,, +237,49,3,5831,1433,918.397,26,32.0,C4,p+,12,144,60,12,,,,, +237,49,3,5831,1433,918.49,,,,,,144,60,0,,,,, +237,50,3,5832,1459,918.49,25,32.0,A4,p+,12,144,69,12,,,,, +237,50,3,5832,1459,918.578,,,,,,144,69,0,,,,, +237,51,3,5833,1484,918.578,52,16.0,E2,p+,12,144,40,12,,,,, +237,51,3,5833,1484,918.763,,,,,,144,40,0,,,,, +238,0,0,5834,0,918.763,,,,,,,,,238,,,, +238,1,1,5835,0,918.763,512,2.0,A5,,,,,,,,,, +238,2,2,5836,0,918.763,512,2.0,G#4,,,,,,,,,, +238,3,2,5837,0,918.763,512,2.0,D#5,,,,,,,,,, +238,4,3,5838,0,918.763,25,32.0,C4,mp-,13,144,60,13,,,,, +238,5,4,5839,0,918.763,512,2.0,D3,mp-,13,144,50,13,,,,, +238,6,4,5840,0,918.763,512,2.0,A3,,,,,,,,,, +238,7,4,5841,0,918.763,512,2.0,G#4,,,,,,,,,, +238,4,3,5838,0,918.852,,,,,,144,60,0,,,,, +238,8,3,5842,25,918.852,26,32.0,A4,mp-,13,144,69,13,,,,, +238,8,3,5842,25,918.944,,,,,,144,69,0,,,,, +238,9,3,5843,51,918.944,25,32.0,E2,mp-,13,144,40,13,,,,, +238,9,3,5843,51,919.033,,,,,,144,40,0,,,,, +238,10,3,5844,76,919.033,52,16.0,F#5,mp-,13,144,78,13,,,,, +238,10,3,5844,76,919.218,,,,,,144,78,0,,,,, +238,11,3,5845,128,919.218,51,16.0,A4,mp,14,144,69,14,,,,, +238,11,3,5845,128,919.399,,,,,,144,69,0,,,,, +238,12,3,5846,179,919.399,77,16.0,C4,mp,14,144,60,14,,,,, +238,12,3,5846,179,919.672,,,,,,144,60,0,,,,, +238,13,3,5847,256,919.672,51,16.0,F#5,mp+,15,144,78,15,,,,, +238,13,3,5847,256,919.853,,,,,,144,78,0,,,,, +238,14,3,5848,307,919.853,77,16.0,G#2,mp+,15,144,44,15,,,,, +238,14,3,5848,307,920.127,,,,,,144,44,0,,,,, +238,15,3,5849,384,920.127,128,8.0,B2,pp,8,144,47,8,,,,, +238,16,3,5850,384,920.127,128,8.0,C3,mp,14,144,48,14,,,,, +237,33,2,5814,1126,920.489,,,,,,144,75,0,,,,, +238,5,4,5839,0,920.581,,,,,,144,50,0,,,,, +238,17,0,5851,512,920.581,,,,,,176,64,0,,,,,^ +238,18,1,5852,512,920.581,,,,,,176,102,0,,,,, +238,19,2,5853,512,920.581,,,,,,176,102,0,,,,, +238,20,3,5854,512,920.581,512,2.0,A#1,pp,8,144,34,8,,,,, +238,21,3,5855,512,920.581,512,2.0,B2,,,,,,,,,, +238,22,3,5856,512,920.581,512,2.0,C3,,,,,,,,,, +238,23,4,5857,512,920.581,,,,,,176,102,0,,,,, +237,42,4,5824,1280,920.581,,,,,,144,57,0,,,,, +237,43,4,5825,1280,920.581,,,,,,144,68,0,,,,, +237,31,1,5812,1126,920.581,,,,,,144,81,0,,,,, +237,32,2,5813,1126,920.581,,,,,,144,68,0,,,,, +238,25,1,5858,640,921.036,,,,,,176,102,0,,,,, +238,24,0,5859,640,921.036,,,,,,176,64,127,,,,,V +238,26,1,5860,716,921.306,26,32.0,B2,pp,8,144,47,8,,,,, +238,26,1,5860,716,921.398,,,,,,144,47,0,,,,, +238,27,1,5861,742,921.398,26,32.0,D2,pp,8,144,38,8,,,,, +238,27,1,5861,742,921.49,,,,,,144,38,0,,,,, +238,28,1,5862,768,921.49,25,32.0,B2,pp-,7,144,47,7,,,,, +238,28,1,5862,768,921.579,,,,,,144,47,0,,,,, +238,29,1,5863,793,921.579,26,32.0,D2,pp-,7,144,38,7,,,,, +238,29,1,5863,793,921.671,,,,,,144,38,0,,,,, +238,30,1,5864,819,921.671,25,32.0,B2,ppp+,6,144,47,6,,,,, +238,30,1,5864,819,921.76,,,,,,144,47,0,,,,, +238,31,1,5865,844,921.76,52,16.0,D2,ppp+,6,144,38,6,,,,, +238,31,1,5865,844,921.945,,,,,,144,38,0,,,,, +238,32,1,5866,896,921.945,51,16.0,B2,ppp,5,144,47,5,,,,, +238,32,1,5866,896,922.126,,,,,,144,47,0,,,,, +238,33,1,5867,947,922.126,77,16.0,D2,ppp,5,144,38,5,,,,, +238,20,3,5854,512,922.399,,,,,,144,34,0,,,,, +238,33,1,5867,947,922.399,,,,,,144,38,0,,,,, +238,34,0,5868,1024,922.399,,,,,,176,64,0,,,,,^ +238,35,1,5869,1024,922.399,,,,,,176,102,0,,,,, +238,36,3,5870,1024,922.399,,,,,,176,102,0,,,,, +238,37,4,5871,1024,922.399,128,8.0,A#1,pp,8,144,34,8,,,,, +238,38,4,5872,1024,922.399,128,8.0,D2,pp,8,144,38,8,,,,, +238,39,4,5873,1024,922.399,128,8.0,B2,pp,8,144,47,8,,,,, +238,40,4,5874,1024,922.399,128,8.0,C3,pp,8,144,48,8,,,,, +238,41,0,5875,1024,922.399,,,,,,,,,,5981,,, +238,15,3,5849,384,922.474,,,,,,144,47,0,,,,, +238,16,3,5850,384,922.474,,,,,,144,48,0,,,,, +238,37,4,5871,1024,922.854,,,,,,144,34,0,,,,, +238,38,4,5872,1024,922.854,,,,,,144,38,0,,,,, +238,39,4,5873,1024,922.854,,,,,,144,47,0,,,,, +238,40,4,5874,1024,922.854,,,,,,144,48,0,,,,, +238,42,1,5876,1152,922.854,384,4.0,C6,ppp,5,144,84,5,,,,, +238,43,1,5877,1152,922.854,256,4.0,A#6,ppp,5,144,94,5,,,,, +238,44,4,5878,1152,922.854,,,,,,176,102,0,,,,, +238,45,3,5879,1280,923.308,25,32.0,C3,pp,8,144,48,8,,,,, +238,46,4,5880,1280,923.308,,,,,,176,102,0,,,,, +238,47,3,5881,1305,923.397,26,32.0,A#1,pp,8,144,34,8,,,,, +238,48,3,5882,1305,923.397,32,32.0,C3,,,,,,,,,, +238,49,3,5883,1331,923.49,25,32.0,A#1,,,,,,,,,, +238,50,3,5884,1331,923.49,32,32.0,B2,pp,8,144,47,8,,,,, +238,51,3,5885,1331,923.49,32,32.0,C3,,,,,,,,,, +238,52,3,5886,1356,923.578,26,32.0,A#1,,,,,,,,,, +238,53,3,5887,1356,923.578,32,32.0,D2,pp,8,144,38,8,,,,, +238,54,3,5888,1356,923.578,32,32.0,B2,,,,,,,,,, +238,55,3,5889,1356,923.578,32,32.0,C3,,,,,,,,,, +238,56,3,5890,1382,923.671,26,32.0,A#1,,,,,,,,,, +238,57,3,5891,1382,923.671,32,32.0,D2,,,,,,,,,, +238,58,3,5892,1382,923.671,32,32.0,F#2,pp,8,144,42,8,,,,, +238,59,3,5893,1382,923.671,32,32.0,B2,,,,,,,,,, +238,60,3,5894,1382,923.671,32,32.0,C3,,,,,,,,,, +238,61,3,5895,1408,923.763,128,8.0,A#1,,,,,,,,,, +238,62,3,5896,1408,923.763,128,8.0,D2,,,,,,,,,, +238,63,3,5897,1408,923.763,128,8.0,F#2,,,,,,,,,, +238,64,3,5898,1408,923.763,128,8.0,B2,,,,,,,,,, +238,65,3,5899,1408,923.763,128,8.0,C3,,,,,,,,,, +238,43,1,5877,1152,923.763,,,,,,144,94,0,,,,, +239,0,0,5900,0,924.218,,,,,,,,,239,,,, +239,1,1,5901,0,924.218,,,,,,176,102,0,,,,, +239,2,3,5902,0,924.218,256,4.0,A#1,,,,,,,,,, +239,3,3,5903,0,924.218,256,4.0,D2,,,,,,,,,, +239,4,3,5904,0,924.218,256,4.0,F#2,,,,,,,,,, +239,5,3,5905,0,924.218,256,4.0,B2,,,,,,,,,, +239,6,3,5906,0,924.218,256,4.0,C3,,,,,,,,,, +239,7,4,5907,0,924.218,,,,,,176,102,0,,,,, +238,42,1,5876,1152,924.218,,,,,,144,84,0,,,,, +239,8,4,5908,153,924.761,103,8.0,C1,pp,8,144,24,8,,,,, +239,9,3,5909,256,925.127,153,8.0,A#1,pp,8,144,34,8,,,,, +239,10,3,5910,256,925.127,128,8.0,D2,pp,8,144,38,8,,,,, +239,11,3,5911,256,925.127,128,8.0,F#2,pp,8,144,42,8,,,,, +239,12,3,5912,256,925.127,128,8.0,B2,pp,8,144,47,8,,,,, +239,13,3,5913,256,925.127,128,8.0,C3,pp,8,144,48,8,,,,, +239,14,4,5914,256,925.127,256,4.0,C1,,,,,,,,,, +238,47,3,5881,1305,925.127,,,,,,144,34,0,,,,, +238,58,3,5892,1382,925.148,,,,,,144,42,0,,,,, +238,53,3,5887,1356,925.169,,,,,,144,38,0,,,,, +238,50,3,5884,1331,925.194,,,,,,144,47,0,,,,, +238,45,3,5879,1280,925.215,,,,,,144,48,0,,,,, +239,10,3,5910,256,925.581,,,,,,144,38,0,,,,, +239,11,3,5911,256,925.581,,,,,,144,42,0,,,,, +239,12,3,5912,256,925.581,,,,,,144,47,0,,,,, +239,13,3,5913,256,925.581,,,,,,144,48,0,,,,, +239,9,3,5909,256,925.67,,,,,,144,34,0,,,,, +239,15,3,5915,409,925.67,51,16.0,A#1,pp,8,144,34,8,,,,, +239,16,3,5916,409,925.67,64,16.0,D2,pp,8,144,38,8,,,,, +239,17,3,5917,409,925.67,64,16.0,F#2,pp,8,144,42,8,,,,, +239,18,3,5918,409,925.67,64,16.0,B2,pp,8,144,47,8,,,,, +239,19,3,5919,409,925.67,64,16.0,C3,pp,8,144,48,8,,,,, +239,15,3,5915,409,925.851,,,,,,144,34,0,,,,, +239,20,3,5920,460,925.851,,,,,,176,102,0,,,,, +239,16,3,5916,409,925.897,,,,,,144,38,0,,,,, +239,17,3,5917,409,925.897,,,,,,144,42,0,,,,, +239,18,3,5918,409,925.897,,,,,,144,47,0,,,,, +239,19,3,5919,409,925.897,,,,,,144,48,0,,,,, +239,21,3,5921,512,926.036,512,2.0,C#1,ppp,5,144,25,5,,,,, +239,22,3,5922,512,926.036,512,2.0,G#2,ppp,5,144,44,5,,,,, +239,23,4,5923,512,926.036,256,4.0,C1,,,,,,,,,, +239,24,4,5924,768,926.945,153,8.0,C1,,,,,,,,,, +239,8,4,5908,153,927.488,,,,,,144,24,0,,,,, +239,25,4,5925,921,927.488,,,,,,176,102,0,,,,, +239,27,4,5926,947,927.58,25,32.0,A#2,ppp,5,144,46,5,,,,, +239,26,0,5927,947,927.58,,,,,,176,64,127,,,,,V +239,27,4,5926,947,927.669,,,,,,144,46,0,,,,, +239,28,4,5928,972,927.669,26,32.0,C#2,ppp,5,144,37,5,,,,, +239,28,4,5928,972,927.762,,,,,,144,37,0,,,,, +239,29,4,5929,998,927.762,26,32.0,A#2,ppp,5,144,46,5,,,,, +239,29,4,5929,998,927.854,,,,,,144,46,0,,,,, +239,30,1,5930,,927.854,,8.0,E3,ppp,5,144,52,5,,,,g, +239,21,3,5921,512,927.854,,,,,,144,25,0,,,,, +239,22,3,5922,512,927.854,,,,,,144,44,0,,,,, +239,30,1,5930,,927.904,,,,,,144,52,0,,,,, +239,31,1,5931,1024,927.929,512,2.0,A#3,ppp,5,144,58,5,,,,, +239,32,3,5932,1024,927.929,,,,,,176,102,0,,,,, +239,33,4,5933,1024,927.929,51,16.0,C#2,ppp,5,144,37,5,,,,, +239,33,4,5933,1024,928.11,,,,,,144,37,0,,,,, +239,34,4,5934,1075,928.11,25,32.0,A#2,ppp,5,144,46,5,,,,, +239,34,4,5934,1075,928.199,,,,,,144,46,0,,,,, +239,35,4,5935,1100,928.199,26,32.0,C#2,ppp,5,144,37,5,,,,, +239,35,4,5935,1100,928.291,,,,,,144,37,0,,,,, +239,36,4,5936,1126,928.291,26,32.0,A#2,ppp,5,144,46,5,,,,, +239,36,4,5936,1126,928.383,,,,,,144,46,0,,,,, +239,37,4,5937,1152,928.383,25,32.0,C#2,ppp,5,144,37,5,,,,, +239,37,4,5937,1152,928.472,,,,,,144,37,0,,,,, +239,38,4,5938,1177,928.472,26,32.0,A#2,ppp,5,144,46,5,,,,, +239,38,4,5938,1177,928.565,,,,,,144,46,0,,,,, +239,39,4,5939,1203,928.565,25,32.0,E5,ppp,5,144,76,5,,,,, +239,39,4,5939,1203,928.653,,,,,,144,76,0,,,,, +239,40,4,5940,1228,928.653,26,32.0,A#2,ppp,5,144,46,5,,,,, +239,40,4,5940,1228,928.746,,,,,,144,46,0,,,,, +239,41,4,5941,1254,928.746,26,32.0,C#2,ppp,5,144,37,5,,,,, +239,41,4,5941,1254,928.838,,,,,,144,37,0,,,,, +239,42,3,5942,1280,928.838,,,,,,176,102,0,,,,, +239,43,4,5943,1280,928.838,51,16.0,E5,ppp,5,144,76,5,,,,, +239,43,4,5943,1280,929.019,,,,,,144,76,0,,,,, +239,44,4,5944,1331,929.019,77,16.0,A#2,ppp,5,144,46,5,,,,, +239,44,4,5944,1331,929.293,,,,,,144,46,0,,,,, +239,45,4,5945,1408,929.293,51,16.0,E5,ppp,5,144,76,5,,,,, +239,45,4,5945,1408,929.474,,,,,,144,76,0,,,,, +239,46,4,5946,1459,929.474,77,16.0,A#2,ppp,5,144,46,5,,,,, +239,46,4,5946,1459,929.747,,,,,,144,46,0,,,,, +240,0,0,5947,0,929.747,,,,,,,,,240,,,, +240,1,1,5948,0,929.747,,,,,,176,102,0,,,,, +240,2,2,5949,0,929.747,51,16.0,C#2,ppp,5,144,37,5,,,,, +240,3,3,5950,0,929.747,,,,,,176,102,0,,,,, +240,4,4,5951,0,929.747,,,,,,176,102,0,,,,, +239,31,1,5931,1024,929.747,,,,,,144,58,0,,,,, +240,2,2,5949,0,929.928,,,,,,144,37,0,,,,, +240,5,2,5952,51,929.928,102,8.0,E5,ppp,5,144,76,5,,,,, +240,5,2,5952,51,930.29,,,,,,144,76,0,,,,, +240,6,2,5953,153,930.29,103,8.0,A#2,ppp,5,144,46,5,,,,, +240,7,4,5954,192,930.429,32,32.0,F#1,p,11,144,30,11,,,,, +240,7,4,5954,192,930.543,,,,,,144,30,0,,,,, +240,8,4,5955,224,930.543,32,32.0,G2,p-,10,144,43,10,,,,, +240,6,2,5953,153,930.656,,,,,,144,46,0,,,,, +240,8,4,5955,224,930.656,,,,,,144,43,0,,,,, +240,9,1,5956,256,930.656,,,,,,176,102,0,,,,, +240,10,2,5957,256,930.656,768,2.0,D6,pp,8,144,86,8,,,,, +240,11,4,5958,256,930.656,153,8.0,G#3,ppp,5,144,56,5,,,,, +240,11,4,5958,256,931.199,,,,,,144,56,0,,,,, +240,12,4,5959,409,931.199,103,8.0,C6,ppp,5,144,84,5,,,,, +240,13,0,5960,457,931.37,,,,,,176,64,0,,,,,^ +240,16,4,5961,,931.49,,8.0,F#2,ppp,5,144,42,5,,,,g, +240,16,4,5961,,931.54,,,,,,144,42,0,,,,, +240,12,4,5959,409,931.565,,,,,,144,84,0,,,,, +240,14,1,5962,512,931.565,,,,,,176,102,0,,,,, +240,15,3,5963,512,931.565,,,,,,176,102,0,,,,, +240,17,4,5964,512,931.565,1024,1.0,C1,ppp,5,144,24,5,,,,, +240,18,1,5965,640,932.02,25,32.0,E7,pp,8,144,100,8,,,,, +240,18,1,5965,640,932.109,,,,,,144,100,0,,,,, +240,19,1,5966,665,932.109,26,32.0,C#5,pp,8,144,73,8,,,,, +240,19,1,5966,665,932.201,,,,,,144,73,0,,,,, +240,20,1,5967,691,932.201,25,32.0,G#6,pp+,9,144,92,9,,,,, +240,20,1,5967,691,932.29,,,,,,144,92,0,,,,, +240,21,1,5968,716,932.29,26,32.0,A#5,pp+,9,144,82,9,,,,, +240,21,1,5968,716,932.382,,,,,,144,82,0,,,,, +240,22,1,5969,742,932.382,26,32.0,C7,pp+,9,144,96,9,,,,, +240,22,1,5969,742,932.474,,,,,,144,96,0,,,,, +240,24,3,5970,768,932.474,,,,,,176,102,0,,,,, +240,25,1,5971,768,932.474,25,32.0,E7,p-,10,144,100,10,,,,, +240,23,0,5972,768,932.474,,,,,,176,64,127,,,,,V +240,25,1,5971,768,932.563,,,,,,144,100,0,,,,, +240,26,1,5973,793,932.563,26,32.0,C#4,p-,10,144,61,10,,,,, +240,26,1,5973,793,932.655,,,,,,144,61,0,,,,, +240,27,1,5974,819,932.655,25,32.0,G#5,p-,10,144,80,10,,,,, +240,27,1,5974,819,932.744,,,,,,144,80,0,,,,, +240,28,1,5975,844,932.744,26,32.0,A#4,p,11,144,70,11,,,,, +240,28,1,5975,844,932.837,,,,,,144,70,0,,,,, +240,29,1,5976,870,932.837,26,32.0,C7,p,11,144,96,11,,,,, +240,29,1,5976,870,932.929,,,,,,144,96,0,,,,, +240,30,1,5977,896,932.929,,,,,,176,102,0,,,,, +240,31,3,5978,960,933.156,32,32.0,F#1,p,11,144,30,11,,,,, +240,31,3,5978,960,933.27,,,,,,144,30,0,,,,, +240,32,3,5979,992,933.27,32,32.0,G2,p,11,144,43,11,,,,, +240,32,3,5979,992,933.383,,,,,,144,43,0,,,,, +240,33,1,5980,1024,933.383,21,32.0,C#4,p,11,144,61,11,,,,, +240,34,2,5981,1024,933.383,256,4.0,D5,pp,8,144,74,8,,,,, +240,35,3,5982,1024,933.383,,,,,,176,102,0,,,,, +240,10,2,5957,256,933.383,,,,,,144,86,0,,,,, +240,33,1,5980,1024,933.458,,,,,,144,61,0,,,,, +240,36,1,5983,1045,933.458,21,32.0,G#5,p,11,144,80,11,,,,, +240,36,1,5983,1045,933.533,,,,,,144,80,0,,,,, +240,37,1,5984,1066,933.533,22,32.0,A#4,p+,12,144,70,12,,,,, +240,37,1,5984,1066,933.611,,,,,,144,70,0,,,,, +240,38,1,5985,1088,933.611,21,32.0,G#5,p+,12,144,80,12,,,,, +240,38,1,5985,1088,933.685,,,,,,144,80,0,,,,, +240,39,1,5986,1109,933.685,21,32.0,A#4,p+,12,144,70,12,,,,, +240,39,1,5986,1109,933.76,,,,,,144,70,0,,,,, +240,40,1,5987,1130,933.76,22,32.0,G#5,p+,12,144,80,12,,,,, +240,40,1,5987,1130,933.838,,,,,,144,80,0,,,,, +240,41,1,5988,1152,933.838,21,32.0,A#4,mp-,13,144,70,13,,,,, +240,41,1,5988,1152,933.913,,,,,,144,70,0,,,,, +240,42,1,5989,1173,933.913,21,32.0,G#5,mp-,13,144,80,13,,,,, +240,43,0,5990,1177,933.927,,,,,,176,64,0,,,,,^ +240,42,1,5989,1173,933.987,,,,,,144,80,0,,,,, +240,44,1,5991,1194,933.987,32,32.0,A#4,mp-,13,144,70,13,,,,, +240,44,1,5991,1194,934.101,,,,,,144,70,0,,,,, +240,45,1,5992,1226,934.101,32,32.0,G#5,mp,14,144,80,14,,,,, +240,45,1,5992,1226,934.214,,,,,,144,80,0,,,,, +240,46,1,5993,1258,934.214,22,32.0,C6,mp,14,144,84,14,,,,, +240,34,2,5981,1024,934.293,,,,,,144,74,0,,,,, +240,46,1,5993,1258,934.293,,,,,,144,84,0,,,,, +240,47,1,5994,1280,934.293,,,,,,176,102,0,,,,, +240,48,2,5995,1280,934.293,,,,,,176,102,0,,,,, +240,49,3,5996,1280,934.293,,,,,,176,102,0,,,,, +240,50,2,5997,1344,934.52,64,16.0,D5,pp,8,144,74,8,,,,, +240,51,3,5998,1344,934.52,64,16.0,F#1,pp,8,144,30,8,,,,, +240,52,3,5999,1344,934.52,64,16.0,G2,pp,8,144,43,8,,,,, +240,50,2,5997,1344,934.747,,,,,,144,74,0,,,,, +240,51,3,5998,1344,934.747,,,,,,144,30,0,,,,, +240,52,3,5999,1344,934.747,,,,,,144,43,0,,,,, +240,54,2,6000,1408,934.747,,,,,,176,102,0,,,,, +240,55,3,6001,1408,934.747,,,,,,176,102,0,,,,, +240,53,0,6002,1408,934.747,,,,,,176,64,127,,,,,V +240,56,3,6003,1472,934.974,21,32.0,A#2,pp,8,144,46,8,,,,, +240,56,3,6003,1472,935.049,,,,,,144,46,0,,,,, +240,57,3,6004,1493,935.049,21,32.0,F#2,pp,8,144,42,8,,,,, +240,57,3,6004,1493,935.123,,,,,,144,42,0,,,,, +240,58,3,6005,1514,935.123,22,32.0,A#2,pp,8,144,46,8,,,,, +240,58,3,6005,1514,935.202,,,,,,144,46,0,,,,, +241,0,0,6006,0,935.202,,,,,,,,,241,,,, +241,1,1,6007,0,935.202,,,,,,176,102,0,,,,, +241,2,3,6008,0,935.202,256,4.0,C#2,pp,8,144,37,8,,,,, +241,3,4,6009,0,935.202,51,16.0,F#2,pp,8,144,42,8,,,,, +240,17,4,5964,512,935.202,,,,,,144,24,0,,,,, +241,3,4,6009,0,935.383,,,,,,144,42,0,,,,, +241,4,4,6010,51,935.383,25,32.0,A#2,pp,8,144,46,8,,,,, +241,4,4,6010,51,935.471,,,,,,144,46,0,,,,, +241,5,4,6011,76,935.471,52,16.0,F#2,pp,8,144,42,8,,,,, +241,5,4,6011,76,935.656,,,,,,144,42,0,,,,, +241,6,1,6012,128,935.656,42,16.0,E4,pp,8,144,64,8,,,,, +241,7,4,6013,128,935.656,,,,,,176,102,0,,,,, +241,6,1,6012,128,935.805,,,,,,144,64,0,,,,, +241,8,1,6014,170,935.805,43,16.0,D5,pp,8,144,74,8,,,,, +241,9,0,6015,213,935.808,,,,,,176,64,0,,,,,^ +241,8,1,6014,170,935.958,,,,,,144,74,0,,,,, +241,11,1,6016,213,935.958,43,16.0,E4,pp,8,144,64,8,,,,, +241,12,4,6017,213,935.958,43,16.0,F#2,pp,8,144,42,8,,,,, +241,13,4,6018,213,935.958,64,16.0,A#2,pp,8,144,46,8,,,,, +241,14,4,6019,213,935.958,64,16.0,G3,pp,8,144,55,8,,,,, +241,10,0,6020,213,936.108,,,,,,176,64,127,,,,,V +241,2,3,6008,0,936.111,,,,,,144,37,0,,,,, +241,11,1,6016,213,936.111,,,,,,144,64,0,,,,, +241,12,4,6017,213,936.111,,,,,,144,42,0,,,,, +241,15,1,6021,256,936.111,256,4.0,D5,pp,8,144,74,8,,,,, +241,16,3,6022,256,936.111,,,,,,176,102,0,,,,, +241,17,4,6023,256,936.111,,,,,,176,102,0,,,,, +241,13,4,6018,213,936.185,,,,,,144,46,0,,,,, +241,14,4,6019,213,936.185,,,,,,144,55,0,,,,, +241,18,0,6024,384,936.565,,,,,,176,64,0,,,,,^ +241,19,4,6025,384,936.565,,,,,,176,102,0,,,,, +241,20,0,6026,384,936.565,,,,,,,,,,5982,,, +241,15,1,6021,256,937.02,,,,,,144,74,0,,,,, +241,21,1,6027,512,937.02,,,,,,176,102,0,,,,, +241,22,3,6028,512,937.02,1024,1.0,C1,pppp,2,144,24,2,,,,, +241,23,4,6029,512,937.02,,,,,,176,102,0,,,,, +241,24,1,6030,554,937.169,43,16.0,E4,pp,8,144,64,8,,,,, +241,25,1,6031,554,937.169,64,16.0,D5,pp,8,144,74,8,,,,, +241,26,4,6032,554,937.169,43,16.0,F#2,pp,8,144,42,8,,,,, +241,27,4,6033,554,937.169,64,16.0,A#2,pp,8,144,46,8,,,,, +241,28,4,6034,554,937.169,64,16.0,G3,pp,8,144,55,8,,,,, +241,24,1,6030,554,937.322,,,,,,144,64,0,,,,, +241,26,4,6032,554,937.322,,,,,,144,42,0,,,,, +241,29,1,6035,597,937.322,,,,,,176,102,0,,,,, +241,30,4,6036,597,937.322,,,,,,176,102,0,,,,, +241,25,1,6031,554,937.396,,,,,,144,74,0,,,,, +241,27,4,6033,554,937.396,,,,,,144,46,0,,,,, +241,28,4,6034,554,937.396,,,,,,144,55,0,,,,, +241,31,1,6037,682,937.623,,,,,,176,102,0,,,,, +241,32,1,6038,768,937.929,,,,,,176,102,0,,,,, +241,33,4,6039,768,937.929,,,,,,176,102,0,,,,, +241,35,1,6040,,938.688,,8.0,A#3,mp,14,144,58,14,,,,g, +241,35,1,6040,,938.738,,,,,,144,58,0,,,,, +241,36,1,6041,,938.763,,8.0,D5,mp,14,144,74,14,,,,g, +241,36,1,6041,,938.813,,,,,,144,74,0,,,,, +241,37,1,6042,1024,938.838,64,16.0,F#5,mp,14,144,78,14,,,,, +241,38,4,6043,1024,938.838,256,4.0,C4,pp,8,144,60,8,,,,, +241,39,4,6044,1024,938.838,256,4.0,G#4,pp,8,144,68,8,,,,, +241,40,4,6045,1024,938.838,256,4.0,E6,pp,8,144,88,8,,,,, +241,34,0,6046,1024,938.838,,,,,,176,64,127,,,,,V +241,37,1,6042,1024,939.065,,,,,,144,78,0,,,,, +241,41,1,6047,1088,939.065,21,32.0,D#6,mp+,15,144,87,15,,,,, +241,41,1,6047,1088,939.14,,,,,,144,87,0,,,,, +241,42,1,6048,1109,939.14,21,32.0,D5,mf,17,144,74,17,,,,, +241,42,1,6048,1109,939.214,,,,,,144,74,0,,,,, +241,43,1,6049,1130,939.214,22,32.0,C3,mf+,18,144,48,18,,,,, +241,43,1,6049,1130,939.293,,,,,,144,48,0,,,,, +241,44,1,6050,1152,939.293,51,16.0,A#3,p,11,144,58,11,,,,, +241,45,1,6051,1203,939.474,77,16.0,C#7,mp+,15,144,97,15,,,,, +241,44,1,6050,1152,939.549,,,,,,144,58,0,,,,, +241,45,1,6051,1203,939.747,,,,,,144,97,0,,,,, +241,46,0,6052,1280,939.747,,,,,,176,64,0,,,,,^ +241,47,1,6053,1280,939.747,153,8.0,A#3,f,20,144,58,20,,,,, +241,48,1,6054,1280,939.747,128,8.0,C6,f,20,144,84,20,,,,, +241,49,1,6055,1280,939.747,128,8.0,C#7,f,20,144,97,20,,,,, +241,50,4,6056,1280,939.747,,,,,,176,102,0,,,,, +241,38,4,6043,1024,939.822,,,,,,144,60,0,,,,, +241,39,4,6044,1024,939.822,,,,,,144,68,0,,,,, +241,40,4,6045,1024,939.822,,,,,,144,88,0,,,,, +241,48,1,6054,1280,940.202,,,,,,144,84,0,,,,, +241,49,1,6055,1280,940.202,,,,,,144,97,0,,,,, +241,47,1,6053,1280,940.29,,,,,,144,58,0,,,,, +241,51,1,6057,1433,940.29,103,8.0,C6,mp,14,144,84,14,,,,, +241,52,4,6058,1433,940.29,103,8.0,G#2,p,11,144,44,11,,,,, +241,51,1,6057,1433,940.656,,,,,,144,84,0,,,,, +241,52,4,6058,1433,940.656,,,,,,144,44,0,,,,, +242,0,0,6059,0,940.656,,,,,,,,,242,,,, +242,2,1,6060,0,940.656,42,16.0,F#5,mp,14,144,78,14,,,,, +242,3,3,6061,0,940.656,,,,,,176,102,0,,,,, +242,4,4,6062,0,940.656,256,4.0,C4,p,11,144,60,11,,,,, +242,5,4,6063,0,940.656,256,4.0,G#4,p,11,144,68,11,,,,, +242,6,4,6064,0,940.656,256,4.0,E6,p,11,144,88,11,,,,, +242,1,0,6065,0,940.656,,,,,,176,64,127,,,,,V +241,22,3,6028,512,940.731,,,,,,144,24,0,,,,, +242,2,1,6060,0,940.805,,,,,,144,78,0,,,,, +242,7,1,6066,42,940.805,43,16.0,D#6,mp,14,144,87,14,,,,, +242,7,1,6066,42,940.958,,,,,,144,87,0,,,,, +242,8,1,6067,85,940.958,43,16.0,C2,mp,14,144,36,14,,,,, +242,8,1,6067,85,941.111,,,,,,144,36,0,,,,, +242,9,1,6068,128,941.111,,,,,,176,102,0,,,,, +242,4,4,6062,0,941.565,,,,,,144,60,0,,,,, +242,5,4,6063,0,941.565,,,,,,144,68,0,,,,, +242,6,4,6064,0,941.565,,,,,,144,88,0,,,,, +242,10,0,6069,256,941.565,,,,,,176,64,0,,,,,^ +242,11,1,6070,256,941.565,,,,,,176,102,0,,,,, +242,12,4,6071,256,941.565,256,4.0,C4,ppp,5,144,60,5,,,,, +242,13,4,6072,256,941.565,256,4.0,G#4,ppp,5,144,68,5,,,,, +242,14,4,6073,256,941.565,256,4.0,E6,ppp,5,144,88,5,,,,, +242,12,4,6071,256,942.474,,,,,,144,60,0,,,,, +242,13,4,6072,256,942.474,,,,,,144,68,0,,,,, +242,14,4,6073,256,942.474,,,,,,144,88,0,,,,, +242,15,1,6074,512,942.474,,,,,,176,102,0,,,,, +242,16,3,6075,512,942.474,,,,,,176,102,0,,,,, +242,17,4,6076,512,942.474,1024,1.0,C1,pppp,2,144,24,2,,,,, +242,18,1,6077,682,943.078,43,16.0,D#6,p,11,144,87,11,,,,, +242,18,1,6077,682,943.231,,,,,,144,87,0,,,,, +242,19,1,6078,725,943.231,43,16.0,C2,p+,12,144,36,12,,,,, +242,19,1,6078,725,943.383,,,,,,144,36,0,,,,, +242,21,1,6079,768,943.383,85,8.0,A#2,p+,12,144,46,12,,,,, +242,22,3,6080,768,943.383,,,,,,176,102,0,,,,, +242,20,0,6081,768,943.383,,,,,,176,64,127,,,,,V +242,21,1,6079,768,943.685,,,,,,144,46,0,,,,, +242,23,1,6082,853,943.685,128,8.0,F#5,mp-,13,144,78,13,,,,, +242,24,3,6083,853,943.685,,,,,,176,102,0,,,,, +242,23,1,6082,853,944.14,,,,,,144,78,0,,,,, +242,25,1,6084,981,944.14,43,16.0,F#5,mp+,15,144,78,15,,,,, +242,26,3,6085,981,944.14,43,16.0,B2,pppp,2,144,47,2,,,,, +242,25,1,6084,981,944.293,,,,,,144,78,0,,,,, +242,27,1,6086,1024,944.293,,,,,,176,102,0,,,,, +242,28,3,6087,1024,944.293,256,4.0,B2,,,,,,,,,, +242,26,3,6085,981,945.202,,,,,,144,47,0,,,,, +242,29,1,6088,1280,945.202,42,16.0,D#6,mp+,15,144,87,15,,,,, +242,30,3,6089,1280,945.202,42,16.0,C4,pppp,2,144,60,2,,,,, +242,31,3,6090,1280,945.202,64,16.0,G#4,pppp,2,144,68,2,,,,, +242,29,1,6088,1280,945.351,,,,,,144,87,0,,,,, +242,32,1,6091,1322,945.351,43,16.0,F#5,mp+,15,144,78,15,,,,, +242,33,3,6092,1322,945.351,43,16.0,C4,,,,,,,,,, +242,31,3,6090,1280,945.429,,,,,,144,68,0,,,,, +242,34,1,6093,1365,945.503,171,4.0,F#5,,,,,,,,,, +242,35,3,6094,1365,945.503,171,4.0,C4,,,,,,,,,, +242,36,0,6095,1472,945.883,,,,,,176,64,0,,,,,^ +242,17,4,6076,512,946.111,,,,,,144,24,0,,,,, +242,30,3,6089,1280,946.111,,,,,,144,60,0,,,,, +242,32,1,6091,1322,946.111,,,,,,144,78,0,,,,, +243,0,0,6096,0,946.111,,,,,,,,,243,,,, +243,2,1,6097,,946.111,,8.0,E4,p,11,144,64,11,,,,g, +243,6,3,6098,,946.111,,8.0,G#2,mp,14,144,44,14,,,,g, +243,2,1,6097,,946.161,,,,,,144,64,0,,,,, +243,6,3,6098,,946.161,,,,,,144,44,0,,,,, +243,3,1,6099,,946.186,,8.0,A#2,p,11,144,46,11,,,,g, +243,3,1,6099,,946.236,,,,,,144,46,0,,,,, +243,7,3,6100,,946.261,,8.0,C4,mp,14,144,60,14,,,,g, +243,7,3,6100,,946.311,,,,,,144,60,0,,,,, +243,4,1,6101,,946.336,,8.0,E5,p,11,144,76,11,,,,g, +243,4,1,6101,,946.386,,,,,,144,76,0,,,,, +243,5,1,6102,0,946.486,51,16.0,F#5,p,11,144,78,11,,,,, +243,8,3,6103,0,946.486,25,32.0,F#2,mp,14,144,42,14,,,,, +243,1,0,6104,0,946.486,,,,,,176,64,127,,,,,V +243,8,3,6103,0,946.574,,,,,,144,42,0,,,,, +243,9,3,6105,25,946.574,26,32.0,G3,mp,14,144,55,14,,,,, +243,9,3,6105,25,946.667,,,,,,144,55,0,,,,, +243,10,1,6106,51,946.667,25,32.0,G2,p,11,144,43,11,,,,, +243,11,3,6107,51,946.667,25,32.0,D6,mp,14,144,86,14,,,,, +243,5,1,6102,0,946.667,,,,,,144,78,0,,,,, +243,14,0,6108,86,946.716,,,,,,176,64,0,,,,,^ +243,10,1,6106,51,946.756,,,,,,144,43,0,,,,, +243,11,3,6107,51,946.756,,,,,,144,86,0,,,,, +243,12,1,6109,76,946.756,26,32.0,F#5,p,11,144,78,11,,,,, +243,13,3,6110,76,946.756,26,32.0,F#2,mp,14,144,42,14,,,,, +243,12,1,6109,76,946.848,,,,,,144,78,0,,,,, +243,13,3,6110,76,946.848,,,,,,144,42,0,,,,, +243,15,1,6111,102,946.848,,,,,,176,102,0,,,,, +243,16,3,6112,102,946.848,26,32.0,G3,mp,14,144,55,14,,,,, +243,16,3,6112,102,946.94,,,,,,144,55,0,,,,, +243,18,1,6113,128,946.94,,,,,,176,102,0,,,,, +243,19,3,6114,128,946.94,21,32.0,A#1,mf,17,144,34,17,,,,, +243,19,3,6114,128,947.015,,,,,,144,34,0,,,,, +243,20,3,6115,149,947.015,21,32.0,E3,mp,14,144,52,14,,,,, +243,17,0,6116,128,947.016,,,,,,176,64,127,,,,,V +243,20,3,6115,149,947.089,,,,,,144,52,0,,,,, +243,21,3,6117,170,947.089,22,32.0,F#1,p,11,144,30,11,,,,, +243,21,3,6117,170,947.168,,,,,,144,30,0,,,,, +243,22,3,6118,192,947.168,21,32.0,D4,pp,8,144,62,8,,,,, +243,22,3,6118,192,947.242,,,,,,144,62,0,,,,, +243,23,0,6119,213,947.242,,,,,,176,64,0,,,,,^ +243,24,3,6120,213,947.242,21,32.0,F#1,ppp,5,144,30,5,,,,, +243,24,3,6120,213,947.317,,,,,,144,30,0,,,,, +243,25,3,6121,234,947.317,22,32.0,G2,ppp,5,144,43,5,,,,, +243,25,3,6121,234,947.395,,,,,,144,43,0,,,,, +243,26,1,6122,256,947.395,128,8.0,E5,ppp,5,144,76,5,,,,, +243,27,3,6123,256,947.395,256,4.0,C1,ppp,5,144,24,5,,,,, +243,26,1,6122,256,947.849,,,,,,144,76,0,,,,, +243,28,1,6124,384,947.849,85,8.0,E5,ppp+,6,144,76,6,,,,, +243,29,1,6125,384,947.849,128,8.0,G#5,ppp+,6,144,80,6,,,,, +243,28,1,6124,384,948.151,,,,,,144,76,0,,,,, +243,30,1,6126,469,948.151,43,16.0,C4,pp-,7,144,60,7,,,,, +243,27,3,6123,256,948.304,,,,,,144,24,0,,,,, +243,29,1,6125,384,948.304,,,,,,144,80,0,,,,, +243,32,1,6127,512,948.304,85,8.0,C4,,,,,,,,,, +243,33,3,6128,512,948.304,512,2.0,F#1,ppp,5,144,30,5,,,,, +243,34,3,6129,512,948.304,512,2.0,A#1,ppp,5,144,34,5,,,,, +243,35,3,6130,512,948.304,512,2.0,G2,ppp,5,144,43,5,,,,, +243,36,3,6131,512,948.304,512,2.0,E3,ppp,5,144,52,5,,,,, +243,37,3,6132,512,948.304,512,2.0,D4,ppp,5,144,62,5,,,,, +243,31,0,6133,512,948.304,,,,,,176,64,127,,,,,V +243,30,1,6126,469,948.606,,,,,,144,60,0,,,,, +243,38,1,6134,597,948.606,128,8.0,E5,pp,8,144,76,8,,,,, +243,38,1,6134,597,949.06,,,,,,144,76,0,,,,, +243,39,1,6135,725,949.06,43,16.0,G#5,pp+,9,144,80,9,,,,, +243,40,1,6136,768,949.213,256,4.0,G#5,,,,,,,,,, +243,41,0,6137,1023,950.118,,,,,,176,64,0,,,,,^ +243,33,3,6128,512,950.122,,,,,,144,30,0,,,,, +243,34,3,6129,512,950.122,,,,,,144,34,0,,,,, +243,35,3,6130,512,950.122,,,,,,144,43,0,,,,, +243,36,3,6131,512,950.122,,,,,,144,52,0,,,,, +243,37,3,6132,512,950.122,,,,,,144,62,0,,,,, +243,39,1,6135,725,950.122,,,,,,144,80,0,,,,, +243,42,1,6138,1024,950.122,,,,,,176,102,0,,,,, +243,43,3,6139,1024,950.122,128,8.0,F#1,pp,8,144,30,8,,,,, +243,44,3,6140,1024,950.122,128,8.0,A#1,pp,8,144,34,8,,,,, +243,45,3,6141,1024,950.122,128,8.0,G2,pp,8,144,43,8,,,,, +243,46,3,6142,1024,950.122,128,8.0,E3,pp,8,144,52,8,,,,, +243,47,3,6143,1024,950.122,128,8.0,D4,pp,8,144,62,8,,,,, +243,43,3,6139,1024,950.577,,,,,,144,30,0,,,,, +243,44,3,6140,1024,950.577,,,,,,144,34,0,,,,, +243,45,3,6141,1024,950.577,,,,,,144,43,0,,,,, +243,46,3,6142,1024,950.577,,,,,,144,52,0,,,,, +243,47,3,6143,1024,950.577,,,,,,144,62,0,,,,, +243,48,1,6144,,950.577,,8.0,E4,ppp,5,144,64,5,,,,g, +243,48,1,6144,,950.627,,,,,,144,64,0,,,,, +243,49,1,6145,,950.652,,8.0,A#2,ppp,5,144,46,5,,,,g, +243,49,1,6145,,950.702,,,,,,144,46,0,,,,, +243,50,1,6146,,950.727,,8.0,E4,ppp,5,144,64,5,,,,g, +243,50,1,6146,,950.777,,,,,,144,64,0,,,,, +243,51,1,6147,1152,950.802,128,8.0,D5,ppp,5,144,74,5,,,,, +243,52,3,6148,1152,950.802,,,,,,176,102,0,,,,, +243,53,0,6149,1152,950.802,,,,,,,,,,5983,,, +243,51,1,6147,1152,951.256,,,,,,144,74,0,,,,, +243,55,1,6150,1280,951.256,64,16.0,E5,p,11,144,76,11,,,,, +243,56,3,6151,1280,951.256,21,32.0,F#5,mf,17,144,78,17,,,,, +243,54,0,6152,1280,951.256,,,,,,176,64,127,,,,,V +243,56,3,6151,1280,951.331,,,,,,144,78,0,,,,, +243,57,3,6153,1301,951.331,21,32.0,A4,mf,17,144,69,17,,,,, +243,57,3,6153,1301,951.405,,,,,,144,69,0,,,,, +243,58,3,6154,1322,951.405,86,8.0,E2,mf,17,144,40,17,,,,, +243,55,1,6150,1280,951.483,,,,,,144,76,0,,,,, +243,59,1,6155,1344,951.483,,,,,,176,102,0,,,,, +243,60,1,6156,1376,951.597,32,32.0,C4,mf,17,144,60,17,,,,, +243,58,3,6154,1322,951.711,,,,,,144,40,0,,,,, +243,60,1,6156,1376,951.711,,,,,,144,60,0,,,,, +243,61,1,6157,1408,951.711,32,32.0,F#5,mf,17,144,78,17,,,,, +243,62,3,6158,1408,951.711,64,16.0,E5,mp,14,144,76,14,,,,, +243,63,3,6159,1408,951.711,64,16.0,G#5,mp,14,144,80,14,,,,, +243,61,1,6157,1408,951.824,,,,,,144,78,0,,,,, +243,64,1,6160,1440,951.824,32,32.0,C4,mf,17,144,60,17,,,,, +243,62,3,6158,1408,951.938,,,,,,144,76,0,,,,, +243,63,3,6159,1408,951.938,,,,,,144,80,0,,,,, +243,64,1,6160,1440,951.938,,,,,,144,60,0,,,,, +243,65,1,6161,1472,951.938,32,32.0,A4,mf,17,144,69,17,,,,, +243,66,3,6162,1472,951.938,,,,,,176,102,0,,,,, +243,65,1,6161,1472,952.052,,,,,,144,69,0,,,,, +243,67,0,6163,1504,952.052,,,,,,176,64,0,,,,,^ +243,68,1,6164,1504,952.052,32,32.0,E2,mf,17,144,40,17,,,,, +243,68,1,6164,1504,952.165,,,,,,144,40,0,,,,, +244,0,0,6165,0,952.165,,,,,,,,,244,,,, +244,1,1,6166,0,952.165,,,,,,176,102,0,,,,, +244,2,2,6167,0,952.165,,,,,,176,102,0,,,,, +244,3,3,6168,0,952.165,512,2.0,C1,ppp,5,144,24,5,,,,, +244,4,2,6169,102,952.527,154,8.0,G#2,mf,17,144,44,17,,,,, +244,5,2,6170,102,952.527,128,8.0,C6,mf,17,144,84,17,,,,, +244,6,2,6171,102,952.527,128,8.0,C#7,mf,17,144,97,17,,,,, +244,7,0,6172,139,952.659,,,,,,176,64,127,,,,,V +244,8,1,6173,192,952.847,32,32.0,D5,p,11,144,74,11,,,,, +244,8,1,6173,192,952.961,,,,,,144,74,0,,,,, +244,9,1,6174,224,952.961,32,32.0,C2,p+,12,144,36,12,,,,, +244,5,2,6170,102,952.982,,,,,,144,84,0,,,,, +244,6,2,6171,102,952.982,,,,,,144,97,0,,,,, +244,4,2,6169,102,953.074,,,,,,144,44,0,,,,, +244,9,1,6174,224,953.074,,,,,,144,36,0,,,,, +244,10,1,6175,256,953.074,21,32.0,D#6,mp,14,144,87,14,,,,, +244,16,2,6176,256,953.074,,,,,,176,102,0,,,,, +244,10,1,6175,256,953.149,,,,,,144,87,0,,,,, +244,11,1,6177,277,953.149,32,32.0,D5,mp+,15,144,74,15,,,,, +244,11,1,6177,277,953.263,,,,,,144,74,0,,,,, +244,12,1,6178,309,953.263,32,32.0,C2,mf-,16,144,36,16,,,,, +244,12,1,6178,309,953.376,,,,,,144,36,0,,,,, +244,13,1,6179,341,953.376,21,32.0,D#6,mf+,18,144,87,18,,,,, +244,13,1,6179,341,953.451,,,,,,144,87,0,,,,, +244,14,1,6180,362,953.451,22,32.0,C2,f-,19,144,36,19,,,,, +244,15,1,6181,362,953.451,32,32.0,D5,f-,19,144,74,19,,,,, +244,14,1,6180,362,953.529,,,,,,144,36,0,,,,, +244,16,0,6182,384,953.529,,,,,,176,64,0,,,,,^ +244,17,1,6183,384,953.529,128,8.0,D#6,f,20,144,87,20,,,,, +244,15,1,6181,362,953.564,,,,,,144,74,0,,,,, +244,3,3,6168,0,953.983,,,,,,144,24,0,,,,, +244,17,1,6183,384,953.983,,,,,,144,87,0,,,,, +244,19,1,6184,,953.983,,8.0,D6,f,20,144,86,20,,,,g, +244,19,1,6184,,954.033,,,,,,144,86,0,,,,, +244,20,1,6185,512,954.058,384,4.0,A#5,f,20,144,82,20,,,,, +244,21,3,6186,512,954.058,,,,,,176,102,0,,,,, +244,18,0,6187,546,954.179,,,,,,176,64,127,,,,,V +244,20,1,6185,512,955.422,,,,,,144,82,0,,,,, +244,22,1,6188,896,955.422,,,,,,176,102,0,,,,, +244,23,1,6189,917,955.497,43,16.0,G#4,p,11,144,68,11,,,,, +244,23,1,6189,917,955.649,,,,,,144,68,0,,,,, +244,24,1,6190,960,955.649,42,16.0,F#5,pp,8,144,78,8,,,,, +244,28,0,6191,1015,955.664,,,,,,176,64,0,,,,,^ +244,24,1,6190,960,955.798,,,,,,144,78,0,,,,, +244,25,1,6192,1002,955.798,22,32.0,D3,ppp,5,144,50,5,,,,, +244,26,1,6193,1002,955.798,32,32.0,G#4,ppp,5,144,68,5,,,,, +244,27,1,6194,1002,955.798,32,32.0,F#5,ppp,5,144,78,5,,,,, +244,29,0,6195,1015,955.798,,,,,,,,,,5984,,, +244,31,1,6196,1024,955.83,85,8.0,F#4,mp,14,144,66,14,,,,, +244,32,2,6197,1024,955.83,256,4.0,G#3,mp,14,144,56,14,,,,, +244,33,3,6198,1024,955.83,512,2.0,C1,ppp,5,144,24,5,,,,, +244,25,1,6192,1002,955.877,,,,,,144,50,0,,,,, +244,26,1,6193,1002,955.912,,,,,,144,68,0,,,,, +244,27,1,6194,1002,955.912,,,,,,144,78,0,,,,, +244,30,0,6199,1024,955.964,,,,,,176,64,127,,,,,V +244,31,1,6196,1024,956.132,,,,,,144,66,0,,,,, +244,34,1,6200,1109,956.132,171,4.0,F#4,mp+,15,144,66,15,,,,, +244,35,1,6201,1109,956.132,256,4.0,A5,mp+,15,144,81,15,,,,, +244,32,2,6197,1024,956.74,,,,,,144,56,0,,,,, +244,34,1,6200,1109,956.74,,,,,,144,66,0,,,,, +244,36,1,6202,1280,956.74,,,,,,176,102,0,,,,, +244,37,2,6203,1280,956.74,256,4.0,G#3,p,11,144,56,11,,,,, +244,35,1,6201,1109,957.041,,,,,,144,81,0,,,,, +244,33,3,6198,1024,957.649,,,,,,144,24,0,,,,, +244,37,2,6203,1280,957.649,,,,,,144,56,0,,,,, +245,0,0,6204,0,957.649,,,,,,,,,245,,,, +245,1,1,6205,0,957.649,128,8.0,G#3,f,20,144,56,20,,,,, +245,2,1,6206,0,957.649,128,8.0,F#5,f,20,144,78,20,,,,, +245,3,1,6207,0,957.649,128,8.0,A5,f,20,144,81,20,,,,, +245,4,3,6208,0,957.649,256,4.0,D3,pp,8,144,50,8,,,,, +245,5,3,6209,0,957.649,256,4.0,B3,pp,8,144,59,8,,,,, +245,1,1,6205,0,958.103,,,,,,144,56,0,,,,, +245,2,1,6206,0,958.103,,,,,,144,78,0,,,,, +245,3,1,6207,0,958.103,,,,,,144,81,0,,,,, +245,6,1,6210,128,958.103,32,32.0,C4,mf-,16,144,60,16,,,,, +245,6,1,6210,128,958.217,,,,,,144,60,0,,,,, +245,7,1,6211,160,958.217,32,32.0,E3,mp,14,144,52,14,,,,, +245,8,1,6212,192,958.33,64,16.0,A4,mp-,13,144,69,13,,,,, +245,5,3,6209,0,958.558,,,,,,144,59,0,,,,, +245,8,1,6212,192,958.558,,,,,,144,69,0,,,,, +245,9,1,6213,256,958.558,85,8.0,C4,p,11,144,60,11,,,,, +245,10,1,6214,256,958.558,128,8.0,A4,p,11,144,69,11,,,,, +245,11,1,6215,256,958.558,128,8.0,A5,p,11,144,81,11,,,,, +245,12,3,6216,256,958.558,256,4.0,B3,ppp,5,144,59,5,,,,, +245,7,1,6211,160,958.705,,,,,,144,52,0,,,,, +245,9,1,6213,256,958.86,,,,,,144,60,0,,,,, +245,13,1,6217,,958.86,,8.0,A#5,pp,8,144,82,8,,,,g, +245,13,1,6217,,958.91,,,,,,144,82,0,,,,, +245,4,3,6208,0,958.933,,,,,,144,50,0,,,,, +245,14,1,6218,341,958.935,85,8.0,F#6,pp,8,144,90,8,,,,, +245,10,1,6214,256,959.012,,,,,,144,69,0,,,,, +245,11,1,6215,256,959.012,,,,,,144,81,0,,,,, +245,14,1,6218,341,959.236,,,,,,144,90,0,,,,, +245,15,1,6219,426,959.236,43,16.0,D#7,p-,10,144,99,10,,,,, +245,15,1,6219,426,959.389,,,,,,144,99,0,,,,, +245,17,1,6220,469,959.389,43,16.0,C5,p,11,144,72,11,,,,, +245,16,0,6221,489,959.46,,,,,,176,64,0,,,,,^ +245,12,3,6216,256,959.467,,,,,,144,59,0,,,,, +245,17,1,6220,469,959.542,,,,,,144,72,0,,,,, +245,18,1,6222,512,959.542,64,16.0,D#7,p,11,144,99,11,,,,, +245,19,3,6223,512,959.542,21,32.0,F#3,ppp,5,144,54,5,,,,, +245,19,3,6223,512,959.616,,,,,,144,54,0,,,,, +245,20,3,6224,533,959.616,21,32.0,C3,ppp,5,144,48,5,,,,, +245,20,3,6224,533,959.691,,,,,,144,48,0,,,,, +245,21,3,6225,554,959.691,,,,,,176,102,0,,,,, +245,18,1,6222,512,959.769,,,,,,144,99,0,,,,, +245,22,1,6226,576,959.769,64,16.0,D6,mp-,13,144,86,13,,,,, +245,23,3,6227,597,959.844,,,,,,176,102,0,,,,, +245,22,1,6226,576,959.996,,,,,,144,86,0,,,,, +245,24,1,6228,640,959.996,85,8.0,C3,mp,14,144,48,14,,,,, +245,26,3,6229,661,960.071,21,32.0,A#2,pp,8,144,46,8,,,,, +245,25,0,6230,661,960.071,,,,,,176,64,127,,,,,V +245,26,3,6229,661,960.145,,,,,,144,46,0,,,,, +245,27,3,6231,682,960.145,22,32.0,D3,pp+,9,144,50,9,,,,, +245,27,3,6231,682,960.224,,,,,,144,50,0,,,,, +245,28,3,6232,704,960.224,21,32.0,F#3,p-,10,144,54,10,,,,, +245,24,1,6228,640,960.298,,,,,,144,48,0,,,,, +245,28,3,6232,704,960.298,,,,,,144,54,0,,,,, +245,29,1,6233,725,960.298,,,,,,176,102,0,,,,, +245,30,3,6234,725,960.298,21,32.0,C2,p,11,144,36,11,,,,, +245,30,3,6234,725,960.373,,,,,,144,36,0,,,,, +245,31,1,6235,746,960.373,22,32.0,A4,mp,14,144,69,14,,,,, +245,32,3,6236,746,960.373,22,32.0,D#4,p,11,144,63,11,,,,, +245,31,1,6235,746,960.451,,,,,,144,69,0,,,,, +245,32,3,6236,746,960.451,,,,,,144,63,0,,,,, +245,33,1,6237,768,960.451,85,8.0,E4,mp,14,144,64,14,,,,, +245,34,3,6238,768,960.451,32,32.0,A#2,p+,12,144,46,12,,,,, +245,34,3,6238,768,960.565,,,,,,144,46,0,,,,, +245,35,3,6239,800,960.565,32,32.0,F#3,mp,14,144,54,14,,,,, +245,35,3,6239,800,960.678,,,,,,144,54,0,,,,, +245,36,3,6240,832,960.678,32,32.0,D#5,mp+,15,144,75,15,,,,, +245,33,1,6237,768,960.753,,,,,,144,64,0,,,,, +245,37,1,6241,853,960.753,85,8.0,G#4,mp,14,144,68,14,,,,, +245,36,3,6240,832,960.792,,,,,,144,75,0,,,,, +245,38,3,6242,864,960.792,21,32.0,A#2,mf-,16,144,46,16,,,,, +245,39,3,6243,864,960.792,32,32.0,D4,mf-,16,144,62,16,,,,, +245,38,3,6242,864,960.866,,,,,,144,46,0,,,,, +245,40,3,6244,885,960.866,21,32.0,F#4,mf,17,144,66,17,,,,, +245,39,3,6243,864,960.905,,,,,,144,62,0,,,,, +245,40,3,6244,885,960.941,,,,,,144,66,0,,,,, +245,41,3,6245,906,960.941,22,32.0,C2,mf+,18,144,36,18,,,,, +245,42,3,6246,906,960.941,32,32.0,D4,mf+,18,144,62,18,,,,, +245,41,3,6245,906,961.019,,,,,,144,36,0,,,,, +245,43,3,6247,928,961.019,32,32.0,D#5,f-,19,144,75,19,,,,, +245,37,1,6241,853,961.055,,,,,,144,68,0,,,,, +245,42,3,6246,906,961.055,,,,,,144,62,0,,,,, +245,44,1,6248,938,961.055,,,,,,176,102,0,,,,, +245,43,3,6247,928,961.133,,,,,,144,75,0,,,,, +245,45,3,6249,960,961.133,32,32.0,D4,f,20,144,62,20,,,,, +245,45,3,6249,960,961.246,,,,,,144,62,0,,,,, +245,46,0,6250,992,961.246,,,,,,176,64,0,,,,,^ +245,47,3,6251,992,961.246,32,32.0,C1,f,20,144,24,20,,,,, +245,47,3,6251,992,961.36,,,,,,144,24,0,,,,, +245,48,1,6252,1024,961.36,85,8.0,F#4,f,20,144,66,20,,,,, +245,52,3,6253,1024,961.36,,,,,,176,102,0,,,,, +245,48,1,6252,1024,961.662,,,,,,144,66,0,,,,, +245,49,3,6254,,961.662,,8.0,D4,f,20,144,62,20,,,,g, +245,49,3,6254,,961.712,,,,,,144,62,0,,,,, +245,50,3,6255,,961.737,,8.0,A#1,f,20,144,34,20,,,,g, +245,50,3,6255,,961.787,,,,,,144,34,0,,,,, +245,51,3,6256,,961.812,,8.0,C1,f,20,144,24,20,,,,g, +245,51,3,6256,,961.862,,,,,,144,24,0,,,,, +245,53,1,6257,1109,961.887,171,4.0,F#4,f,20,144,66,20,,,,, +245,54,1,6258,1109,961.887,256,4.0,D#5,f,20,144,75,20,,,,, +245,56,3,6259,1216,962.267,64,16.0,D5,ppp,5,144,74,5,,,,, +245,55,0,6260,1216,962.267,,,,,,176,64,127,,,,,V +245,56,3,6259,1216,962.494,,,,,,144,74,0,,,,, +245,57,1,6261,1280,962.494,256,4.0,F#4,,,,,,,,,, +245,58,1,6262,1280,962.494,256,4.0,D#5,,,,,,,,,, +245,59,3,6263,1280,962.494,64,16.0,F#2,ppp,5,144,42,5,,,,, +245,59,3,6263,1280,962.721,,,,,,144,42,0,,,,, +245,60,3,6264,1344,962.721,64,16.0,G3,ppp,5,144,55,5,,,,, +245,61,0,6265,1408,962.912,,,,,,176,64,0,,,,,^ +245,60,3,6264,1344,962.949,,,,,,144,55,0,,,,, +245,62,3,6266,1408,962.949,,,,,,176,102,0,,,,, +245,64,3,6267,,963.101,,8.0,A#1,ppp,5,144,34,5,,,,g, +245,64,3,6267,,963.151,,,,,,144,34,0,,,,, +245,65,3,6268,1472,963.176,64,16.0,F#1,ppp,5,144,30,5,,,,, +245,63,0,6269,1472,963.212,,,,,,176,64,127,,,,,V +246,0,0,6270,0,963.403,,,,,,,,,246,,,, +246,1,1,6271,0,963.403,192,8.0,E4,mf,17,144,64,17,,,,, +246,2,3,6272,0,963.403,32,32.0,F#1,,,,,,,,,, +246,3,4,6273,0,963.403,1536,1.0,C1,pppp,2,144,24,2,,,,, +245,65,3,6268,1472,963.517,,,,,,144,30,0,,,,, +246,4,3,6274,32,963.517,96,16.0,G2,ppp-,4,144,43,4,,,,, +245,53,1,6257,1109,963.628,,,,,,144,66,0,,,,, +246,4,3,6274,32,963.858,,,,,,144,43,0,,,,, +246,5,3,6275,128,963.858,128,8.0,E3,ppp-,4,144,52,4,,,,, +245,54,1,6258,1109,963.93,,,,,,144,75,0,,,,, +246,1,1,6271,0,964.085,,,,,,144,64,0,,,,, +246,6,1,6276,192,964.085,32,32.0,C6,mf+,18,144,84,18,,,,, +246,6,1,6276,192,964.199,,,,,,144,84,0,,,,, +246,7,1,6277,224,964.199,32,32.0,A#4,mf+,18,144,70,18,,,,, +246,5,3,6275,128,964.312,,,,,,144,52,0,,,,, +246,7,1,6277,224,964.312,,,,,,144,70,0,,,,, +246,8,1,6278,256,964.312,32,32.0,G#3,f,20,144,56,20,,,,, +246,9,3,6279,256,964.312,170,4.0,D4,pppp+,3,144,62,3,,,,, +246,8,1,6278,256,964.426,,,,,,144,56,0,,,,, +246,10,1,6280,288,964.426,32,32.0,C#6,f+,21,144,85,21,,,,, +246,10,1,6280,288,964.54,,,,,,144,85,0,,,,, +246,11,1,6281,320,964.54,,,,,,176,102,0,,,,, +246,9,3,6279,256,964.916,,,,,,144,62,0,,,,, +246,12,3,6282,426,964.916,22,32.0,E3,pppp,2,144,52,2,,,,, +246,12,3,6282,426,964.994,,,,,,144,52,0,,,,, +246,13,3,6283,448,964.994,21,32.0,D5,pppp,2,144,74,2,,,,, +246,15,0,6284,480,965.015,,,,,,176,64,0,,,,,^ +246,13,3,6283,448,965.069,,,,,,144,74,0,,,,, +246,14,3,6285,469,965.069,21,32.0,F#1,pppp,2,144,30,2,,,,, +246,14,3,6285,469,965.143,,,,,,144,30,0,,,,, +246,16,3,6286,490,965.143,22,32.0,G2,pppp,2,144,43,2,,,,, +246,16,3,6286,490,965.221,,,,,,144,43,0,,,,, +246,18,1,6287,512,965.221,,,,,,176,102,0,,,,, +246,19,3,6288,512,965.221,64,16.0,E6,pppp,2,144,88,2,,,,, +246,17,0,6289,512,965.315,,,,,,176,64,127,,,,,V +246,19,3,6288,512,965.449,,,,,,144,88,0,,,,, +246,20,3,6290,576,965.449,192,8.0,G#2,pppp,2,144,44,2,,,,, +246,21,1,6291,768,966.13,,,,,,176,102,0,,,,, +246,22,3,6292,768,966.13,768,2.0,G#2,,,,,,,,,, +246,23,1,6293,960,966.812,12,64.0,C6,pp,8,144,84,8,,,,, +246,23,1,6293,960,966.855,,,,,,144,84,0,,,,, +246,24,1,6294,972,966.855,13,64.0,F#6,pp,8,144,90,8,,,,, +246,24,1,6294,972,966.901,,,,,,144,90,0,,,,, +246,25,1,6295,985,966.901,13,64.0,E7,pp,8,144,100,8,,,,, +246,25,1,6295,985,966.947,,,,,,144,100,0,,,,, +246,26,1,6296,998,966.947,13,64.0,A7,pp+,9,144,105,9,,,,, +246,26,1,6296,998,966.993,,,,,,144,105,0,,,,, +246,27,1,6297,1011,966.993,13,64.0,G#7,pp+,9,144,104,9,,,,, +246,27,1,6297,1011,967.04,,,,,,144,104,0,,,,, +246,28,1,6298,1024,967.04,19,64.0,F#6,pp+,9,144,90,9,,,,, +246,28,1,6298,1024,967.107,,,,,,144,90,0,,,,, +246,29,1,6299,1043,967.107,13,64.0,A7,p-,10,144,105,10,,,,, +246,29,1,6299,1043,967.153,,,,,,144,105,0,,,,, +246,30,1,6300,1056,967.153,12,64.0,G#7,p-,10,144,104,10,,,,, +246,30,1,6300,1056,967.196,,,,,,144,104,0,,,,, +246,31,1,6301,1068,967.196,20,64.0,E7,p-,10,144,100,10,,,,, +246,31,1,6301,1068,967.267,,,,,,144,100,0,,,,, +246,32,1,6302,1088,967.267,14,64.0,G#7,p-,10,144,104,10,,,,, +246,32,1,6302,1088,967.317,,,,,,144,104,0,,,,, +246,33,1,6303,1102,967.317,14,64.0,A7,p,11,144,105,11,,,,, +246,33,1,6303,1102,967.366,,,,,,144,105,0,,,,, +246,34,1,6304,1116,967.366,14,64.0,C6,p,11,144,84,11,,,,, +246,34,1,6304,1116,967.416,,,,,,144,84,0,,,,, +246,35,1,6305,1130,967.416,29,32.0,F#6,p,11,144,90,11,,,,, +246,35,1,6305,1130,967.519,,,,,,144,90,0,,,,, +246,36,1,6306,1159,967.519,28,32.0,A7,p+,12,144,105,12,,,,, +246,36,1,6306,1159,967.618,,,,,,144,105,0,,,,, +246,37,1,6307,1187,967.618,29,32.0,C6,p+,12,144,84,12,,,,, +246,38,1,6308,1187,967.618,32,32.0,F#6,p+,12,144,90,12,,,,, +246,37,1,6307,1187,967.721,,,,,,144,84,0,,,,, +246,39,1,6309,1216,967.721,21,32.0,E7,mp-,13,144,100,13,,,,, +246,38,1,6308,1187,967.732,,,,,,144,90,0,,,,, +246,39,1,6309,1216,967.796,,,,,,144,100,0,,,,, +246,40,1,6310,1237,967.796,21,32.0,A7,mp-,13,144,105,13,,,,, +246,40,1,6310,1237,967.87,,,,,,144,105,0,,,,, +246,41,1,6311,1258,967.87,22,32.0,G#7,mp,14,144,104,14,,,,, +246,41,1,6311,1258,967.949,,,,,,144,104,0,,,,, +246,42,1,6312,1280,967.949,25,32.0,C6,mp,14,144,84,14,,,,, +246,43,0,6313,1305,967.957,,,,,,176,64,0,,,,,^ +246,42,1,6312,1280,968.037,,,,,,144,84,0,,,,, +246,44,1,6314,1305,968.037,26,32.0,E7,mp,14,144,100,14,,,,, +246,44,1,6314,1305,968.13,,,,,,144,100,0,,,,, +246,45,1,6315,1331,968.13,13,64.0,G#7,mp,14,144,104,14,,,,, +246,45,1,6315,1331,968.176,,,,,,144,104,0,,,,, +246,46,1,6316,1344,968.176,21,32.0,F#6,pp,8,144,90,8,,,,, +246,46,1,6316,1344,968.25,,,,,,144,90,0,,,,, +246,48,1,6317,1365,968.25,21,32.0,G#4,p-,10,144,68,10,,,,, +246,47,0,6318,1344,968.257,,,,,,176,64,127,,,,,V +246,48,1,6317,1365,968.325,,,,,,144,68,0,,,,, +246,49,1,6319,1386,968.325,22,32.0,F#6,p+,12,144,90,12,,,,, +246,49,1,6319,1386,968.403,,,,,,144,90,0,,,,, +246,50,1,6320,1408,968.403,21,32.0,C5,mp,14,144,72,14,,,,, +246,50,1,6320,1408,968.478,,,,,,144,72,0,,,,, +246,51,1,6321,1429,968.478,21,32.0,A5,mf-,16,144,81,16,,,,, +246,51,1,6321,1429,968.552,,,,,,144,81,0,,,,, +246,52,1,6322,1450,968.552,22,32.0,C5,mf+,18,144,72,18,,,,, +246,52,1,6322,1450,968.63,,,,,,144,72,0,,,,, +246,53,1,6323,1472,968.63,64,16.0,E4,f,20,144,64,20,,,,, +246,54,0,6324,1535,968.818,,,,,,176,64,0,,,,,^ +246,53,1,6323,1472,968.858,,,,,,144,64,0,,,,, +247,0,0,6325,0,968.858,,,,,,,,,247,,,, +247,1,0,6326,0,968.858,,,,,,,,,,5985,,, +247,2,0,6327,0,968.858,,,,,,,,,,,51,, +247,5,1,6328,0,968.858,64,16.0,E5,pp,8,144,76,8,,,,, +247,6,3,6329,,968.858,,8.0,D6,p,11,144,86,11,,,,g, +247,6,3,6329,,968.908,,,,,,144,86,0,,,,, +246,3,4,6273,0,968.933,,,,,,144,24,0,,,,, +247,7,3,6330,,968.933,,8.0,F5,p,11,144,77,11,,,,g, +246,20,3,6290,576,968.933,,,,,,144,44,0,,,,, +247,7,3,6330,,968.983,,,,,,144,77,0,,,,, +247,4,1,6331,,969.008,,8.0,C8,pp,8,144,108,8,,,,g, +247,4,1,6331,,969.058,,,,,,144,108,0,,,,, +247,8,3,6332,0,969.083,256,4.0,C#5,p,11,144,73,11,,,,, +247,3,0,6333,0,969.118,,,,,,176,64,127,,,,,V +247,5,1,6328,0,969.152,,,,,,144,76,0,,,,, +247,9,1,6334,64,969.377,21,32.0,C8,p-,10,144,108,10,,,,, +247,9,1,6334,64,969.473,,,,,,144,108,0,,,,, +247,10,1,6335,85,969.473,85,8.0,E5,p-,10,144,76,10,,,,, +247,10,1,6335,85,969.864,,,,,,144,76,0,,,,, +247,11,1,6336,170,969.864,22,32.0,G#4,p+,12,144,68,12,,,,, +247,11,1,6336,170,969.965,,,,,,144,68,0,,,,, +247,12,1,6337,192,969.965,21,32.0,C#7,p+,12,144,97,12,,,,, +247,12,1,6337,192,970.062,,,,,,144,97,0,,,,, +247,13,1,6338,213,970.062,21,32.0,C8,mp-,13,144,108,13,,,,, +247,13,1,6338,213,970.158,,,,,,144,108,0,,,,, +247,14,1,6339,234,970.158,22,32.0,C#7,mp-,13,144,97,13,,,,, +247,8,3,6332,0,970.259,,,,,,144,73,0,,,,, +247,14,1,6339,234,970.259,,,,,,144,97,0,,,,, +247,15,1,6340,256,970.259,48,32.0,E5,mp-,13,144,76,13,,,,, +247,16,3,6341,256,970.259,256,4.0,A7,mp-,13,144,105,13,,,,, +247,15,1,6340,256,970.48,,,,,,144,76,0,,,,, +247,17,1,6342,304,970.48,16,64.0,G#4,mp,14,144,68,14,,,,, +247,17,1,6342,304,970.553,,,,,,144,68,0,,,,, +247,18,1,6343,320,970.553,16,64.0,C#7,mp,14,144,97,14,,,,, +247,18,1,6343,320,970.627,,,,,,144,97,0,,,,, +247,19,1,6344,336,970.627,16,64.0,A#7,mp+,15,144,106,15,,,,, +247,19,1,6344,336,970.7,,,,,,144,106,0,,,,, +247,20,1,6345,352,970.7,16,64.0,C8,mp+,15,144,108,15,,,,, +247,20,1,6345,352,970.774,,,,,,144,108,0,,,,, +247,21,1,6346,368,970.774,16,64.0,C#7,mp+,15,144,97,15,,,,, +247,21,1,6346,368,970.847,,,,,,144,97,0,,,,, +247,22,1,6347,384,970.847,32,32.0,C8,mf-,16,144,108,16,,,,, +247,22,1,6347,384,970.994,,,,,,144,108,0,,,,, +247,23,1,6348,416,970.994,16,64.0,C#7,mf-,16,144,97,16,,,,, +247,23,1,6348,416,971.068,,,,,,144,97,0,,,,, +247,24,1,6349,432,971.068,32,32.0,E4,mf-,16,144,64,16,,,,, +247,24,1,6349,432,971.215,,,,,,144,64,0,,,,, +247,25,1,6350,464,971.215,16,64.0,G#3,mf,17,144,56,17,,,,, +247,25,1,6350,464,971.289,,,,,,144,56,0,,,,, +247,26,1,6351,480,971.289,16,64.0,C#6,mf,17,144,85,17,,,,, +247,26,1,6351,480,971.362,,,,,,144,85,0,,,,, +247,27,1,6352,496,971.362,16,64.0,A#6,mf,17,144,94,17,,,,, +247,16,3,6341,256,971.436,,,,,,144,105,0,,,,, +247,27,1,6352,496,971.436,,,,,,144,94,0,,,,, +247,28,1,6353,,971.436,,8.0,D6,mp,14,144,86,14,,,,g, +247,28,1,6353,,971.486,,,,,,144,86,0,,,,, +247,29,1,6354,,971.511,,8.0,F5,mp,14,144,77,14,,,,g, +247,29,1,6354,,971.561,,,,,,144,77,0,,,,, +247,30,1,6355,512,971.586,192,8.0,C#5,mp,14,144,73,14,,,,, +247,34,3,6356,512,971.586,128,8.0,E3,mp,14,144,52,14,,,,, +247,35,3,6357,640,972.174,16,64.0,C#4,mf,17,144,61,17,,,,, +247,35,3,6357,640,972.247,,,,,,144,61,0,,,,, +247,36,3,6358,656,972.247,16,64.0,C5,mf+,18,144,72,18,,,,, +247,34,3,6356,512,972.249,,,,,,144,52,0,,,,, +247,36,3,6358,656,972.321,,,,,,144,72,0,,,,, +247,37,3,6359,672,972.321,32,32.0,C#4,mf+,18,144,61,18,,,,, +247,37,3,6359,672,972.468,,,,,,144,61,0,,,,, +247,38,1,6360,704,972.468,64,16.0,A4,f-,19,144,69,19,,,,, +247,39,3,6361,704,972.468,48,32.0,E3,f-,19,144,52,19,,,,, +247,30,1,6355,512,972.543,,,,,,144,73,0,,,,, +247,39,3,6361,704,972.689,,,,,,144,52,0,,,,, +247,40,3,6362,752,972.689,16,64.0,G#2,f,20,144,44,20,,,,, +247,38,1,6360,704,972.762,,,,,,144,69,0,,,,, +247,40,3,6362,752,972.762,,,,,,144,44,0,,,,, +247,41,1,6363,768,972.762,64,16.0,A6,mp,14,144,93,14,,,,, +247,42,3,6364,768,972.762,256,4.0,C#2,mf,17,144,37,17,,,,, +247,41,1,6363,768,973.056,,,,,,144,93,0,,,,, +247,43,1,6365,832,973.056,21,32.0,F#5,mp,14,144,78,14,,,,, +247,43,1,6365,832,973.153,,,,,,144,78,0,,,,, +247,44,1,6366,853,973.153,21,32.0,G#3,mp+,15,144,56,15,,,,, +247,44,1,6366,853,973.249,,,,,,144,56,0,,,,, +247,45,1,6367,874,973.249,22,32.0,F#5,mf,17,144,78,17,,,,, +247,45,1,6367,874,973.35,,,,,,144,78,0,,,,, +247,46,1,6368,896,973.35,21,32.0,C4,mf+,18,144,60,18,,,,, +247,46,1,6368,896,973.447,,,,,,144,60,0,,,,, +247,47,1,6369,917,973.447,21,32.0,A4,f-,19,144,69,19,,,,, +247,47,1,6369,917,973.543,,,,,,144,69,0,,,,, +247,48,0,6370,938,973.543,,,,,,176,64,0,,,,,^ +247,49,1,6371,938,973.543,22,32.0,C4,f+,21,144,60,21,,,,, +247,49,1,6371,938,973.644,,,,,,144,60,0,,,,, +247,50,1,6372,960,973.644,16,64.0,E3,ff,22,144,52,22,,,,, +247,51,1,6373,960,973.644,16,64.0,C5,p,11,144,72,11,,,,, +247,50,1,6372,960,973.718,,,,,,144,52,0,,,,, +247,51,1,6373,960,973.718,,,,,,144,72,0,,,,, +247,52,1,6374,976,973.718,16,64.0,C#4,p,11,144,61,11,,,,, +247,52,1,6374,976,973.792,,,,,,144,61,0,,,,, +247,53,1,6375,992,973.792,16,64.0,E2,p,11,144,40,11,,,,, +247,53,1,6375,992,973.865,,,,,,144,40,0,,,,, +247,54,1,6376,1008,973.865,16,64.0,G#1,p,11,144,32,11,,,,, +247,55,0,6377,1008,973.865,,,,,,,,,,5986,,, +247,42,3,6364,768,973.939,,,,,,144,37,0,,,,, +247,54,1,6376,1008,973.939,,,,,,144,32,0,,,,, +247,57,1,6378,1024,973.939,256,4.0,C6,pp,8,144,84,8,,,,, +247,58,3,6379,1024,973.939,512,2.0,C#2,mf,17,144,37,17,,,,, +247,56,0,6380,1024,973.939,,,,,,176,64,127,,,,,V +247,31,3,6381,,975.115,,8.0,C#4,mp,14,144,61,14,,,,g, +247,31,3,6381,,975.165,,,,,,144,61,0,,,,, +247,57,1,6378,1024,975.19,,,,,,144,84,0,,,,, +247,32,3,6382,,975.19,,8.0,C6,mp,14,144,84,14,,,,g, +247,33,3,6383,,975.265,,8.0,A#5,mp,14,144,82,14,,,,g, +247,33,3,6383,,975.315,,,,,,144,82,0,,,,, +247,32,3,6382,,975.34,,,,,,144,84,0,,,,, +247,59,1,6384,,975.34,,8.0,D6,mp,14,144,86,14,,,,g, +247,59,1,6384,,975.39,,,,,,144,86,0,,,,, +247,60,1,6385,,975.415,,8.0,F5,mp,14,144,77,14,,,,g, +247,60,1,6385,,975.465,,,,,,144,77,0,,,,, +247,61,1,6386,1280,975.49,42,16.0,C#5,mp,14,144,73,14,,,,, +247,61,1,6386,1280,975.683,,,,,,144,73,0,,,,, +247,62,1,6387,1322,975.683,32,32.0,C#5,pp,8,144,73,8,,,,, +247,62,1,6387,1322,975.83,,,,,,144,73,0,,,,, +247,63,1,6388,1354,975.83,22,32.0,E4,pp+,9,144,64,9,,,,, +247,63,1,6388,1354,975.931,,,,,,144,64,0,,,,, +247,64,1,6389,1376,975.931,21,32.0,A#5,p-,10,144,82,10,,,,, +247,64,1,6389,1376,976.028,,,,,,144,82,0,,,,, +247,65,1,6390,1397,976.028,21,32.0,G#3,p,11,144,56,11,,,,, +247,65,1,6390,1397,976.124,,,,,,144,56,0,,,,, +247,66,1,6391,1418,976.124,32,32.0,E4,p+,12,144,64,12,,,,, +247,66,1,6391,1418,976.271,,,,,,144,64,0,,,,, +247,67,1,6392,1450,976.271,22,32.0,G#3,mp-,13,144,56,13,,,,, +247,67,1,6392,1450,976.372,,,,,,144,56,0,,,,, +247,68,1,6393,1472,976.372,21,32.0,A#5,mp,14,144,82,14,,,,, +247,68,1,6393,1472,976.469,,,,,,144,82,0,,,,, +247,69,1,6394,1493,976.469,,,,,,176,102,0,,,,, +248,0,0,6395,0,976.667,,,,,,,,,248,,,, +248,1,1,6396,,976.667,,8.0,D7,mf,17,144,98,17,,,,g, +248,1,1,6396,,976.717,,,,,,144,98,0,,,,, +248,2,1,6397,,976.742,,8.0,F6,mf,17,144,89,17,,,,g, +248,2,1,6397,,976.792,,,,,,144,89,0,,,,, +248,3,1,6398,0,976.817,128,8.0,C#6,mf+,18,144,85,18,,,,, +248,4,3,6399,0,976.817,768,2.0,C#2,,,,,,,,,, +248,3,1,6398,0,977.405,,,,,,144,85,0,,,,, +248,5,1,6400,128,977.405,32,32.0,A7,f+,21,144,105,21,,,,, +248,5,1,6400,128,977.552,,,,,,144,105,0,,,,, +248,6,1,6401,160,977.552,32,32.0,B2,ff,22,144,47,22,,,,, +248,6,1,6401,160,977.699,,,,,,144,47,0,,,,, +248,7,1,6402,192,977.699,21,32.0,F#7,ff,22,144,102,22,,,,, +248,7,1,6402,192,977.795,,,,,,144,102,0,,,,, +248,8,1,6403,213,977.795,21,32.0,G#1,ff,22,144,32,22,,,,, +248,8,1,6403,213,977.892,,,,,,144,32,0,,,,, +248,9,1,6404,234,977.892,22,32.0,F#7,ff,22,144,102,22,,,,, +248,9,1,6404,234,977.993,,,,,,144,102,0,,,,, +248,10,1,6405,256,977.993,21,32.0,C2,ff,22,144,36,22,,,,, +248,10,1,6405,256,978.09,,,,,,144,36,0,,,,, +248,11,1,6406,277,978.09,21,32.0,A6,ff,22,144,93,22,,,,, +248,11,1,6406,277,978.186,,,,,,144,93,0,,,,, +248,12,1,6407,298,978.186,22,32.0,C2,ff,22,144,36,22,,,,, +248,12,1,6407,298,978.287,,,,,,144,36,0,,,,, +248,13,1,6408,320,978.287,64,16.0,E1,ff,22,144,28,22,,,,, +248,13,1,6408,320,978.581,,,,,,144,28,0,,,,, +248,14,0,6409,384,978.581,,,,,,176,64,0,,,,,^ +248,15,1,6410,384,978.581,128,8.0,G#2,ff,22,144,44,22,,,,, +248,15,1,6410,384,979.169,,,,,,144,44,0,,,,, +248,17,1,6411,512,979.169,128,8.0,C#5,p,11,144,73,11,,,,, +248,16,0,6412,512,979.169,,,,,,176,64,127,,,,,V +248,17,1,6411,512,979.758,,,,,,144,73,0,,,,, +248,18,1,6413,640,979.758,85,8.0,A6,mp,14,144,93,14,,,,, +248,18,1,6413,640,980.148,,,,,,144,93,0,,,,, +248,19,1,6414,725,980.148,43,16.0,C#4,mf-,16,144,61,16,,,,, +248,19,1,6414,725,980.346,,,,,,144,61,0,,,,, +248,20,1,6415,768,980.346,21,32.0,A6,mf,17,144,93,17,,,,, +248,21,3,6416,768,980.346,192,8.0,C#2,,,,,,,,,, +248,20,1,6415,768,980.442,,,,,,144,93,0,,,,, +248,22,1,6417,789,980.442,32,32.0,D5,mf,17,144,74,17,,,,, +248,22,1,6417,789,980.59,,,,,,144,74,0,,,,, +248,23,1,6418,821,980.59,32,32.0,C#4,mf+,18,144,61,18,,,,, +248,23,1,6418,821,980.737,,,,,,144,61,0,,,,, +248,24,1,6419,853,980.737,21,32.0,A5,f-,19,144,81,19,,,,, +248,24,1,6419,853,980.833,,,,,,144,81,0,,,,, +248,25,1,6420,874,980.833,22,32.0,D5,f-,19,144,74,19,,,,, +247,58,3,6379,1024,980.928,,,,,,144,37,0,,,,, +248,25,1,6420,874,980.934,,,,,,144,74,0,,,,, +248,26,1,6421,896,980.934,21,32.0,B3,f,20,144,59,20,,,,, +248,27,1,6422,896,980.934,32,32.0,A5,f,20,144,81,20,,,,, +248,26,1,6421,896,981.031,,,,,,144,59,0,,,,, +248,28,1,6423,917,981.031,21,32.0,F4,f,20,144,65,20,,,,, +248,29,1,6424,917,981.031,32,32.0,D5,f,20,144,74,20,,,,, +248,27,1,6422,896,981.081,,,,,,144,81,0,,,,, +248,28,1,6423,917,981.127,,,,,,144,65,0,,,,, +248,30,1,6425,938,981.127,86,8.0,B3,f,20,144,59,20,,,,, +248,29,1,6424,917,981.178,,,,,,144,74,0,,,,, +248,31,3,6426,960,981.228,32,32.0,A4,ff,22,144,69,22,,,,, +248,31,3,6426,960,981.375,,,,,,144,69,0,,,,, +248,32,3,6427,992,981.375,32,32.0,C#2,ff,22,144,37,22,,,,, +248,30,1,6425,938,981.522,,,,,,144,59,0,,,,, +248,32,3,6427,992,981.522,,,,,,144,37,0,,,,, +248,33,1,6428,1024,981.522,,,,,,176,102,0,,,,, +248,34,3,6429,1024,981.522,512,2.0,B1,ff,22,144,35,22,,,,, +248,35,3,6430,1024,981.522,512,2.0,C#2,ff,22,144,37,22,,,,, +248,36,3,6431,1024,981.522,512,2.0,A4,ff,22,144,69,22,,,,, +248,37,1,6432,1066,981.715,22,32.0,C#5,p,11,144,73,11,,,,, +248,37,1,6432,1066,981.817,,,,,,144,73,0,,,,, +248,38,1,6433,1088,981.817,21,32.0,E4,p,11,144,64,11,,,,, +248,38,1,6433,1088,981.913,,,,,,144,64,0,,,,, +248,39,1,6434,1109,981.913,21,32.0,G#3,mp-,13,144,56,13,,,,, +248,39,1,6434,1109,982.01,,,,,,144,56,0,,,,, +248,40,1,6435,1130,982.01,22,32.0,A#5,mp+,15,144,82,15,,,,, +248,40,1,6435,1130,982.111,,,,,,144,82,0,,,,, +248,41,1,6436,1152,982.111,32,32.0,G#3,mf,17,144,56,17,,,,, +248,42,1,6437,1152,982.111,32,32.0,E4,mf,17,144,64,17,,,,, +248,43,1,6438,1184,982.258,32,32.0,C#5,mf,17,144,73,17,,,,, +248,44,1,6439,1184,982.258,32,32.0,A#5,mf,17,144,82,17,,,,, +248,43,1,6438,1184,982.405,,,,,,144,73,0,,,,, +248,44,1,6439,1184,982.405,,,,,,144,82,0,,,,, +248,45,1,6440,1216,982.405,,,,,,176,102,0,,,,, +248,41,1,6436,1152,982.483,,,,,,144,56,0,,,,, +248,42,1,6437,1152,982.483,,,,,,144,64,0,,,,, +248,46,1,6441,1280,982.699,,,,,,176,102,0,,,,, +248,47,1,6442,1312,982.846,32,32.0,G#2,ff,22,144,44,22,,,,, +248,47,1,6442,1312,982.993,,,,,,144,44,0,,,,, +248,48,1,6443,1344,982.993,64,16.0,F#6,ff,22,144,90,22,,,,, +248,48,1,6443,1344,983.287,,,,,,144,90,0,,,,, +248,49,1,6444,1408,983.287,85,8.0,A5,p,11,144,81,11,,,,, +248,49,1,6444,1408,983.678,,,,,,144,81,0,,,,, +248,50,1,6445,1493,983.678,43,16.0,C#4,mp,14,144,61,14,,,,, +248,50,1,6445,1493,983.875,,,,,,144,61,0,,,,, +249,0,0,6446,0,983.875,,,,,,,,,249,,,, +249,1,1,6447,0,983.875,21,32.0,A5,mp+,15,144,81,15,,,,, +249,2,3,6448,0,983.875,,,,,,176,102,0,,,,, +249,3,4,6449,0,983.875,,,,,,176,102,0,,,,, +249,1,1,6447,0,983.972,,,,,,144,81,0,,,,, +249,4,1,6450,21,983.972,32,32.0,D5,mf-,16,144,74,16,,,,, +248,34,3,6429,1024,984.1,,,,,,144,35,0,,,,, +248,35,3,6430,1024,984.1,,,,,,144,37,0,,,,, +248,36,3,6431,1024,984.1,,,,,,144,69,0,,,,, +249,4,1,6450,21,984.119,,,,,,144,74,0,,,,, +249,5,1,6451,53,984.119,32,32.0,C#3,mf-,16,144,49,16,,,,, +249,5,1,6451,53,984.266,,,,,,144,49,0,,,,, +249,6,1,6452,85,984.266,21,32.0,A5,mf,17,144,81,17,,,,, +249,6,1,6452,85,984.362,,,,,,144,81,0,,,,, +249,7,1,6453,106,984.362,22,32.0,D5,mf+,18,144,74,18,,,,, +249,7,1,6453,106,984.464,,,,,,144,74,0,,,,, +249,8,1,6454,128,984.464,21,32.0,B2,f-,19,144,47,19,,,,, +249,9,1,6455,128,984.464,32,32.0,A5,f-,19,144,81,19,,,,, +249,8,1,6454,128,984.56,,,,,,144,47,0,,,,, +249,10,1,6456,149,984.56,21,32.0,F4,f-,19,144,65,19,,,,, +249,9,1,6455,128,984.611,,,,,,144,81,0,,,,, +249,10,1,6456,149,984.657,,,,,,144,65,0,,,,, +249,11,1,6457,170,984.657,43,16.0,B2,f,20,144,47,20,,,,, +249,12,1,6458,213,984.854,43,16.0,F4,f,20,144,65,20,,,,, +249,11,1,6457,170,985.004,,,,,,144,47,0,,,,, +249,13,1,6459,256,985.052,21,32.0,F4,,,,,,,,,, +249,12,1,6458,213,985.148,,,,,,144,65,0,,,,, +249,14,1,6460,277,985.148,43,16.0,B2,mp-,13,144,47,13,,,,, +249,14,1,6460,277,985.346,,,,,,144,47,0,,,,, +249,15,0,6461,320,985.346,,,,,,176,64,0,,,,,^ +249,16,1,6462,320,985.346,64,16.0,F3,pp,8,144,53,8,,,,, +249,16,1,6462,320,985.64,,,,,,144,53,0,,,,, +249,17,1,6463,384,985.64,,,,,,176,102,0,,,,, +249,18,3,6464,384,985.64,128,8.0,B1,ff,22,144,35,22,,,,, +249,19,3,6465,384,985.64,128,8.0,C#2,ff,22,144,37,22,,,,, +249,20,3,6466,384,985.64,128,8.0,A4,ff,22,144,69,22,,,,, +249,22,1,6467,512,986.228,,,,,,176,102,0,,,,, +249,23,3,6468,512,986.228,128,8.0,B1,,,,,,,,,, +249,24,3,6469,512,986.228,128,8.0,C#2,,,,,,,,,, +249,25,3,6470,512,986.228,128,8.0,A4,,,,,,,,,, +249,21,0,6471,512,986.228,,,,,,176,64,127,,,,,V +249,26,1,6472,533,986.325,32,32.0,C#6,p,11,144,85,11,,,,, +249,26,1,6472,533,986.472,,,,,,144,85,0,,,,, +249,27,1,6473,565,986.472,32,32.0,C7,p+,12,144,96,12,,,,, +249,27,1,6473,565,986.619,,,,,,144,96,0,,,,, +249,28,1,6474,597,986.619,21,32.0,C#6,mp-,13,144,85,13,,,,, +249,28,1,6474,597,986.715,,,,,,144,85,0,,,,, +249,29,0,6475,618,986.715,,,,,,176,64,0,,,,,^ +249,30,1,6476,618,986.715,32,32.0,C7,mp-,13,144,96,13,,,,, +249,18,3,6464,384,986.817,,,,,,144,35,0,,,,, +249,19,3,6465,384,986.817,,,,,,144,37,0,,,,, +249,20,3,6466,384,986.817,,,,,,144,69,0,,,,, +249,31,3,6477,640,986.817,,,,,,176,102,0,,,,, +249,30,1,6476,618,986.862,,,,,,144,96,0,,,,, +249,32,1,6478,650,986.862,32,32.0,C#6,mp,14,144,85,14,,,,, +249,32,1,6478,650,987.01,,,,,,144,85,0,,,,, +249,33,1,6479,682,987.01,86,8.0,E4,mp+,15,144,64,15,,,,, +249,33,1,6479,682,987.405,,,,,,144,64,0,,,,, +249,35,1,6480,768,987.405,16,64.0,C#3,p,11,144,49,11,,,,, +249,36,3,6481,768,987.405,,,,,,176,102,0,,,,, +249,37,4,6482,768,987.405,,,,,,176,102,0,,,,, +249,34,0,6483,768,987.405,,,,,,176,64,127,,,,,V +249,35,1,6480,768,987.478,,,,,,144,49,0,,,,, +249,38,1,6484,784,987.478,24,64.0,D4,p+,12,144,62,12,,,,, +249,38,1,6484,784,987.589,,,,,,144,62,0,,,,, +249,39,1,6485,808,987.589,16,64.0,C#3,mp-,13,144,49,13,,,,, +249,39,1,6485,808,987.662,,,,,,144,49,0,,,,, +249,40,1,6486,824,987.662,16,64.0,D4,mp,14,144,62,14,,,,, +249,40,1,6486,824,987.736,,,,,,144,62,0,,,,, +249,41,1,6487,840,987.736,16,64.0,C#3,mp+,15,144,49,15,,,,, +249,42,1,6488,840,987.736,16,64.0,F3,mp+,15,144,53,15,,,,, +249,41,1,6487,840,987.809,,,,,,144,49,0,,,,, +249,42,1,6488,840,987.809,,,,,,144,53,0,,,,, +249,43,1,6489,856,987.809,24,64.0,A4,mf-,16,144,69,16,,,,, +249,43,1,6489,856,987.919,,,,,,144,69,0,,,,, +249,44,1,6490,880,987.919,16,64.0,F3,mf,17,144,53,17,,,,, +249,44,1,6490,880,987.993,,,,,,144,53,0,,,,, +249,45,1,6491,896,987.993,16,64.0,A5,mf+,18,144,81,18,,,,, +249,45,1,6491,896,988.067,,,,,,144,81,0,,,,, +249,46,1,6492,912,988.067,16,64.0,B2,f-,19,144,47,19,,,,, +249,47,1,6493,912,988.067,16,64.0,C#3,f-,19,144,49,19,,,,, +249,46,1,6492,912,988.14,,,,,,144,47,0,,,,, +249,47,1,6493,912,988.14,,,,,,144,49,0,,,,, +249,48,1,6494,928,988.14,24,64.0,A5,f-,19,144,81,19,,,,, +249,48,1,6494,928,988.25,,,,,,144,81,0,,,,, +249,49,1,6495,952,988.25,24,64.0,B2,f+,21,144,47,21,,,,, +249,50,1,6496,952,988.25,16,64.0,C#3,f+,21,144,49,21,,,,, +249,51,1,6497,952,988.25,16,64.0,F3,f+,21,144,53,21,,,,, +249,50,1,6496,952,988.324,,,,,,144,49,0,,,,, +249,51,1,6497,952,988.324,,,,,,144,53,0,,,,, +249,49,1,6495,952,988.361,,,,,,144,47,0,,,,, +249,52,1,6498,976,988.361,48,32.0,B1,ff,22,144,35,22,,,,, +249,54,1,6499,1024,988.581,38,32.0,E6,pp,8,144,88,8,,,,, +249,55,3,6500,,988.581,,8.0,F2,p,11,144,41,11,,,,g, +249,55,3,6500,,988.631,,,,,,144,41,0,,,,, +249,53,1,6501,,988.656,,8.0,C4,p,11,144,60,11,,,,g, +249,56,3,6502,,988.656,,8.0,A6,p,11,144,93,11,,,,g, +249,53,1,6501,,988.706,,,,,,144,60,0,,,,, +249,56,3,6502,,988.706,,,,,,144,93,0,,,,, +249,54,1,6499,1024,988.756,,,,,,144,88,0,,,,, +249,57,3,6503,1024,988.806,512,2.0,D#4,p,11,144,63,11,,,,, +249,58,3,6504,1024,988.806,512,2.0,G4,p,11,144,67,11,,,,, +249,59,4,6505,1024,988.806,512,2.0,D4,ff,22,144,62,22,,,,, +249,52,1,6498,976,988.956,,,,,,144,35,0,,,,, +249,60,1,6506,1062,988.981,38,32.0,G#6,pp+,9,144,92,9,,,,, +249,60,1,6506,1062,989.155,,,,,,144,92,0,,,,, +249,61,1,6507,1100,989.155,26,32.0,A6,p,11,144,93,11,,,,, +249,61,1,6507,1100,989.275,,,,,,144,93,0,,,,, +249,62,1,6508,1126,989.275,77,16.0,E6,p,11,144,88,11,,,,, +249,62,1,6508,1126,989.629,,,,,,144,88,0,,,,, +249,63,1,6509,1203,989.629,77,16.0,G#6,p-,10,144,92,10,,,,, +249,63,1,6509,1203,989.983,,,,,,144,92,0,,,,, +249,64,1,6510,1280,989.983,256,4.0,C3,pp,8,144,48,8,,,,, +249,65,1,6511,1280,989.983,256,4.0,E6,pp,8,144,88,8,,,,, +249,66,1,6512,1280,989.983,256,4.0,G#6,pp,8,144,92,8,,,,, +250,0,0,6513,0,991.159,,,,,,,,,250,,,, +250,1,1,6514,0,991.159,,,,,,176,102,0,,,,, +250,2,3,6515,0,991.159,,,,,,176,102,0,,,,, +250,3,4,6516,0,991.159,256,4.0,D4,,,,,,,,,, +249,57,3,6503,1024,991.309,,,,,,144,63,0,,,,, +249,58,3,6504,1024,991.309,,,,,,144,67,0,,,,, +249,64,1,6510,1280,991.309,,,,,,144,48,0,,,,, +249,65,1,6511,1280,991.309,,,,,,144,88,0,,,,, +249,66,1,6512,1280,991.309,,,,,,144,92,0,,,,, +250,4,3,6517,256,992.336,512,2.0,A#1,ff,22,144,34,22,,,,, +250,5,4,6518,256,992.336,170,4.0,D4,,,,,,,,,, +250,6,0,6519,426,993.117,,,,,,176,64,0,,,,,^ +250,7,4,6520,426,993.117,86,8.0,C#3,p,11,144,49,11,,,,, +250,8,4,6521,426,993.117,128,8.0,D4,p,11,144,62,11,,,,, +249,59,4,6505,1024,993.267,,,,,,144,62,0,,,,, +250,7,4,6520,426,993.512,,,,,,144,49,0,,,,, +250,9,1,6522,512,993.512,,,,,,176,102,0,,,,, +250,10,4,6523,512,993.512,,,,,,176,102,0,,,,, +250,8,4,6521,426,993.705,,,,,,144,62,0,,,,, +250,11,4,6524,682,994.293,,,,,,176,102,0,,,,, +250,12,0,6525,682,994.293,,,,,,,,,,5987,,, +250,4,3,6517,256,994.689,,,,,,144,34,0,,,,, +250,14,3,6526,768,994.689,768,2.0,A#1,ff,22,144,34,22,,,,, +250,13,0,6527,768,994.689,,,,,,176,64,127,,,,,V +250,15,4,6528,,995.079,,8.0,F2,p,11,144,41,11,,,,g, +250,15,4,6528,,995.129,,,,,,144,41,0,,,,, +250,16,4,6529,,995.154,,8.0,A6,p,11,144,93,11,,,,g, +250,16,4,6529,,995.204,,,,,,144,93,0,,,,, +250,17,4,6530,853,995.229,0,8.0,C4,p,11,,,,,,,, +250,18,4,6531,853,995.229,171,4.0,D#4,p,11,144,63,11,,,,, +250,19,4,6532,853,995.229,256,4.0,G4,p,11,144,67,11,,,,, +250,18,4,6531,853,996.015,,,,,,144,63,0,,,,, +250,20,4,6533,1024,996.015,,,,,,176,102,0,,,,, +250,19,4,6532,853,996.406,,,,,,144,67,0,,,,, +250,21,1,6534,1280,997.192,,,,,,176,102,0,,,,, +250,22,4,6535,1280,997.192,256,4.0,F#3,p,11,144,54,11,,,,, +250,23,1,6536,1382,997.66,154,8.0,C3,p,11,144,48,11,,,,, +250,24,1,6537,1382,997.66,128,8.0,E6,p,11,144,88,11,,,,, +250,25,1,6538,1382,997.66,128,8.0,G#6,p,11,144,92,11,,,,, +250,14,3,6526,768,998.218,,,,,,144,34,0,,,,, +250,24,1,6537,1382,998.249,,,,,,144,88,0,,,,, +250,25,1,6538,1382,998.249,,,,,,144,92,0,,,,, +250,22,4,6535,1280,998.368,,,,,,144,54,0,,,,, +250,23,1,6536,1382,998.368,,,,,,144,48,0,,,,, +251,0,0,6539,0,998.368,,,,,,,,,251,,,, +251,1,1,6540,0,998.368,307,4.0,E6,mp,14,144,88,14,,,,, +251,2,1,6541,0,998.368,256,4.0,G#6,mp,14,144,92,14,,,,, +251,3,1,6542,0,998.368,256,4.0,A6,mp,14,144,93,14,,,,, +251,4,3,6543,0,998.368,,,,,,176,102,0,,,,, +251,2,1,6541,0,999.544,,,,,,144,92,0,,,,, +251,3,1,6542,0,999.544,,,,,,144,93,0,,,,, +251,1,1,6540,0,999.779,,,,,,144,88,0,,,,, +251,5,1,6544,307,999.779,205,4.0,E6,p-,10,144,88,10,,,,, +251,6,1,6545,307,999.779,256,4.0,G#6,p-,10,144,92,10,,,,, +251,7,1,6546,307,999.779,256,4.0,A6,p-,10,144,93,10,,,,, +251,8,3,6547,448,1000.427,64,16.0,G#2,ff,22,144,44,22,,,,, +251,5,1,6544,307,1000.721,,,,,,144,88,0,,,,, +251,8,3,6547,448,1000.721,,,,,,144,44,0,,,,, +251,9,1,6548,512,1000.721,384,4.0,A4,pp,8,144,69,8,,,,, +251,10,1,6549,512,1000.721,256,4.0,F#6,pp,8,144,90,8,,,,, +251,11,3,6550,512,1000.721,128,8.0,A#3,ff,22,144,58,22,,,,, +251,6,1,6545,307,1000.955,,,,,,144,92,0,,,,, +251,7,1,6546,307,1000.955,,,,,,144,93,0,,,,, +251,11,3,6550,512,1001.309,,,,,,144,58,0,,,,, +251,12,3,6551,640,1001.309,16,64.0,D4,f,20,144,62,20,,,,, +251,12,3,6551,640,1001.383,,,,,,144,62,0,,,,, +251,13,3,6552,656,1001.383,16,64.0,B2,f+,21,144,47,21,,,,, +251,14,3,6553,656,1001.383,16,64.0,C#3,f+,21,144,49,21,,,,, +251,13,3,6552,656,1001.456,,,,,,144,47,0,,,,, +251,14,3,6553,656,1001.456,,,,,,144,49,0,,,,, +251,15,3,6554,672,1001.456,24,64.0,A5,f+,21,144,81,21,,,,, +251,15,3,6554,672,1001.567,,,,,,144,81,0,,,,, +251,16,3,6555,696,1001.567,24,64.0,B2,ff,22,144,47,22,,,,, +251,17,3,6556,696,1001.567,16,64.0,C#3,ff,22,144,49,22,,,,, +251,18,3,6557,696,1001.567,16,64.0,F3,ff,22,144,53,22,,,,, +251,17,3,6556,696,1001.64,,,,,,144,49,0,,,,, +251,18,3,6557,696,1001.64,,,,,,144,53,0,,,,, +251,16,3,6555,696,1001.677,,,,,,144,47,0,,,,, +251,19,3,6558,720,1001.677,48,32.0,B1,ff+,23,144,35,23,,,,, +251,10,1,6549,512,1001.897,,,,,,144,90,0,,,,, +251,19,3,6558,720,1001.897,,,,,,144,35,0,,,,, +251,20,3,6559,768,1001.897,128,8.0,C#3,fff,24,144,49,23,,,,, +251,21,3,6560,768,1001.897,128,8.0,D4,fff,24,144,62,23,,,,, +251,22,1,6561,896,1002.486,64,16.0,F#6,ff,22,144,90,22,,,,, +251,23,3,6562,896,1002.486,128,8.0,G#2,ff,22,144,44,22,,,,, +251,9,1,6548,512,1002.711,,,,,,144,69,0,,,,, +251,20,3,6559,768,1002.711,,,,,,144,49,0,,,,, +251,21,3,6560,768,1002.711,,,,,,144,62,0,,,,, +251,22,1,6561,896,1002.78,,,,,,144,90,0,,,,, +251,24,1,6563,960,1002.78,64,16.0,A4,ff,22,144,69,22,,,,, +251,24,1,6563,960,1003.074,,,,,,144,69,0,,,,, +251,25,1,6564,1024,1003.074,,,,,,176,102,0,,,,, +251,26,3,6565,1024,1003.074,,,,,,176,102,0,,,,, +251,23,3,6562,896,1003.074,,,,,,144,44,0,,,,, +251,27,3,6566,1152,1003.662,16,64.0,F3,f,20,144,53,20,,,,, +251,28,3,6567,1152,1003.662,16,64.0,A4,f,20,144,69,20,,,,, +251,27,3,6566,1152,1003.736,,,,,,144,53,0,,,,, +251,28,3,6567,1152,1003.736,,,,,,144,69,0,,,,, +251,29,3,6568,1168,1003.736,16,64.0,C#3,f,20,144,49,20,,,,, +251,30,3,6569,1168,1003.736,16,64.0,D4,f,20,144,62,20,,,,, +251,29,3,6568,1168,1003.809,,,,,,144,49,0,,,,, +251,30,3,6569,1168,1003.809,,,,,,144,62,0,,,,, +251,31,3,6570,1184,1003.809,24,64.0,A5,f+,21,144,81,21,,,,, +251,31,3,6570,1184,1003.919,,,,,,144,81,0,,,,, +251,32,3,6571,1208,1003.919,24,64.0,B2,f+,21,144,47,21,,,,, +251,33,3,6572,1208,1003.919,16,64.0,C#3,f+,21,144,49,21,,,,, +251,34,3,6573,1208,1003.919,16,64.0,F3,f+,21,144,53,21,,,,, +251,33,3,6572,1208,1003.993,,,,,,144,49,0,,,,, +251,34,3,6573,1208,1003.993,,,,,,144,53,0,,,,, +251,32,3,6571,1208,1004.03,,,,,,144,47,0,,,,, +251,35,3,6574,1232,1004.03,48,32.0,B1,f+,21,144,35,21,,,,, +251,35,3,6574,1232,1004.25,,,,,,144,35,0,,,,, +251,36,3,6575,1280,1004.25,192,8.0,C#3,ff,22,144,49,22,,,,, +251,37,3,6576,1280,1004.25,128,8.0,D4,ff,22,144,62,22,,,,, +251,37,3,6576,1280,1004.839,,,,,,144,62,0,,,,, +251,38,1,6577,1408,1004.839,64,16.0,F#6,ff,22,144,90,22,,,,, +251,36,3,6575,1280,1005.133,,,,,,144,49,0,,,,, +251,38,1,6577,1408,1005.133,,,,,,144,90,0,,,,, +251,39,1,6578,1472,1005.133,64,16.0,A4,ff,22,144,69,22,,,,, +251,40,3,6579,1472,1005.133,64,16.0,G#2,ff,22,144,44,22,,,,, +251,39,1,6578,1472,1005.427,,,,,,144,69,0,,,,, +251,40,3,6579,1472,1005.427,,,,,,144,44,0,,,,, +252,0,0,6580,0,1005.427,,,,,,,,,252,,,, +252,1,1,6581,0,1005.427,,,,,,176,102,0,,,,, +252,2,3,6582,0,1005.427,256,4.0,A#3,ff,22,144,58,22,,,,, +252,2,3,6582,0,1006.603,,,,,,144,58,0,,,,, +252,3,3,6583,256,1006.603,256,4.0,B1,ff,22,144,35,22,,,,, +252,4,3,6584,256,1006.603,256,4.0,C#2,ff,22,144,37,22,,,,, +252,5,3,6585,256,1006.603,256,4.0,A4,ff,22,144,69,22,,,,, +252,6,0,6586,427,1007.389,,,,,,176,64,0,,,,,^ +252,3,3,6583,256,1007.78,,,,,,144,35,0,,,,, +252,4,3,6584,256,1007.78,,,,,,144,37,0,,,,, +252,5,3,6585,256,1007.78,,,,,,144,69,0,,,,, +252,7,1,6587,512,1007.78,85,8.0,G#4,pp,8,144,68,8,,,,, +252,8,3,6588,512,1007.78,64,16.0,C3,p,11,144,48,11,,,,, +252,9,0,6589,542,1007.918,,,,,,176,64,127,,,,,V +252,8,3,6588,512,1008.074,,,,,,144,48,0,,,,, +252,10,3,6590,576,1008.074,192,8.0,E4,p,11,144,64,11,,,,, +252,7,1,6587,512,1008.17,,,,,,144,68,0,,,,, +252,11,1,6591,597,1008.17,85,8.0,C6,pp+,9,144,84,9,,,,, +252,11,1,6591,597,1008.561,,,,,,144,84,0,,,,, +252,12,1,6592,682,1008.561,43,16.0,A#3,pp+,9,144,58,9,,,,, +252,12,1,6592,682,1008.759,,,,,,144,58,0,,,,, +252,13,1,6593,725,1008.759,43,16.0,G#4,p-,10,144,68,10,,,,, +252,14,1,6594,768,1008.956,64,16.0,A#3,p-,10,144,58,10,,,,, +252,15,1,6595,768,1008.956,64,16.0,C6,p-,10,144,84,10,,,,, +252,16,3,6596,768,1008.956,,,,,,176,102,0,,,,, +252,10,3,6590,576,1009.106,,,,,,144,64,0,,,,, +252,13,1,6593,725,1009.106,,,,,,144,68,0,,,,, +252,14,1,6594,768,1009.25,,,,,,144,58,0,,,,, +252,15,1,6595,768,1009.25,,,,,,144,84,0,,,,, +252,17,1,6597,832,1009.25,42,16.0,G#4,p,11,144,68,11,,,,, +252,18,3,6598,853,1009.347,85,8.0,E4,p,11,144,64,11,,,,, +252,17,1,6597,832,1009.443,,,,,,144,68,0,,,,, +252,19,1,6599,874,1009.443,64,16.0,A#3,p,11,144,58,11,,,,, +252,20,1,6600,874,1009.443,64,16.0,G#4,p,11,144,68,11,,,,, +252,18,3,6598,853,1009.737,,,,,,144,64,0,,,,, +252,19,1,6599,874,1009.737,,,,,,144,58,0,,,,, +252,20,1,6600,874,1009.737,,,,,,144,68,0,,,,, +252,21,1,6601,938,1009.737,43,16.0,G#4,p+,12,144,68,12,,,,, +252,22,3,6602,938,1009.737,86,8.0,G#2,p,11,144,44,11,,,,, +252,21,1,6601,938,1009.935,,,,,,144,68,0,,,,, +252,23,1,6603,981,1009.935,43,16.0,A#3,p+,12,144,58,12,,,,, +252,24,1,6604,981,1009.935,64,16.0,G#4,p+,12,144,68,12,,,,, +252,25,1,6605,981,1009.935,64,16.0,C7,p+,12,144,96,12,,,,, +252,22,3,6602,938,1010.133,,,,,,144,44,0,,,,, +252,23,1,6603,981,1010.133,,,,,,144,58,0,,,,, +252,26,1,6606,1024,1010.133,16,64.0,C8,pp,8,144,108,8,,,,, +252,27,3,6607,1024,1010.133,,,,,,176,102,0,,,,, +252,26,1,6606,1024,1010.206,,,,,,144,108,0,,,,, +252,28,1,6608,1040,1010.206,16,64.0,E4,pp,8,144,64,8,,,,, +252,24,1,6604,981,1010.229,,,,,,144,68,0,,,,, +252,25,1,6605,981,1010.229,,,,,,144,96,0,,,,, +252,28,1,6608,1040,1010.28,,,,,,144,64,0,,,,, +252,29,1,6609,1056,1010.28,16,64.0,C#5,pp+,9,144,73,9,,,,, +252,29,1,6609,1056,1010.353,,,,,,144,73,0,,,,, +252,30,1,6610,1072,1010.353,16,64.0,E4,pp+,9,144,64,9,,,,, +252,30,1,6610,1072,1010.427,,,,,,144,64,0,,,,, +252,31,1,6611,1088,1010.427,24,64.0,C#5,p-,10,144,73,10,,,,, +252,31,1,6611,1088,1010.537,,,,,,144,73,0,,,,, +252,32,1,6612,1112,1010.537,24,64.0,E4,p-,10,144,64,10,,,,, +252,32,1,6612,1112,1010.647,,,,,,144,64,0,,,,, +252,33,1,6613,1136,1010.647,16,64.0,C#5,p,11,144,73,11,,,,, +252,33,1,6613,1136,1010.721,,,,,,144,73,0,,,,, +252,34,1,6614,1152,1010.721,24,64.0,C7,p,11,144,96,11,,,,, +252,34,1,6614,1152,1010.831,,,,,,144,96,0,,,,, +252,35,1,6615,1176,1010.831,24,64.0,D6,p+,12,144,86,12,,,,, +252,36,3,6616,1194,1010.914,86,8.0,A5,p+,12,144,81,12,,,,, +252,37,1,6617,1200,1010.942,16,64.0,E4,mp-,13,144,64,13,,,,, +252,35,1,6615,1176,1010.942,,,,,,144,86,0,,,,, +252,37,1,6617,1200,1011.015,,,,,,144,64,0,,,,, +252,38,1,6618,1216,1011.015,16,64.0,C#5,mp-,13,144,73,13,,,,, +252,38,1,6618,1216,1011.089,,,,,,144,73,0,,,,, +252,39,1,6619,1232,1011.089,16,64.0,A#6,mp-,13,144,94,13,,,,, +252,39,1,6619,1232,1011.162,,,,,,144,94,0,,,,, +252,40,1,6620,1248,1011.162,16,64.0,C7,mp,14,144,96,14,,,,, +252,40,1,6620,1248,1011.236,,,,,,144,96,0,,,,, +252,41,1,6621,1264,1011.236,16,64.0,E4,mp,14,144,64,14,,,,, +252,36,3,6616,1194,1011.309,,,,,,144,81,0,,,,, +252,41,1,6621,1264,1011.309,,,,,,144,64,0,,,,, +252,42,1,6622,1280,1011.309,16,64.0,A#6,mp+,15,144,94,15,,,,, +252,43,3,6623,1280,1011.309,,,,,,176,102,0,,,,, +252,42,1,6622,1280,1011.383,,,,,,144,94,0,,,,, +252,44,1,6624,1296,1011.383,24,64.0,G#3,mp+,15,144,56,15,,,,, +252,45,1,6625,1296,1011.383,16,64.0,E4,mp+,15,144,64,15,,,,, +252,45,1,6625,1296,1011.456,,,,,,144,64,0,,,,, +252,44,1,6624,1296,1011.493,,,,,,144,56,0,,,,, +252,46,1,6626,1320,1011.493,16,64.0,A#5,mf-,16,144,82,16,,,,, +252,46,1,6626,1320,1011.567,,,,,,144,82,0,,,,, +252,47,1,6627,1336,1011.567,24,64.0,G#2,mf-,16,144,44,16,,,,, +252,47,1,6627,1336,1011.677,,,,,,144,44,0,,,,, +252,48,1,6628,1360,1011.677,16,64.0,A#5,mf,17,144,82,17,,,,, +252,49,1,6629,1360,1011.677,16,64.0,C6,mf,17,144,84,17,,,,, +252,48,1,6628,1360,1011.75,,,,,,144,82,0,,,,, +252,49,1,6629,1360,1011.75,,,,,,144,84,0,,,,, +252,50,1,6630,1376,1011.75,24,64.0,G#2,mf,17,144,44,17,,,,, +252,51,1,6631,1376,1011.75,16,64.0,E3,mf,17,144,52,17,,,,, +252,51,1,6631,1376,1011.824,,,,,,144,52,0,,,,, +252,50,1,6630,1376,1011.861,,,,,,144,44,0,,,,, +252,52,1,6632,1400,1011.861,24,64.0,A#5,mf+,18,144,82,18,,,,, +252,53,1,6633,1400,1011.861,16,64.0,C6,mf+,18,144,84,18,,,,, +252,53,1,6633,1400,1011.934,,,,,,144,84,0,,,,, +252,52,1,6632,1400,1011.971,,,,,,144,82,0,,,,, +252,54,1,6634,1424,1011.971,16,64.0,G#1,mf+,18,144,32,18,,,,, +252,54,1,6634,1424,1012.044,,,,,,144,32,0,,,,, +252,55,1,6635,1440,1012.044,24,64.0,C#4,f-,19,144,61,19,,,,, +252,55,1,6635,1440,1012.155,,,,,,144,61,0,,,,, +252,56,1,6636,1464,1012.155,24,64.0,E3,f-,19,144,52,19,,,,, +252,57,1,6637,1464,1012.155,16,64.0,C#4,f-,19,144,61,19,,,,, +252,57,1,6637,1464,1012.228,,,,,,144,61,0,,,,, +252,56,1,6636,1464,1012.265,,,,,,144,52,0,,,,, +252,58,1,6638,1488,1012.265,24,64.0,G#1,f,20,144,32,20,,,,, +252,59,0,6639,1512,1012.28,,,,,,176,64,0,,,,,^ +252,58,1,6638,1488,1012.375,,,,,,144,32,0,,,,, +252,60,1,6640,1512,1012.375,24,64.0,G#2,f,20,144,44,20,,,,, +252,61,1,6641,1512,1012.375,16,64.0,A#5,f,20,144,82,20,,,,, +252,61,1,6641,1512,1012.449,,,,,,144,82,0,,,,, +252,60,1,6640,1512,1012.486,,,,,,144,44,0,,,,, +253,0,0,6642,0,1012.486,,,,,,,,,253,,,, +253,1,0,6643,0,1012.486,,,,,,,,,,5988,,, +253,3,1,6644,0,1012.486,512,2.0,C6,ff,22,144,84,22,,,,, +253,4,3,6645,0,1012.486,341,2.0,D#4,p,11,144,63,11,,,,, +253,5,3,6646,0,1012.486,512,2.0,G4,p,11,144,67,11,,,,, +253,2,0,6647,0,1012.58,,,,,,176,64,127,,,,,V +253,4,3,6645,0,1014.053,,,,,,144,63,0,,,,, +253,5,3,6646,0,1014.053,,,,,,144,67,0,,,,, +253,6,3,6648,341,1014.053,43,16.0,D#4,mf+,18,144,63,18,,,,, +253,7,3,6649,341,1014.053,64,16.0,G4,mf+,18,144,67,18,,,,, +253,8,3,6650,341,1014.053,64,16.0,C#7,mf+,18,144,97,18,,,,, +253,9,3,6651,341,1014.053,64,16.0,A7,mf+,18,144,105,18,,,,, +253,6,3,6648,341,1014.25,,,,,,144,63,0,,,,, +253,7,3,6649,341,1014.25,,,,,,144,67,0,,,,, +253,10,3,6652,384,1014.25,128,8.0,D#4,f-,19,144,63,19,,,,, +253,11,3,6653,384,1014.25,128,8.0,F#4,f-,19,144,66,19,,,,, +253,12,3,6654,384,1014.25,128,8.0,G4,f-,19,144,67,19,,,,, +253,13,3,6655,384,1014.25,128,8.0,D#6,f-,19,144,87,19,,,,, +253,8,3,6650,341,1014.347,,,,,,144,97,0,,,,, +253,9,3,6651,341,1014.347,,,,,,144,105,0,,,,, +253,10,3,6652,384,1014.839,,,,,,144,63,0,,,,, +253,11,3,6653,384,1014.839,,,,,,144,66,0,,,,, +253,12,3,6654,384,1014.839,,,,,,144,67,0,,,,, +253,13,3,6655,384,1014.839,,,,,,144,87,0,,,,, +253,14,1,6656,512,1014.839,85,8.0,C6,,,,,,,,,, +253,15,3,6657,512,1014.839,512,2.0,B1,ff,22,144,35,22,,,,, +253,16,3,6658,512,1014.839,512,2.0,C#2,ff,22,144,37,22,,,,, +253,17,3,6659,512,1014.839,512,2.0,D3,ff,22,144,50,22,,,,, +253,18,3,6660,512,1014.839,512,2.0,A4,ff,22,144,69,22,,,,, +253,3,1,6644,0,1015.229,,,,,,144,84,0,,,,, +253,19,1,6661,597,1015.229,171,4.0,C#4,ff,22,144,61,22,,,,, +253,20,1,6662,597,1015.229,256,4.0,C6,ff,22,144,84,22,,,,, +253,21,1,6663,768,1016.015,85,16.0,C#4,,,,,,,,,, +253,22,1,6664,768,1016.015,64,16.0,C6,,,,,,,,,, +253,23,0,6665,768,1016.015,,,,,,,,,,5989,,, +253,19,1,6661,597,1016.406,,,,,,144,61,0,,,,, +253,24,1,6666,853,1016.406,28,32.0,C6,p,11,144,84,11,,,,, +253,24,1,6666,853,1016.534,,,,,,144,84,0,,,,, +253,25,1,6667,881,1016.534,29,32.0,E3,p+,12,144,52,12,,,,, +253,26,1,6668,881,1016.534,32,32.0,C#4,p+,12,144,61,12,,,,, +253,25,1,6667,881,1016.668,,,,,,144,52,0,,,,, +253,27,1,6669,910,1016.668,28,32.0,G#2,mp,14,144,44,14,,,,, +253,26,1,6668,881,1016.681,,,,,,144,61,0,,,,, +253,20,1,6662,597,1016.7,,,,,,144,84,0,,,,, +253,27,1,6669,910,1016.796,,,,,,144,44,0,,,,, +253,28,1,6670,938,1016.796,86,16.0,A#5,mp+,15,144,82,15,,,,, +253,15,3,6657,512,1017.192,,,,,,144,35,0,,,,, +253,16,3,6658,512,1017.192,,,,,,144,37,0,,,,, +253,17,3,6659,512,1017.192,,,,,,144,50,0,,,,, +253,18,3,6660,512,1017.192,,,,,,144,69,0,,,,, +253,28,1,6670,938,1017.192,,,,,,144,82,0,,,,, +253,29,1,6671,1024,1017.192,,,,,,176,102,0,,,,, +253,30,3,6672,1024,1017.192,32,32.0,B1,ff,22,144,35,22,,,,, +253,31,3,6673,1024,1017.192,32,32.0,C#2,ff,22,144,37,22,,,,, +253,32,3,6674,1024,1017.192,32,32.0,D3,ff,22,144,50,22,,,,, +253,33,3,6675,1024,1017.192,32,32.0,A4,ff,22,144,69,22,,,,, +253,30,3,6672,1024,1017.339,,,,,,144,35,0,,,,, +253,31,3,6673,1024,1017.339,,,,,,144,37,0,,,,, +253,32,3,6674,1024,1017.339,,,,,,144,50,0,,,,, +253,33,3,6675,1024,1017.339,,,,,,144,69,0,,,,, +253,34,1,6676,1056,1017.339,224,8.0,F7,ff,22,144,101,22,,,,, +253,35,3,6677,1056,1017.339,128,8.0,D3,ff,22,144,50,22,,,,, +253,35,3,6677,1056,1017.927,,,,,,144,50,0,,,,, +253,36,3,6678,1184,1017.927,,,,,,176,102,0,,,,, +253,37,3,6679,1216,1018.074,64,16.0,A2,ff,22,144,45,22,,,,, +253,34,1,6676,1056,1018.368,,,,,,144,101,0,,,,, +253,37,3,6679,1216,1018.368,,,,,,144,45,0,,,,, +253,38,1,6680,1280,1018.368,85,8.0,C4,ff,22,144,60,22,,,,, +253,39,1,6681,1280,1018.368,128,8.0,A4,ff,22,144,69,22,,,,, +253,40,1,6682,1280,1018.368,128,8.0,F#6,ff,22,144,90,22,,,,, +253,41,3,6683,1280,1018.368,,,,,,176,102,0,,,,, +253,38,1,6680,1280,1018.759,,,,,,144,60,0,,,,, +253,42,1,6684,1365,1018.759,171,4.0,C#4,ff,22,144,61,22,,,,, +253,43,1,6685,1365,1018.759,256,4.0,C6,ff,22,144,84,22,,,,, +253,44,3,6686,1365,1018.759,,,,,,176,102,0,,,,, +253,39,1,6681,1280,1018.956,,,,,,144,69,0,,,,, +253,40,1,6682,1280,1018.956,,,,,,144,90,0,,,,, +253,45,3,6687,1493,1019.347,43,16.0,C#3,ff,22,144,49,22,,,,, +253,46,3,6688,1493,1019.347,64,16.0,D4,ff,22,144,62,22,,,,, +253,42,1,6684,1365,1019.544,,,,,,144,61,0,,,,, +253,45,3,6687,1493,1019.544,,,,,,144,49,0,,,,, +254,0,0,6689,0,1019.544,,,,,,,,,254,,,, +254,1,1,6690,0,1019.544,128,8.0,C#7,ff,22,144,97,22,,,,, +254,2,3,6691,0,1019.544,128,8.0,A#3,ff,22,144,58,22,,,,, +253,46,3,6688,1493,1019.641,,,,,,144,62,0,,,,, +253,43,1,6685,1365,1019.935,,,,,,144,84,0,,,,, +254,1,1,6690,0,1020.133,,,,,,144,97,0,,,,, +254,2,3,6691,0,1020.133,,,,,,144,58,0,,,,, +254,3,1,6692,128,1020.133,,,,,,176,102,0,,,,, +254,4,3,6693,128,1020.133,32,32.0,D3,ff,22,144,50,22,,,,, +254,4,3,6693,128,1020.28,,,,,,144,50,0,,,,, +254,5,1,6694,160,1020.28,96,16.0,F7,ff,22,144,101,22,,,,, +254,6,3,6695,160,1020.28,96,16.0,D3,ff,22,144,50,22,,,,, +254,5,1,6694,160,1020.721,,,,,,144,101,0,,,,, +254,6,3,6695,160,1020.721,,,,,,144,50,0,,,,, +254,7,1,6696,256,1020.721,,,,,,176,102,0,,,,, +254,8,3,6697,256,1020.721,32,32.0,C4,ff,22,144,60,22,,,,, +254,9,3,6698,256,1020.721,32,32.0,A4,ff,22,144,69,22,,,,, +254,8,3,6697,256,1020.868,,,,,,144,60,0,,,,, +254,9,3,6698,256,1020.868,,,,,,144,69,0,,,,, +254,10,3,6699,288,1020.868,96,16.0,E2,ff,22,144,40,22,,,,, +254,10,3,6699,288,1021.309,,,,,,144,40,0,,,,, +254,11,3,6700,384,1021.309,128,8.0,E2,ff,22,144,40,22,,,,, +254,12,3,6701,384,1021.309,128,8.0,G#2,ff,22,144,44,22,,,,, +254,13,3,6702,384,1021.309,128,8.0,C4,ff,22,144,60,22,,,,, +254,14,3,6703,384,1021.309,128,8.0,A4,ff,22,144,69,22,,,,, +254,15,1,6704,426,1021.502,86,8.0,C#4,ff,22,144,61,22,,,,, +254,16,1,6705,426,1021.502,128,8.0,C6,ff,22,144,84,22,,,,, +254,11,3,6700,384,1021.897,,,,,,144,40,0,,,,, +254,12,3,6701,384,1021.897,,,,,,144,44,0,,,,, +254,13,3,6702,384,1021.897,,,,,,144,60,0,,,,, +254,14,3,6703,384,1021.897,,,,,,144,69,0,,,,, +254,15,1,6704,426,1021.897,,,,,,144,61,0,,,,, +254,17,1,6706,512,1021.897,,,,,,176,102,0,,,,, +254,18,3,6707,512,1021.897,32,32.0,E2,ff,22,144,40,22,,,,, +254,19,3,6708,512,1021.897,32,32.0,G#2,ff,22,144,44,22,,,,, +254,20,3,6709,512,1021.897,32,32.0,C4,ff,22,144,60,22,,,,, +254,21,3,6710,512,1021.897,32,32.0,A4,ff,22,144,69,22,,,,, +254,18,3,6707,512,1022.044,,,,,,144,40,0,,,,, +254,19,3,6708,512,1022.044,,,,,,144,44,0,,,,, +254,20,3,6709,512,1022.044,,,,,,144,60,0,,,,, +254,21,3,6710,512,1022.044,,,,,,144,69,0,,,,, +254,22,1,6711,544,1022.044,64,16.0,F#6,ff,22,144,90,22,,,,, +254,23,3,6712,544,1022.044,32,32.0,C#2,ff,22,144,37,22,,,,, +254,24,3,6713,544,1022.044,32,32.0,D3,ff,22,144,50,22,,,,, +254,16,1,6705,426,1022.09,,,,,,144,84,0,,,,, +254,23,3,6712,544,1022.192,,,,,,144,37,0,,,,, +254,24,3,6713,544,1022.192,,,,,,144,50,0,,,,, +254,25,3,6714,576,1022.192,32,32.0,B1,ff,22,144,35,22,,,,, +254,22,1,6711,544,1022.339,,,,,,144,90,0,,,,, +254,25,3,6714,576,1022.339,,,,,,144,35,0,,,,, +254,26,1,6715,608,1022.339,32,32.0,F7,ff,22,144,101,22,,,,, +254,27,3,6716,608,1022.339,32,32.0,D3,ff,22,144,50,22,,,,, +254,26,1,6715,608,1022.486,,,,,,144,101,0,,,,, +254,28,1,6717,640,1022.486,,,,,,176,102,0,,,,, +254,29,3,6718,640,1022.486,96,16.0,D3,,,,,,,,,, +254,27,3,6716,608,1022.927,,,,,,144,50,0,,,,, +254,30,1,6719,736,1022.927,32,32.0,F7,ff,22,144,101,22,,,,, +254,31,3,6720,736,1022.927,32,32.0,B1,ff,22,144,35,22,,,,, +254,32,3,6721,736,1022.927,32,32.0,C#2,ff,22,144,37,22,,,,, +254,33,3,6722,736,1022.927,32,32.0,D3,ff,22,144,50,22,,,,, +254,30,1,6719,736,1023.074,,,,,,144,101,0,,,,, +254,31,3,6720,736,1023.074,,,,,,144,35,0,,,,, +254,32,3,6721,736,1023.074,,,,,,144,37,0,,,,, +254,33,3,6722,736,1023.074,,,,,,144,50,0,,,,, +254,34,1,6723,768,1023.074,,,,,,176,102,0,,,,, +254,35,3,6724,768,1023.074,224,8.0,A#1,ff,22,144,34,22,,,,, +254,36,1,6725,853,1023.465,43,16.0,C#4,ff,22,144,61,22,,,,, +254,37,1,6726,853,1023.465,64,16.0,C6,ff,22,144,84,22,,,,, +254,36,1,6725,853,1023.662,,,,,,144,61,0,,,,, +254,38,1,6727,896,1023.662,96,16.0,C4,ff,22,144,60,22,,,,, +254,39,1,6728,896,1023.662,64,16.0,A4,ff,22,144,69,22,,,,, +254,40,1,6729,896,1023.662,64,16.0,F#6,ff,22,144,90,22,,,,, +254,37,1,6726,853,1023.759,,,,,,144,84,0,,,,, +254,39,1,6728,896,1023.956,,,,,,144,69,0,,,,, +254,40,1,6729,896,1023.956,,,,,,144,90,0,,,,, +254,35,3,6724,768,1024.103,,,,,,144,34,0,,,,, +254,38,1,6727,896,1024.103,,,,,,144,60,0,,,,, +254,41,1,6730,992,1024.103,32,32.0,C4,ff,22,144,60,22,,,,, +254,42,1,6731,992,1024.103,32,32.0,A4,ff,22,144,69,22,,,,, +254,43,3,6732,992,1024.103,32,32.0,E2,ff,22,144,40,22,,,,, +254,44,3,6733,992,1024.103,32,32.0,G#2,ff,22,144,44,22,,,,, +254,41,1,6730,992,1024.25,,,,,,144,60,0,,,,, +254,42,1,6731,992,1024.25,,,,,,144,69,0,,,,, +254,43,3,6732,992,1024.25,,,,,,144,40,0,,,,, +254,44,3,6733,992,1024.25,,,,,,144,44,0,,,,, +254,45,1,6734,1024,1024.25,,,,,,176,102,0,,,,, +254,46,3,6735,1024,1024.25,85,8.0,A#1,ff,22,144,34,22,,,,, +254,46,3,6735,1024,1024.641,,,,,,144,34,0,,,,, +254,47,1,6736,1109,1024.641,43,16.0,A5,ff,22,144,81,22,,,,, +254,48,3,6737,1109,1024.641,43,16.0,C#3,ff,22,144,49,22,,,,, +254,49,3,6738,1109,1024.641,64,16.0,D4,ff,22,144,62,22,,,,, +254,47,1,6736,1109,1024.839,,,,,,144,81,0,,,,, +254,48,3,6737,1109,1024.839,,,,,,144,49,0,,,,, +254,50,1,6739,1152,1024.839,32,32.0,C4,ff,22,144,60,22,,,,, +254,51,1,6740,1152,1024.839,32,32.0,A4,ff,22,144,69,22,,,,, +254,52,3,6741,1152,1024.839,128,8.0,E2,ff,22,144,40,22,,,,, +254,53,3,6742,1152,1024.839,128,8.0,G#2,ff,22,144,44,22,,,,, +254,49,3,6738,1109,1024.935,,,,,,144,62,0,,,,, +254,54,1,6743,1184,1024.986,96,16.0,F#6,ff,22,144,90,22,,,,, +254,50,1,6739,1152,1024.986,,,,,,144,60,0,,,,, +254,51,1,6740,1152,1024.986,,,,,,144,69,0,,,,, +254,52,3,6741,1152,1025.427,,,,,,144,40,0,,,,, +254,53,3,6742,1152,1025.427,,,,,,144,44,0,,,,, +254,54,1,6743,1184,1025.427,,,,,,144,90,0,,,,, +254,55,1,6744,1280,1025.427,,,,,,176,102,0,,,,, +254,56,3,6745,1280,1025.427,,,,,,176,102,0,,,,, +254,57,1,6746,1365,1025.817,43,16.0,D#4,mp,14,144,63,14,,,,, +254,58,1,6747,1365,1025.817,64,16.0,G4,mp,14,144,67,14,,,,, +254,59,1,6748,1365,1025.817,64,16.0,C6,mp,14,144,84,14,,,,, +254,60,1,6749,1365,1025.817,64,16.0,A6,mp,14,144,93,14,,,,, +254,57,1,6746,1365,1026.015,,,,,,144,63,0,,,,, +254,58,1,6747,1365,1026.015,,,,,,144,67,0,,,,, +254,61,1,6750,1408,1026.015,85,8.0,D#4,mp+,15,144,63,15,,,,, +254,62,1,6751,1408,1026.015,128,8.0,F#4,mp+,15,144,66,15,,,,, +254,63,1,6752,1408,1026.015,128,8.0,G4,mp+,15,144,67,15,,,,, +254,64,1,6753,1408,1026.015,128,8.0,D#6,mp+,15,144,87,15,,,,, +254,65,3,6754,1408,1026.015,,,,,,176,102,0,,,,, +254,59,1,6748,1365,1026.112,,,,,,144,84,0,,,,, +254,60,1,6749,1365,1026.112,,,,,,144,93,0,,,,, +254,66,3,6755,1429,1026.112,21,32.0,A4,ff,22,144,69,22,,,,, +254,66,3,6755,1429,1026.208,,,,,,144,69,0,,,,, +254,67,3,6756,1450,1026.208,22,32.0,C#2,ff,22,144,37,22,,,,, +254,68,3,6757,1472,1026.309,21,32.0,B1,ff,22,144,35,22,,,,, +254,67,3,6756,1450,1026.309,,,,,,144,37,0,,,,, +254,61,1,6750,1408,1026.406,,,,,,144,63,0,,,,, +254,68,3,6757,1472,1026.406,,,,,,144,35,0,,,,, +254,69,1,6758,1493,1026.406,,,,,,176,102,0,,,,, +254,70,3,6759,1493,1026.406,21,32.0,D3,ff,22,144,50,22,,,,, +254,70,3,6759,1493,1026.502,,,,,,144,50,0,,,,, +254,71,1,6760,1514,1026.502,22,32.0,F7,ff,22,144,101,22,,,,, +254,72,3,6761,1514,1026.502,22,32.0,B1,ff,22,144,35,22,,,,, +254,73,3,6762,1514,1026.502,32,32.0,C#2,ff,22,144,37,22,,,,, +254,74,0,6763,1535,1026.599,,,,,,176,64,0,,,,,^ +254,62,1,6751,1408,1026.603,,,,,,144,66,0,,,,, +254,63,1,6752,1408,1026.603,,,,,,144,67,0,,,,, +254,64,1,6753,1408,1026.603,,,,,,144,87,0,,,,, +255,0,0,6764,0,1026.603,,,,,,,,,255,,,, +255,1,1,6765,0,1026.603,85,8.0,F#6,ff,22,144,90,22,,,,, +255,2,3,6766,0,1026.603,128,8.0,E2,ff,22,144,40,22,,,,, +255,3,3,6767,0,1026.603,128,8.0,G#2,ff,22,144,44,22,,,,, +254,71,1,6760,1514,1026.603,,,,,,144,101,0,,,,, +254,72,3,6761,1514,1026.603,,,,,,144,35,0,,,,, +254,73,3,6762,1514,1026.649,,,,,,144,37,0,,,,, +255,1,1,6765,0,1026.994,,,,,,144,90,0,,,,, +255,4,1,6768,85,1026.994,85,8.0,C#4,ff,22,144,61,22,,,,, +255,5,1,6769,85,1026.994,128,8.0,C6,ff,22,144,84,22,,,,, +255,2,3,6766,0,1027.192,,,,,,144,40,0,,,,, +255,3,3,6767,0,1027.192,,,,,,144,44,0,,,,, +255,6,3,6770,128,1027.192,32,32.0,E2,ff,22,144,40,22,,,,, +255,7,3,6771,128,1027.192,32,32.0,G#2,ff,22,144,44,22,,,,, +255,8,3,6772,128,1027.192,32,32.0,C4,ff,22,144,60,22,,,,, +255,9,3,6773,128,1027.192,32,32.0,A4,ff,22,144,69,22,,,,, +255,6,3,6770,128,1027.339,,,,,,144,40,0,,,,, +255,7,3,6771,128,1027.339,,,,,,144,44,0,,,,, +255,8,3,6772,128,1027.339,,,,,,144,60,0,,,,, +255,9,3,6773,128,1027.339,,,,,,144,69,0,,,,, +255,10,3,6774,160,1027.339,32,32.0,A4,ff,22,144,69,22,,,,, +255,4,1,6768,85,1027.385,,,,,,144,61,0,,,,, +255,12,1,6775,170,1027.385,,,,,,176,102,0,,,,, +255,11,0,6776,170,1027.385,,,,,,176,64,127,,,,,V +255,13,3,6777,192,1027.486,32,32.0,B1,ff,22,144,35,22,,,,, +255,10,3,6774,160,1027.486,,,,,,144,69,0,,,,, +255,5,1,6769,85,1027.582,,,,,,144,84,0,,,,, +255,13,3,6777,192,1027.633,,,,,,144,35,0,,,,, +255,14,3,6778,224,1027.633,32,32.0,C#2,ff,22,144,37,22,,,,, +255,15,3,6779,224,1027.633,32,32.0,D3,ff,22,144,50,22,,,,, +255,16,1,6780,256,1027.78,96,16.0,C#7,ff,22,144,97,22,,,,, +255,17,3,6781,256,1027.78,85,8.0,A#3,ff,22,144,58,22,,,,, +255,14,3,6778,224,1027.78,,,,,,144,37,0,,,,, +255,15,3,6779,224,1027.78,,,,,,144,50,0,,,,, +255,17,3,6781,256,1028.17,,,,,,144,58,0,,,,, +255,18,3,6782,341,1028.17,,,,,,176,102,0,,,,, +255,16,1,6780,256,1028.221,,,,,,144,97,0,,,,, +255,19,1,6783,352,1028.221,32,32.0,C4,ff,22,144,60,22,,,,, +255,20,1,6784,352,1028.221,32,32.0,A4,ff,22,144,69,22,,,,, +255,21,1,6785,352,1028.221,32,32.0,F#6,ff,22,144,90,22,,,,, +255,19,1,6783,352,1028.368,,,,,,144,60,0,,,,, +255,20,1,6784,352,1028.368,,,,,,144,69,0,,,,, +255,21,1,6785,352,1028.368,,,,,,144,90,0,,,,, +255,22,1,6786,384,1028.368,128,8.0,C4,ff,22,144,60,22,,,,, +255,23,1,6787,384,1028.368,128,8.0,A4,ff,22,144,69,22,,,,, +255,24,1,6788,384,1028.368,128,8.0,F#6,ff,22,144,90,22,,,,, +255,25,1,6789,384,1028.368,128,8.0,F7,ff,22,144,101,22,,,,, +255,26,3,6790,426,1028.561,43,16.0,F3,ff,22,144,53,22,,,,, +255,26,3,6790,426,1028.759,,,,,,144,53,0,,,,, +255,27,3,6791,469,1028.759,43,16.0,B0,ff,22,144,23,22,,,,, +255,22,1,6786,384,1028.956,,,,,,144,60,0,,,,, +255,23,1,6787,384,1028.956,,,,,,144,69,0,,,,, +255,24,1,6788,384,1028.956,,,,,,144,90,0,,,,, +255,25,1,6789,384,1028.956,,,,,,144,101,0,,,,, +255,27,3,6791,469,1028.956,,,,,,144,23,0,,,,, +255,28,1,6792,512,1028.956,170,4.0,A5,ff,22,144,81,22,,,,, +255,29,3,6793,512,1028.956,85,8.0,C#3,ff,22,144,49,22,,,,, +255,30,3,6794,512,1028.956,128,8.0,F3,ff,22,144,53,22,,,,, +255,31,3,6795,512,1028.956,128,8.0,D4,ff,22,144,62,22,,,,, +255,29,3,6793,512,1029.347,,,,,,144,49,0,,,,, +255,32,3,6796,597,1029.347,128,8.0,B0,ff,22,144,23,22,,,,, +255,30,3,6794,512,1029.544,,,,,,144,53,0,,,,, +255,31,3,6795,512,1029.544,,,,,,144,62,0,,,,, +255,28,1,6792,512,1029.737,,,,,,144,81,0,,,,, +255,33,1,6797,682,1029.737,,,,,,176,102,0,,,,, +255,32,3,6796,597,1029.935,,,,,,144,23,0,,,,, +255,34,1,6798,725,1029.935,43,16.0,A5,ff,22,144,81,22,,,,, +255,35,3,6799,725,1029.935,43,16.0,C#3,ff,22,144,49,22,,,,, +255,36,3,6800,725,1029.935,64,16.0,F3,ff,22,144,53,22,,,,, +255,37,3,6801,725,1029.935,64,16.0,D4,ff,22,144,62,22,,,,, +255,34,1,6798,725,1030.133,,,,,,144,81,0,,,,, +255,35,3,6799,725,1030.133,,,,,,144,49,0,,,,, +255,38,1,6802,768,1030.133,,,,,,176,102,0,,,,, +255,39,3,6803,768,1030.133,170,4.0,B0,ff,22,144,23,22,,,,, +255,36,3,6800,725,1030.229,,,,,,144,53,0,,,,, +255,37,3,6801,725,1030.229,,,,,,144,62,0,,,,, +255,40,1,6804,896,1030.721,32,32.0,B1,ff,22,144,35,22,,,,, +255,41,1,6805,896,1030.721,32,32.0,C#2,ff,22,144,37,22,,,,, +255,42,1,6806,896,1030.721,32,32.0,D3,ff,22,144,50,22,,,,, +255,43,1,6807,896,1030.721,32,32.0,A4,ff,22,144,69,22,,,,, +255,40,1,6804,896,1030.868,,,,,,144,35,0,,,,, +255,41,1,6805,896,1030.868,,,,,,144,37,0,,,,, +255,42,1,6806,896,1030.868,,,,,,144,50,0,,,,, +255,43,1,6807,896,1030.868,,,,,,144,69,0,,,,, +255,44,1,6808,928,1030.868,32,32.0,E2,ff,22,144,40,22,,,,, +255,45,1,6809,928,1030.868,32,32.0,G#2,ff,22,144,44,22,,,,, +255,46,1,6810,928,1030.868,32,32.0,C4,ff,22,144,60,22,,,,, +255,47,1,6811,928,1030.868,32,32.0,A4,ff,22,144,69,22,,,,, +255,39,3,6803,768,1030.914,,,,,,144,23,0,,,,, +255,48,3,6812,938,1030.914,,,,,,176,102,0,,,,, +255,44,1,6808,928,1031.015,,,,,,144,40,0,,,,, +255,45,1,6809,928,1031.015,,,,,,144,44,0,,,,, +255,46,1,6810,928,1031.015,,,,,,144,60,0,,,,, +255,47,1,6811,928,1031.015,,,,,,144,69,0,,,,, +255,49,1,6813,960,1031.015,,,,,,176,102,0,,,,, +255,50,1,6814,981,1031.112,43,16.0,A5,ff,22,144,81,22,,,,, +255,51,3,6815,981,1031.112,43,16.0,C#3,ff,22,144,49,22,,,,, +255,52,3,6816,981,1031.112,64,16.0,F3,ff,22,144,53,22,,,,, +255,53,3,6817,981,1031.112,64,16.0,D4,ff,22,144,62,22,,,,, +255,50,1,6814,981,1031.309,,,,,,144,81,0,,,,, +255,51,3,6815,981,1031.309,,,,,,144,49,0,,,,, +255,52,3,6816,981,1031.309,,,,,,144,53,0,,,,, +255,53,3,6817,981,1031.309,,,,,,144,62,0,,,,, +255,54,1,6818,1024,1031.309,,,,,,176,102,0,,,,, +255,55,3,6819,1024,1031.309,85,8.0,A#1,ff,22,144,34,22,,,,, +255,56,3,6820,1024,1031.309,128,8.0,C#3,ff,22,144,49,22,,,,, +255,57,3,6821,1024,1031.309,128,8.0,F3,ff,22,144,53,22,,,,, +255,58,3,6822,1024,1031.309,128,8.0,D4,ff,22,144,62,22,,,,, +255,55,3,6819,1024,1031.7,,,,,,144,34,0,,,,, +255,59,3,6823,1109,1031.7,171,4.0,B0,ff,22,144,23,22,,,,, +255,56,3,6820,1024,1031.897,,,,,,144,49,0,,,,, +255,57,3,6821,1024,1031.897,,,,,,144,53,0,,,,, +255,58,3,6822,1024,1031.897,,,,,,144,62,0,,,,, +255,60,1,6824,1152,1031.897,,,,,,176,102,0,,,,, +255,61,1,6825,1184,1032.044,32,32.0,C4,ff,22,144,60,22,,,,, +255,62,1,6826,1184,1032.044,32,32.0,A4,ff,22,144,69,22,,,,, +255,63,1,6827,1184,1032.044,32,32.0,F#6,ff,22,144,90,22,,,,, +255,61,1,6825,1184,1032.192,,,,,,144,60,0,,,,, +255,62,1,6826,1184,1032.192,,,,,,144,69,0,,,,, +255,63,1,6827,1184,1032.192,,,,,,144,90,0,,,,, +255,64,1,6828,1216,1032.192,64,16.0,C4,ff,22,144,60,22,,,,, +255,65,1,6829,1216,1032.192,64,16.0,A4,ff,22,144,69,22,,,,, +255,66,1,6830,1216,1032.192,64,16.0,F#6,ff,22,144,90,22,,,,, +255,67,1,6831,1216,1032.192,64,16.0,F7,ff,22,144,101,22,,,,, +255,64,1,6828,1216,1032.486,,,,,,144,60,0,,,,, +255,65,1,6829,1216,1032.486,,,,,,144,69,0,,,,, +255,66,1,6830,1216,1032.486,,,,,,144,90,0,,,,, +255,67,1,6831,1216,1032.486,,,,,,144,101,0,,,,, +255,68,1,6832,1280,1032.486,85,8.0,C4,ff,22,144,60,22,,,,, +255,69,1,6833,1280,1032.486,128,8.0,A4,ff,22,144,69,22,,,,, +255,70,3,6834,1280,1032.486,128,8.0,E2,ff,22,144,40,22,,,,, +255,71,3,6835,1280,1032.486,128,8.0,G#2,ff,22,144,44,22,,,,, +255,59,3,6823,1109,1032.486,,,,,,144,23,0,,,,, +255,68,1,6832,1280,1032.876,,,,,,144,60,0,,,,, +255,72,1,6836,1365,1032.876,171,4.0,C#4,ff,22,144,61,22,,,,, +255,73,1,6837,1365,1032.876,256,4.0,C6,ff,22,144,84,22,,,,, +255,69,1,6833,1280,1033.074,,,,,,144,69,0,,,,, +255,70,3,6834,1280,1033.074,,,,,,144,40,0,,,,, +255,71,3,6835,1280,1033.074,,,,,,144,44,0,,,,, +255,74,3,6838,1408,1033.074,,,,,,176,102,0,,,,, +255,75,3,6839,1440,1033.221,32,32.0,A4,ff,22,144,69,22,,,,, +255,76,3,6840,1472,1033.368,32,32.0,B1,ff,22,144,35,22,,,,, +255,75,3,6839,1440,1033.368,,,,,,144,69,0,,,,, +255,76,3,6840,1472,1033.515,,,,,,144,35,0,,,,, +255,77,3,6841,1504,1033.515,32,32.0,C#2,ff,22,144,37,22,,,,, +255,78,3,6842,1504,1033.515,32,32.0,D3,ff,22,144,50,22,,,,, +255,77,3,6841,1504,1033.662,,,,,,144,37,0,,,,, +255,78,3,6842,1504,1033.662,,,,,,144,50,0,,,,, +256,0,0,6843,0,1033.662,,,,,,,,,256,,,, +256,1,1,6844,0,1033.662,,,,,,176,102,0,,,,, +256,2,3,6845,0,1033.662,85,8.0,B1,ff,22,144,35,22,,,,, +256,3,3,6846,0,1033.662,128,8.0,C#2,ff,22,144,37,22,,,,, +256,4,3,6847,0,1033.662,128,8.0,D3,ff,22,144,50,22,,,,, +255,72,1,6836,1365,1033.662,,,,,,144,61,0,,,,, +255,73,1,6837,1365,1034.053,,,,,,144,84,0,,,,, +256,2,3,6845,0,1034.053,,,,,,144,35,0,,,,, +256,5,1,6848,85,1034.053,171,4.0,C#4,ff,22,144,61,22,,,,, +256,6,1,6849,85,1034.053,256,4.0,C6,ff,22,144,84,22,,,,, +256,7,3,6850,85,1034.053,,,,,,176,102,0,,,,, +256,3,3,6846,0,1034.25,,,,,,144,37,0,,,,, +256,4,3,6847,0,1034.25,,,,,,144,50,0,,,,, +256,8,3,6851,170,1034.443,43,16.0,F3,ff,22,144,53,22,,,,, +256,8,3,6851,170,1034.641,,,,,,144,53,0,,,,, +256,9,3,6852,213,1034.641,43,16.0,B0,ff,22,144,23,22,,,,, +256,5,1,6848,85,1034.839,,,,,,144,61,0,,,,, +256,9,3,6852,213,1034.839,,,,,,144,23,0,,,,, +256,10,0,6853,256,1034.839,,,,,,176,64,0,,,,,^ +256,11,1,6854,256,1034.839,,,,,,176,102,0,,,,, +256,12,3,6855,256,1034.839,,,,,,176,102,0,,,,, +256,13,3,6856,277,1034.935,21,32.0,A4,ff,22,144,69,22,,,,, +256,13,3,6856,277,1035.032,,,,,,144,69,0,,,,, +256,14,3,6857,298,1035.032,22,32.0,C#2,ff,22,144,37,22,,,,, +256,15,3,6858,320,1035.133,21,32.0,B1,ff,22,144,35,22,,,,, +256,14,3,6857,298,1035.133,,,,,,144,37,0,,,,, +256,6,1,6849,85,1035.229,,,,,,144,84,0,,,,, +256,15,3,6858,320,1035.229,,,,,,144,35,0,,,,, +256,16,3,6859,341,1035.229,21,32.0,D3,ff,22,144,50,22,,,,, +256,16,3,6859,341,1035.326,,,,,,144,50,0,,,,, +256,17,3,6860,362,1035.326,22,32.0,B1,ff,22,144,35,22,,,,, +256,18,3,6861,362,1035.326,32,32.0,C#2,ff,22,144,37,22,,,,, +256,17,3,6860,362,1035.427,,,,,,144,35,0,,,,, +256,19,3,6862,384,1035.427,,,,,,176,102,0,,,,, +256,18,3,6861,362,1035.473,,,,,,144,37,0,,,,, +256,20,3,6863,416,1035.574,32,32.0,E2,ff,22,144,40,22,,,,, +256,21,3,6864,416,1035.574,32,32.0,G#2,ff,22,144,44,22,,,,, +256,20,3,6863,416,1035.721,,,,,,144,40,0,,,,, +256,21,3,6864,416,1035.721,,,,,,144,44,0,,,,, +256,22,3,6865,448,1035.721,64,16.0,E2,ff,22,144,40,22,,,,, +256,23,3,6866,448,1035.721,64,16.0,G#2,ff,22,144,44,22,,,,, +256,24,3,6867,448,1035.721,64,16.0,C4,ff,22,144,60,22,,,,, +256,25,3,6868,448,1035.721,64,16.0,A4,ff,22,144,69,22,,,,, +256,22,3,6865,448,1036.015,,,,,,144,40,0,,,,, +256,23,3,6866,448,1036.015,,,,,,144,44,0,,,,, +256,24,3,6867,448,1036.015,,,,,,144,60,0,,,,, +256,25,3,6868,448,1036.015,,,,,,144,69,0,,,,, +256,27,1,6869,512,1036.015,,,,,,176,102,0,,,,, +256,28,3,6870,512,1036.015,128,8.0,A#1,ff,22,144,34,22,,,,, +256,26,0,6871,512,1036.015,,,,,,176,64,127,,,,,V +256,29,1,6872,597,1036.406,171,4.0,C#4,ff,22,144,61,22,,,,, +256,30,1,6873,597,1036.406,256,4.0,C6,ff,22,144,84,22,,,,, +256,28,3,6870,512,1036.603,,,,,,144,34,0,,,,, +256,31,3,6874,640,1036.603,,,,,,176,102,0,,,,, +256,32,3,6875,672,1036.75,32,32.0,B1,ff,22,144,35,22,,,,, +256,33,3,6876,672,1036.75,32,32.0,C#2,ff,22,144,37,22,,,,, +256,34,3,6877,672,1036.75,32,32.0,D3,ff,22,144,50,22,,,,, +256,35,3,6878,672,1036.75,32,32.0,A4,ff,22,144,69,22,,,,, +256,32,3,6875,672,1036.897,,,,,,144,35,0,,,,, +256,33,3,6876,672,1036.897,,,,,,144,37,0,,,,, +256,34,3,6877,672,1036.897,,,,,,144,50,0,,,,, +256,35,3,6878,672,1036.897,,,,,,144,69,0,,,,, +256,36,0,6879,704,1036.897,,,,,,176,64,0,,,,,^ +256,37,3,6880,704,1036.897,64,16.0,E2,ff,22,144,40,22,,,,, +256,38,3,6881,704,1036.897,64,16.0,G#2,ff,22,144,44,22,,,,, +256,39,3,6882,704,1036.897,64,16.0,C4,ff,22,144,60,22,,,,, +256,40,3,6883,704,1036.897,64,16.0,A4,ff,22,144,69,22,,,,, +256,29,1,6872,597,1037.192,,,,,,144,61,0,,,,, +256,37,3,6880,704,1037.192,,,,,,144,40,0,,,,, +256,38,3,6881,704,1037.192,,,,,,144,44,0,,,,, +256,39,3,6882,704,1037.192,,,,,,144,60,0,,,,, +256,40,3,6883,704,1037.192,,,,,,144,69,0,,,,, +256,41,1,6884,768,1037.192,85,8.0,A#3,ff,22,144,58,22,,,,, +256,42,1,6885,768,1037.192,128,8.0,C#7,ff,22,144,97,22,,,,, +256,43,3,6886,768,1037.192,,,,,,176,102,0,,,,, +256,30,1,6873,597,1037.582,,,,,,144,84,0,,,,, +256,41,1,6884,768,1037.582,,,,,,144,58,0,,,,, +256,45,1,6887,853,1037.582,171,4.0,E3,ff,22,144,52,22,,,,, +256,46,1,6888,853,1037.582,256,4.0,C#4,ff,22,144,61,22,,,,, +256,47,1,6889,853,1037.582,256,4.0,C6,ff,22,144,84,22,,,,, +256,44,0,6890,853,1037.582,,,,,,176,64,127,,,,,V +256,42,1,6885,768,1037.78,,,,,,144,97,0,,,,, +256,48,3,6891,896,1037.78,25,32.0,E4,ff,22,144,64,22,,,,, +256,48,3,6891,896,1037.895,,,,,,144,64,0,,,,, +256,49,3,6892,921,1037.895,51,16.0,F#3,ff,22,144,54,22,,,,, +256,49,3,6892,921,1038.129,,,,,,144,54,0,,,,, +256,50,3,6893,972,1038.129,26,32.0,A4,ff,22,144,69,22,,,,, +256,52,0,6894,1024,1038.218,,,,,,176,64,0,,,,,^ +256,50,3,6893,972,1038.249,,,,,,144,69,0,,,,, +256,51,3,6895,998,1038.249,26,32.0,G#4,ff,22,144,68,22,,,,, +256,45,1,6887,853,1038.368,,,,,,144,52,0,,,,, +256,51,3,6895,998,1038.368,,,,,,144,68,0,,,,, +256,54,1,6896,1024,1038.368,85,8.0,C#7,ff,22,144,97,22,,,,, +256,55,3,6897,1024,1038.368,85,8.0,E3,ff,22,144,52,22,,,,, +256,56,3,6898,1024,1038.368,128,8.0,A#3,ff,22,144,58,22,,,,, +256,53,0,6899,1024,1038.518,,,,,,176,64,127,,,,,V +256,46,1,6888,853,1038.759,,,,,,144,61,0,,,,, +256,47,1,6889,853,1038.759,,,,,,144,84,0,,,,, +256,54,1,6896,1024,1038.759,,,,,,144,97,0,,,,, +256,55,3,6897,1024,1038.759,,,,,,144,52,0,,,,, +256,57,1,6900,1109,1038.759,43,16.0,C6,ff,22,144,84,22,,,,, +256,58,3,6901,1109,1038.759,43,16.0,E3,ff,22,144,52,22,,,,, +256,59,3,6902,1109,1038.759,64,16.0,C#4,ff,22,144,61,22,,,,, +256,56,3,6898,1024,1038.956,,,,,,144,58,0,,,,, +256,57,1,6900,1109,1038.956,,,,,,144,84,0,,,,, +256,58,3,6901,1109,1038.956,,,,,,144,52,0,,,,, +256,60,1,6903,1152,1038.956,128,8.0,C#7,ff,22,144,97,22,,,,, +256,61,3,6904,1152,1038.956,64,16.0,E3,ff,22,144,52,22,,,,, +256,62,3,6905,1152,1038.956,64,16.0,A#3,ff,22,144,58,22,,,,, +256,59,3,6902,1109,1039.053,,,,,,144,61,0,,,,, +256,61,3,6904,1152,1039.25,,,,,,144,52,0,,,,, +256,62,3,6905,1152,1039.25,,,,,,144,58,0,,,,, +256,63,3,6906,1216,1039.25,32,32.0,E2,ff,22,144,40,22,,,,, +256,64,3,6907,1216,1039.25,32,32.0,G#2,ff,22,144,44,22,,,,, +256,63,3,6906,1216,1039.397,,,,,,144,40,0,,,,, +256,64,3,6907,1216,1039.397,,,,,,144,44,0,,,,, +256,65,3,6908,1248,1039.397,32,32.0,C4,ff,22,144,60,22,,,,, +256,66,3,6909,1248,1039.397,32,32.0,A4,ff,22,144,69,22,,,,, +256,60,1,6903,1152,1039.544,,,,,,144,97,0,,,,, +256,65,3,6908,1248,1039.544,,,,,,144,60,0,,,,, +256,66,3,6909,1248,1039.544,,,,,,144,69,0,,,,, +256,67,1,6910,1280,1039.544,42,16.0,G#4,ff,22,144,68,22,,,,, +256,68,3,6911,1280,1039.544,,,,,,176,102,0,,,,, +256,67,1,6910,1280,1039.737,,,,,,144,68,0,,,,, +256,69,1,6912,1322,1039.737,43,16.0,C6,ff,22,144,84,22,,,,, +256,69,1,6912,1322,1039.935,,,,,,144,84,0,,,,, +256,70,1,6913,1365,1039.935,21,32.0,A#3,ff,22,144,58,22,,,,, +256,70,1,6913,1365,1040.032,,,,,,144,58,0,,,,, +256,71,1,6914,1386,1040.032,22,32.0,G#4,ff,22,144,68,22,,,,, +256,71,1,6914,1386,1040.133,,,,,,144,68,0,,,,, +256,72,1,6915,1408,1040.133,32,32.0,A#3,ff,22,144,58,22,,,,, +256,73,1,6916,1408,1040.133,32,32.0,C6,ff,22,144,84,22,,,,, +256,72,1,6915,1408,1040.28,,,,,,144,58,0,,,,, +256,73,1,6916,1408,1040.28,,,,,,144,84,0,,,,, +256,74,1,6917,1440,1040.28,32,32.0,G#4,ff,22,144,68,22,,,,, +256,74,1,6917,1440,1040.427,,,,,,144,68,0,,,,, +256,75,1,6918,1472,1040.427,21,32.0,A#3,ff,22,144,58,22,,,,, +256,77,0,6919,1514,1040.52,,,,,,176,64,0,,,,,^ +256,75,1,6918,1472,1040.523,,,,,,144,58,0,,,,, +256,76,1,6920,1493,1040.523,21,32.0,G#4,ff,22,144,68,22,,,,, +256,76,1,6920,1493,1040.62,,,,,,144,68,0,,,,, +256,78,1,6921,1514,1040.62,22,32.0,A#3,ff,22,144,58,22,,,,, +256,78,1,6921,1514,1040.721,,,,,,144,58,0,,,,, +257,0,0,6922,0,1040.721,,,,,,,,,257,,,, +257,1,0,6923,0,1040.721,,,,,,,,,,5989,,, +257,3,1,6924,0,1040.721,64,16.0,C4,ff,22,144,60,22,,,,, +257,4,1,6925,0,1040.721,64,16.0,C#4,ff,22,144,61,22,,,,, +257,5,1,6926,0,1040.721,64,16.0,A4,ff,22,144,69,22,,,,, +257,6,3,6927,0,1040.721,21,32.0,B1,f,20,144,35,20,,,,, +257,6,3,6927,0,1040.817,,,,,,144,35,0,,,,, +257,7,3,6928,21,1040.817,21,32.0,A#3,f-,19,144,58,19,,,,, +257,2,0,6929,0,1040.82,,,,,,176,64,127,,,,,V +257,7,3,6928,21,1040.914,,,,,,144,58,0,,,,, +257,8,3,6930,42,1040.914,22,32.0,G#2,mf+,18,144,44,18,,,,, +257,3,1,6924,0,1041.015,,,,,,144,60,0,,,,, +257,4,1,6925,0,1041.015,,,,,,144,61,0,,,,, +257,5,1,6926,0,1041.015,,,,,,144,69,0,,,,, +257,8,3,6930,42,1041.015,,,,,,144,44,0,,,,, +257,9,1,6931,64,1041.015,,,,,,176,102,0,,,,, +257,10,3,6932,64,1041.015,21,32.0,A#3,mf,17,144,58,17,,,,, +257,10,3,6932,64,1041.112,,,,,,144,58,0,,,,, +257,11,3,6933,85,1041.112,21,32.0,G#2,mf,17,144,44,17,,,,, +257,11,3,6933,85,1041.208,,,,,,144,44,0,,,,, +257,12,3,6934,106,1041.208,22,32.0,A#3,mf-,16,144,58,16,,,,, +257,12,3,6934,106,1041.309,,,,,,144,58,0,,,,, +257,13,3,6935,128,1041.309,21,32.0,G#2,mp+,15,144,44,15,,,,, +257,15,0,6936,170,1041.403,,,,,,176,64,0,,,,,^ +257,13,3,6935,128,1041.406,,,,,,144,44,0,,,,, +257,14,3,6937,149,1041.406,21,32.0,D1,mp,14,144,26,14,,,,, +257,14,3,6937,149,1041.502,,,,,,144,26,0,,,,, +257,16,3,6938,170,1041.502,22,32.0,A#3,mp,14,144,58,14,,,,, +257,16,3,6938,170,1041.603,,,,,,144,58,0,,,,, +257,18,3,6939,192,1041.603,64,16.0,D1,mp,14,144,26,14,,,,, +257,19,3,6940,192,1041.603,64,16.0,B1,mp,14,144,35,14,,,,, +257,20,3,6941,192,1041.603,64,16.0,G#2,mp,14,144,44,14,,,,, +257,17,0,6942,192,1041.703,,,,,,176,64,127,,,,,V +257,18,3,6939,192,1041.897,,,,,,144,26,0,,,,, +257,19,3,6940,192,1041.897,,,,,,144,35,0,,,,, +257,20,3,6941,192,1041.897,,,,,,144,44,0,,,,, +257,21,1,6943,256,1041.897,,,,,,176,102,0,,,,, +257,22,3,6944,256,1041.897,,,,,,176,102,0,,,,, +257,23,1,6945,341,1042.288,43,16.0,E3,ff,22,144,52,22,,,,, +257,24,1,6946,341,1042.288,64,16.0,C#4,ff,22,144,61,22,,,,, +257,25,1,6947,341,1042.288,64,16.0,C6,ff,22,144,84,22,,,,, +257,23,1,6945,341,1042.486,,,,,,144,52,0,,,,, +257,26,1,6948,384,1042.486,128,8.0,E3,ff,22,144,52,22,,,,, +257,27,1,6949,384,1042.486,128,8.0,A#3,ff,22,144,58,22,,,,, +257,28,1,6950,384,1042.486,128,8.0,C#7,ff,22,144,97,22,,,,, +257,24,1,6946,341,1042.582,,,,,,144,61,0,,,,, +257,25,1,6947,341,1042.582,,,,,,144,84,0,,,,, +257,29,3,6951,448,1042.78,32,32.0,E2,ff,22,144,40,22,,,,, +257,30,3,6952,448,1042.78,32,32.0,G#2,ff,22,144,44,22,,,,, +257,31,0,6953,480,1042.85,,,,,,176,64,0,,,,,^ +257,29,3,6951,448,1042.927,,,,,,144,40,0,,,,, +257,30,3,6952,448,1042.927,,,,,,144,44,0,,,,, +257,32,3,6954,480,1042.927,32,32.0,B1,ff,22,144,35,22,,,,, +257,33,3,6955,480,1042.927,32,32.0,C#2,ff,22,144,37,22,,,,, +257,26,1,6948,384,1043.074,,,,,,144,52,0,,,,, +257,27,1,6949,384,1043.074,,,,,,144,58,0,,,,, +257,28,1,6950,384,1043.074,,,,,,144,97,0,,,,, +257,32,3,6954,480,1043.074,,,,,,144,35,0,,,,, +257,33,3,6955,480,1043.074,,,,,,144,37,0,,,,, +257,35,1,6956,512,1043.074,85,8.0,F#6,ff,22,144,90,22,,,,, +257,36,3,6957,512,1043.074,32,32.0,C#2,ff,22,144,37,22,,,,, +257,37,3,6958,512,1043.074,32,32.0,D3,ff,22,144,50,22,,,,, +257,34,0,6959,512,1043.15,,,,,,176,64,127,,,,,V +257,36,3,6957,512,1043.221,,,,,,144,37,0,,,,, +257,37,3,6958,512,1043.221,,,,,,144,50,0,,,,, +257,38,3,6960,544,1043.221,32,32.0,B1,ff,22,144,35,22,,,,, +257,39,0,6961,560,1043.294,,,,,,176,64,0,,,,,^ +257,40,3,6962,576,1043.368,,,,,,176,102,0,,,,, +257,38,3,6960,544,1043.368,,,,,,144,35,0,,,,, +257,35,1,6956,512,1043.465,,,,,,144,90,0,,,,, +257,41,1,6963,597,1043.465,43,16.0,D#4,mf,17,144,63,17,,,,, +257,42,1,6964,597,1043.465,64,16.0,G4,mf,17,144,67,17,,,,, +257,43,1,6965,597,1043.465,64,16.0,C#6,mf,17,144,85,17,,,,, +257,44,1,6966,597,1043.465,64,16.0,A6,mf,17,144,93,17,,,,, +257,41,1,6963,597,1043.662,,,,,,144,63,0,,,,, +257,42,1,6964,597,1043.662,,,,,,144,67,0,,,,, +257,45,1,6967,640,1043.662,128,8.0,D#4,mf+,18,144,63,18,,,,, +257,46,1,6968,640,1043.662,128,8.0,F#4,mf+,18,144,66,18,,,,, +257,47,1,6969,640,1043.662,128,8.0,G4,mf+,18,144,67,18,,,,, +257,48,1,6970,640,1043.662,128,8.0,D#6,mf+,18,144,87,18,,,,, +257,43,1,6965,597,1043.759,,,,,,144,85,0,,,,, +257,44,1,6966,597,1043.759,,,,,,144,93,0,,,,, +257,45,1,6967,640,1044.25,,,,,,144,63,0,,,,, +257,46,1,6968,640,1044.25,,,,,,144,66,0,,,,, +257,47,1,6969,640,1044.25,,,,,,144,67,0,,,,, +257,48,1,6970,640,1044.25,,,,,,144,87,0,,,,, +257,49,1,6971,768,1044.25,,,,,,176,102,0,,,,, +257,50,3,6972,768,1044.25,128,8.0,D1,ppp,5,144,26,5,,,,, +257,51,3,6973,768,1044.25,128,8.0,B1,ppp,5,144,35,5,,,,, +257,52,3,6974,768,1044.25,128,8.0,G#2,ppp,5,144,44,5,,,,, +257,53,3,6975,768,1044.25,128,8.0,A#3,ppp,5,144,58,5,,,,, +257,54,1,6976,853,1044.641,43,16.0,E3,ff,22,144,52,22,,,,, +257,55,1,6977,853,1044.641,64,16.0,C#4,ff,22,144,61,22,,,,, +257,56,1,6978,853,1044.641,64,16.0,C6,ff,22,144,84,22,,,,, +257,50,3,6972,768,1044.839,,,,,,144,26,0,,,,, +257,51,3,6973,768,1044.839,,,,,,144,35,0,,,,, +257,52,3,6974,768,1044.839,,,,,,144,44,0,,,,, +257,53,3,6975,768,1044.839,,,,,,144,58,0,,,,, +257,58,1,6979,896,1044.839,64,16.0,E3,,,,,,,,,, +257,59,1,6980,896,1044.839,64,16.0,C#4,,,,,,,,,, +257,60,1,6981,896,1044.839,64,16.0,C#7,ff,22,144,97,22,,,,, +257,61,3,6982,896,1044.839,64,16.0,E3,ff,22,144,52,22,,,,, +257,62,3,6983,896,1044.839,64,16.0,A#3,ff,22,144,58,22,,,,, +257,57,0,6984,896,1044.839,,,,,,176,64,127,,,,,V +257,56,1,6978,853,1044.935,,,,,,144,84,0,,,,, +257,60,1,6981,896,1045.133,,,,,,144,97,0,,,,, +257,61,3,6982,896,1045.133,,,,,,144,52,0,,,,, +257,62,3,6983,896,1045.133,,,,,,144,58,0,,,,, +257,63,1,6985,960,1045.133,,,,,,176,102,0,,,,, +257,64,3,6986,960,1045.133,32,32.0,B1,ff,22,144,35,22,,,,, +257,65,3,6987,960,1045.133,32,32.0,C#2,ff,22,144,37,22,,,,, +257,54,1,6976,853,1045.133,,,,,,144,52,0,,,,, +257,55,1,6977,853,1045.229,,,,,,144,61,0,,,,, +257,64,3,6986,960,1045.28,,,,,,144,35,0,,,,, +257,65,3,6987,960,1045.28,,,,,,144,37,0,,,,, +257,66,1,6988,992,1045.28,32,32.0,F7,ff,22,144,101,22,,,,, +257,67,3,6989,992,1045.28,32,32.0,D3,ff,22,144,50,22,,,,, +257,66,1,6988,992,1045.427,,,,,,144,101,0,,,,, +257,67,3,6989,992,1045.427,,,,,,144,50,0,,,,, +257,68,1,6990,1024,1045.427,,,,,,176,102,0,,,,, +257,69,3,6991,1024,1045.427,128,8.0,A#1,ff,22,144,34,22,,,,, +257,70,0,6992,1152,1046.003,,,,,,176,64,0,,,,,^ +257,69,3,6991,1024,1046.015,,,,,,144,34,0,,,,, +257,71,3,6993,1152,1046.015,128,8.0,D1,ppp,5,144,26,5,,,,, +257,72,3,6994,1152,1046.015,128,8.0,B1,ppp,5,144,35,5,,,,, +257,73,3,6995,1152,1046.015,128,8.0,G#2,ppp,5,144,44,5,,,,, +257,74,3,6996,1152,1046.015,128,8.0,A#3,ppp,5,144,58,5,,,,, +257,75,0,6997,1212,1046.303,,,,,,176,64,127,,,,,V +257,71,3,6993,1152,1046.603,,,,,,144,26,0,,,,, +257,72,3,6994,1152,1046.603,,,,,,144,35,0,,,,, +257,73,3,6995,1152,1046.603,,,,,,144,44,0,,,,, +257,74,3,6996,1152,1046.603,,,,,,144,58,0,,,,, +257,76,1,6998,1280,1046.603,,,,,,176,102,0,,,,, +257,77,3,6999,1280,1046.603,,,,,,176,102,0,,,,, +257,78,1,7000,1312,1046.75,32,32.0,C4,ff,22,144,60,22,,,,, +257,79,1,7001,1312,1046.75,32,32.0,A4,ff,22,144,69,22,,,,, +257,80,3,7002,1312,1046.75,32,32.0,E2,ff,22,144,40,22,,,,, +257,81,3,7003,1312,1046.75,32,32.0,G#2,ff,22,144,44,22,,,,, +257,78,1,7000,1312,1046.897,,,,,,144,60,0,,,,, +257,79,1,7001,1312,1046.897,,,,,,144,69,0,,,,, +257,80,3,7002,1312,1046.897,,,,,,144,40,0,,,,, +257,81,3,7003,1312,1046.897,,,,,,144,44,0,,,,, +257,82,1,7004,1344,1046.897,21,32.0,C4,ff,22,144,60,22,,,,, +257,83,1,7005,1344,1046.897,32,32.0,A4,ff,22,144,69,22,,,,, +257,84,1,7006,1344,1046.897,32,32.0,F#6,ff,22,144,90,22,,,,, +257,85,3,7007,1344,1046.897,,,,,,176,102,0,,,,, +257,82,1,7004,1344,1046.994,,,,,,144,60,0,,,,, +257,86,1,7008,1365,1046.994,43,16.0,A6,f,20,144,93,20,,,,, +257,87,3,7009,1365,1046.994,43,16.0,D#4,f,20,144,63,20,,,,, +257,88,3,7010,1365,1046.994,64,16.0,F#4,f,20,144,66,20,,,,, +257,89,3,7011,1365,1046.994,64,16.0,G4,f,20,144,67,20,,,,, +257,83,1,7005,1344,1047.044,,,,,,144,69,0,,,,, +257,84,1,7006,1344,1047.044,,,,,,144,90,0,,,,, +257,86,1,7008,1365,1047.192,,,,,,144,93,0,,,,, +257,87,3,7009,1365,1047.192,,,,,,144,63,0,,,,, +257,88,3,7010,1365,1047.192,,,,,,144,66,0,,,,, +257,89,3,7011,1365,1047.192,,,,,,144,67,0,,,,, +257,90,1,7012,1408,1047.192,85,8.0,D#6,f,20,144,87,20,,,,, +257,91,3,7013,1408,1047.192,85,8.0,D#4,f,20,144,63,20,,,,, +257,92,3,7014,1408,1047.192,128,8.0,F#4,f,20,144,66,20,,,,, +257,93,3,7015,1408,1047.192,128,8.0,G4,f,20,144,67,20,,,,, +257,90,1,7012,1408,1047.582,,,,,,144,87,0,,,,, +257,91,3,7013,1408,1047.582,,,,,,144,63,0,,,,, +257,92,3,7014,1408,1047.582,,,,,,144,66,0,,,,, +257,93,3,7015,1408,1047.582,,,,,,144,67,0,,,,, +257,94,1,7016,1493,1047.582,21,32.0,D#6,f+,21,144,87,21,,,,, +257,95,1,7017,1493,1047.582,32,32.0,F#6,f+,21,144,90,21,,,,, +257,96,3,7018,1493,1047.582,21,32.0,C4,f+,21,144,60,21,,,,, +257,97,3,7019,1493,1047.582,32,32.0,D#4,f+,21,144,63,21,,,,, +257,98,3,7020,1493,1047.582,32,32.0,F#4,f+,21,144,66,21,,,,, +257,99,3,7021,1493,1047.582,32,32.0,G4,f+,21,144,67,21,,,,, +257,100,3,7022,1493,1047.582,32,32.0,A4,f+,21,144,69,21,,,,, +257,94,1,7016,1493,1047.679,,,,,,144,87,0,,,,, +257,95,1,7017,1493,1047.679,,,,,,144,90,0,,,,, +257,96,3,7018,1493,1047.679,,,,,,144,60,0,,,,, +257,97,3,7019,1493,1047.679,,,,,,144,63,0,,,,, +257,98,3,7020,1493,1047.679,,,,,,144,66,0,,,,, +257,99,3,7021,1493,1047.679,,,,,,144,67,0,,,,, +257,100,3,7022,1493,1047.679,,,,,,144,69,0,,,,, +257,101,1,7023,1514,1047.679,22,32.0,D#6,f+,21,144,87,21,,,,, +257,102,1,7024,1514,1047.679,32,32.0,F#6,f+,21,144,90,21,,,,, +257,103,3,7025,1514,1047.679,22,32.0,C4,f+,21,144,60,21,,,,, +257,104,3,7026,1514,1047.679,32,32.0,D#4,f+,21,144,63,21,,,,, +257,105,3,7027,1514,1047.679,32,32.0,F#4,f+,21,144,66,21,,,,, +257,106,3,7028,1514,1047.679,32,32.0,G4,f+,21,144,67,21,,,,, +257,107,3,7029,1514,1047.679,32,32.0,A4,f+,21,144,69,21,,,,, +257,101,1,7023,1514,1047.78,,,,,,144,87,0,,,,, +257,103,3,7025,1514,1047.78,,,,,,144,60,0,,,,, +258,0,0,7030,0,1047.78,,,,,,,,,258,,,, +258,1,1,7031,0,1047.78,,,,,,176,102,0,,,,, +258,2,3,7032,0,1047.78,,,,,,176,102,0,,,,, +257,102,1,7024,1514,1047.826,,,,,,144,90,0,,,,, +257,104,3,7026,1514,1047.826,,,,,,144,63,0,,,,, +257,105,3,7027,1514,1047.826,,,,,,144,66,0,,,,, +257,106,3,7028,1514,1047.826,,,,,,144,67,0,,,,, +257,107,3,7029,1514,1047.826,,,,,,144,69,0,,,,, +258,3,1,7033,85,1048.17,43,16.0,C6,ff,22,144,84,22,,,,, +258,4,3,7034,85,1048.17,43,16.0,E3,ff,22,144,52,22,,,,, +258,5,3,7035,85,1048.17,64,16.0,C#4,ff,22,144,61,22,,,,, +258,3,1,7033,85,1048.368,,,,,,144,84,0,,,,, +258,4,3,7034,85,1048.368,,,,,,144,52,0,,,,, +258,6,1,7036,128,1048.368,128,8.0,C#7,ff,22,144,97,22,,,,, +258,7,3,7037,128,1048.368,128,8.0,E3,ff,22,144,52,22,,,,, +258,8,3,7038,128,1048.368,128,8.0,A#3,ff,22,144,58,22,,,,, +258,5,3,7035,85,1048.465,,,,,,144,61,0,,,,, +258,6,1,7036,128,1048.956,,,,,,144,97,0,,,,, +258,7,3,7037,128,1048.956,,,,,,144,52,0,,,,, +258,8,3,7038,128,1048.956,,,,,,144,58,0,,,,, +258,9,1,7039,256,1048.956,32,32.0,D3,ff,22,144,50,22,,,,, +258,10,1,7040,256,1048.956,32,32.0,C4,ff,22,144,60,22,,,,, +258,11,3,7041,256,1048.956,32,32.0,B1,ff,22,144,35,22,,,,, +258,12,3,7042,256,1048.956,32,32.0,C#2,ff,22,144,37,22,,,,, +258,13,3,7043,256,1048.956,32,32.0,E2,ff,22,144,40,22,,,,, +258,14,3,7044,256,1048.956,32,32.0,G#2,ff,22,144,44,22,,,,, +258,9,1,7039,256,1049.103,,,,,,144,50,0,,,,, +258,10,1,7040,256,1049.103,,,,,,144,60,0,,,,, +258,11,3,7041,256,1049.103,,,,,,144,35,0,,,,, +258,12,3,7042,256,1049.103,,,,,,144,37,0,,,,, +258,13,3,7043,256,1049.103,,,,,,144,40,0,,,,, +258,14,3,7044,256,1049.103,,,,,,144,44,0,,,,, +258,15,0,7045,288,1049.103,,,,,,176,64,0,,,,,^ +258,16,1,7046,288,1049.103,32,32.0,D3,ff,22,144,50,22,,,,, +258,17,1,7047,288,1049.103,32,32.0,C4,ff,22,144,60,22,,,,, +258,18,3,7048,288,1049.103,32,32.0,B1,ff,22,144,35,22,,,,, +258,19,3,7049,288,1049.103,32,32.0,C#2,ff,22,144,37,22,,,,, +258,20,3,7050,288,1049.103,32,32.0,E2,ff,22,144,40,22,,,,, +258,21,3,7051,288,1049.103,32,32.0,G#2,ff,22,144,44,22,,,,, +258,16,1,7046,288,1049.25,,,,,,144,50,0,,,,, +258,17,1,7047,288,1049.25,,,,,,144,60,0,,,,, +258,18,3,7048,288,1049.25,,,,,,144,35,0,,,,, +258,19,3,7049,288,1049.25,,,,,,144,37,0,,,,, +258,20,3,7050,288,1049.25,,,,,,144,40,0,,,,, +258,21,3,7051,288,1049.25,,,,,,144,44,0,,,,, +258,22,1,7052,320,1049.25,,,,,,176,102,0,,,,, +258,23,3,7053,320,1049.25,,,,,,176,102,0,,,,, +258,25,1,7054,384,1049.544,,,,,,176,102,0,,,,, +258,26,3,7055,384,1049.544,128,8.0,D1,ppp,5,144,26,5,,,,, +258,27,3,7056,384,1049.544,128,8.0,B1,ppp,5,144,35,5,,,,, +258,28,3,7057,384,1049.544,128,8.0,G#2,ppp,5,144,44,5,,,,, +258,29,3,7058,384,1049.544,128,8.0,A#3,ppp,5,144,58,5,,,,, +258,24,0,7059,384,1049.544,,,,,,176,64,127,,,,,V +258,26,3,7055,384,1050.133,,,,,,144,26,0,,,,, +258,27,3,7056,384,1050.133,,,,,,144,35,0,,,,, +258,28,3,7057,384,1050.133,,,,,,144,44,0,,,,, +258,29,3,7058,384,1050.133,,,,,,144,58,0,,,,, +258,30,1,7060,512,1050.133,85,8.0,A#1,ppp,5,144,34,5,,,,, +258,31,3,7061,512,1050.133,21,32.0,B1,ppp,5,144,35,5,,,,, +258,32,3,7062,512,1050.133,32,32.0,C#2,ppp,5,144,37,5,,,,, +258,31,3,7061,512,1050.229,,,,,,144,35,0,,,,, +258,33,3,7063,533,1050.229,64,16.0,D3,ppp,5,144,50,5,,,,, +258,32,3,7062,512,1050.28,,,,,,144,37,0,,,,, +258,30,1,7060,512,1050.523,,,,,,144,34,0,,,,, +258,33,3,7063,533,1050.523,,,,,,144,50,0,,,,, +258,34,1,7064,597,1050.523,21,32.0,D3,ff,22,144,50,22,,,,, +258,35,1,7065,597,1050.523,32,32.0,C4,ff,22,144,60,22,,,,, +258,36,3,7066,597,1050.523,21,32.0,B1,ff,22,144,35,22,,,,, +258,37,3,7067,597,1050.523,32,32.0,C#2,ff,22,144,37,22,,,,, +258,38,3,7068,597,1050.523,32,32.0,E2,ff,22,144,40,22,,,,, +258,39,3,7069,597,1050.523,32,32.0,G#2,ff,22,144,44,22,,,,, +258,46,0,7070,628,1050.543,,,,,,176,64,0,,,,,^ +258,34,1,7064,597,1050.62,,,,,,144,50,0,,,,, +258,35,1,7065,597,1050.62,,,,,,144,60,0,,,,, +258,36,3,7066,597,1050.62,,,,,,144,35,0,,,,, +258,37,3,7067,597,1050.62,,,,,,144,37,0,,,,, +258,38,3,7068,597,1050.62,,,,,,144,40,0,,,,, +258,39,3,7069,597,1050.62,,,,,,144,44,0,,,,, +258,40,1,7071,618,1050.62,22,32.0,D3,ff,22,144,50,22,,,,, +258,41,1,7072,618,1050.62,32,32.0,C4,ff,22,144,60,22,,,,, +258,42,3,7073,618,1050.62,22,32.0,B1,ff,22,144,35,22,,,,, +258,43,3,7074,618,1050.62,32,32.0,C#2,ff,22,144,37,22,,,,, +258,44,3,7075,618,1050.62,32,32.0,E2,ff,22,144,40,22,,,,, +258,45,3,7076,618,1050.62,32,32.0,G#2,ff,22,144,44,22,,,,, +258,42,3,7073,618,1050.721,,,,,,144,35,0,,,,, +258,48,1,7077,640,1050.721,25,32.0,E4,p,11,144,64,11,,,,, +258,49,3,7078,640,1050.721,128,8.0,D1,ppp,5,144,26,5,,,,, +258,50,3,7079,640,1050.721,128,8.0,B1,ppp,5,144,35,5,,,,, +258,51,3,7080,640,1050.721,128,8.0,A#3,ppp,5,144,58,5,,,,, +258,40,1,7071,618,1050.721,,,,,,144,50,0,,,,, +258,41,1,7072,618,1050.767,,,,,,144,60,0,,,,, +258,43,3,7074,618,1050.767,,,,,,144,37,0,,,,, +258,44,3,7075,618,1050.767,,,,,,144,40,0,,,,, +258,45,3,7076,618,1050.767,,,,,,144,44,0,,,,, +258,48,1,7077,640,1050.836,,,,,,144,64,0,,,,, +258,52,1,7081,665,1050.836,51,16.0,F#3,p,11,144,54,11,,,,, +258,47,0,7082,640,1050.843,,,,,,176,64,127,,,,,V +258,52,1,7081,665,1051.07,,,,,,144,54,0,,,,, +258,53,1,7083,716,1051.07,26,32.0,A4,p,11,144,69,11,,,,, +258,53,1,7083,716,1051.19,,,,,,144,69,0,,,,, +258,54,1,7084,742,1051.19,26,32.0,G#4,p,11,144,68,11,,,,, +258,55,0,7085,742,1051.19,,,,,,,,,,5990,,, +258,56,0,7086,768,1051.233,,,,,,176,64,0,,,,,^ +258,49,3,7078,640,1051.309,,,,,,144,26,0,,,,, +258,50,3,7079,640,1051.309,,,,,,144,35,0,,,,, +258,51,3,7080,640,1051.309,,,,,,144,58,0,,,,, +258,54,1,7084,742,1051.309,,,,,,144,68,0,,,,, +258,57,1,7087,768,1051.309,32,32.0,B1,f,20,144,35,20,,,,, +258,58,1,7088,768,1051.309,32,32.0,C#2,f,20,144,37,20,,,,, +258,59,1,7089,768,1051.309,32,32.0,E2,f,20,144,40,20,,,,, +258,60,1,7090,768,1051.309,32,32.0,G#2,f,20,144,44,20,,,,, +258,61,1,7091,768,1051.309,32,32.0,D3,f,20,144,50,20,,,,, +258,62,1,7092,768,1051.309,32,32.0,C4,f,20,144,60,20,,,,, +258,63,3,7093,768,1051.309,,,,,,176,102,0,,,,, +258,64,3,7094,789,1051.406,21,32.0,G#1,f,20,144,32,20,,,,, +258,57,1,7087,768,1051.456,,,,,,144,35,0,,,,, +258,58,1,7088,768,1051.456,,,,,,144,37,0,,,,, +258,59,1,7089,768,1051.456,,,,,,144,40,0,,,,, +258,60,1,7090,768,1051.456,,,,,,144,44,0,,,,, +258,61,1,7091,768,1051.456,,,,,,144,50,0,,,,, +258,62,1,7092,768,1051.456,,,,,,144,60,0,,,,, +258,66,1,7095,800,1051.456,,,,,,176,102,0,,,,, +258,64,3,7094,789,1051.502,,,,,,144,32,0,,,,, +258,67,3,7096,810,1051.502,22,32.0,C3,f-,19,144,48,19,,,,, +258,65,0,7097,800,1051.533,,,,,,176,64,127,,,,,V +258,67,3,7096,810,1051.603,,,,,,144,48,0,,,,, +258,68,1,7098,832,1051.603,,,,,,176,102,0,,,,, +258,69,3,7099,832,1051.603,21,32.0,F#4,f-,19,144,66,19,,,,, +258,69,3,7099,832,1051.7,,,,,,144,66,0,,,,, +258,70,3,7100,853,1051.7,32,32.0,A3,mf+,18,144,57,18,,,,, +258,70,3,7100,853,1051.847,,,,,,144,57,0,,,,, +258,71,3,7101,885,1051.847,32,32.0,F#4,mf,17,144,66,17,,,,, +258,72,1,7102,896,1051.897,,,,,,176,102,0,,,,, +258,71,3,7101,885,1051.994,,,,,,144,66,0,,,,, +258,73,3,7103,917,1051.994,21,32.0,E1,mf,17,144,28,17,,,,, +258,73,3,7103,917,1052.09,,,,,,144,28,0,,,,, +258,74,3,7104,938,1052.09,22,32.0,G#1,mf-,16,144,32,16,,,,, +258,74,3,7104,938,1052.192,,,,,,144,32,0,,,,, +258,75,3,7105,960,1052.192,21,32.0,E1,mp+,15,144,28,15,,,,, +258,76,3,7106,960,1052.192,32,32.0,C2,mp+,15,144,36,15,,,,, +258,75,3,7105,960,1052.288,,,,,,144,28,0,,,,, +258,77,3,7107,981,1052.288,21,32.0,F#4,mp+,15,144,66,15,,,,, +258,76,3,7106,960,1052.339,,,,,,144,36,0,,,,, +258,77,3,7107,981,1052.385,,,,,,144,66,0,,,,, +258,78,3,7108,1002,1052.385,22,32.0,E1,mp,14,144,28,14,,,,, +258,79,3,7109,1002,1052.385,32,32.0,C2,mp,14,144,36,14,,,,, +258,78,3,7108,1002,1052.486,,,,,,144,28,0,,,,, +258,80,1,7110,1024,1052.486,,,,,,176,102,0,,,,, +258,81,3,7111,1024,1052.486,21,32.0,G#1,mp,14,144,32,14,,,,, +258,82,3,7112,1024,1052.486,32,32.0,A2,mp,14,144,45,14,,,,, +258,79,3,7109,1002,1052.532,,,,,,144,36,0,,,,, +258,81,3,7111,1024,1052.582,,,,,,144,32,0,,,,, +258,83,3,7113,1045,1052.582,32,32.0,F#3,mp-,13,144,54,13,,,,, +258,82,3,7112,1024,1052.633,,,,,,144,45,0,,,,, +258,83,3,7113,1045,1052.729,,,,,,144,54,0,,,,, +258,84,3,7114,1077,1052.729,32,32.0,A2,p+,12,144,45,12,,,,, +258,84,3,7114,1077,1052.876,,,,,,144,45,0,,,,, +258,85,0,7115,1109,1052.876,,,,,,176,64,0,,,,,^ +258,86,3,7116,1109,1052.876,32,32.0,E1,p,11,144,28,11,,,,, +258,87,3,7117,1109,1052.876,32,32.0,G#1,p,11,144,32,11,,,,, +258,86,3,7116,1109,1053.023,,,,,,144,28,0,,,,, +258,87,3,7117,1109,1053.023,,,,,,144,32,0,,,,, +258,88,3,7118,1141,1053.023,32,32.0,C2,p,11,144,36,11,,,,, +258,89,3,7119,1141,1053.023,32,32.0,F#3,p,11,144,54,11,,,,, +258,88,3,7118,1141,1053.17,,,,,,144,36,0,,,,, +258,89,3,7119,1141,1053.17,,,,,,144,54,0,,,,, +258,90,3,7120,1173,1053.17,32,32.0,E1,p-,10,144,28,10,,,,, +258,91,3,7121,1173,1053.17,32,32.0,G#1,p-,10,144,32,10,,,,, +258,92,3,7122,1173,1053.17,32,32.0,A2,p-,10,144,45,10,,,,, +258,90,3,7120,1173,1053.317,,,,,,144,28,0,,,,, +258,91,3,7121,1173,1053.317,,,,,,144,32,0,,,,, +258,92,3,7122,1173,1053.317,,,,,,144,45,0,,,,, +258,93,3,7123,1205,1053.317,32,32.0,C2,pp+,9,144,36,9,,,,, +258,94,3,7124,1205,1053.317,32,32.0,F#4,pp+,9,144,66,9,,,,, +258,93,3,7123,1205,1053.465,,,,,,144,36,0,,,,, +258,94,3,7124,1205,1053.465,,,,,,144,66,0,,,,, +258,95,3,7125,1237,1053.465,21,32.0,E1,pp,8,144,28,8,,,,, +258,95,3,7125,1237,1053.561,,,,,,144,28,0,,,,, +258,96,3,7126,1258,1053.561,22,32.0,A2,pp,8,144,45,8,,,,, +258,96,3,7126,1258,1053.662,,,,,,144,45,0,,,,, +258,97,1,7127,1280,1053.662,170,4.0,F#5,pp,8,144,78,8,,,,, +258,98,3,7128,1280,1053.662,64,16.0,E1,pp,8,144,28,8,,,,, +258,99,3,7129,1280,1053.662,64,16.0,G#1,pp,8,144,32,8,,,,, +258,100,3,7130,1280,1053.662,64,16.0,C2,pp,8,144,36,8,,,,, +258,98,3,7128,1280,1053.956,,,,,,144,28,0,,,,, +258,99,3,7129,1280,1053.956,,,,,,144,32,0,,,,, +258,100,3,7130,1280,1053.956,,,,,,144,36,0,,,,, +258,101,3,7131,1344,1053.956,,,,,,176,102,0,,,,, +258,102,3,7132,,1054.25,,8.0,C1,p,11,144,24,11,,,,g, +258,102,3,7132,,1054.3,,,,,,144,24,0,,,,, +258,103,3,7133,,1054.325,,8.0,F#1,p,11,144,30,11,,,,g, +258,103,3,7133,,1054.375,,,,,,144,30,0,,,,, +258,104,3,7134,1408,1054.4,128,8.0,E2,p,11,144,40,11,,,,, +258,97,1,7127,1280,1054.443,,,,,,144,78,0,,,,, +258,105,1,7135,1450,1054.593,22,32.0,A3,pp,8,144,57,8,,,,, +258,105,1,7135,1450,1054.694,,,,,,144,57,0,,,,, +258,106,1,7136,1472,1054.694,64,16.0,G#2,pp,8,144,44,8,,,,, +258,104,3,7134,1408,1054.989,,,,,,144,40,0,,,,, +258,106,1,7136,1472,1054.989,,,,,,144,44,0,,,,, +259,0,0,7137,0,1054.989,,,,,,,,,259,,,, +259,1,0,7138,0,1054.989,,,,,,,,,,5991,,, +259,3,1,7139,0,1054.989,64,16.0,F#5,pp,8,144,78,8,,,,, +259,4,3,7140,0,1054.989,,,,,,176,102,0,,,,, +259,2,0,7141,0,1054.989,,,,,,176,64,127,,,,,V +259,3,1,7139,0,1055.283,,,,,,144,78,0,,,,, +259,5,1,7142,64,1055.283,21,32.0,A3,pp,8,144,57,8,,,,, +259,5,1,7142,64,1055.379,,,,,,144,57,0,,,,, +259,6,1,7143,85,1055.379,43,16.0,E3,f,20,144,52,20,,,,, +259,7,1,7144,85,1055.379,64,16.0,C#4,f,20,144,61,20,,,,, +259,8,1,7145,85,1055.379,64,16.0,C6,f,20,144,84,20,,,,, +259,6,1,7143,85,1055.577,,,,,,144,52,0,,,,, +259,9,1,7146,128,1055.577,128,8.0,E3,p,11,144,52,11,,,,, +259,10,1,7147,128,1055.577,128,8.0,A#3,p,11,144,58,11,,,,, +259,11,1,7148,128,1055.577,128,8.0,C#7,p,11,144,97,11,,,,, +259,12,3,7149,128,1055.577,,,,,,176,102,0,,,,, +259,7,1,7144,85,1055.673,,,,,,144,61,0,,,,, +259,8,1,7145,85,1055.673,,,,,,144,84,0,,,,, +259,13,3,7150,170,1055.77,14,64.0,C1,p,11,144,24,11,,,,, +259,13,3,7150,170,1055.834,,,,,,144,24,0,,,,, +259,14,3,7151,184,1055.834,15,64.0,F#1,p+,12,144,30,12,,,,, +259,9,1,7146,128,1055.903,,,,,,144,52,0,,,,, +259,14,3,7151,184,1055.903,,,,,,144,30,0,,,,, +259,15,3,7152,199,1055.903,28,32.0,E3,mp-,13,144,52,13,,,,, +259,16,3,7153,227,1056.032,14,64.0,G#3,mp+,15,144,56,15,,,,, +259,16,3,7153,227,1056.096,,,,,,144,56,0,,,,, +259,17,3,7154,241,1056.096,15,64.0,A3,mp+,15,144,57,15,,,,, +259,10,1,7147,128,1056.165,,,,,,144,58,0,,,,, +259,11,1,7148,128,1056.165,,,,,,144,97,0,,,,, +259,15,3,7152,199,1056.165,,,,,,144,52,0,,,,, +259,17,3,7154,241,1056.165,,,,,,144,57,0,,,,, +259,18,1,7155,256,1056.165,128,8.0,F#4,ff,22,144,66,22,,,,, +259,19,3,7156,256,1056.165,128,8.0,A#1,ff,22,144,34,22,,,,, +259,18,1,7155,256,1056.753,,,,,,144,66,0,,,,, +259,19,3,7156,256,1056.753,,,,,,144,34,0,,,,, +259,20,1,7157,384,1056.753,42,16.0,C6,mp,14,144,84,14,,,,, +259,21,3,7158,384,1056.753,42,16.0,E3,mp,14,144,52,14,,,,, +259,22,3,7159,384,1056.753,64,16.0,A#3,mp,14,144,58,14,,,,, +259,23,1,7160,426,1056.946,86,8.0,C6,,,,,,,,,, +259,24,1,7161,426,1056.946,128,8.0,C#7,f,20,144,97,20,,,,, +259,25,3,7162,426,1056.946,86,8.0,E3,,,,,,,,,, +259,26,3,7163,426,1056.946,128,8.0,A#3,,,,,,,,,, +259,27,3,7164,426,1056.946,128,8.0,C#4,f,20,144,61,20,,,,, +259,20,1,7157,384,1057.342,,,,,,144,84,0,,,,, +259,21,3,7158,384,1057.342,,,,,,144,52,0,,,,, +259,28,1,7165,512,1057.342,,,,,,176,102,0,,,,, +259,29,3,7166,512,1057.342,28,32.0,C1,p,11,144,24,11,,,,, +259,29,3,7166,512,1057.47,,,,,,144,24,0,,,,, +259,30,3,7167,540,1057.47,28,32.0,F#1,p+,12,144,30,12,,,,, +259,24,1,7161,426,1057.535,,,,,,144,97,0,,,,, +259,27,3,7164,426,1057.535,,,,,,144,61,0,,,,, +259,30,3,7167,540,1057.599,,,,,,144,30,0,,,,, +259,31,3,7168,568,1057.599,43,32.0,E3,mp-,13,144,52,13,,,,, +259,22,3,7159,384,1057.636,,,,,,144,58,0,,,,, +259,31,3,7168,568,1057.796,,,,,,144,52,0,,,,, +259,32,3,7169,611,1057.796,29,32.0,G#3,mp+,15,144,56,15,,,,, +259,32,3,7169,611,1057.93,,,,,,144,56,0,,,,, +259,33,3,7170,640,1057.93,,,,,,176,102,0,,,,, +259,34,1,7171,768,1058.518,256,4.0,C6,fff,24,144,84,23,,,,, +259,35,1,7172,768,1058.518,256,4.0,C#7,fff,24,144,97,23,,,,, +259,36,3,7173,768,1058.518,128,8.0,E3,fff,24,144,52,23,,,,, +259,37,3,7174,768,1058.518,128,8.0,A#3,fff,24,144,58,23,,,,, +259,38,3,7175,768,1058.518,128,8.0,C#4,fff,24,144,61,23,,,,, +259,36,3,7173,768,1059.106,,,,,,144,52,0,,,,, +259,37,3,7174,768,1059.106,,,,,,144,58,0,,,,, +259,38,3,7175,768,1059.106,,,,,,144,61,0,,,,, +259,39,3,7176,896,1059.106,42,32.0,C1,mp,14,144,24,14,,,,, +259,39,3,7176,896,1059.299,,,,,,144,24,0,,,,, +259,40,3,7177,938,1059.299,43,32.0,E3,mp+,15,144,52,15,,,,, +259,40,3,7177,938,1059.497,,,,,,144,52,0,,,,, +259,41,3,7178,981,1059.497,14,64.0,G#4,mf-,16,144,68,16,,,,, +259,41,3,7178,981,1059.561,,,,,,144,68,0,,,,, +259,42,3,7179,995,1059.561,29,32.0,A4,mf-,16,144,69,16,,,,, +259,42,3,7179,995,1059.694,,,,,,144,69,0,,,,, +259,43,1,7180,1024,1059.694,,,,,,176,102,0,,,,, +259,44,3,7181,1024,1059.694,42,32.0,C1,mf-,16,144,24,16,,,,, +259,34,1,7171,768,1059.694,,,,,,144,84,0,,,,, +259,35,1,7172,768,1059.694,,,,,,144,97,0,,,,, +259,44,3,7181,1024,1059.887,,,,,,144,24,0,,,,, +259,45,3,7182,1066,1059.887,43,32.0,E3,mf,17,144,52,17,,,,, +259,45,3,7182,1066,1060.085,,,,,,144,52,0,,,,, +259,46,3,7183,1109,1060.085,43,32.0,G#4,mf+,18,144,68,18,,,,, +259,47,3,7184,1152,1060.283,128,8.0,G#4,,,,,,,,,, +259,48,0,7185,1221,1060.585,,,,,,176,64,0,,,,,^ +259,46,3,7183,1109,1060.871,,,,,,144,68,0,,,,, +259,50,1,7186,1280,1060.871,256,4.0,F#4,pp,8,144,66,8,,,,, +259,51,3,7187,1280,1060.871,256,4.0,A#1,pp,8,144,34,8,,,,, +259,49,0,7188,1280,1060.885,,,,,,176,64,127,,,,,V +259,50,1,7186,1280,1062.047,,,,,,144,66,0,,,,, +259,51,3,7187,1280,1062.047,,,,,,144,34,0,,,,, +260,0,0,7189,0,1062.047,,,,,,,,,260,,,, +260,1,1,7190,0,1062.047,,,,,,176,102,0,,,,, +260,2,2,7191,0,1062.047,,,,,,176,102,0,,,,, +260,3,3,7192,0,1062.047,,,,,,176,102,0,,,,, +260,4,0,7193,256,1063.224,,,,,,176,64,0,,,,,^ +260,5,2,7194,256,1063.224,192,8.0,C#2,ppp,5,,,,,,,, +260,6,3,7195,,1063.224,,8.0,C#2,f,20,144,37,20,,,,g, +260,7,3,7196,,1063.299,,8.0,D2,f-,19,144,38,19,,,,g, +260,7,3,7196,,1063.349,,,,,,144,38,0,,,,, +260,6,3,7195,,1063.374,,,,,,144,37,0,,,,, +260,8,3,7197,,1063.374,,8.0,C#2,f-,19,144,37,19,,,,g, +260,9,3,7198,,1063.449,,8.0,D2,mf+,18,144,38,18,,,,g, +260,9,3,7198,,1063.499,,,,,,144,38,0,,,,, +260,8,3,7197,,1063.524,,,,,,144,37,0,,,,, +260,10,3,7199,,1063.524,,8.0,C#2,mf,17,144,37,17,,,,g, +260,11,3,7200,,1063.524,,8.0,A4,mf,17,144,69,17,,,,g, +260,11,3,7200,,1063.574,,,,,,144,69,0,,,,, +260,12,3,7201,,1063.599,,8.0,B1,mf,17,144,35,17,,,,g, +260,12,3,7201,,1063.649,,,,,,144,35,0,,,,, +260,13,3,7202,,1063.674,,8.0,F2,mf-,16,144,41,16,,,,g, +260,13,3,7202,,1063.724,,,,,,144,41,0,,,,, +260,14,3,7203,,1063.749,,8.0,B1,mp+,15,144,35,15,,,,g, +260,15,3,7204,,1063.749,,8.0,A3,mp+,15,144,57,15,,,,g, +260,14,3,7203,,1063.799,,,,,,144,35,0,,,,, +260,15,3,7204,,1063.799,,,,,,144,57,0,,,,, +260,16,3,7205,,1063.824,,8.0,F2,mp,14,144,41,14,,,,g, +260,16,3,7205,,1063.874,,,,,,144,41,0,,,,, +260,17,3,7206,,1063.899,,8.0,B0,mp,14,144,23,14,,,,g, +260,17,3,7206,,1063.949,,,,,,144,23,0,,,,, +260,18,3,7207,,1063.974,,8.0,F2,mp-,13,144,41,13,,,,g, +260,18,3,7207,,1064.024,,,,,,144,41,0,,,,, +260,10,3,7199,,1064.106,,,,,,144,37,0,,,,, +260,19,3,7208,256,1064.199,128,8.0,B1,p,11,144,35,11,,,,, +260,20,3,7209,256,1064.199,128,8.0,D2,p,11,144,38,11,,,,, +260,21,3,7210,256,1064.199,128,8.0,F2,p,11,144,41,11,,,,, +260,22,3,7211,256,1064.199,128,8.0,A2,p,11,144,45,11,,,,, +260,19,3,7208,256,1064.787,,,,,,144,35,0,,,,, +260,20,3,7209,256,1064.787,,,,,,144,38,0,,,,, +260,21,3,7210,256,1064.787,,,,,,144,41,0,,,,, +260,22,3,7211,256,1064.787,,,,,,144,45,0,,,,, +260,23,3,7212,384,1064.787,,,,,,176,102,0,,,,, +260,24,2,7213,448,1065.081,,,,,,176,102,0,,,,, +260,25,0,7214,448,1065.081,,,,,,,,,,5992,,, +260,26,1,7215,,1065.375,,8.0,A6,mf,17,144,93,17,,,,g, +260,29,3,7216,,1065.375,,8.0,C7,pp,8,144,96,8,,,,g, +260,26,1,7215,,1065.425,,,,,,144,93,0,,,,, +260,29,3,7216,,1065.425,,,,,,144,96,0,,,,, +260,27,1,7217,512,1065.525,512,2.0,D#4,mf,17,144,63,17,,,,, +260,28,2,7218,512,1065.525,25,32.0,G6,pp,8,144,91,8,,,,, +260,30,3,7219,512,1065.525,73,16.0,E7,pp,8,144,100,8,,,,, +260,28,2,7218,512,1065.64,,,,,,144,91,0,,,,, +260,32,2,7220,537,1065.64,26,32.0,B6,pp,8,144,95,8,,,,, +260,31,0,7221,537,1065.64,,,,,,176,64,127,,,,,V +260,32,2,7220,537,1065.76,,,,,,144,95,0,,,,, +260,33,2,7222,563,1065.76,25,32.0,G6,pp,8,144,91,8,,,,, +260,30,3,7219,512,1065.861,,,,,,144,100,0,,,,, +260,34,3,7223,585,1065.861,73,16.0,G#3,pp,8,144,56,8,,,,, +260,33,2,7222,563,1065.875,,,,,,144,91,0,,,,, +260,35,2,7224,588,1065.875,26,32.0,B6,pp,8,144,95,8,,,,, +260,35,2,7224,588,1065.994,,,,,,144,95,0,,,,, +260,36,2,7225,614,1065.994,26,32.0,G6,pp,8,144,91,8,,,,, +260,36,2,7225,614,1066.114,,,,,,144,91,0,,,,, +260,37,2,7226,640,1066.114,38,32.0,B6,pp,8,144,95,8,,,,, +260,38,3,7227,658,1066.196,110,16.0,D4,pp,8,144,62,8,,,,, +260,34,3,7223,585,1066.196,,,,,,144,56,0,,,,, +260,37,2,7226,640,1066.288,,,,,,144,95,0,,,,, +260,39,2,7228,678,1066.288,38,32.0,G6,pp,8,144,91,8,,,,, +260,39,2,7228,678,1066.463,,,,,,144,91,0,,,,, +260,40,2,7229,716,1066.463,26,32.0,B6,pp,8,144,95,8,,,,, +260,40,2,7229,716,1066.582,,,,,,144,95,0,,,,, +260,41,2,7230,742,1066.582,26,32.0,A7,pp,8,144,105,8,,,,, +260,41,2,7230,742,1066.702,,,,,,144,105,0,,,,, +260,42,2,7231,768,1066.702,21,32.0,C5,pp,8,144,72,8,,,,, +260,43,3,7232,,1066.702,,8.0,C7,pp+,9,144,96,9,,,,g, +260,38,3,7227,658,1066.702,,,,,,144,62,0,,,,, +260,43,3,7232,,1066.752,,,,,,144,96,0,,,,, +260,44,3,7233,768,1066.777,32,32.0,E7,pp+,9,144,100,9,,,,, +260,42,2,7231,768,1066.798,,,,,,144,72,0,,,,, +260,45,2,7234,789,1066.873,21,32.0,B6,pp,8,144,95,8,,,,, +260,44,3,7233,768,1066.924,,,,,,144,100,0,,,,, +260,46,3,7235,800,1066.924,32,32.0,G#3,pp+,9,144,56,9,,,,, +260,45,2,7234,789,1066.97,,,,,,144,95,0,,,,, +260,47,2,7236,810,1066.97,22,32.0,C6,pp,8,144,84,8,,,,, +260,46,3,7235,800,1067.071,,,,,,144,56,0,,,,, +260,47,2,7236,810,1067.071,,,,,,144,84,0,,,,, +260,48,2,7237,832,1067.071,21,32.0,B6,pp,8,144,95,8,,,,, +260,49,3,7238,832,1067.071,32,32.0,D4,pp+,9,144,62,9,,,,, +260,50,2,7239,853,1067.167,11,64.0,B6,,,,,,,,,, +260,48,2,7237,832,1067.218,,,,,,144,95,0,,,,, +260,49,3,7238,832,1067.218,,,,,,144,62,0,,,,, +260,51,2,7240,864,1067.218,32,32.0,C6,pp,8,144,84,8,,,,, +260,52,3,7241,864,1067.218,32,32.0,C#4,pp+,9,144,61,9,,,,, +260,51,2,7240,864,1067.365,,,,,,144,84,0,,,,, +260,52,3,7241,864,1067.365,,,,,,144,61,0,,,,, +260,53,2,7242,896,1067.365,42,32.0,B6,pp,8,144,95,8,,,,, +260,54,3,7243,896,1067.365,,,,,,176,102,0,,,,, +260,53,2,7242,896,1067.558,,,,,,144,95,0,,,,, +260,55,2,7244,938,1067.558,29,32.0,C6,pp,8,144,84,8,,,,, +260,55,2,7244,938,1067.691,,,,,,144,84,0,,,,, +260,56,2,7245,967,1067.691,28,32.0,D#7,pp,8,144,99,8,,,,, +260,56,2,7245,967,1067.82,,,,,,144,99,0,,,,, +260,57,2,7246,995,1067.82,29,32.0,A7,pp,8,144,105,8,,,,, +260,27,1,7217,512,1067.878,,,,,,144,63,0,,,,, +260,57,2,7246,995,1067.953,,,,,,144,105,0,,,,, +260,58,1,7247,1024,1067.953,,,,,,176,102,0,,,,, +260,59,2,7248,1024,1067.953,28,32.0,C5,pp,8,144,72,8,,,,, +260,60,3,7249,1024,1067.953,146,8.0,C7,p-,10,144,96,10,,,,, +260,59,2,7248,1024,1068.082,,,,,,144,72,0,,,,, +260,61,2,7250,1052,1068.082,28,32.0,D#7,pp,8,144,99,8,,,,, +260,61,2,7250,1052,1068.211,,,,,,144,99,0,,,,, +260,62,2,7251,1080,1068.211,43,32.0,A7,pp,8,144,105,8,,,,, +260,62,2,7251,1080,1068.408,,,,,,144,105,0,,,,, +260,63,2,7252,1123,1068.408,29,32.0,D#7,pp,8,144,99,8,,,,, +260,63,2,7252,1123,1068.542,,,,,,144,99,0,,,,, +260,64,2,7253,1152,1068.542,42,16.0,A7,pp,8,144,105,8,,,,, +260,60,3,7249,1024,1068.624,,,,,,144,96,0,,,,, +260,65,3,7254,1170,1068.624,110,16.0,G#3,p,11,144,56,11,,,,, +260,64,2,7253,1152,1068.735,,,,,,144,105,0,,,,, +260,66,1,7255,1194,1068.735,29,32.0,C#6,pp,8,144,85,8,,,,, +260,67,2,7256,1194,1068.735,86,8.0,D#7,pp,8,144,99,8,,,,, +260,66,1,7255,1194,1068.868,,,,,,144,85,0,,,,, +260,68,1,7257,1223,1068.868,28,32.0,F2,mp,14,144,41,14,,,,, +260,68,1,7257,1223,1068.996,,,,,,144,41,0,,,,, +260,69,1,7258,1251,1068.996,29,32.0,F#3,mp,14,144,54,14,,,,, +260,69,1,7258,1251,1069.13,,,,,,144,54,0,,,,, +260,70,1,7259,1280,1069.13,,,,,,176,102,0,,,,, +260,71,2,7260,1280,1069.13,,,,,,176,102,0,,,,, +260,72,3,7261,1280,1069.13,36,32.0,G#3,,,,,,,,,, +260,67,2,7256,1194,1069.13,,,,,,144,99,0,,,,, +260,73,3,7262,1316,1069.295,55,32.0,E7,p,11,144,100,11,,,,, +260,65,3,7254,1170,1069.295,,,,,,144,56,0,,,,, +260,74,3,7263,1371,1069.548,55,32.0,G#3,p+,12,144,56,12,,,,, +260,73,3,7262,1316,1069.698,,,,,,144,100,0,,,,, +260,74,3,7263,1371,1069.801,,,,,,144,56,0,,,,, +260,75,3,7264,1426,1069.801,55,32.0,D5,p+,12,144,74,12,,,,, +260,75,3,7264,1426,1070.053,,,,,,144,74,0,,,,, +260,76,3,7265,1481,1070.053,55,32.0,C#5,p+,12,144,73,12,,,,, +260,77,0,7266,1535,1070.302,,,,,,176,64,0,,,,,^ +260,76,3,7265,1481,1070.306,,,,,,144,73,0,,,,, +261,0,0,7267,0,1070.306,,,,,,,,,261,,,, +261,5,1,7268,0,1070.306,384,4.0,A6,p,11,144,93,11,,,,, +261,2,1,7269,,1070.306,,8.0,G5,p,11,144,79,11,,,,g, +261,6,3,7270,,1070.306,,8.0,D4,p,11,144,62,11,,,,g, +261,2,1,7269,,1070.356,,,,,,144,79,0,,,,, +261,6,3,7270,,1070.356,,,,,,144,62,0,,,,, +261,3,1,7271,,1070.381,,8.0,C5,p,11,,,,,,,g, +261,7,3,7272,,1070.381,,8.0,C5,p,11,144,72,11,,,,g, +261,7,3,7272,,1070.431,,,,,,144,72,0,,,,, +261,4,1,7273,,1070.456,,8.0,B5,p,11,144,83,11,,,,g, +261,8,3,7274,,1070.456,,8.0,C#4,p,11,144,61,11,,,,g, +261,4,1,7273,,1070.506,,,,,,144,83,0,,,,, +261,8,3,7274,,1070.506,,,,,,144,61,0,,,,, +261,9,3,7275,0,1070.756,384,4.0,E5,p,11,144,76,11,,,,, +261,1,0,7276,0,1070.756,,,,,,176,64,127,,,,,V +261,5,1,7268,0,1072.071,,,,,,144,93,0,,,,, +261,10,0,7277,301,1072.14,,,,,,176,64,0,,,,,^ +261,9,3,7275,0,1072.521,,,,,,144,76,0,,,,, +261,12,1,7278,384,1072.521,21,32.0,G5,mp,14,144,79,14,,,,, +261,13,3,7279,384,1072.521,,,,,,176,102,0,,,,, +261,11,0,7280,384,1072.521,,,,,,176,64,127,,,,,V +261,12,1,7278,384,1072.617,,,,,,144,79,0,,,,, +261,14,1,7281,405,1072.617,21,32.0,C5,mp,14,144,72,14,,,,, +261,14,1,7281,405,1072.714,,,,,,144,72,0,,,,, +261,15,1,7282,426,1072.714,22,32.0,G5,mp,14,144,79,14,,,,, +261,16,3,7283,426,1072.714,,,,,,176,102,0,,,,, +261,17,3,7284,440,1072.778,14,32.0,D4,p,11,144,62,11,,,,, +261,15,1,7282,426,1072.815,,,,,,144,79,0,,,,, +261,18,1,7285,448,1072.815,21,32.0,B5,mp,14,144,83,14,,,,, +261,17,3,7284,440,1072.843,,,,,,144,62,0,,,,, +261,19,3,7286,454,1072.843,14,32.0,C5,p+,12,144,72,12,,,,, +261,19,3,7286,454,1072.907,,,,,,144,72,0,,,,, +261,21,3,7287,468,1072.907,14,32.0,D4,p+,12,144,62,12,,,,, +261,18,1,7285,448,1072.912,,,,,,144,83,0,,,,, +261,20,1,7288,469,1072.912,21,32.0,C5,mp+,15,144,72,15,,,,, +261,21,3,7287,468,1072.971,,,,,,144,62,0,,,,, +261,22,3,7289,482,1072.971,14,32.0,C#4,mp-,13,144,61,13,,,,, +261,20,1,7288,469,1073.008,,,,,,144,72,0,,,,, +261,23,1,7290,490,1073.008,22,32.0,B5,mp+,15,144,83,15,,,,, +261,22,3,7289,482,1073.036,,,,,,144,61,0,,,,, +261,24,3,7291,496,1073.036,16,32.0,D4,mp-,13,144,62,13,,,,, +261,24,3,7291,496,1073.109,,,,,,144,62,0,,,,, +261,25,1,7292,512,1073.109,384,4.0,A6,mf,17,144,93,17,,,,, +261,26,3,7293,512,1073.109,85,8.0,E6,mp,14,144,88,14,,,,, +261,23,1,7290,490,1073.109,,,,,,144,83,0,,,,, +261,26,3,7293,512,1073.5,,,,,,144,88,0,,,,, +261,27,3,7294,597,1073.5,128,8.0,G#3,mp,14,144,56,14,,,,, +261,27,3,7294,597,1074.088,,,,,,144,56,0,,,,, +261,28,3,7295,725,1074.088,43,16.0,C#6,f,20,144,85,20,,,,, +261,28,3,7295,725,1074.286,,,,,,144,85,0,,,,, +261,29,3,7296,768,1074.286,42,16.0,F2,mf,17,144,41,17,,,,, +261,29,3,7296,768,1074.479,,,,,,144,41,0,,,,, +261,30,3,7297,810,1074.479,22,32.0,F#3,mp,14,144,54,14,,,,, +261,30,3,7297,810,1074.58,,,,,,144,54,0,,,,, +261,31,3,7298,832,1074.58,42,16.0,F2,p+,12,144,41,12,,,,, +261,31,3,7298,832,1074.773,,,,,,144,41,0,,,,, +261,32,3,7299,874,1074.773,22,32.0,F#3,p-,10,144,54,10,,,,, +261,25,1,7292,512,1074.874,,,,,,144,93,0,,,,, +261,32,3,7299,874,1074.874,,,,,,144,54,0,,,,, +261,33,1,7300,896,1074.874,42,16.0,D#6,mf,17,144,87,17,,,,, +261,34,3,7301,896,1074.874,42,16.0,F2,pp,8,144,41,8,,,,, +261,35,0,7302,938,1075.016,,,,,,176,64,0,,,,,^ +261,33,1,7300,896,1075.067,,,,,,144,87,0,,,,, +261,34,3,7301,896,1075.067,,,,,,144,41,0,,,,, +261,36,1,7303,938,1075.067,43,16.0,A6,mf,17,144,93,17,,,,, +261,37,3,7304,938,1075.067,,,,,,176,102,0,,,,, +261,36,1,7303,938,1075.265,,,,,,144,93,0,,,,, +261,39,1,7305,981,1075.265,43,16.0,D#6,mf,17,144,87,17,,,,, +261,38,0,7306,981,1075.316,,,,,,176,64,127,,,,,V +261,39,1,7305,981,1075.462,,,,,,144,87,0,,,,, +261,40,1,7307,1024,1075.462,0,8.0,G#7,ppp,5,,,,,,,, +261,41,1,7308,1024,1075.462,0,8.0,E5,ppp,5,,,,,,,, +261,42,1,7309,1024,1075.462,128,8.0,A5,ppp,5,144,81,5,,,,, +261,43,1,7310,1024,1075.462,0,8.0,F6,ppp,5,,,,,,,, +261,44,1,7311,1024,1075.462,128,8.0,D#7,ppp,5,144,99,5,,,,, +261,45,1,7312,1024,1075.462,64,16.0,G4,ppp,5,144,67,5,,,,, +261,46,1,7313,1024,1075.462,64,16.0,B6,ppp,5,144,95,5,,,,, +261,47,1,7314,1024,1075.462,64,16.0,A7,fff,24,144,105,23,,,,, +261,48,3,7315,1024,1075.462,85,8.0,C5,mf,17,144,72,17,,,,, +261,45,1,7312,1024,1075.756,,,,,,144,67,0,,,,, +261,46,1,7313,1024,1075.756,,,,,,144,95,0,,,,, +261,47,1,7314,1024,1075.756,,,,,,144,105,0,,,,, +261,49,1,7316,1088,1075.756,64,16.0,G6,ppp,5,144,91,5,,,,, +261,48,3,7315,1024,1075.853,,,,,,144,72,0,,,,, +261,50,3,7317,1109,1075.853,85,8.0,D3,mf,17,144,50,17,,,,, +261,42,1,7309,1024,1076.05,,,,,,144,81,0,,,,, +261,44,1,7311,1024,1076.05,,,,,,144,99,0,,,,, +261,49,1,7316,1088,1076.05,,,,,,144,91,0,,,,, +261,51,1,7318,1152,1076.05,,,,,,176,102,0,,,,, +261,50,3,7317,1109,1076.243,,,,,,144,50,0,,,,, +261,52,3,7319,1194,1076.243,25,32.0,E5,mf+,18,144,76,18,,,,, +261,52,3,7319,1194,1076.358,,,,,,144,76,0,,,,, +261,53,3,7320,1219,1076.358,26,32.0,C#3,f-,19,144,49,19,,,,, +261,53,3,7320,1219,1076.478,,,,,,144,49,0,,,,, +261,54,3,7321,1245,1076.478,17,32.0,G#2,f-,19,144,44,19,,,,, +261,54,3,7321,1245,1076.556,,,,,,144,44,0,,,,, +261,55,3,7322,1262,1076.556,18,32.0,C#3,f-,19,144,49,19,,,,, +261,55,3,7322,1262,1076.639,,,,,,144,49,0,,,,, +261,56,1,7323,1280,1076.639,28,32.0,D#6,f,20,144,87,20,,,,, +261,57,3,7324,1280,1076.639,,,,,,176,102,0,,,,, +261,56,1,7323,1280,1076.767,,,,,,144,87,0,,,,, +261,58,1,7325,1308,1076.767,28,32.0,C7,f,20,144,96,20,,,,, +261,58,1,7325,1308,1076.896,,,,,,144,96,0,,,,, +261,59,1,7326,1336,1076.896,29,32.0,D#6,f+,21,144,87,21,,,,, +261,59,1,7326,1336,1077.029,,,,,,144,87,0,,,,, +261,60,1,7327,1365,1077.029,171,8.0,E7,f+,21,144,100,21,,,,, +261,60,1,7327,1365,1077.815,,,,,,144,100,0,,,,, +262,0,0,7328,0,1077.815,,,,,,,,,262,,,, +262,1,1,7329,0,1077.815,224,8.0,C6,fff,24,144,84,23,,,,, +262,2,1,7330,0,1077.815,128,8.0,C#7,fff,24,144,97,23,,,,, +262,3,3,7331,0,1077.815,32,32.0,E3,fff,24,144,52,23,,,,, +262,4,3,7332,0,1077.815,32,32.0,A#3,fff,24,144,58,23,,,,, +262,3,3,7331,0,1077.962,,,,,,144,52,0,,,,, +262,4,3,7332,0,1077.962,,,,,,144,58,0,,,,, +262,5,3,7333,32,1077.962,96,16.0,G#1,fff,24,144,32,23,,,,, +262,2,1,7330,0,1078.403,,,,,,144,97,0,,,,, +262,5,3,7333,32,1078.403,,,,,,144,32,0,,,,, +262,6,3,7334,128,1078.403,96,16.0,G#1,fff,24,144,32,23,,,,, +262,7,3,7335,128,1078.403,64,16.0,E3,fff,24,144,52,23,,,,, +262,8,3,7336,128,1078.403,64,16.0,A#3,fff,24,144,58,23,,,,, +262,7,3,7335,128,1078.697,,,,,,144,52,0,,,,, +262,8,3,7336,128,1078.697,,,,,,144,58,0,,,,, +262,1,1,7329,0,1078.844,,,,,,144,84,0,,,,, +262,6,3,7334,128,1078.844,,,,,,144,32,0,,,,, +262,9,1,7337,224,1078.844,32,32.0,C6,fff,24,144,84,23,,,,, +262,10,1,7338,224,1078.844,32,32.0,C#7,fff,24,144,97,23,,,,, +262,11,3,7339,224,1078.844,32,32.0,G#1,fff,24,144,32,23,,,,, +262,12,3,7340,224,1078.844,32,32.0,E2,fff,24,144,40,23,,,,, +262,9,1,7337,224,1078.992,,,,,,144,84,0,,,,, +262,10,1,7338,224,1078.992,,,,,,144,97,0,,,,, +262,11,3,7339,224,1078.992,,,,,,144,32,0,,,,, +262,12,3,7340,224,1078.992,,,,,,144,40,0,,,,, +262,13,1,7341,256,1078.992,32,32.0,C6,ff+,23,144,84,23,,,,, +262,14,1,7342,256,1078.992,32,32.0,C#7,ff+,23,144,97,23,,,,, +262,15,3,7343,256,1078.992,32,32.0,G#1,ff+,23,144,32,23,,,,, +262,16,3,7344,256,1078.992,32,32.0,E2,ff+,23,144,40,23,,,,, +262,14,1,7342,256,1079.139,,,,,,144,97,0,,,,, +262,16,3,7344,256,1079.139,,,,,,144,40,0,,,,, +262,17,1,7345,288,1079.139,96,16.0,C5,ff,22,144,72,22,,,,, +262,18,3,7346,288,1079.139,96,16.0,A#3,ff,22,144,58,22,,,,, +262,15,3,7343,256,1079.58,,,,,,144,32,0,,,,, +262,17,1,7345,288,1079.58,,,,,,144,72,0,,,,, +262,18,3,7346,288,1079.58,,,,,,144,58,0,,,,, +262,19,1,7347,384,1079.58,64,16.0,A#3,mf+,18,144,58,18,,,,, +262,20,1,7348,384,1079.58,64,16.0,C5,mf+,18,144,72,18,,,,, +262,21,3,7349,384,1079.58,128,8.0,G#1,mf+,18,144,32,18,,,,, +262,22,3,7350,384,1079.58,128,8.0,E2,mf+,18,144,40,18,,,,, +262,13,1,7341,256,1079.819,,,,,,144,84,0,,,,, +262,19,1,7347,384,1079.874,,,,,,144,58,0,,,,, +262,20,1,7348,384,1079.874,,,,,,144,72,0,,,,, +262,23,1,7351,448,1079.874,64,16.0,C5,mf-,16,144,72,16,,,,, +262,24,1,7352,448,1079.874,64,16.0,C#6,mf-,16,144,85,16,,,,, +262,25,0,7353,511,1080.163,,,,,,176,64,0,,,,,^ +262,26,1,7354,512,1080.168,32,32.0,C5,,,,,,,,,, +262,27,1,7355,512,1080.168,32,32.0,C#6,,,,,,,,,, +262,28,3,7356,512,1080.168,32,32.0,G#1,,,,,,,,,, +262,29,3,7357,512,1080.168,32,32.0,E2,,,,,,,,,, +262,21,3,7349,384,1080.315,,,,,,144,32,0,,,,, +262,22,3,7350,384,1080.315,,,,,,144,40,0,,,,, +262,23,1,7351,448,1080.315,,,,,,144,72,0,,,,, +262,24,1,7352,448,1080.315,,,,,,144,85,0,,,,, +262,30,1,7358,544,1080.315,96,16.0,C5,mp-,13,144,72,13,,,,, +262,31,1,7359,544,1080.315,64,16.0,C#6,mp-,13,144,85,13,,,,, +262,32,3,7360,544,1080.315,32,32.0,G#1,mp-,13,144,32,13,,,,, +262,33,3,7361,544,1080.315,32,32.0,E2,mp-,13,144,40,13,,,,, +262,32,3,7360,544,1080.462,,,,,,144,32,0,,,,, +262,33,3,7361,544,1080.462,,,,,,144,40,0,,,,, +262,34,3,7362,576,1080.462,64,16.0,G#1,p,11,144,32,11,,,,, +262,35,3,7363,576,1080.462,64,16.0,E2,p,11,144,40,11,,,,, +262,36,3,7364,576,1080.462,64,16.0,A#2,p,11,144,46,11,,,,, +262,31,1,7359,544,1080.609,,,,,,144,85,0,,,,, +262,30,1,7358,544,1080.756,,,,,,144,72,0,,,,, +262,34,3,7362,576,1080.756,,,,,,144,32,0,,,,, +262,35,3,7363,576,1080.756,,,,,,144,40,0,,,,, +262,36,3,7364,576,1080.756,,,,,,144,46,0,,,,, +262,37,1,7365,640,1080.756,32,32.0,C4,pp+,9,144,60,9,,,,, +262,38,1,7366,640,1080.756,32,32.0,C#5,pp+,9,144,73,9,,,,, +262,39,3,7367,640,1080.756,32,32.0,G#1,pp+,9,144,32,9,,,,, +262,40,3,7368,640,1080.756,32,32.0,E2,pp+,9,144,40,9,,,,, +262,41,3,7369,640,1080.756,32,32.0,A#2,pp+,9,144,46,9,,,,, +262,37,1,7365,640,1080.903,,,,,,144,60,0,,,,, +262,38,1,7366,640,1080.903,,,,,,144,73,0,,,,, +262,39,3,7367,640,1080.903,,,,,,144,32,0,,,,, +262,40,3,7368,640,1080.903,,,,,,144,40,0,,,,, +262,41,3,7369,640,1080.903,,,,,,144,46,0,,,,, +262,42,1,7370,672,1080.903,96,16.0,C4,pp,8,144,60,8,,,,, +262,43,1,7371,672,1080.903,64,16.0,C#5,pp,8,144,73,8,,,,, +262,44,3,7372,672,1080.903,96,16.0,G#1,pp,8,144,32,8,,,,, +262,45,3,7373,672,1080.903,64,16.0,E2,pp,8,144,40,8,,,,, +262,46,3,7374,672,1080.903,64,16.0,A#2,pp,8,144,46,8,,,,, +262,43,1,7371,672,1081.197,,,,,,144,73,0,,,,, +262,45,3,7373,672,1081.197,,,,,,144,40,0,,,,, +262,46,3,7374,672,1081.197,,,,,,144,46,0,,,,, +262,42,1,7370,672,1081.344,,,,,,144,60,0,,,,, +262,44,3,7372,672,1081.344,,,,,,144,32,0,,,,, +262,47,1,7375,768,1081.344,,,,,,176,102,0,,,,, +262,48,3,7376,768,1081.344,,,,,,176,102,0,,,,, +262,49,0,7377,768,1081.344,,,,,,,,,,5993,,, +262,51,1,7378,810,1081.537,43,16.0,A7,ff,22,144,105,22,,,,, +262,50,0,7379,810,1081.537,,,,,,176,64,127,,,,,V +262,51,1,7378,810,1081.735,,,,,,144,105,0,,,,, +262,52,1,7380,853,1081.735,171,4.0,A7,ff,22,144,105,22,,,,, +262,53,3,7381,853,1081.735,102,8.0,F1,ff,22,144,29,22,,,,, +262,53,3,7381,853,1082.204,,,,,,144,29,0,,,,, +262,54,3,7382,955,1082.204,69,8.0,F1,ff,22,144,29,22,,,,, +262,54,3,7382,955,1082.521,,,,,,144,29,0,,,,, +262,55,1,7383,1024,1082.521,,,,,,176,102,0,,,,, +262,56,3,7384,1024,1082.521,68,8.0,F1,ff,22,144,29,22,,,,, +262,57,3,7385,1024,1082.521,128,8.0,D#3,ff,22,144,51,22,,,,, +262,52,1,7380,853,1082.596,,,,,,144,105,0,,,,, +262,56,3,7384,1024,1082.833,,,,,,144,29,0,,,,, +262,57,3,7385,1024,1082.833,,,,,,144,51,0,,,,, +262,58,3,7386,1092,1082.833,102,8.0,D#3,ff,22,144,51,22,,,,, +262,58,3,7386,1092,1083.302,,,,,,144,51,0,,,,, +262,59,1,7387,1194,1083.302,86,8.0,C#6,ff,22,144,85,22,,,,, +262,60,3,7388,1194,1083.302,22,32.0,D#3,mp,14,144,51,14,,,,, +262,61,3,7389,1194,1083.302,32,32.0,G#3,mp,14,144,56,14,,,,, +262,60,3,7388,1194,1083.403,,,,,,144,51,0,,,,, +262,61,3,7389,1194,1083.403,,,,,,144,56,0,,,,, +262,62,3,7390,1216,1083.403,64,16.0,D#3,mp+,15,144,51,15,,,,, +262,63,3,7391,1216,1083.403,64,16.0,G#3,mp+,15,144,56,15,,,,, +262,64,3,7392,1216,1083.403,64,16.0,C#4,mp+,15,144,61,15,,,,, +262,62,3,7390,1216,1083.697,,,,,,144,51,0,,,,, +262,63,3,7391,1216,1083.697,,,,,,144,56,0,,,,, +262,64,3,7392,1216,1083.697,,,,,,144,61,0,,,,, +262,65,1,7393,1280,1083.697,170,4.0,C#6,,,,,,,,,, +262,66,3,7394,1280,1083.697,85,8.0,D#3,mf,17,144,51,17,,,,, +262,67,3,7395,1280,1083.697,128,8.0,G#3,mf,17,144,56,17,,,,, +262,68,3,7396,1280,1083.697,128,8.0,C#4,mf,17,144,61,17,,,,, +262,66,3,7394,1280,1084.088,,,,,,144,51,0,,,,, +262,69,3,7397,1365,1084.088,85,8.0,G#1,f,20,144,32,20,,,,, +262,67,3,7395,1280,1084.286,,,,,,144,56,0,,,,, +262,68,3,7396,1280,1084.286,,,,,,144,61,0,,,,, +262,59,1,7387,1194,1084.479,,,,,,144,85,0,,,,, +262,69,3,7397,1365,1084.479,,,,,,144,32,0,,,,, +262,70,1,7398,1450,1084.479,43,16.0,A#5,ff,22,144,82,22,,,,, +262,71,3,7399,1450,1084.479,43,16.0,G#1,f,20,144,32,20,,,,, +262,70,1,7398,1450,1084.676,,,,,,144,82,0,,,,, +262,71,3,7399,1450,1084.676,,,,,,144,32,0,,,,, +262,72,1,7400,1493,1084.676,43,16.0,C#6,ff,22,144,85,22,,,,, +262,73,3,7401,1493,1084.676,43,16.0,F#2,f-,19,144,42,19,,,,, +262,74,0,7402,1535,1084.869,,,,,,176,64,0,,,,,^ +262,72,1,7400,1493,1084.874,,,,,,144,85,0,,,,, +262,73,3,7401,1493,1084.874,,,,,,144,42,0,,,,, +263,0,0,7403,0,1084.874,,,,,,,,,263,,,, +263,2,1,7404,,1084.874,,8.0,A6,mp,14,144,93,14,,,,g, +263,3,1,7405,,1084.874,,8.0,C7,mp,14,144,96,14,,,,g, +263,2,1,7404,,1084.924,,,,,,144,93,0,,,,, +263,3,1,7405,,1084.924,,,,,,144,96,0,,,,, +263,4,1,7406,,1084.949,,8.0,E7,mp+,15,144,100,15,,,,g, +263,4,1,7406,,1084.999,,,,,,144,100,0,,,,, +263,5,1,7407,,1085.024,,8.0,C7,mf,17,144,96,17,,,,g, +263,5,1,7407,,1085.074,,,,,,144,96,0,,,,, +263,6,1,7408,,1085.099,,8.0,D5,mf+,18,144,74,18,,,,g, +263,6,1,7408,,1085.149,,,,,,144,74,0,,,,, +263,7,1,7409,,1085.174,,8.0,C#5,f,20,144,73,20,,,,g, +263,7,1,7409,,1085.224,,,,,,144,73,0,,,,, +263,8,1,7410,,1085.249,,8.0,G#4,f+,21,144,68,21,,,,g, +263,8,1,7410,,1085.299,,,,,,144,68,0,,,,, +263,9,1,7411,,1085.324,,8.0,C#5,ff,22,144,73,22,,,,g, +263,9,1,7411,,1085.374,,,,,,144,73,0,,,,, +263,10,1,7412,,1085.399,,,,,,176,102,0,,,,, +263,11,1,7413,0,1085.549,170,4.0,C6,ff,22,144,84,22,,,,, +263,12,1,7414,0,1085.549,256,4.0,C#6,p,11,144,85,11,,,,, +263,13,1,7415,0,1085.549,256,4.0,D#6,p,11,144,87,11,,,,, +263,14,1,7416,0,1085.549,256,4.0,E6,p,11,144,88,11,,,,, +263,15,3,7417,,1085.549,,,,,,176,102,0,,,,, +263,16,3,7418,,1085.624,,8.0,D#4,p,11,144,63,11,,,,g, +263,16,3,7418,,1085.674,,,,,,144,63,0,,,,, +263,17,3,7419,,1085.699,,8.0,F3,p,11,144,53,11,,,,g, +263,17,3,7419,,1085.749,,,,,,144,53,0,,,,, +263,18,3,7420,,1085.774,,8.0,D#4,p-,10,144,63,10,,,,g, +263,18,3,7420,,1085.824,,,,,,144,63,0,,,,, +263,19,3,7421,,1085.849,,8.0,F3,p-,10,144,53,10,,,,g, +263,19,3,7421,,1085.899,,,,,,144,53,0,,,,, +263,20,3,7422,,1085.924,,8.0,D#4,pp+,9,144,63,9,,,,g, +263,20,3,7422,,1085.974,,,,,,144,63,0,,,,, +263,21,3,7423,,1085.999,,8.0,F3,pp+,9,144,53,9,,,,g, +263,21,3,7423,,1086.049,,,,,,144,53,0,,,,, +263,22,3,7424,,1086.074,,8.0,F#3,pp,8,144,54,8,,,,g, +263,22,3,7424,,1086.124,,,,,,144,54,0,,,,, +263,23,3,7425,0,1086.149,256,4.0,C3,pp,8,144,48,8,,,,, +263,1,0,7426,0,1086.149,,,,,,176,64,127,,,,,V +263,11,1,7413,0,1086.33,,,,,,144,84,0,,,,, +263,24,1,7427,170,1086.93,86,8.0,F#3,mf,17,144,54,17,,,,, +263,12,1,7414,0,1087.175,,,,,,144,85,0,,,,, +263,13,1,7415,0,1087.175,,,,,,144,87,0,,,,, +263,14,1,7416,0,1087.175,,,,,,144,88,0,,,,, +263,25,1,7428,256,1087.325,,,,,,176,102,0,,,,, +263,26,3,7429,256,1087.325,,,,,,176,102,0,,,,, +263,23,3,7425,0,1087.775,,,,,,144,48,0,,,,, +263,24,1,7427,170,1087.775,,,,,,144,54,0,,,,, +263,27,0,7430,512,1088.502,,,,,,176,64,0,,,,,^ +263,29,1,7431,,1088.502,,8.0,C#7,ff,22,144,97,22,,,,g, +263,29,1,7431,,1088.552,,,,,,144,97,0,,,,, +263,30,1,7432,,1088.577,,8.0,C8,f+,21,144,108,21,,,,g, +263,30,1,7432,,1088.627,,,,,,144,108,0,,,,, +263,31,1,7433,,1088.652,,8.0,C#7,f,20,144,97,20,,,,g, +263,31,1,7433,,1088.702,,,,,,144,97,0,,,,, +263,32,1,7434,,1088.727,,8.0,C8,f,20,144,108,20,,,,g, +263,32,1,7434,,1088.777,,,,,,144,108,0,,,,, +263,33,1,7435,,1088.802,,8.0,C#7,f-,19,144,97,19,,,,g, +263,33,1,7435,,1088.852,,,,,,144,97,0,,,,, +263,34,1,7436,,1088.877,,8.0,E6,mf+,18,144,88,18,,,,g, +263,34,1,7436,,1088.927,,,,,,144,88,0,,,,, +263,35,1,7437,,1088.952,,8.0,A#7,mf,17,144,106,17,,,,g, +263,35,1,7437,,1089.002,,,,,,144,106,0,,,,, +263,36,1,7438,,1089.027,,8.0,E5,mf-,16,144,76,16,,,,g, +263,36,1,7438,,1089.077,,,,,,144,76,0,,,,, +263,37,1,7439,,1089.102,,8.0,C7,mf-,16,144,96,16,,,,g, +263,37,1,7439,,1089.152,,,,,,144,96,0,,,,, +263,38,1,7440,,1089.177,,8.0,E5,mp+,15,144,76,15,,,,g, +263,38,1,7440,,1089.227,,,,,,144,76,0,,,,, +263,39,1,7441,,1089.252,,8.0,A#6,mp,14,144,94,14,,,,g, +263,39,1,7441,,1089.302,,,,,,144,94,0,,,,, +263,40,1,7442,,1089.327,,8.0,G#4,mp-,13,144,68,13,,,,g, +263,40,1,7442,,1089.377,,,,,,144,68,0,,,,, +263,41,1,7443,,1089.402,,8.0,E5,mp-,13,144,76,13,,,,g, +263,41,1,7443,,1089.452,,,,,,144,76,0,,,,, +263,42,1,7444,,1089.477,,8.0,A#6,p+,12,144,94,12,,,,g, +263,42,1,7444,,1089.527,,,,,,144,94,0,,,,, +263,43,1,7445,,1089.552,,8.0,E4,p,11,144,64,11,,,,g, +263,43,1,7445,,1089.602,,,,,,144,64,0,,,,, +263,44,1,7446,512,1089.627,256,4.0,B4,p,11,144,71,11,,,,, +263,45,3,7447,512,1089.627,256,4.0,G#3,pp,8,144,56,8,,,,, +263,28,0,7448,512,1089.627,,,,,,176,64,127,,,,,V +263,44,1,7446,512,1090.803,,,,,,144,71,0,,,,, +263,45,3,7447,512,1090.803,,,,,,144,56,0,,,,, +263,54,1,7449,768,1090.803,,,,,,176,102,0,,,,, +263,46,1,7450,,1090.803,,8.0,C#6,pp-,7,144,85,7,,,,g, +263,46,1,7450,,1090.853,,,,,,144,85,0,,,,, +263,47,1,7451,,1090.878,,8.0,C8,pp-,7,144,108,7,,,,g, +263,47,1,7451,,1090.928,,,,,,144,108,0,,,,, +263,48,1,7452,,1090.953,,8.0,C#7,ppp+,6,144,97,6,,,,g, +263,48,1,7452,,1091.003,,,,,,144,97,0,,,,, +263,49,1,7453,,1091.028,,8.0,E5,ppp+,6,144,76,6,,,,g, +263,49,1,7453,,1091.078,,,,,,144,76,0,,,,, +263,50,1,7454,,1091.103,,8.0,A#7,ppp+,6,144,106,6,,,,g, +263,50,1,7454,,1091.153,,,,,,144,106,0,,,,, +263,51,1,7455,,1091.178,,8.0,E5,ppp+,6,144,76,6,,,,g, +263,51,1,7455,,1091.228,,,,,,144,76,0,,,,, +263,52,1,7456,,1091.253,,8.0,C8,ppp,5,144,108,5,,,,g, +263,52,1,7456,,1091.303,,,,,,144,108,0,,,,, +263,53,1,7457,,1091.328,,8.0,G#4,ppp,5,144,68,5,,,,g, +263,53,1,7457,,1091.378,,,,,,144,68,0,,,,, +263,55,3,7458,768,1091.403,21,32.0,C#2,pp,8,144,37,8,,,,, +263,55,3,7458,768,1091.5,,,,,,144,37,0,,,,, +263,56,3,7459,789,1091.5,21,32.0,A3,pp,8,144,57,8,,,,, +263,56,3,7459,789,1091.596,,,,,,144,57,0,,,,, +263,57,3,7460,810,1091.596,22,32.0,D3,pp,8,144,50,8,,,,, +263,57,3,7460,810,1091.697,,,,,,144,50,0,,,,, +263,58,3,7461,832,1091.697,21,32.0,C#2,pp,8,144,37,8,,,,, +263,58,3,7461,832,1091.794,,,,,,144,37,0,,,,, +263,59,3,7462,853,1091.794,21,32.0,A3,pp,8,144,57,8,,,,, +263,59,3,7462,853,1091.89,,,,,,144,57,0,,,,, +263,60,3,7463,874,1091.89,22,32.0,D3,pp,8,144,50,8,,,,, +263,60,3,7463,874,1091.992,,,,,,144,50,0,,,,, +263,61,3,7464,896,1091.992,21,32.0,A3,pp,8,144,57,8,,,,, +263,61,3,7464,896,1092.088,,,,,,144,57,0,,,,, +263,62,3,7465,917,1092.088,85,8.0,D3,pp,8,144,50,8,,,,, +263,63,1,7466,960,1092.286,32,32.0,A#1,f,20,144,34,20,,,,, +263,63,1,7466,960,1092.433,,,,,,144,34,0,,,,, +263,64,1,7467,992,1092.433,32,32.0,A#1,f+,21,144,34,21,,,,, +263,65,1,7468,992,1092.433,32,32.0,F#4,f+,21,144,66,21,,,,, +263,62,3,7465,917,1092.479,,,,,,144,50,0,,,,, +263,66,3,7469,1002,1092.479,,,,,,176,102,0,,,,, +263,64,1,7467,992,1092.58,,,,,,144,34,0,,,,, +263,65,1,7468,992,1092.58,,,,,,144,66,0,,,,, +264,0,0,7470,0,1092.58,,,,,,,,,264,,,, +264,1,0,7471,0,1092.58,,,,,,176,64,0,,,,,^ +264,2,1,7472,0,1092.58,256,4.0,D#5,ff,22,144,75,22,,,,, +264,3,2,7473,0,1092.58,25,32.0,C5,ff,22,144,72,22,,,,, +264,5,3,7474,0,1092.58,32,32.0,A#1,ff,22,144,34,22,,,,, +264,6,3,7475,0,1092.58,32,32.0,F#4,ff,22,144,66,22,,,,, +264,3,2,7473,0,1092.695,,,,,,144,72,0,,,,, +264,7,2,7476,25,1092.695,,,,,,176,102,0,,,,, +264,5,3,7474,0,1092.727,,,,,,144,34,0,,,,, +264,6,3,7475,0,1092.727,,,,,,144,66,0,,,,, +264,8,3,7477,32,1092.727,,,,,,176,102,0,,,,, +264,9,2,7478,51,1092.814,25,32.0,C#4,mp,14,144,61,14,,,,, +264,9,2,7478,51,1092.929,,,,,,144,61,0,,,,, +264,10,2,7479,76,1092.929,26,32.0,A#4,mp-,13,144,70,13,,,,, +264,10,2,7479,76,1093.049,,,,,,144,70,0,,,,, +264,11,2,7480,102,1093.049,26,32.0,C#4,p+,12,144,61,12,,,,, +264,11,2,7480,102,1093.168,,,,,,144,61,0,,,,, +264,12,3,7481,128,1093.168,21,32.0,A3,pp,8,144,57,8,,,,, +264,13,2,7482,128,1093.168,76,16.0,E3,p,11,144,52,11,,,,, +264,12,3,7481,128,1093.265,,,,,,144,57,0,,,,, +264,14,3,7483,149,1093.265,21,32.0,D3,pp,8,144,50,8,,,,, +264,14,3,7483,149,1093.361,,,,,,144,50,0,,,,, +264,15,3,7484,170,1093.361,43,16.0,F2,pp,8,144,41,8,,,,, +264,13,2,7482,128,1093.517,,,,,,144,52,0,,,,, +264,16,2,7485,204,1093.517,52,16.0,G#2,pp,8,144,44,8,,,,, +264,15,3,7484,170,1093.559,,,,,,144,41,0,,,,, +264,17,3,7486,213,1093.559,43,16.0,B1,pp,8,144,35,8,,,,, +264,17,3,7486,213,1093.756,,,,,,144,35,0,,,,, +264,4,2,7487,256,1093.756,,,,,,176,102,0,,,,, +264,19,1,7488,256,1093.756,,,,,,176,102,0,,,,, +264,20,3,7489,256,1093.756,170,4.0,B1,pp,8,144,35,8,,,,, +264,21,3,7490,256,1093.756,256,4.0,F2,pp,8,144,41,8,,,,, +264,22,3,7491,256,1093.756,256,4.0,D3,pp,8,144,50,8,,,,, +264,23,3,7492,256,1093.756,256,4.0,A3,pp,8,144,57,8,,,,, +264,18,0,7493,256,1093.756,,,,,,176,64,127,,,,,V +264,2,1,7472,0,1093.756,,,,,,144,75,0,,,,, +264,16,2,7485,204,1093.756,,,,,,144,44,0,,,,, +264,24,1,7494,288,1093.903,32,32.0,C6,ff,22,144,84,22,,,,, +264,24,1,7494,288,1094.05,,,,,,144,84,0,,,,, +264,25,1,7495,320,1094.05,64,16.0,D4,ff,22,144,62,22,,,,, +264,26,1,7496,320,1094.05,64,16.0,C6,ff,22,144,84,22,,,,, +264,25,1,7495,320,1094.344,,,,,,144,62,0,,,,, +264,26,1,7496,320,1094.344,,,,,,144,84,0,,,,, +264,27,1,7497,384,1094.344,,,,,,176,102,0,,,,, +264,20,3,7489,256,1094.537,,,,,,144,35,0,,,,, +264,21,3,7490,256,1094.537,,,,,,144,41,0,,,,, +264,22,3,7491,256,1094.537,,,,,,144,50,0,,,,, +264,23,3,7492,256,1094.537,,,,,,144,57,0,,,,, +264,28,3,7498,426,1094.537,86,8.0,B1,pp,8,144,35,8,,,,, +264,29,3,7499,426,1094.537,128,8.0,F2,pp,8,144,41,8,,,,, +264,30,3,7500,426,1094.537,128,8.0,D3,pp,8,144,50,8,,,,, +264,31,3,7501,426,1094.537,128,8.0,A3,pp,8,144,57,8,,,,, +264,32,1,7502,440,1094.602,15,64.0,D#4,pp,8,144,63,8,,,,, +264,32,1,7502,440,1094.671,,,,,,144,63,0,,,,, +264,33,1,7503,455,1094.671,14,64.0,B3,pp+,9,144,59,9,,,,, +264,33,1,7503,455,1094.735,,,,,,144,59,0,,,,, +264,34,1,7504,469,1094.735,14,64.0,G#4,p-,10,144,68,10,,,,, +264,34,1,7504,469,1094.799,,,,,,144,68,0,,,,, +264,35,1,7505,483,1094.799,14,64.0,D#4,p+,12,144,63,12,,,,, +264,35,1,7505,483,1094.864,,,,,,144,63,0,,,,, +264,36,1,7506,497,1094.864,15,64.0,G#4,mp-,13,144,68,13,,,,, +264,36,1,7506,497,1094.933,,,,,,144,68,0,,,,, +264,37,3,7507,512,1094.933,170,4.0,B1,,,,,,,,,, +264,38,3,7508,512,1094.933,256,4.0,F2,,,,,,,,,, +264,39,3,7509,512,1094.933,256,4.0,D3,,,,,,,,,, +264,40,3,7510,512,1094.933,256,4.0,A3,,,,,,,,,, +264,41,1,7511,512,1094.933,21,32.0,D#4,mp,14,144,63,14,,,,, +264,42,2,7512,512,1094.933,,,,,,176,102,0,,,,, +264,41,1,7511,512,1095.029,,,,,,144,63,0,,,,, +264,43,1,7513,533,1095.029,21,32.0,G#4,mf-,16,144,68,16,,,,, +264,43,1,7513,533,1095.126,,,,,,144,68,0,,,,, +264,44,1,7514,554,1095.126,22,32.0,B3,mf,17,144,59,17,,,,, +264,44,1,7514,554,1095.227,,,,,,144,59,0,,,,, +264,45,1,7515,576,1095.227,21,32.0,G1,f-,19,144,31,19,,,,, +264,45,1,7515,576,1095.323,,,,,,144,31,0,,,,, +264,46,1,7516,597,1095.323,43,16.0,A0,f+,21,144,21,21,,,,, +264,46,1,7516,597,1095.521,,,,,,144,21,0,,,,, +264,47,1,7517,640,1095.521,,,,,,176,102,0,,,,, +264,48,0,7518,660,1095.613,,,,,,176,64,0,,,,,^ +264,28,3,7498,426,1095.714,,,,,,144,35,0,,,,, +264,49,3,7519,682,1095.714,86,8.0,B0,f,20,144,23,20,,,,, +264,50,3,7520,682,1095.714,128,8.0,C#2,f,20,144,37,20,,,,, +264,51,3,7521,682,1095.714,128,8.0,F2,f,20,144,41,20,,,,, +264,52,3,7522,682,1095.714,128,8.0,D3,f,20,144,50,20,,,,, +264,53,1,7523,704,1095.815,21,32.0,G1,ff,22,144,31,22,,,,, +264,53,1,7523,704,1095.912,,,,,,144,31,0,,,,, +264,54,1,7524,725,1095.912,43,16.0,A0,ff,22,144,21,22,,,,, +264,49,3,7519,682,1096.109,,,,,,144,23,0,,,,, +264,55,1,7525,768,1096.109,128,8.0,A0,,,,,,,,,, +264,56,3,7526,768,1096.109,,,,,,176,102,0,,,,, +264,29,3,7499,426,1096.302,,,,,,144,41,0,,,,, +264,30,3,7500,426,1096.302,,,,,,144,50,0,,,,, +264,31,3,7501,426,1096.302,,,,,,144,57,0,,,,, +264,50,3,7520,682,1096.302,,,,,,144,37,0,,,,, +264,51,3,7521,682,1096.302,,,,,,144,41,0,,,,, +264,52,3,7522,682,1096.302,,,,,,144,50,0,,,,, +264,57,3,7527,853,1096.5,43,16.0,B0,fff,24,144,23,23,,,,, +264,58,3,7528,853,1096.5,64,16.0,C#2,fff,24,144,37,23,,,,, +264,59,3,7529,853,1096.5,64,16.0,F2,fff,24,144,41,23,,,,, +264,60,3,7530,853,1096.5,64,16.0,D3,fff,24,144,50,23,,,,, +264,57,3,7527,853,1096.697,,,,,,144,23,0,,,,, +264,61,1,7531,896,1096.697,,,,,,176,102,0,,,,, +264,62,3,7532,896,1096.697,,,,,,176,102,0,,,,, +264,63,0,7533,896,1096.697,,,,,,,,,,5994,,, +264,54,1,7524,725,1096.697,,,,,,144,21,0,,,,, +264,58,3,7528,853,1096.794,,,,,,144,37,0,,,,, +264,59,3,7529,853,1096.794,,,,,,144,41,0,,,,, +264,60,3,7530,853,1096.794,,,,,,144,50,0,,,,, +264,64,3,7534,960,1096.992,64,16.0,C3,p,11,144,48,11,,,,, +264,64,3,7534,960,1097.286,,,,,,144,48,0,,,,, +265,0,0,7535,0,1097.286,,,,,,,,,265,,,, +265,1,1,7536,0,1097.286,64,16.0,D#3,p,11,144,51,11,,,,, +265,2,1,7537,0,1097.286,64,16.0,E3,p,11,144,52,11,,,,, +265,3,1,7538,0,1097.286,64,16.0,D#4,p,11,144,63,11,,,,, +265,4,3,7539,,1097.286,,8.0,F3,pp,8,144,53,8,,,,g, +265,4,3,7539,,1097.336,,,,,,144,53,0,,,,, +265,5,3,7540,0,1097.361,32,32.0,G2,pp,8,144,43,8,,,,, +265,3,1,7538,0,1097.508,,,,,,144,63,0,,,,, +265,5,3,7540,0,1097.508,,,,,,144,43,0,,,,, +265,6,3,7541,32,1097.508,21,32.0,D#4,pp+,9,144,63,9,,,,, +265,1,1,7536,0,1097.58,,,,,,144,51,0,,,,, +265,2,1,7537,0,1097.58,,,,,,144,52,0,,,,, +265,6,3,7541,32,1097.604,,,,,,144,63,0,,,,, +265,7,3,7542,53,1097.604,21,32.0,E3,pp+,9,144,52,9,,,,, +265,9,1,7543,64,1097.655,64,16.0,G#3,p+,12,144,56,12,,,,, +265,8,0,7544,64,1097.655,,,,,,176,64,127,,,,,V +265,7,3,7542,53,1097.701,,,,,,144,52,0,,,,, +265,10,3,7545,74,1097.701,22,32.0,F3,pp+,9,144,53,9,,,,, +265,10,3,7545,74,1097.802,,,,,,144,53,0,,,,, +265,11,3,7546,96,1097.802,21,32.0,E3,pp+,9,144,52,9,,,,, +265,11,3,7546,96,1097.898,,,,,,144,52,0,,,,, +265,12,3,7547,117,1097.898,21,32.0,F3,p-,10,144,53,10,,,,, +265,9,1,7543,64,1097.949,,,,,,144,56,0,,,,, +265,13,1,7548,128,1097.949,128,8.0,A1,mp,14,144,33,14,,,,, +265,12,3,7547,117,1097.995,,,,,,144,53,0,,,,, +265,14,3,7549,138,1097.995,22,32.0,E3,p-,10,144,52,10,,,,, +265,14,3,7549,138,1098.096,,,,,,144,52,0,,,,, +265,15,3,7550,160,1098.096,32,32.0,F3,p-,10,144,53,10,,,,, +265,15,3,7550,160,1098.243,,,,,,144,53,0,,,,, +265,16,3,7551,192,1098.243,32,32.0,E3,p-,10,144,52,10,,,,, +265,16,3,7551,192,1098.39,,,,,,144,52,0,,,,, +265,17,3,7552,224,1098.39,32,32.0,G2,p,11,144,43,11,,,,, +265,13,1,7548,128,1098.537,,,,,,144,33,0,,,,, +265,17,3,7552,224,1098.537,,,,,,144,43,0,,,,, +265,18,1,7553,256,1098.537,,,,,,176,102,0,,,,, +265,19,3,7554,256,1098.537,21,32.0,D#5,p,11,144,75,11,,,,, +265,19,3,7554,256,1098.634,,,,,,144,75,0,,,,, +265,20,3,7555,277,1098.634,21,32.0,E3,p,11,144,52,11,,,,, +265,20,3,7555,277,1098.73,,,,,,144,52,0,,,,, +265,21,3,7556,298,1098.73,22,32.0,B2,p+,12,144,47,12,,,,, +265,21,3,7556,298,1098.831,,,,,,144,47,0,,,,, +265,22,3,7557,320,1098.831,32,32.0,D#5,p+,12,144,75,12,,,,, +265,22,3,7557,320,1098.978,,,,,,144,75,0,,,,, +265,23,3,7558,352,1098.978,21,32.0,B2,p+,12,144,47,12,,,,, +265,23,3,7558,352,1099.075,,,,,,144,47,0,,,,, +265,24,3,7559,373,1099.075,32,32.0,F4,p+,12,144,65,12,,,,, +265,24,3,7559,373,1099.222,,,,,,144,65,0,,,,, +265,25,3,7560,405,1099.222,32,32.0,E3,mp-,13,144,52,13,,,,, +265,25,3,7560,405,1099.369,,,,,,144,52,0,,,,, +265,26,3,7561,437,1099.369,32,32.0,G1,mp-,13,144,31,13,,,,, +265,26,3,7561,437,1099.516,,,,,,144,31,0,,,,, +265,27,3,7562,469,1099.516,21,32.0,D#6,mp,14,144,87,14,,,,, +265,27,3,7562,469,1099.612,,,,,,144,87,0,,,,, +265,28,3,7563,490,1099.612,22,32.0,E2,mp,14,144,40,14,,,,, +265,28,3,7563,490,1099.714,,,,,,144,40,0,,,,, +265,29,1,7564,512,1099.714,,,,,,176,102,0,,,,, +265,30,3,7565,512,1099.714,256,4.0,B1,mp,14,144,35,14,,,,, +265,31,1,7566,576,1100.008,64,16.0,D4,ff,22,144,62,22,,,,, +265,32,1,7567,576,1100.008,64,16.0,C6,ff,22,144,84,22,,,,, +265,31,1,7566,576,1100.302,,,,,,144,62,0,,,,, +265,32,1,7567,576,1100.302,,,,,,144,84,0,,,,, +265,33,1,7568,640,1100.302,96,16.0,D4,ff,22,144,62,22,,,,, +265,34,1,7569,640,1100.302,64,16.0,C6,ff,22,144,84,22,,,,, +265,35,1,7570,640,1100.302,64,16.0,E6,ff,22,144,88,22,,,,, +265,34,1,7569,640,1100.596,,,,,,144,84,0,,,,, +265,35,1,7570,640,1100.596,,,,,,144,88,0,,,,, +265,33,1,7568,640,1100.743,,,,,,144,62,0,,,,, +265,36,0,7571,736,1100.743,,,,,,176,64,0,,,,,^ +265,37,1,7572,736,1100.743,,,,,,176,102,0,,,,, +265,30,3,7565,512,1100.89,,,,,,144,35,0,,,,, +265,38,1,7573,768,1100.89,256,4.0,D4,pp,8,144,62,8,,,,, +265,39,1,7574,768,1100.89,256,4.0,C6,pp,8,144,84,8,,,,, +265,40,1,7575,768,1100.89,256,4.0,E6,pp,8,144,88,8,,,,, +265,41,3,7576,768,1100.89,,,,,,176,102,0,,,,, +265,43,3,7577,896,1101.478,32,32.0,E3,ppp,5,144,52,5,,,,, +265,42,0,7578,896,1101.478,,,,,,176,64,127,,,,,V +265,43,3,7577,896,1101.625,,,,,,144,52,0,,,,, +265,44,3,7579,928,1101.625,21,32.0,C4,ppp+,6,144,60,6,,,,, +265,44,3,7579,928,1101.722,,,,,,144,60,0,,,,, +265,45,3,7580,949,1101.722,32,32.0,E3,ppp+,6,144,52,6,,,,, +265,45,3,7580,949,1101.869,,,,,,144,52,0,,,,, +265,46,3,7581,981,1101.869,21,32.0,C4,pp-,7,144,60,7,,,,, +265,46,3,7581,981,1101.965,,,,,,144,60,0,,,,, +265,47,3,7582,1002,1101.965,22,32.0,G#3,pp,8,144,56,8,,,,, +265,48,0,7583,1018,1102.015,,,,,,176,64,0,,,,,^ +265,38,1,7573,768,1102.067,,,,,,144,62,0,,,,, +265,39,1,7574,768,1102.067,,,,,,144,84,0,,,,, +265,40,1,7575,768,1102.067,,,,,,144,88,0,,,,, +265,50,1,7584,,1102.067,,8.0,C4,p,11,144,60,11,,,,g, +265,47,3,7582,1002,1102.067,,,,,,144,56,0,,,,, +265,50,1,7584,,1102.117,,,,,,144,60,0,,,,, +265,51,1,7585,,1102.142,,8.0,E2,p,11,144,40,11,,,,g, +265,51,1,7585,,1102.192,,,,,,144,40,0,,,,, +265,52,1,7586,,1102.217,,8.0,C#3,p,11,144,49,11,,,,g, +265,52,1,7586,,1102.267,,,,,,144,49,0,,,,, +265,53,1,7587,1024,1102.292,21,32.0,G#1,p,11,144,32,11,,,,, +265,54,3,7588,1024,1102.292,512,2.0,C#1,pp,8,144,25,8,,,,, +265,49,0,7589,1024,1102.315,,,,,,176,64,127,,,,,V +265,53,1,7587,1024,1102.388,,,,,,144,32,0,,,,, +265,55,1,7590,1045,1102.388,85,8.0,A#3,p-,10,144,58,10,,,,, +265,55,1,7590,1045,1102.779,,,,,,144,58,0,,,,, +265,56,1,7591,1130,1102.779,22,32.0,C#4,pp,8,144,61,8,,,,, +265,56,1,7591,1130,1102.88,,,,,,144,61,0,,,,, +265,57,1,7592,1152,1102.88,21,32.0,A#4,pp,8,144,70,8,,,,, +265,57,1,7592,1152,1102.976,,,,,,144,70,0,,,,, +265,58,1,7593,1173,1102.976,21,32.0,C5,pp-,7,144,72,7,,,,, +265,58,1,7593,1173,1103.073,,,,,,144,72,0,,,,, +265,59,1,7594,1194,1103.073,22,32.0,C#4,ppp+,6,144,61,6,,,,, +265,59,1,7594,1194,1103.174,,,,,,144,61,0,,,,, +265,60,1,7595,1216,1103.174,21,32.0,C6,ppp+,6,144,84,6,,,,, +265,60,1,7595,1216,1103.27,,,,,,144,84,0,,,,, +265,61,1,7596,1237,1103.27,11,64.0,C#4,ppp,5,144,61,5,,,,, +265,61,1,7596,1237,1103.321,,,,,,144,61,0,,,,, +265,62,1,7597,1248,1103.321,32,32.0,E3,ppp,5,144,52,5,,,,, +265,62,1,7597,1248,1103.468,,,,,,144,52,0,,,,, +265,63,1,7598,1280,1103.468,,,,,,176,102,0,,,,, +265,64,1,7599,1536,1104.644,,,,,,176,102,0,,,,, +265,65,3,7600,1536,1104.644,128,8.0,C#1,,,,,,,,,, +265,66,0,7601,1664,1105.083,,,,,,176,64,0,,,,,^ +265,68,3,7602,1664,1105.233,21,32.0,C#1,p,11,144,25,11,,,,, +265,68,3,7602,1664,1105.329,,,,,,144,25,0,,,,, +265,69,3,7603,1685,1105.329,21,32.0,B1,p+,12,144,35,12,,,,, +265,67,0,7604,1664,1105.383,,,,,,176,64,127,,,,,V +265,70,3,7605,1706,1105.426,86,8.0,B1,,,,,,,,,, +265,71,3,7606,1792,1105.821,192,8.0,B1,,,,,,,,,, +265,54,3,7588,1024,1106.508,,,,,,144,25,0,,,,, +265,72,0,7607,1984,1106.553,,,,,,176,64,0,,,,,^ +265,69,3,7603,1685,1106.703,,,,,,144,35,0,,,,, +265,74,3,7608,1984,1106.703,21,32.0,C#1,p+,12,144,25,12,,,,, +265,74,3,7608,1984,1106.8,,,,,,144,25,0,,,,, +265,75,3,7609,2005,1106.8,21,32.0,B1,mp,14,144,35,14,,,,, +265,73,0,7610,1984,1106.853,,,,,,176,64,127,,,,,V +265,75,3,7609,2005,1106.896,,,,,,144,35,0,,,,, +265,76,3,7611,2026,1106.896,22,32.0,G5,mf,17,144,79,17,,,,, +265,77,0,7612,2047,1106.993,,,,,,176,64,0,,,,,^ +265,76,3,7611,2026,1106.997,,,,,,144,79,0,,,,, +266,0,0,7613,0,1106.997,,,,,,,,,266,,,, +266,1,0,7614,0,1106.997,,,,,,,,,,5995,,, +266,2,1,7615,0,1106.997,,,,,,176,102,0,,,,, +266,3,2,7616,,1106.997,,8.0,A6,ppp,5,144,93,5,,,,g, +266,5,3,7617,,1106.997,,8.0,D#4,pp,8,144,63,8,,,,g, +266,3,2,7616,,1107.047,,,,,,144,93,0,,,,, +266,5,3,7617,,1107.047,,,,,,144,63,0,,,,, +266,6,3,7618,,1107.072,,8.0,E3,p,11,144,52,11,,,,g, +266,6,3,7618,,1107.122,,,,,,144,52,0,,,,, +266,4,2,7619,0,1107.222,597,2.0,D#5,ff,22,144,75,22,,,,, +266,7,3,7620,0,1107.222,256,4.0,G#2,ppp,5,144,44,5,,,,, +266,8,3,7621,0,1107.222,256,4.0,B2,mp,14,144,47,14,,,,, +266,9,3,7622,0,1107.222,256,4.0,D#3,ppp,5,144,51,5,,,,, +266,4,2,7619,0,1108.399,,,,,,144,75,0,,,,, +266,10,1,7623,256,1108.399,128,8.0,D#5,mf,17,144,75,17,,,,, +266,11,3,7624,256,1108.399,,,,,,176,102,0,,,,, +266,13,3,7625,341,1108.79,,,,,,176,102,0,,,,, +266,12,0,7626,341,1108.79,,,,,,176,64,127,,,,,V +266,14,1,7627,384,1108.987,32,32.0,D4,mf,17,144,62,17,,,,, +266,14,1,7627,384,1109.134,,,,,,144,62,0,,,,, +266,15,1,7628,416,1109.134,32,32.0,C1,mf,17,144,24,17,,,,, +266,16,3,7629,426,1109.18,43,16.0,C3,ppp,5,144,48,5,,,,, +266,15,1,7628,416,1109.281,,,,,,144,24,0,,,,, +266,17,1,7630,448,1109.281,,,,,,176,102,0,,,,, +266,16,3,7629,426,1109.378,,,,,,144,48,0,,,,, +266,18,3,7631,469,1109.378,43,16.0,E2,ppp,5,144,40,5,,,,, +266,7,3,7620,0,1109.524,,,,,,144,44,0,,,,, +266,8,3,7621,0,1109.524,,,,,,144,47,0,,,,, +266,9,3,7622,0,1109.524,,,,,,144,51,0,,,,, +266,18,3,7631,469,1109.575,,,,,,144,40,0,,,,, +266,19,1,7632,512,1109.575,,,,,,176,102,0,,,,, +266,20,3,7633,512,1109.575,21,32.0,C3,ppp,5,144,48,5,,,,, +266,20,3,7633,512,1109.672,,,,,,144,48,0,,,,, +266,21,3,7634,533,1109.672,21,32.0,E2,ppp,5,144,40,5,,,,, +266,21,3,7634,533,1109.768,,,,,,144,40,0,,,,, +266,22,3,7635,554,1109.768,,,,,,176,102,0,,,,, +266,10,1,7623,256,1109.966,,,,,,144,75,0,,,,, +266,23,2,7636,597,1109.966,85,8.0,D#5,mp,14,144,75,14,,,,, +266,24,3,7637,597,1109.966,,,,,,176,102,0,,,,, +266,23,2,7636,597,1110.357,,,,,,144,75,0,,,,, +266,25,2,7638,682,1110.357,342,2.0,D#5,mp,14,144,75,14,,,,, +266,26,3,7639,682,1110.357,86,8.0,C#2,mp,14,144,37,14,,,,, +266,27,3,7640,768,1110.752,256,4.0,C#2,,,,,,,,,, +266,28,1,7641,1024,1111.928,,,,,,176,102,0,,,,, +266,29,2,7642,1024,1111.928,341,2.0,D#5,,,,,,,,,, +266,30,3,7643,1024,1111.928,256,4.0,C#2,,,,,,,,,, +266,26,3,7639,682,1113.105,,,,,,144,37,0,,,,, +266,31,1,7644,1280,1113.105,0,8.0,A2,pp+,9,,,,,,,, +266,32,1,7645,1280,1113.105,384,4.0,B4,pp+,9,144,71,9,,,,, +266,33,3,7646,1280,1113.105,85,8.0,C#2,pp+,9,144,37,9,,,,, +266,34,0,7647,1365,1113.46,,,,,,176,64,0,,,,,^ +266,25,2,7638,682,1113.495,,,,,,144,75,0,,,,, +266,33,3,7646,1280,1113.495,,,,,,144,37,0,,,,, +266,35,2,7648,1365,1113.495,341,2.0,D#5,pp,8,144,75,8,,,,, +266,36,2,7649,1365,1113.495,512,2.0,C#6,pp,8,144,85,8,,,,, +266,37,3,7650,1365,1113.495,341,2.0,C#2,pp,8,144,37,8,,,,, +266,38,3,7651,1365,1113.495,512,2.0,B2,pp,8,144,47,8,,,,, +266,39,0,7652,1415,1113.76,,,,,,176,64,127,,,,,V +266,32,1,7645,1280,1114.869,,,,,,144,71,0,,,,, +266,40,1,7653,1664,1114.869,21,32.0,F#2,ppp+,6,144,42,6,,,,, +266,40,1,7653,1664,1114.966,,,,,,144,42,0,,,,, +266,41,1,7654,1685,1114.966,21,32.0,F1,ppp,5,144,29,5,,,,, +266,35,2,7648,1365,1115.062,,,,,,144,75,0,,,,, +266,37,3,7650,1365,1115.062,,,,,,144,37,0,,,,, +266,38,3,7651,1365,1115.062,,,,,,144,47,0,,,,, +266,41,1,7654,1685,1115.062,,,,,,144,29,0,,,,, +266,42,1,7655,1706,1115.062,22,32.0,F#2,ppp,5,144,42,5,,,,, +266,43,2,7656,1706,1115.062,,,,,,176,102,0,,,,, +266,44,3,7657,1706,1115.062,342,2.0,C2,ppp,5,144,36,5,,,,, +266,45,3,7658,1706,1115.062,512,2.0,B2,ppp,5,144,47,5,,,,, +266,42,1,7655,1706,1115.164,,,,,,144,42,0,,,,, +266,46,1,7659,1728,1115.164,21,32.0,F1,ppp,5,144,29,5,,,,, +266,46,1,7659,1728,1115.26,,,,,,144,29,0,,,,, +266,47,1,7660,1749,1115.26,,,,,,176,102,0,,,,, +266,48,2,7661,1749,1115.26,43,16.0,G7,ppp,5,144,103,5,,,,, +266,49,0,7662,1792,1115.44,,,,,,,,,,,56,, +266,50,1,7663,1792,1115.44,,,,,,176,102,0,,,,, +266,51,2,7664,1792,1115.44,,,,,,176,102,0,,,,, +266,48,2,7661,1749,1115.458,,,,,,144,103,0,,,,, +266,36,2,7649,1365,1115.848,,,,,,144,85,0,,,,, +266,52,1,7665,1920,1115.976,25,32.0,A#1,p,11,144,34,11,,,,, +266,52,1,7665,1920,1116.08,,,,,,144,34,0,,,,, +266,53,1,7666,1945,1116.08,26,32.0,F#4,pp+,9,144,66,9,,,,, +266,53,1,7666,1945,1116.189,,,,,,144,66,0,,,,, +266,54,1,7667,1971,1116.189,25,32.0,D#5,ppp+,6,144,75,6,,,,, +266,54,1,7667,1971,1116.294,,,,,,144,75,0,,,,, +266,55,1,7668,1996,1116.294,26,32.0,D4,ppp-,4,144,62,4,,,,, +266,56,0,7669,2022,1116.403,,,,,,176,64,0,,,,,^ +266,57,1,7670,2022,1116.403,26,32.0,C1,pppp,2,144,24,2,,,,, +266,55,1,7668,1996,1116.478,,,,,,144,62,0,,,,, +266,57,1,7670,2022,1116.511,,,,,,144,24,0,,,,, +267,0,0,7671,0,1116.511,,,,,,,,,267,,,, +267,1,0,7672,0,1116.511,,,,,,,,,,5996,,, +267,2,1,7673,,1116.511,,8.0,D#5,f,20,144,75,20,,,,g, +267,2,1,7673,,1116.561,,,,,,144,75,0,,,,, +267,3,1,7674,,1116.586,,8.0,C3,f-,19,144,48,19,,,,g, +267,3,1,7674,,1116.636,,,,,,144,48,0,,,,, +267,4,1,7675,,1116.661,,8.0,D#6,f-,19,144,87,19,,,,g, +266,44,3,7657,1706,1116.709,,,,,,144,36,0,,,,, +267,4,1,7675,,1116.711,,,,,,144,87,0,,,,, +267,5,1,7676,0,1116.736,25,32.0,C#3,mf+,18,144,49,18,,,,, +267,6,3,7677,0,1116.736,85,8.0,G3,ff,22,144,55,22,,,,, +267,5,1,7676,0,1116.841,,,,,,144,49,0,,,,, +267,8,1,7678,25,1116.841,26,32.0,B3,mf+,18,144,59,18,,,,, +267,7,0,7679,25,1116.841,,,,,,176,64,127,,,,,V +267,8,1,7678,25,1116.95,,,,,,144,59,0,,,,, +267,9,1,7680,51,1116.95,25,32.0,C#3,mf,17,144,49,17,,,,, +267,9,1,7680,51,1117.055,,,,,,144,49,0,,,,, +267,10,1,7681,76,1117.055,52,16.0,B3,mf-,16,144,59,16,,,,, +267,6,3,7677,0,1117.092,,,,,,144,55,0,,,,, +267,11,3,7682,85,1117.092,21,32.0,F#2,ppp,5,144,42,5,,,,, +267,11,3,7682,85,1117.18,,,,,,144,42,0,,,,, +267,12,3,7683,106,1117.18,22,32.0,F1,ppp,5,144,29,5,,,,, +267,12,3,7683,106,1117.272,,,,,,144,29,0,,,,, +267,13,3,7684,128,1117.272,21,32.0,F#2,ppp,5,144,42,5,,,,, +267,14,1,7685,128,1117.272,51,16.0,B3,,,,,,,,,, +267,13,3,7684,128,1117.36,,,,,,144,42,0,,,,, +267,15,3,7686,149,1117.36,21,32.0,F1,ppp,5,144,29,5,,,,, +267,15,3,7686,149,1117.448,,,,,,144,29,0,,,,, +267,16,3,7687,170,1117.448,,,,,,176,102,0,,,,, +267,17,1,7688,179,1117.486,25,32.0,C#3,mp-,13,144,49,13,,,,, +267,10,1,7681,76,1117.486,,,,,,144,59,0,,,,, +266,45,3,7658,1706,1117.49,,,,,,144,47,0,,,,, +267,17,1,7688,179,1117.59,,,,,,144,49,0,,,,, +267,18,1,7689,204,1117.59,26,32.0,B3,p+,12,144,59,12,,,,, +267,18,1,7689,204,1117.699,,,,,,144,59,0,,,,, +267,19,1,7690,230,1117.699,26,32.0,G6,p,11,144,91,11,,,,, +267,19,1,7690,230,1117.808,,,,,,144,91,0,,,,, +267,20,1,7691,256,1117.808,,,,,,176,102,0,,,,, +267,21,3,7692,256,1117.808,,,,,,176,102,0,,,,, +267,23,3,7693,,1118.269,,8.0,C3,p,11,144,48,11,,,,g, +267,23,3,7693,,1118.319,,,,,,144,48,0,,,,, +267,22,1,7694,384,1118.344,21,32.0,C#4,pp,8,144,61,8,,,,, +267,24,3,7695,384,1118.344,128,8.0,F#3,p,11,144,54,11,,,,, +267,22,1,7694,384,1118.432,,,,,,144,61,0,,,,, +267,25,1,7696,405,1118.432,21,32.0,A#4,pp+,9,144,70,9,,,,, +267,25,1,7696,405,1118.519,,,,,,144,70,0,,,,, +267,26,1,7697,426,1118.519,22,32.0,C#4,pp+,9,144,61,9,,,,, +267,26,1,7697,426,1118.611,,,,,,144,61,0,,,,, +267,27,1,7698,448,1118.611,21,32.0,A#4,p-,10,144,70,10,,,,, +267,27,1,7698,448,1118.699,,,,,,144,70,0,,,,, +267,28,1,7699,469,1118.699,43,16.0,C6,p,11,144,84,11,,,,, +267,30,3,7700,,1118.804,,8.0,C3,mp,14,144,48,14,,,,g, +267,30,3,7700,,1118.854,,,,,,144,48,0,,,,, +267,24,3,7695,384,1118.879,,,,,,144,54,0,,,,, +267,28,1,7699,469,1118.879,,,,,,144,84,0,,,,, +267,29,1,7701,512,1118.879,,,,,,176,102,0,,,,, +267,31,3,7702,512,1118.879,128,8.0,F#3,mp,14,144,54,14,,,,, +267,31,3,7702,512,1119.415,,,,,,144,54,0,,,,, +267,32,1,7703,640,1119.415,128,8.0,A4,mf,17,144,69,17,,,,, +267,33,3,7704,640,1119.415,,,,,,176,102,0,,,,, +267,34,0,7705,768,1119.951,,,,,,176,64,0,,,,,^ +267,35,1,7706,768,1119.951,256,4.0,A4,,,,,,,,,, +267,36,3,7707,768,1119.951,,,,,,176,102,0,,,,, +267,37,1,7708,1024,1121.022,768,2.0,A4,,,,,,,,,, +267,38,3,7709,1024,1121.022,85,8.0,D#3,f,20,144,51,20,,,,, +267,39,3,7710,1109,1121.378,43,16.0,C#1,mp+,15,144,25,15,,,,, +267,39,3,7710,1109,1121.558,,,,,,144,25,0,,,,, +267,40,3,7711,1152,1121.558,25,32.0,C1,mp-,13,144,24,13,,,,, +267,38,3,7709,1024,1121.603,,,,,,144,51,0,,,,, +267,40,3,7711,1152,1121.663,,,,,,144,24,0,,,,, +267,41,3,7712,1177,1121.663,26,32.0,B2,p,11,144,47,11,,,,, +267,41,3,7712,1177,1121.771,,,,,,144,47,0,,,,, +267,43,3,7713,1203,1121.771,25,32.0,C1,p-,10,144,24,10,,,,, +267,42,0,7714,1203,1121.771,,,,,,176,64,127,,,,,V +267,43,3,7713,1203,1121.876,,,,,,144,24,0,,,,, +267,44,3,7715,1228,1121.876,26,32.0,B1,pp,8,144,35,8,,,,, +267,45,3,7716,1228,1121.876,32,32.0,D#2,pp,8,144,39,8,,,,, +267,44,3,7715,1228,1121.985,,,,,,144,35,0,,,,, +267,46,3,7717,1254,1121.985,26,32.0,C1,pp-,7,144,24,7,,,,, +267,45,3,7716,1228,1122.01,,,,,,144,39,0,,,,, +267,46,3,7717,1254,1122.094,,,,,,144,24,0,,,,, +267,47,3,7718,1280,1122.094,25,32.0,B1,ppp,5,144,35,5,,,,, +267,47,3,7718,1280,1122.198,,,,,,144,35,0,,,,, +267,48,3,7719,1305,1122.198,26,32.0,G3,ppp,5,144,55,5,,,,, +267,48,3,7719,1305,1122.307,,,,,,144,55,0,,,,, +267,49,3,7720,1331,1122.307,,,,,,176,102,0,,,,, +267,50,3,7721,1382,1122.521,,,,,,176,102,0,,,,, +267,51,3,7722,1408,1122.629,,,,,,176,102,0,,,,, +267,52,3,7723,1536,1123.165,,,,,,176,102,0,,,,, +267,53,0,7724,1792,1124.236,,,,,,176,64,0,,,,,^ +267,54,1,7725,1792,1124.236,,,,,,176,102,0,,,,, +267,55,3,7726,1792,1124.236,128,8.0,C1,mp,14,144,24,14,,,,, +267,56,3,7727,1792,1124.236,128,8.0,C#1,mp,14,144,25,14,,,,, +267,57,3,7728,1792,1124.236,128,8.0,B1,mp,14,144,35,14,,,,, +267,58,3,7729,1792,1124.236,128,8.0,D#3,mp,14,144,51,14,,,,, +267,59,3,7730,1792,1124.236,128,8.0,G3,mp,14,144,55,14,,,,, +267,32,1,7703,640,1124.461,,,,,,144,69,0,,,,, +267,55,3,7726,1792,1124.772,,,,,,144,24,0,,,,, +267,56,3,7727,1792,1124.772,,,,,,144,25,0,,,,, +267,57,3,7728,1792,1124.772,,,,,,144,35,0,,,,, +267,58,3,7729,1792,1124.772,,,,,,144,51,0,,,,, +267,59,3,7730,1792,1124.772,,,,,,144,55,0,,,,, +267,60,3,7731,1920,1124.772,128,8.0,C1,pp,8,144,24,8,,,,, +267,61,3,7732,1920,1124.772,128,8.0,C#2,pp,8,144,37,8,,,,, +267,62,3,7733,1920,1124.772,128,8.0,B2,pp,8,144,47,8,,,,, +267,63,3,7734,1920,1124.772,128,8.0,D#3,pp,8,144,51,8,,,,, +267,64,3,7735,1920,1124.772,128,8.0,G3,pp,8,144,55,8,,,,, +267,60,3,7731,1920,1125.308,,,,,,144,24,0,,,,, +267,61,3,7732,1920,1125.308,,,,,,144,37,0,,,,, +267,62,3,7733,1920,1125.308,,,,,,144,47,0,,,,, +267,63,3,7734,1920,1125.308,,,,,,144,51,0,,,,, +267,64,3,7735,1920,1125.308,,,,,,144,55,0,,,,, +268,0,0,7736,0,1125.308,,,,,,,,,268,,,, +268,1,0,7737,0,1125.308,,,,,,,,,,5997,,, +268,2,1,7738,0,1125.308,,,,,,176,102,0,,,,, +268,3,3,7739,0,1125.308,512,2.0,D#4,pp,8,144,63,8,,,,, +268,4,0,7740,42,1125.484,,,,,,176,64,127,,,,,V +268,5,1,7741,256,1126.379,16,64.0,G#5,pp,8,144,80,8,,,,, +268,5,1,7741,256,1126.446,,,,,,144,80,0,,,,, +268,6,1,7742,272,1126.446,16,64.0,D#5,pp,8,144,75,8,,,,, +268,6,1,7742,272,1126.513,,,,,,144,75,0,,,,, +268,7,1,7743,288,1126.513,16,64.0,G#5,pp,8,144,80,8,,,,, +268,7,1,7743,288,1126.58,,,,,,144,80,0,,,,, +268,8,1,7744,304,1126.58,16,64.0,D#5,pp,8,144,75,8,,,,, +268,8,1,7744,304,1126.647,,,,,,144,75,0,,,,, +268,9,1,7745,320,1126.647,16,64.0,G#5,pp+,9,144,80,9,,,,, +268,9,1,7745,320,1126.714,,,,,,144,80,0,,,,, +268,10,1,7746,336,1126.714,16,64.0,D#5,pp+,9,144,75,9,,,,, +268,10,1,7746,336,1126.781,,,,,,144,75,0,,,,, +268,11,1,7747,352,1126.781,16,64.0,B4,pp+,9,144,71,9,,,,, +268,11,1,7747,352,1126.848,,,,,,144,71,0,,,,, +268,12,1,7748,368,1126.848,24,64.0,D#5,pp+,9,144,75,9,,,,, +268,12,1,7748,368,1126.949,,,,,,144,75,0,,,,, +268,13,1,7749,392,1126.949,24,64.0,G#5,pp+,9,144,80,9,,,,, +268,13,1,7749,392,1127.049,,,,,,144,80,0,,,,, +268,14,1,7750,416,1127.049,24,64.0,B3,pp+,9,144,59,9,,,,, +268,3,3,7739,0,1127.149,,,,,,144,63,0,,,,, +268,14,1,7750,416,1127.149,,,,,,144,59,0,,,,, +268,15,1,7751,440,1127.149,24,64.0,D#4,p-,10,144,63,10,,,,, +268,16,1,7752,464,1127.25,24,64.0,G#5,p-,10,144,80,10,,,,, +268,16,1,7752,464,1127.35,,,,,,144,80,0,,,,, +268,17,1,7753,488,1127.35,24,64.0,B2,p-,10,144,47,10,,,,, +268,17,1,7753,488,1127.451,,,,,,144,47,0,,,,, +268,18,1,7754,512,1127.451,16,64.0,G#5,p-,10,144,80,10,,,,, +268,19,3,7755,512,1127.451,21,32.0,A1,pp,8,144,33,8,,,,, +268,18,1,7754,512,1127.518,,,,,,144,80,0,,,,, +268,20,1,7756,528,1127.518,16,64.0,D#5,p-,10,144,75,10,,,,, +268,19,3,7755,512,1127.539,,,,,,144,33,0,,,,, +268,21,3,7757,533,1127.539,21,32.0,G2,pp,8,144,43,8,,,,, +268,20,1,7756,528,1127.585,,,,,,144,75,0,,,,, +268,22,1,7758,544,1127.585,16,64.0,G#5,p-,10,144,80,10,,,,, +268,21,3,7757,533,1127.627,,,,,,144,43,0,,,,, +268,23,3,7759,554,1127.627,22,32.0,A1,pp,8,144,33,8,,,,, +268,22,1,7758,544,1127.652,,,,,,144,80,0,,,,, +268,24,1,7760,560,1127.652,16,64.0,D#5,p-,10,144,75,10,,,,, +268,15,1,7751,440,1127.676,,,,,,144,63,0,,,,, +268,23,3,7759,554,1127.719,,,,,,144,33,0,,,,, +268,24,1,7760,560,1127.719,,,,,,144,75,0,,,,, +268,25,1,7761,576,1127.719,16,64.0,G#5,p,11,144,80,11,,,,, +268,26,3,7762,576,1127.719,32,32.0,G2,pp+,9,144,43,9,,,,, +268,25,1,7761,576,1127.786,,,,,,144,80,0,,,,, +268,27,1,7763,592,1127.786,16,64.0,D#5,p,11,144,75,11,,,,, +268,27,1,7763,592,1127.853,,,,,,144,75,0,,,,, +268,28,1,7764,608,1127.853,16,64.0,B4,p,11,144,71,11,,,,, +268,29,3,7765,608,1127.853,32,32.0,A1,pp+,9,144,33,9,,,,, +268,26,3,7762,576,1127.853,,,,,,144,43,0,,,,, +268,28,1,7764,608,1127.92,,,,,,144,71,0,,,,, +268,30,1,7766,624,1127.92,24,64.0,D#5,p,11,144,75,11,,,,, +268,31,3,7767,640,1127.986,32,32.0,G2,p,11,144,43,11,,,,, +268,29,3,7765,608,1127.986,,,,,,144,33,0,,,,, +268,30,1,7766,624,1128.02,,,,,,144,75,0,,,,, +268,32,1,7768,648,1128.02,24,64.0,G#5,p,11,144,80,11,,,,, +268,32,1,7768,648,1128.12,,,,,,144,80,0,,,,, +268,33,1,7769,672,1128.12,24,64.0,B4,p,11,144,71,11,,,,, +268,34,3,7770,672,1128.12,21,32.0,A1,p,11,144,33,11,,,,, +268,31,3,7767,640,1128.12,,,,,,144,43,0,,,,, +268,34,3,7770,672,1128.208,,,,,,144,33,0,,,,, +268,35,3,7771,693,1128.208,21,32.0,G2,p+,12,144,43,12,,,,, +268,33,1,7769,672,1128.221,,,,,,144,71,0,,,,, +268,36,1,7772,696,1128.221,24,64.0,D#5,p+,12,144,75,12,,,,, +268,35,3,7771,693,1128.296,,,,,,144,43,0,,,,, +268,37,3,7773,714,1128.296,22,32.0,A1,p+,12,144,33,12,,,,, +268,36,1,7772,696,1128.321,,,,,,144,75,0,,,,, +268,38,1,7774,720,1128.321,24,64.0,G#5,p+,12,144,80,12,,,,, +268,37,3,7773,714,1128.388,,,,,,144,33,0,,,,, +268,39,3,7775,736,1128.388,32,32.0,G2,mp,14,144,43,14,,,,, +268,38,1,7774,720,1128.422,,,,,,144,80,0,,,,, +268,40,1,7776,744,1128.422,24,64.0,B4,p+,12,144,71,12,,,,, +268,40,1,7776,744,1128.522,,,,,,144,71,0,,,,, +268,41,1,7777,768,1128.522,,,,,,176,102,0,,,,, +268,42,3,7778,768,1128.522,,,,,,176,102,0,,,,, +268,39,3,7775,736,1128.522,,,,,,144,43,0,,,,, +268,43,1,7779,1024,1129.594,,,,,,176,102,0,,,,, +268,44,3,7780,1024,1129.594,512,2.0,D#4,pp,8,144,63,8,,,,, +268,45,0,7781,1472,1131.453,,,,,,176,64,0,,,,,^ +268,44,3,7780,1024,1131.736,,,,,,144,63,0,,,,, +268,47,1,7782,1536,1131.736,36,32.0,E6,p+,12,144,88,12,,,,, +268,48,3,7783,1536,1131.736,,,,,,176,102,0,,,,, +268,46,0,7784,1536,1131.753,,,,,,176,64,127,,,,,V +268,47,1,7782,1536,1131.887,,,,,,144,88,0,,,,, +268,49,1,7785,1572,1131.887,37,32.0,C#3,mp-,13,144,49,13,,,,, +268,49,1,7785,1572,1132.042,,,,,,144,49,0,,,,, +268,50,1,7786,1609,1132.042,55,32.0,C#3,mp+,15,144,49,15,,,,, +268,51,1,7787,1609,1132.042,32,32.0,E6,mp+,15,144,88,15,,,,, +268,51,1,7787,1609,1132.176,,,,,,144,88,0,,,,, +268,50,1,7786,1609,1132.272,,,,,,144,49,0,,,,, +268,52,3,7788,,1132.272,,8.0,A4,mf,17,144,69,17,,,,g, +268,52,3,7788,,1132.322,,,,,,144,69,0,,,,, +268,53,3,7789,1664,1132.347,256,4.0,E4,mf,17,144,64,17,,,,, +268,54,1,7790,1664,1132.347,54,32.0,G#4,mf,17,144,68,17,,,,, +268,55,1,7791,1664,1132.347,32,32.0,E6,mf,17,144,88,17,,,,, +268,55,1,7791,1664,1132.481,,,,,,144,88,0,,,,, +268,54,1,7790,1664,1132.573,,,,,,144,68,0,,,,, +268,56,1,7792,1718,1132.573,37,32.0,C6,pp,8,144,84,8,,,,, +268,56,1,7792,1718,1132.728,,,,,,144,84,0,,,,, +268,57,1,7793,1755,1132.728,37,32.0,A#3,pp,8,144,58,8,,,,, +268,57,1,7793,1755,1132.883,,,,,,144,58,0,,,,, +268,58,1,7794,1792,1132.883,,,,,,176,102,0,,,,, +268,59,3,7795,1920,1133.419,128,8.0,G#4,mp,14,144,68,14,,,,, +268,53,3,7789,1664,1133.419,,,,,,144,64,0,,,,, +268,59,3,7795,1920,1133.954,,,,,,144,68,0,,,,, +269,0,0,7796,0,1133.954,,,,,,,,,269,,,, +269,1,1,7797,0,1133.954,1536,1.0,F5,f,20,144,77,20,,,,, +269,2,2,7798,0,1133.954,512,2.0,A#3,pp,8,144,58,8,,,,, +269,3,2,7799,0,1133.954,512,2.0,G#4,pp,8,144,68,8,,,,, +269,4,2,7800,0,1133.954,512,2.0,C6,pp,8,144,84,8,,,,, +269,5,2,7801,0,1133.954,512,2.0,E6,pp,8,144,88,8,,,,, +269,6,3,7802,0,1133.954,,,,,,176,102,0,,,,, +269,7,4,7803,0,1133.954,512,2.0,E4,pp,8,144,64,8,,,,, +269,8,4,7804,0,1133.954,512,2.0,A4,pp,8,144,69,8,,,,, +269,9,2,7805,512,1136.097,128,8.0,A#3,,,,,,,,,, +269,10,2,7806,512,1136.097,128,8.0,G#4,,,,,,,,,, +269,11,2,7807,512,1136.097,128,8.0,C6,,,,,,,,,, +269,12,2,7808,512,1136.097,128,8.0,E6,,,,,,,,,, +269,13,4,7809,512,1136.097,128,8.0,E4,,,,,,,,,, +269,14,4,7810,512,1136.097,128,8.0,A4,,,,,,,,,, +269,15,2,7811,640,1136.633,384,4.0,A#3,p,11,144,58,11,,,,, +269,16,2,7812,640,1136.633,256,4.0,G#4,p,11,144,68,11,,,,, +269,17,2,7813,640,1136.633,256,4.0,C6,p,11,144,84,11,,,,, +269,18,2,7814,640,1136.633,256,4.0,E6,p,11,144,88,11,,,,, +269,19,4,7815,640,1136.633,384,4.0,E4,p,11,144,64,11,,,,, +269,20,4,7816,640,1136.633,256,4.0,A4,p,11,144,69,11,,,,, +269,2,2,7798,0,1136.858,,,,,,144,58,0,,,,, +269,3,2,7799,0,1136.858,,,,,,144,68,0,,,,, +269,4,2,7800,0,1136.858,,,,,,144,84,0,,,,, +269,5,2,7801,0,1136.858,,,,,,144,88,0,,,,, +269,7,4,7803,0,1136.858,,,,,,144,64,0,,,,, +269,8,4,7804,0,1136.858,,,,,,144,69,0,,,,, +269,21,2,7817,1024,1138.24,512,2.0,A#3,,,,,,,,,, +269,22,2,7818,1024,1138.24,512,2.0,G#4,,,,,,,,,, +269,23,2,7819,1024,1138.24,512,2.0,C6,,,,,,,,,, +269,24,2,7820,1024,1138.24,512,2.0,E6,,,,,,,,,, +269,25,4,7821,1024,1138.24,512,2.0,E4,,,,,,,,,, +269,26,4,7822,1024,1138.24,512,2.0,A4,,,,,,,,,, +269,16,2,7812,640,1139.847,,,,,,144,68,0,,,,, +269,17,2,7813,640,1139.847,,,,,,144,84,0,,,,, +269,18,2,7814,640,1139.847,,,,,,144,88,0,,,,, +269,20,4,7816,640,1139.847,,,,,,144,69,0,,,,, +269,1,1,7797,0,1140.383,,,,,,144,77,0,,,,, +269,15,2,7811,640,1140.383,,,,,,144,58,0,,,,, +269,19,4,7815,640,1140.383,,,,,,144,64,0,,,,, +269,27,1,7823,1536,1140.383,512,2.0,F5,mp,14,144,77,14,,,,, +269,28,2,7824,1536,1140.383,512,2.0,G#4,ppp,5,144,68,5,,,,, +269,29,3,7825,1536,1140.383,512,2.0,E2,ppp,5,144,40,5,,,,, +269,30,4,7826,1536,1140.383,512,2.0,E4,mp,14,144,64,14,,,,, +269,31,4,7827,1536,1140.383,512,2.0,A4,ppp,5,144,69,5,,,,, +269,28,2,7824,1536,1142.526,,,,,,144,68,0,,,,, +269,29,3,7825,1536,1142.526,,,,,,144,40,0,,,,, +269,30,4,7826,1536,1142.526,,,,,,144,64,0,,,,, +269,31,4,7827,1536,1142.526,,,,,,144,69,0,,,,, +270,0,0,7828,0,1142.526,,,,,,,,,270,,,, +270,1,1,7829,0,1142.526,960,2.0,F5,,,,,,,,,, +270,2,2,7830,0,1142.526,1024,1.0,G#4,pp,8,144,68,8,,,,, +270,3,3,7831,0,1142.526,1024,1.0,D3,pp,8,144,50,8,,,,, +270,4,4,7832,0,1142.526,1024,1.0,E4,pp,8,144,64,8,,,,, +270,5,4,7833,0,1142.526,1024,1.0,A4,pp,8,144,69,8,,,,, +269,27,1,7823,1536,1146.544,,,,,,144,77,0,,,,, +270,6,0,7834,960,1146.544,,,,,,176,64,0,,,,,^ +270,7,1,7835,960,1146.544,64,16.0,D4,f,20,144,62,20,,,,, +270,8,1,7836,960,1146.544,64,16.0,C6,f,20,144,84,20,,,,, +270,9,1,7837,960,1146.544,64,16.0,E6,f,20,144,88,20,,,,, +270,2,2,7830,0,1146.811,,,,,,144,68,0,,,,, +270,3,3,7831,0,1146.811,,,,,,144,50,0,,,,, +270,4,4,7832,0,1146.811,,,,,,144,64,0,,,,, +270,5,4,7833,0,1146.811,,,,,,144,69,0,,,,, +270,7,1,7835,960,1146.811,,,,,,144,62,0,,,,, +270,8,1,7836,960,1146.811,,,,,,144,84,0,,,,, +270,9,1,7837,960,1146.811,,,,,,144,88,0,,,,, +270,10,1,7838,1024,1146.811,1024,1.0,D4,pp,8,144,62,8,,,,, +270,11,1,7839,1024,1146.811,1024,1.0,C6,pp,8,144,84,8,,,,, +270,12,1,7840,1024,1146.811,1024,1.0,E6,pp,8,144,88,8,,,,, +270,13,2,7841,1024,1146.811,1024,1.0,G#4,p,11,144,68,11,,,,, +270,14,3,7842,1024,1146.811,,,,,,176,102,0,,,,, +270,15,4,7843,1024,1146.811,1024,1.0,E4,pp,8,144,64,8,,,,, +270,16,4,7844,1024,1146.811,1024,1.0,A4,pp,8,144,69,8,,,,, +270,17,3,7845,1152,1147.347,42,16.0,G#2,f,20,144,44,20,,,,, +270,17,3,7845,1152,1147.523,,,,,,144,44,0,,,,, +270,18,3,7846,1194,1147.523,86,8.0,G#2,p,11,144,44,11,,,,, +270,19,3,7847,1194,1147.523,128,8.0,C#3,p,11,144,49,11,,,,, +270,20,3,7848,1280,1147.883,512,2.0,G#2,,,,,,,,,, +270,21,3,7849,1280,1147.883,512,2.0,C#3,,,,,,,,,, +270,18,3,7846,1194,1150.026,,,,,,144,44,0,,,,, +270,23,3,7850,1792,1150.026,32,32.0,C#2,ppp,5,144,37,5,,,,, +270,22,0,7851,1792,1150.026,,,,,,176,64,127,,,,,V +270,23,3,7850,1792,1150.16,,,,,,144,37,0,,,,, +270,24,3,7852,1824,1150.16,32,32.0,A3,ppp-,4,144,57,4,,,,, +270,19,3,7847,1194,1150.202,,,,,,144,49,0,,,,, +270,24,3,7852,1824,1150.294,,,,,,144,57,0,,,,, +270,25,3,7853,1856,1150.294,21,32.0,B1,ppp-,4,144,35,4,,,,, +270,25,3,7853,1856,1150.382,,,,,,144,35,0,,,,, +270,26,3,7854,1877,1150.382,21,32.0,F2,pppp+,3,144,41,3,,,,, +270,26,3,7854,1877,1150.469,,,,,,144,41,0,,,,, +270,27,3,7855,1898,1150.469,22,32.0,B1,pppp+,3,144,35,3,,,,, +270,28,3,7856,1898,1150.469,32,32.0,C#2,pppp+,3,144,37,3,,,,, +270,27,3,7855,1898,1150.561,,,,,,144,35,0,,,,, +270,29,3,7857,1920,1150.561,21,32.0,F2,pppp+,3,144,41,3,,,,, +270,28,3,7856,1898,1150.603,,,,,,144,37,0,,,,, +270,29,3,7857,1920,1150.649,,,,,,144,41,0,,,,, +270,30,3,7858,1941,1150.649,21,32.0,B0,pppp,2,144,23,2,,,,, +270,30,3,7858,1941,1150.737,,,,,,144,23,0,,,,, +270,31,3,7859,1962,1150.737,22,32.0,A3,pppp,2,144,57,2,,,,, +270,31,3,7859,1962,1150.829,,,,,,144,57,0,,,,, +270,32,3,7860,1984,1150.829,21,32.0,F2,pppp-,1,144,41,1,,,,, +270,32,3,7860,1984,1150.917,,,,,,144,41,0,,,,, +270,33,3,7861,2005,1150.917,43,16.0,B0,pppp-,1,144,23,1,,,,, +270,10,1,7838,1024,1151.097,,,,,,144,62,0,,,,, +270,11,1,7839,1024,1151.097,,,,,,144,84,0,,,,, +270,12,1,7840,1024,1151.097,,,,,,144,88,0,,,,, +270,13,2,7841,1024,1151.097,,,,,,144,68,0,,,,, +270,15,4,7843,1024,1151.097,,,,,,144,64,0,,,,, +270,16,4,7844,1024,1151.097,,,,,,144,69,0,,,,, +270,33,3,7861,2005,1151.097,,,,,,144,23,0,,,,, +271,0,0,7862,0,1151.097,,,,,,,,,271,,,, +271,1,1,7863,0,1151.097,512,2.0,G#4,mp,14,144,68,14,,,,, +271,2,2,7864,0,1151.097,512,2.0,D4,ppp,5,144,62,5,,,,, +271,3,2,7865,0,1151.097,512,2.0,C6,ppp,5,144,84,5,,,,, +271,4,2,7866,0,1151.097,512,2.0,E6,ppp,5,144,88,5,,,,, +271,5,3,7867,0,1151.097,,,,,,176,102,0,,,,, +271,6,4,7868,0,1151.097,512,2.0,E4,mp,14,144,64,14,,,,, +271,7,4,7869,0,1151.097,512,2.0,A4,mp,14,144,69,14,,,,, +271,8,0,7870,512,1152.563,,,,,,176,64,0,,,,,^ +271,9,1,7871,512,1153.24,,,,,,176,102,0,,,,, +271,10,2,7872,512,1153.24,170,4.0,F5,f,20,144,77,20,,,,, +271,11,3,7873,512,1153.24,170,4.0,G1,f,20,144,31,20,,,,, +271,12,3,7874,512,1153.24,256,4.0,E2,f,20,144,40,20,,,,, +271,13,4,7875,512,1153.24,,,,,,176,102,0,,,,, +271,14,0,7876,682,1153.275,,,,,,176,64,127,,,,,V +271,10,2,7872,512,1153.29,,,,,,144,77,0,,,,, +271,11,3,7873,512,1153.29,,,,,,144,31,0,,,,, +271,12,3,7874,512,1153.29,,,,,,144,40,0,,,,, +271,1,1,7863,0,1153.315,,,,,,144,68,0,,,,, +271,2,2,7864,0,1153.315,,,,,,144,62,0,,,,, +271,3,2,7865,0,1153.315,,,,,,144,84,0,,,,, +271,4,2,7866,0,1153.315,,,,,,144,88,0,,,,, +271,6,4,7868,0,1153.315,,,,,,144,64,0,,,,, +271,7,4,7869,0,1153.315,,,,,,144,69,0,,,,, +271,15,2,7877,682,1153.952,22,32.0,E3,ppp,5,144,52,5,,,,, +271,16,3,7878,682,1153.952,,,,,,176,102,0,,,,, +271,15,2,7877,682,1154.044,,,,,,144,52,0,,,,, +271,17,2,7879,704,1154.044,21,32.0,C4,ppp,5,144,60,5,,,,, +271,17,2,7879,704,1154.132,,,,,,144,60,0,,,,, +271,18,2,7880,725,1154.132,21,32.0,E3,ppp+,6,144,52,6,,,,, +271,18,2,7880,725,1154.219,,,,,,144,52,0,,,,, +271,19,2,7881,746,1154.219,22,32.0,C4,ppp+,6,144,60,6,,,,, +271,19,2,7881,746,1154.311,,,,,,144,60,0,,,,, +271,20,2,7882,768,1154.311,21,32.0,E3,pp-,7,144,52,7,,,,, +271,21,2,7883,768,1154.311,32,32.0,C4,pp-,7,144,60,7,,,,, +271,22,2,7884,768,1154.311,32,32.0,F#6,pp-,7,144,90,7,,,,, +271,23,3,7885,768,1154.311,,,,,,176,102,0,,,,, +271,20,2,7882,768,1154.399,,,,,,144,52,0,,,,, +271,24,2,7886,789,1154.399,43,16.0,F4,pp-,7,144,65,7,,,,, +271,21,2,7883,768,1154.445,,,,,,144,60,0,,,,, +271,22,2,7884,768,1154.445,,,,,,144,90,0,,,,, +271,24,2,7886,789,1154.579,,,,,,144,65,0,,,,, +271,25,2,7887,832,1154.579,,,,,,176,102,0,,,,, +271,26,2,7888,853,1154.667,21,32.0,F#6,pp,8,144,90,8,,,,, +271,26,2,7888,853,1154.755,,,,,,144,90,0,,,,, +271,27,2,7889,874,1154.755,22,32.0,F5,ppp,5,144,77,5,,,,, +271,27,2,7889,874,1154.847,,,,,,144,77,0,,,,, +271,28,2,7890,896,1154.847,,,,,,176,102,0,,,,, +271,29,3,7891,896,1154.847,,,,,,176,102,0,,,,, +271,30,0,7892,896,1154.847,,,,,,,,,,5998,,, +271,31,0,7893,928,1154.981,,,,,,176,64,0,,,,,^ +271,32,3,7894,928,1154.981,32,32.0,G3,f,20,144,55,20,,,,, +271,32,3,7894,928,1155.115,,,,,,144,55,0,,,,, +271,33,3,7895,960,1155.115,32,32.0,G3,pp,8,144,55,8,,,,, +271,34,3,7896,960,1155.115,32,32.0,B3,pp,8,144,59,8,,,,, +271,33,3,7895,960,1155.249,,,,,,144,55,0,,,,, +271,34,3,7896,960,1155.249,,,,,,144,59,0,,,,, +271,35,3,7897,992,1155.249,32,32.0,G3,pp,8,144,55,8,,,,, +271,36,3,7898,992,1155.249,32,32.0,B3,pp,8,144,59,8,,,,, +271,38,1,7899,1024,1155.383,,,,,,176,102,0,,,,, +271,39,2,7900,1024,1155.383,,,,,,176,102,0,,,,, +271,40,3,7901,1024,1155.383,512,2.0,G3,,,,,,,,,, +271,41,3,7902,1024,1155.383,512,2.0,B3,,,,,,,,,, +271,42,4,7903,1024,1155.383,,,,,,176,102,0,,,,, +271,37,0,7904,1024,1155.383,,,,,,176,64,127,,,,,V +271,43,2,7905,1408,1156.99,16,64.0,F#7,ppp,5,144,102,5,,,,, +271,43,2,7905,1408,1157.057,,,,,,144,102,0,,,,, +271,44,2,7906,1424,1157.057,16,64.0,E5,ppp+,6,144,76,6,,,,, +271,44,2,7906,1424,1157.124,,,,,,144,76,0,,,,, +271,45,2,7907,1440,1157.124,16,64.0,F6,pp-,7,144,89,7,,,,, +271,45,2,7907,1440,1157.191,,,,,,144,89,0,,,,, +271,46,2,7908,1456,1157.191,16,64.0,C6,pp,8,144,84,8,,,,, +271,46,2,7908,1456,1157.258,,,,,,144,84,0,,,,, +271,47,2,7909,1472,1157.258,16,64.0,G#5,pp+,9,144,80,9,,,,, +271,47,2,7909,1472,1157.325,,,,,,144,80,0,,,,, +271,48,2,7910,1488,1157.325,24,64.0,E4,p-,10,144,64,10,,,,, +271,48,2,7910,1488,1157.425,,,,,,144,64,0,,,,, +271,49,0,7911,1512,1157.425,,,,,,176,64,0,,,,,^ +271,50,2,7912,1512,1157.425,24,64.0,C6,p,11,144,84,11,,,,, +271,50,2,7912,1512,1157.526,,,,,,144,84,0,,,,, +271,51,2,7913,1536,1157.526,,,,,,176,102,0,,,,, +271,52,3,7914,1536,1157.526,256,4.0,C3,pp,8,144,48,8,,,,, +271,53,3,7915,1536,1157.526,256,4.0,G3,pp,8,144,55,8,,,,, +271,54,3,7916,1536,1157.526,256,4.0,B3,pp,8,144,59,8,,,,, +271,55,4,7917,1536,1157.526,,,,,,176,102,0,,,,, +271,35,3,7897,992,1157.526,,,,,,144,55,0,,,,, +271,36,3,7898,992,1157.526,,,,,,144,59,0,,,,, +271,52,3,7914,1536,1158.597,,,,,,144,48,0,,,,, +271,53,3,7915,1536,1158.597,,,,,,144,55,0,,,,, +271,54,3,7916,1536,1158.597,,,,,,144,59,0,,,,, +271,58,4,7918,,1158.597,,8.0,D2,mf,17,144,38,17,,,,g, +271,58,4,7918,,1158.647,,,,,,144,38,0,,,,, +271,59,4,7919,,1158.672,,8.0,C3,mf-,16,144,48,16,,,,g, +271,59,4,7919,,1158.722,,,,,,144,48,0,,,,, +271,60,4,7920,,1158.747,,8.0,D2,mp,14,144,38,14,,,,g, +271,60,4,7920,,1158.797,,,,,,144,38,0,,,,, +271,61,4,7921,,1158.822,,8.0,E3,mp-,13,144,52,13,,,,g, +271,61,4,7921,,1158.872,,,,,,144,52,0,,,,, +271,62,4,7922,,1158.897,,8.0,C#2,p+,12,144,37,12,,,,g, +271,62,4,7922,,1158.947,,,,,,144,37,0,,,,, +271,63,4,7923,,1158.972,,8.0,A1,p-,10,144,33,10,,,,g, +271,64,4,7924,,1158.972,,8.0,D2,p-,10,144,38,10,,,,g, +271,65,4,7925,,1158.972,,8.0,C3,p-,10,144,48,10,,,,g, +271,66,4,7926,,1158.972,,8.0,E3,p-,10,144,52,10,,,,g, +271,63,4,7923,,1159.022,,,,,,144,33,0,,,,, +271,64,4,7924,,1159.022,,,,,,144,38,0,,,,, +271,65,4,7925,,1159.022,,,,,,144,48,0,,,,, +271,66,4,7926,,1159.022,,,,,,144,52,0,,,,, +271,67,4,7927,,1159.047,,8.0,C#2,pp+,9,144,37,9,,,,g, +271,67,4,7927,,1159.097,,,,,,144,37,0,,,,, +271,68,4,7928,,1159.122,,8.0,E4,pp,8,144,64,8,,,,g, +271,68,4,7928,,1159.172,,,,,,144,64,0,,,,, +271,69,4,7929,,1159.197,,8.0,A1,ppp+,6,144,33,6,,,,g, +271,69,4,7929,,1159.247,,,,,,144,33,0,,,,, +271,70,4,7930,,1159.272,,8.0,C#2,ppp,5,144,37,5,,,,g, +271,70,4,7930,,1159.322,,,,,,144,37,0,,,,, +271,56,2,7931,1792,1159.572,96,16.0,G#4,p,11,144,68,11,,,,, +271,57,3,7932,1792,1159.572,,,,,,176,102,0,,,,, +271,71,4,7933,1792,1159.572,,,,,,176,102,0,,,,, +271,56,2,7931,1792,1159.974,,,,,,144,68,0,,,,, +271,72,2,7934,1888,1159.974,64,16.0,D4,p,11,144,62,11,,,,, +271,72,2,7934,1888,1160.242,,,,,,144,62,0,,,,, +271,73,2,7935,1952,1160.242,96,16.0,C#3,p,11,144,49,11,,,,, +271,75,4,7936,1984,1160.376,32,32.0,C#2,ppp,5,144,37,5,,,,, +271,74,0,7937,1984,1160.376,,,,,,176,64,127,,,,,V +271,75,4,7936,1984,1160.51,,,,,,144,37,0,,,,, +271,76,4,7938,2016,1160.51,32,32.0,C#2,pp,8,144,37,8,,,,, +271,73,2,7935,1952,1160.644,,,,,,144,49,0,,,,, +271,76,4,7938,2016,1160.644,,,,,,144,37,0,,,,, +272,0,0,7939,0,1160.644,,,,,,,,,272,,,, +272,1,1,7940,0,1160.644,32,32.0,E7,pp,8,144,100,8,,,,, +272,2,3,7941,0,1160.644,128,8.0,C#2,p,11,144,37,11,,,,, +272,3,3,7942,0,1160.644,128,8.0,E3,p,11,144,52,11,,,,, +272,1,1,7940,0,1160.778,,,,,,144,100,0,,,,, +272,4,1,7943,32,1160.778,32,32.0,G#4,pp+,9,144,68,9,,,,, +272,4,1,7943,32,1160.911,,,,,,144,68,0,,,,, +272,5,1,7944,64,1160.911,48,32.0,A#3,p-,10,144,58,10,,,,, +272,5,1,7944,64,1161.112,,,,,,144,58,0,,,,, +272,6,1,7945,112,1161.112,48,32.0,C7,p,11,144,96,11,,,,, +272,2,3,7941,0,1161.179,,,,,,144,37,0,,,,, +272,3,3,7942,0,1161.179,,,,,,144,52,0,,,,, +272,7,3,7946,128,1161.179,64,16.0,E5,pp,8,144,76,8,,,,, +272,6,1,7945,112,1161.313,,,,,,144,96,0,,,,, +272,8,1,7947,160,1161.313,32,32.0,G#4,p+,12,144,68,12,,,,, +272,7,3,7946,128,1161.447,,,,,,144,76,0,,,,, +272,8,1,7947,160,1161.447,,,,,,144,68,0,,,,, +272,9,1,7948,192,1161.447,32,32.0,A#3,mp-,13,144,58,13,,,,, +272,10,3,7949,192,1161.447,64,16.0,E6,pp,8,144,88,8,,,,, +272,9,1,7948,192,1161.581,,,,,,144,58,0,,,,, +272,11,0,7950,224,1161.581,,,,,,176,64,0,,,,,^ +272,12,1,7951,224,1161.581,32,32.0,C7,mp,14,144,96,14,,,,, +272,10,3,7949,192,1161.715,,,,,,144,88,0,,,,, +272,12,1,7951,224,1161.715,,,,,,144,96,0,,,,, +272,13,1,7952,256,1161.715,21,32.0,E4,ppp,5,144,64,5,,,,, +272,14,3,7953,256,1161.715,42,16.0,G#2,p,11,144,44,11,,,,, +272,15,3,7954,256,1161.715,64,16.0,F3,p,11,144,53,11,,,,, +272,13,1,7952,256,1161.803,,,,,,144,64,0,,,,, +272,16,1,7955,277,1161.803,21,32.0,F#5,ppp,5,144,78,5,,,,, +272,14,3,7953,256,1161.891,,,,,,144,44,0,,,,, +272,16,1,7955,277,1161.891,,,,,,144,78,0,,,,, +272,17,1,7956,298,1161.891,22,32.0,C5,ppp+,6,144,72,6,,,,, +272,18,3,7957,298,1161.891,128,8.0,F3,,,,,,,,,, +272,17,1,7956,298,1161.983,,,,,,144,72,0,,,,, +272,19,1,7958,320,1161.983,32,32.0,E4,ppp+,6,144,64,6,,,,, +272,19,1,7958,320,1162.117,,,,,,144,64,0,,,,, +272,20,1,7959,352,1162.117,32,32.0,C5,pp-,7,144,72,7,,,,, +272,20,1,7959,352,1162.251,,,,,,144,72,0,,,,, +272,21,1,7960,384,1162.251,42,16.0,F#5,pp,8,144,78,8,,,,, +272,21,1,7960,384,1162.427,,,,,,144,78,0,,,,, +272,23,1,7961,426,1162.427,86,8.0,E5,pp,8,144,76,8,,,,, +272,24,1,7962,426,1162.427,128,8.0,G#5,pp,8,144,80,8,,,,, +272,25,3,7963,426,1162.427,86,8.0,C3,p,11,144,48,11,,,,, +272,22,0,7964,426,1162.427,,,,,,176,64,127,,,,,V +272,15,3,7954,256,1162.519,,,,,,144,53,0,,,,, +272,25,3,7963,426,1162.786,,,,,,144,48,0,,,,, +272,26,1,7965,512,1162.786,170,4.0,E5,,,,,,,,,, +272,27,1,7966,512,1162.786,256,4.0,G#5,,,,,,,,,, +272,28,3,7967,512,1162.786,32,32.0,C#2,p,11,144,37,11,,,,, +272,28,3,7967,512,1162.92,,,,,,144,37,0,,,,, +272,29,3,7968,544,1162.92,32,32.0,A2,p,11,144,45,11,,,,, +272,29,3,7968,544,1163.054,,,,,,144,45,0,,,,, +272,30,3,7969,576,1163.054,21,32.0,B1,p,11,144,35,11,,,,, +272,30,3,7969,576,1163.142,,,,,,144,35,0,,,,, +272,31,3,7970,597,1163.142,21,32.0,F2,p,11,144,41,11,,,,, +272,31,3,7970,597,1163.23,,,,,,144,41,0,,,,, +272,32,3,7971,618,1163.23,22,32.0,B1,p,11,144,35,11,,,,, +272,33,3,7972,618,1163.23,32,32.0,C#2,p,11,144,37,11,,,,, +272,32,3,7971,618,1163.322,,,,,,144,35,0,,,,, +272,34,3,7973,640,1163.322,42,16.0,F2,p,11,144,41,11,,,,, +272,33,3,7972,618,1163.364,,,,,,144,37,0,,,,, +272,23,1,7961,426,1163.498,,,,,,144,76,0,,,,, +272,34,3,7973,640,1163.498,,,,,,144,41,0,,,,, +272,35,0,7974,682,1163.498,,,,,,176,64,0,,,,,^ +272,36,1,7975,682,1163.498,86,8.0,E5,mf,17,144,76,17,,,,, +272,37,1,7976,682,1163.498,128,8.0,G#5,mf,17,144,80,17,,,,, +272,38,1,7977,682,1163.498,128,8.0,A5,mf,17,144,81,17,,,,, +272,39,3,7978,682,1163.498,86,8.0,C3,mf,17,144,48,17,,,,, +272,40,3,7979,682,1163.498,128,8.0,F#3,mf,17,144,54,17,,,,, +272,36,1,7975,682,1163.858,,,,,,144,76,0,,,,, +272,39,3,7978,682,1163.858,,,,,,144,48,0,,,,, +272,41,1,7980,768,1163.858,256,4.0,A#3,pp,8,144,58,8,,,,, +272,42,1,7981,768,1163.858,256,4.0,G#4,pp,8,144,68,8,,,,, +272,43,1,7982,768,1163.858,256,4.0,C7,pp,8,144,96,8,,,,, +272,44,1,7983,768,1163.858,256,4.0,E7,pp,8,144,100,8,,,,, +272,45,3,7984,768,1163.858,,,,,,176,102,0,,,,, +272,24,1,7962,426,1164.034,,,,,,144,80,0,,,,, +272,37,1,7976,682,1164.034,,,,,,144,80,0,,,,, +272,38,1,7977,682,1164.034,,,,,,144,81,0,,,,, +272,40,3,7979,682,1164.034,,,,,,144,54,0,,,,, +272,46,3,7985,853,1164.214,21,32.0,F#2,pp,8,144,42,8,,,,, +272,46,3,7985,853,1164.302,,,,,,144,42,0,,,,, +272,47,3,7986,874,1164.302,22,32.0,G#5,pp+,9,144,80,9,,,,, +272,47,3,7986,874,1164.394,,,,,,144,80,0,,,,, +272,48,3,7987,896,1164.394,21,32.0,A5,p,11,144,81,11,,,,, +272,48,3,7987,896,1164.482,,,,,,144,81,0,,,,, +272,49,3,7988,917,1164.482,21,32.0,C2,p+,12,144,36,12,,,,, +272,49,3,7988,917,1164.569,,,,,,144,36,0,,,,, +272,50,3,7989,938,1164.569,22,32.0,E4,mp,14,144,64,14,,,,, +272,50,3,7989,938,1164.661,,,,,,144,64,0,,,,, +272,51,3,7990,960,1164.661,21,32.0,F#2,mf-,16,144,42,16,,,,, +272,42,1,7981,768,1164.749,,,,,,144,68,0,,,,, +272,51,3,7990,960,1164.749,,,,,,144,42,0,,,,, +272,52,3,7991,981,1164.749,43,16.0,G#4,mf,17,144,68,17,,,,, +272,54,1,7992,1024,1164.929,32,32.0,E6,pp,8,144,88,8,,,,, +272,55,3,7993,1024,1164.929,,,,,,176,102,0,,,,, +272,53,0,7994,1024,1164.929,,,,,,176,64,127,,,,,V +272,41,1,7980,768,1164.929,,,,,,144,58,0,,,,, +272,43,1,7982,768,1164.929,,,,,,144,96,0,,,,, +272,44,1,7983,768,1164.929,,,,,,144,100,0,,,,, +272,52,3,7991,981,1164.929,,,,,,144,68,0,,,,, +272,54,1,7992,1024,1165.063,,,,,,144,88,0,,,,, +272,56,1,7995,1056,1165.063,32,32.0,G#3,pp+,9,144,56,9,,,,, +272,56,1,7995,1056,1165.197,,,,,,144,56,0,,,,, +272,57,1,7996,1088,1165.197,48,32.0,A#2,p-,10,144,46,10,,,,, +272,57,1,7996,1088,1165.398,,,,,,144,46,0,,,,, +272,58,1,7997,1136,1165.398,48,32.0,C6,p,11,144,84,11,,,,, +272,58,1,7997,1136,1165.599,,,,,,144,84,0,,,,, +272,59,1,7998,1184,1165.599,32,32.0,G#3,p+,12,144,56,12,,,,, +272,59,1,7998,1184,1165.733,,,,,,144,56,0,,,,, +272,60,1,7999,1216,1165.733,32,32.0,A#2,mp-,13,144,46,13,,,,, +272,61,0,8000,1248,1165.784,,,,,,176,64,0,,,,,^ +272,60,1,7999,1216,1165.867,,,,,,144,46,0,,,,, +272,62,1,8001,1248,1165.867,32,32.0,C6,mp,14,144,84,14,,,,, +272,62,1,8001,1248,1166.001,,,,,,144,84,0,,,,, +273,0,0,8002,0,1166.001,,,,,,,,,273,,,, +273,2,1,8003,0,1166.001,256,4.0,A4,mf,17,144,69,17,,,,, +273,3,2,8004,0,1166.001,,,,,,176,102,0,,,,, +273,4,3,8005,0,1166.001,32,32.0,C#1,mf,17,144,25,17,,,,, +273,5,4,8006,0,1166.001,,,,,,176,102,0,,,,, +273,1,0,8007,0,1166.084,,,,,,176,64,127,,,,,V +273,4,3,8005,0,1166.135,,,,,,144,25,0,,,,, +273,6,3,8008,32,1166.135,32,32.0,A3,mf-,16,144,57,16,,,,, +273,6,3,8008,32,1166.269,,,,,,144,57,0,,,,, +273,7,3,8009,64,1166.269,21,32.0,B0,mp,14,144,23,14,,,,, +273,7,3,8009,64,1166.357,,,,,,144,23,0,,,,, +273,8,3,8010,85,1166.357,21,32.0,F2,mp-,13,144,41,13,,,,, +273,8,3,8010,85,1166.444,,,,,,144,41,0,,,,, +273,9,3,8011,106,1166.444,22,32.0,B0,mp-,13,144,23,13,,,,, +273,10,3,8012,106,1166.444,32,32.0,C#1,mp-,13,144,25,13,,,,, +273,9,3,8011,106,1166.536,,,,,,144,23,0,,,,, +273,11,3,8013,128,1166.536,21,32.0,F1,p+,12,144,29,12,,,,, +273,10,3,8012,106,1166.578,,,,,,144,25,0,,,,, +273,11,3,8013,128,1166.624,,,,,,144,29,0,,,,, +273,12,3,8014,149,1166.624,21,32.0,B0,p,11,144,23,11,,,,, +273,12,3,8014,149,1166.712,,,,,,144,23,0,,,,, +273,13,3,8015,170,1166.712,22,32.0,A2,p-,10,144,45,10,,,,, +273,13,3,8015,170,1166.804,,,,,,144,45,0,,,,, +273,14,3,8016,192,1166.804,21,32.0,F1,pp+,9,144,29,9,,,,, +273,14,3,8016,192,1166.892,,,,,,144,29,0,,,,, +273,15,3,8017,213,1166.892,43,16.0,B0,pp,8,144,23,8,,,,, +273,2,1,8003,0,1167.072,,,,,,144,69,0,,,,, +273,16,1,8018,256,1167.072,,,,,,176,102,0,,,,, +273,17,3,8019,256,1167.072,256,4.0,B0,,,,,,,,,, +273,18,1,8020,512,1168.144,,,,,,176,102,0,,,,, +273,19,3,8021,512,1168.144,170,4.0,B0,,,,,,,,,, +273,15,3,8017,213,1168.855,,,,,,144,23,0,,,,, +273,20,0,8022,682,1168.855,,,,,,176,64,0,,,,,^ +273,21,3,8023,682,1168.855,86,8.0,B0,p,11,144,23,11,,,,, +273,22,3,8024,682,1168.855,128,8.0,C#1,p,11,144,25,11,,,,, +273,23,3,8025,682,1168.855,128,8.0,F1,p,11,144,29,11,,,,, +273,24,3,8026,682,1168.855,128,8.0,A2,p,11,144,45,11,,,,, +273,25,1,8027,704,1168.947,21,32.0,E4,ppp,5,144,64,5,,,,, +273,25,1,8027,704,1169.035,,,,,,144,64,0,,,,, +273,26,1,8028,725,1169.035,21,32.0,F#5,ppp,5,144,78,5,,,,, +273,26,1,8028,725,1169.123,,,,,,144,78,0,,,,, +273,27,1,8029,746,1169.123,22,32.0,C5,ppp,5,144,72,5,,,,, +273,21,3,8023,682,1169.215,,,,,,144,23,0,,,,, +273,27,1,8029,746,1169.215,,,,,,144,72,0,,,,, +273,28,1,8030,768,1169.215,38,32.0,G#6,pp,8,144,92,8,,,,, +273,29,2,8031,768,1169.215,,,,,,176,102,0,,,,, +273,30,3,8032,768,1169.215,256,4.0,D#4,p,11,144,63,11,,,,, +273,31,3,8033,768,1169.215,256,4.0,F5,p,11,144,77,11,,,,, +273,32,4,8034,768,1169.215,,,,,,176,102,0,,,,, +273,28,1,8030,768,1169.374,,,,,,144,92,0,,,,, +273,34,1,8035,806,1169.374,26,32.0,E5,pp+,9,144,76,9,,,,, +273,33,0,8036,806,1169.374,,,,,,176,64,127,,,,,V +273,22,3,8024,682,1169.391,,,,,,144,25,0,,,,, +273,23,3,8025,682,1169.391,,,,,,144,29,0,,,,, +273,24,3,8026,682,1169.391,,,,,,144,45,0,,,,, +273,34,1,8035,806,1169.483,,,,,,144,76,0,,,,, +273,35,1,8037,832,1169.483,38,32.0,G#6,pp+,9,144,92,9,,,,, +273,35,1,8037,832,1169.642,,,,,,144,92,0,,,,, +273,36,1,8038,870,1169.642,26,32.0,E4,p-,10,144,64,10,,,,, +273,36,1,8038,870,1169.751,,,,,,144,64,0,,,,, +273,37,1,8039,896,1169.751,12,64.0,C6,p-,10,144,84,10,,,,, +273,37,1,8039,896,1169.801,,,,,,144,84,0,,,,, +273,38,1,8040,908,1169.801,13,64.0,D7,p-,10,144,98,10,,,,, +273,38,1,8040,908,1169.855,,,,,,144,98,0,,,,, +273,39,1,8041,921,1169.855,13,64.0,C6,p-,10,144,84,10,,,,, +273,39,1,8041,921,1169.91,,,,,,144,84,0,,,,, +273,40,1,8042,934,1169.91,13,64.0,D7,p,11,144,98,11,,,,, +273,40,1,8042,934,1169.964,,,,,,144,98,0,,,,, +273,41,1,8043,947,1169.964,13,64.0,C6,p,11,144,84,11,,,,, +273,41,1,8043,947,1170.019,,,,,,144,84,0,,,,, +273,42,1,8044,960,1170.019,12,64.0,C#5,p,11,144,73,11,,,,, +273,42,1,8044,960,1170.069,,,,,,144,73,0,,,,, +273,43,1,8045,972,1170.069,26,32.0,G#6,p,11,144,92,11,,,,, +273,43,1,8045,972,1170.178,,,,,,144,92,0,,,,, +273,44,1,8046,998,1170.178,26,32.0,E4,p+,12,144,64,12,,,,, +273,30,3,8032,768,1170.286,,,,,,144,63,0,,,,, +273,31,3,8033,768,1170.286,,,,,,144,77,0,,,,, +273,44,1,8046,998,1170.286,,,,,,144,64,0,,,,, +273,45,1,8047,1024,1170.286,25,32.0,D7,p+,12,144,98,12,,,,, +273,46,2,8048,1024,1170.286,,,,,,176,102,0,,,,, +273,47,3,8049,1024,1170.286,,,,,,176,102,0,,,,, +273,48,4,8050,1024,1170.286,,,,,,176,102,0,,,,, +273,45,1,8047,1024,1170.391,,,,,,144,98,0,,,,, +273,49,1,8051,1049,1170.391,26,32.0,C6,p+,12,144,84,12,,,,, +273,49,1,8051,1049,1170.5,,,,,,144,84,0,,,,, +273,50,1,8052,1075,1170.5,25,32.0,D7,p+,12,144,98,12,,,,, +273,50,1,8052,1075,1170.605,,,,,,144,98,0,,,,, +273,51,1,8053,1100,1170.605,52,16.0,C6,p+,12,144,84,12,,,,, +273,51,1,8053,1100,1170.822,,,,,,144,84,0,,,,, +273,52,0,8054,1152,1170.822,,,,,,176,64,0,,,,,^ +273,53,1,8055,1152,1170.822,128,8.0,E4,ff,22,144,64,22,,,,, +273,54,1,8056,1152,1170.822,128,8.0,G#4,ff,22,144,68,22,,,,, +273,55,1,8057,1152,1170.822,128,8.0,A4,ff,22,144,69,22,,,,, +273,56,2,8058,1152,1170.822,128,8.0,G#3,mp,14,144,56,14,,,,, +273,57,2,8059,1152,1170.822,128,8.0,C4,mp,14,144,60,14,,,,, +273,58,3,8060,1152,1170.822,128,8.0,C1,ff,22,144,24,22,,,,, +273,59,3,8061,1152,1170.822,128,8.0,F#1,ff,22,144,30,22,,,,, +273,60,4,8062,1152,1170.822,128,8.0,B0,pp,8,144,23,8,,,,, +273,61,4,8063,1152,1170.822,128,8.0,C#1,pp,8,144,25,8,,,,, +273,62,4,8064,1152,1170.822,128,8.0,F1,pp,8,144,29,8,,,,, +273,53,1,8055,1152,1171.358,,,,,,144,64,0,,,,, +273,54,1,8056,1152,1171.358,,,,,,144,68,0,,,,, +273,55,1,8057,1152,1171.358,,,,,,144,69,0,,,,, +273,56,2,8058,1152,1171.358,,,,,,144,56,0,,,,, +273,57,2,8059,1152,1171.358,,,,,,144,60,0,,,,, +273,58,3,8060,1152,1171.358,,,,,,144,24,0,,,,, +273,59,3,8061,1152,1171.358,,,,,,144,30,0,,,,, +273,60,4,8062,1152,1171.358,,,,,,144,23,0,,,,, +273,61,4,8063,1152,1171.358,,,,,,144,25,0,,,,, +273,62,4,8064,1152,1171.358,,,,,,144,29,0,,,,, +274,0,0,8065,0,1171.358,,,,,,,,,274,,,, +274,1,1,8066,0,1171.358,,,,,,176,102,0,,,,, +274,2,3,8067,0,1171.358,,,,,,176,102,0,,,,, +274,3,0,8068,0,1171.358,,,,,,,,,,5999,,, +274,4,1,8069,384,1172.965,21,32.0,E4,ppp,5,144,64,5,,,,, +274,4,1,8069,384,1173.053,,,,,,144,64,0,,,,, +274,5,1,8070,405,1173.053,21,32.0,F#5,ppp+,6,144,78,6,,,,, +274,5,1,8070,405,1173.141,,,,,,144,78,0,,,,, +274,6,1,8071,426,1173.141,22,32.0,C5,ppp+,6,144,72,6,,,,, +274,6,1,8071,426,1173.233,,,,,,144,72,0,,,,, +274,7,1,8072,448,1173.233,21,32.0,F#5,pp-,7,144,78,7,,,,, +274,7,1,8072,448,1173.321,,,,,,144,78,0,,,,, +274,8,1,8073,469,1173.321,21,32.0,C5,pp,8,144,72,8,,,,, +274,8,1,8073,469,1173.409,,,,,,144,72,0,,,,, +274,9,1,8074,490,1173.409,22,32.0,F#5,pp,8,144,78,8,,,,, +274,9,1,8074,490,1173.501,,,,,,144,78,0,,,,, +274,10,1,8075,512,1173.501,42,16.0,F5,pp+,9,144,77,9,,,,, +274,11,3,8076,512,1173.501,,,,,,176,102,0,,,,, +274,10,1,8075,512,1173.677,,,,,,144,77,0,,,,, +274,12,1,8077,554,1173.677,86,8.0,G#4,pp+,9,144,68,9,,,,, +274,12,1,8077,554,1174.036,,,,,,144,68,0,,,,, +274,13,1,8078,640,1174.036,384,4.0,A#2,pp,8,144,46,8,,,,, +274,14,1,8079,640,1174.036,256,4.0,G#3,pp,8,144,56,8,,,,, +274,15,1,8080,640,1174.036,256,4.0,C4,pp,8,144,60,8,,,,, +274,16,3,8081,640,1174.036,384,4.0,B0,pp,8,144,23,8,,,,, +274,17,3,8082,640,1174.036,256,4.0,C#1,pp,8,144,25,8,,,,, +274,18,3,8083,640,1174.036,256,4.0,F1,pp,8,144,29,8,,,,, +274,14,1,8079,640,1175.108,,,,,,144,56,0,,,,, +274,15,1,8080,640,1175.108,,,,,,144,60,0,,,,, +274,17,3,8082,640,1175.108,,,,,,144,25,0,,,,, +274,18,3,8083,640,1175.108,,,,,,144,29,0,,,,, +274,13,1,8078,640,1175.644,,,,,,144,46,0,,,,, +274,16,3,8081,640,1175.644,,,,,,144,23,0,,,,, +274,19,1,8084,1024,1175.644,128,8.0,A#2,p,11,144,46,11,,,,, +274,20,1,8085,1024,1175.644,128,8.0,G#3,p,11,144,56,11,,,,, +274,21,1,8086,1024,1175.644,128,8.0,C4,p,11,144,60,11,,,,, +274,22,3,8087,1024,1175.644,128,8.0,B0,ppp,5,144,23,5,,,,, +274,23,3,8088,1024,1175.644,128,8.0,C#1,ppp,5,144,25,5,,,,, +274,24,3,8089,1024,1175.644,128,8.0,F1,ppp,5,144,29,5,,,,, +274,19,1,8084,1024,1176.179,,,,,,144,46,0,,,,, +274,20,1,8085,1024,1176.179,,,,,,144,56,0,,,,, +274,21,1,8086,1024,1176.179,,,,,,144,60,0,,,,, +274,22,3,8087,1024,1176.179,,,,,,144,23,0,,,,, +274,23,3,8088,1024,1176.179,,,,,,144,25,0,,,,, +274,24,3,8089,1024,1176.179,,,,,,144,29,0,,,,, +274,25,1,8090,1152,1176.179,,,,,,176,102,0,,,,, +274,26,3,8091,1152,1176.179,21,32.0,C3,pp,8,144,48,8,,,,, +274,26,3,8091,1152,1176.267,,,,,,144,48,0,,,,, +274,27,3,8092,1173,1176.267,21,32.0,E3,pp,8,144,52,8,,,,, +274,27,3,8092,1173,1176.355,,,,,,144,52,0,,,,, +274,28,3,8093,1194,1176.355,22,32.0,D2,pp-,7,144,38,7,,,,, +274,28,3,8093,1194,1176.447,,,,,,144,38,0,,,,, +274,29,3,8094,1216,1176.447,21,32.0,E3,pp-,7,144,52,7,,,,, +274,29,3,8094,1216,1176.535,,,,,,144,52,0,,,,, +274,30,3,8095,1237,1176.535,21,32.0,D2,ppp+,6,144,38,6,,,,, +274,30,3,8095,1237,1176.623,,,,,,144,38,0,,,,, +274,31,3,8096,1258,1176.623,22,32.0,E4,ppp+,6,144,64,6,,,,, +274,31,3,8096,1258,1176.715,,,,,,144,64,0,,,,, +275,0,0,8097,0,1176.715,,,,,,,,,275,,,, +275,1,1,8098,0,1176.715,224,8.0,G#5,f,20,144,80,20,,,,, +275,2,3,8099,0,1176.715,64,16.0,G#1,ppp,5,144,32,5,,,,, +275,2,3,8099,0,1176.983,,,,,,144,32,0,,,,, +275,3,3,8100,64,1176.983,192,8.0,G#1,ppp-,4,144,32,4,,,,, +275,4,3,8101,64,1176.983,128,8.0,C#2,ppp-,4,144,37,4,,,,, +275,4,3,8101,64,1177.519,,,,,,144,37,0,,,,, +275,1,1,8098,0,1177.653,,,,,,144,80,0,,,,, +275,5,1,8102,224,1177.653,32,32.0,C3,mf,17,144,48,17,,,,, +275,6,1,8103,224,1177.653,32,32.0,G3,mf,17,144,55,17,,,,, +275,7,1,8104,224,1177.653,32,32.0,B3,mf,17,144,59,17,,,,, +275,3,3,8100,64,1177.786,,,,,,144,32,0,,,,, +275,5,1,8102,224,1177.786,,,,,,144,48,0,,,,, +275,6,1,8103,224,1177.786,,,,,,144,55,0,,,,, +275,7,1,8104,224,1177.786,,,,,,144,59,0,,,,, +275,8,1,8105,256,1177.786,38,32.0,G#5,pp,8,144,80,8,,,,, +275,9,1,8106,256,1177.786,32,32.0,A6,mf,17,144,93,17,,,,, +275,10,3,8107,256,1177.786,64,16.0,G#1,f,20,144,32,20,,,,, +275,11,3,8108,256,1177.786,64,16.0,C#2,ppp-,4,144,37,4,,,,, +275,12,3,8109,256,1177.786,64,16.0,F#2,ppp-,4,144,42,4,,,,, +275,9,1,8106,256,1177.92,,,,,,144,93,0,,,,, +275,8,1,8105,256,1177.946,,,,,,144,80,0,,,,, +275,13,1,8110,294,1177.946,38,32.0,E2,pp,8,144,40,8,,,,, +275,10,3,8107,256,1178.054,,,,,,144,32,0,,,,, +275,11,3,8108,256,1178.054,,,,,,144,37,0,,,,, +275,14,3,8111,320,1178.054,192,8.0,F#2,,,,,,,,,, +275,13,1,8110,294,1178.105,,,,,,144,40,0,,,,, +275,15,1,8112,332,1178.105,26,32.0,C5,pp+,9,144,72,9,,,,, +275,15,1,8112,332,1178.213,,,,,,144,72,0,,,,, +275,16,1,8113,358,1178.213,26,32.0,D6,p-,10,144,86,10,,,,, +275,16,1,8113,358,1178.322,,,,,,144,86,0,,,,, +275,17,1,8114,384,1178.322,25,32.0,C5,p-,10,144,72,10,,,,, +275,17,1,8114,384,1178.427,,,,,,144,72,0,,,,, +275,18,1,8115,409,1178.427,26,32.0,D6,p,11,144,86,11,,,,, +275,18,1,8115,409,1178.536,,,,,,144,86,0,,,,, +275,19,1,8116,435,1178.536,25,32.0,C5,p,11,144,72,11,,,,, +275,19,1,8116,435,1178.64,,,,,,144,72,0,,,,, +275,20,1,8117,460,1178.64,52,16.0,C#4,p+,12,144,61,12,,,,, +275,12,3,8109,256,1178.858,,,,,,144,42,0,,,,, +275,20,1,8117,460,1178.858,,,,,,144,61,0,,,,, +275,22,1,8118,512,1178.858,,,,,,176,102,0,,,,, +275,23,3,8119,512,1178.858,32,32.0,C#1,ppp,5,144,25,5,,,,, +275,21,0,8120,512,1178.858,,,,,,176,64,127,,,,,V +275,24,3,8121,544,1178.992,32,32.0,A3,ppp,5,144,57,5,,,,, +275,24,3,8121,544,1179.126,,,,,,144,57,0,,,,, +275,25,3,8122,576,1179.126,21,32.0,B0,ppp,5,144,23,5,,,,, +275,25,3,8122,576,1179.214,,,,,,144,23,0,,,,, +275,26,3,8123,597,1179.214,21,32.0,F2,ppp,5,144,41,5,,,,, +275,23,3,8119,512,1179.302,,,,,,144,25,0,,,,, +275,26,3,8123,597,1179.302,,,,,,144,41,0,,,,, +275,27,3,8124,618,1179.302,22,32.0,B0,ppp,5,144,23,5,,,,, +275,28,3,8125,618,1179.302,32,32.0,C#1,ppp,5,144,25,5,,,,, +275,27,3,8124,618,1179.394,,,,,,144,23,0,,,,, +275,29,3,8126,640,1179.394,21,32.0,F1,ppp,5,144,29,5,,,,, +275,29,3,8126,640,1179.482,,,,,,144,29,0,,,,, +275,30,3,8127,661,1179.482,21,32.0,B0,ppp,5,144,23,5,,,,, +275,30,3,8127,661,1179.569,,,,,,144,23,0,,,,, +275,31,3,8128,682,1179.569,22,32.0,A2,ppp,5,144,45,5,,,,, +275,31,3,8128,682,1179.661,,,,,,144,45,0,,,,, +275,32,3,8129,704,1179.661,32,32.0,F1,ppp,5,144,29,5,,,,, +275,32,3,8129,704,1179.795,,,,,,144,29,0,,,,, +275,33,1,8130,736,1179.795,32,32.0,F5,p,11,144,77,11,,,,, +275,34,3,8131,736,1179.795,32,32.0,G1,p,11,144,31,11,,,,, +275,35,3,8132,736,1179.795,32,32.0,E2,p,11,144,40,11,,,,, +275,33,1,8130,736,1179.929,,,,,,144,77,0,,,,, +275,34,3,8131,736,1179.929,,,,,,144,31,0,,,,, +275,35,3,8132,736,1179.929,,,,,,144,40,0,,,,, +275,36,1,8133,768,1179.929,32,32.0,F5,f,20,144,77,20,,,,, +275,37,1,8134,768,1179.929,32,32.0,D#6,f,20,144,87,20,,,,, +275,38,3,8135,768,1179.929,32,32.0,G1,f,20,144,31,20,,,,, +275,39,3,8136,768,1179.929,32,32.0,E2,f,20,144,40,20,,,,, +275,28,3,8125,618,1179.967,,,,,,144,25,0,,,,, +275,36,1,8133,768,1180.063,,,,,,144,77,0,,,,, +275,37,1,8134,768,1180.063,,,,,,144,87,0,,,,, +275,38,3,8135,768,1180.063,,,,,,144,31,0,,,,, +275,39,3,8136,768,1180.063,,,,,,144,40,0,,,,, +275,40,1,8137,800,1180.063,224,8.0,F5,fff,24,144,77,23,,,,, +275,41,1,8138,800,1180.063,128,8.0,D#6,fff,24,144,87,23,,,,, +275,42,3,8139,800,1180.063,224,8.0,G1,fff,24,144,31,23,,,,, +275,43,3,8140,800,1180.063,128,8.0,B1,fff,24,144,35,23,,,,, +275,44,3,8141,800,1180.063,128,8.0,E2,fff,24,144,40,23,,,,, +275,41,1,8138,800,1180.599,,,,,,144,87,0,,,,, +275,43,3,8140,800,1180.599,,,,,,144,35,0,,,,, +275,44,3,8141,800,1180.599,,,,,,144,40,0,,,,, +275,40,1,8137,800,1181.001,,,,,,144,77,0,,,,, +275,42,3,8139,800,1181.001,,,,,,144,31,0,,,,, +275,45,0,8142,1024,1181.001,,,,,,176,64,0,,,,,^ +275,46,1,8143,1024,1181.001,,,,,,176,102,0,,,,, +275,47,3,8144,1024,1181.001,32,32.0,C#1,ppp,5,144,25,5,,,,, +275,47,3,8144,1024,1181.135,,,,,,144,25,0,,,,, +275,48,3,8145,1056,1181.135,32,32.0,A3,ppp,5,144,57,5,,,,, +275,48,3,8145,1056,1181.269,,,,,,144,57,0,,,,, +275,49,3,8146,1088,1181.269,21,32.0,B0,ppp,5,144,23,5,,,,, +275,49,3,8146,1088,1181.357,,,,,,144,23,0,,,,, +275,50,3,8147,1109,1181.357,21,32.0,F2,ppp,5,144,41,5,,,,, +275,50,3,8147,1109,1181.444,,,,,,144,41,0,,,,, +275,51,3,8148,1130,1181.444,22,32.0,B0,ppp,5,144,23,5,,,,, +275,52,3,8149,1130,1181.444,32,32.0,C#1,ppp,5,144,25,5,,,,, +275,51,3,8148,1130,1181.536,,,,,,144,23,0,,,,, +275,53,3,8150,1152,1181.536,21,32.0,F1,ppp,5,144,29,5,,,,, +275,52,3,8149,1130,1181.578,,,,,,144,25,0,,,,, +275,53,3,8150,1152,1181.624,,,,,,144,29,0,,,,, +275,54,3,8151,1173,1181.624,21,32.0,B0,ppp,5,144,23,5,,,,, +275,54,3,8151,1173,1181.712,,,,,,144,23,0,,,,, +275,55,3,8152,1194,1181.712,22,32.0,A2,ppp,5,144,45,5,,,,, +275,55,3,8152,1194,1181.804,,,,,,144,45,0,,,,, +275,56,3,8153,1216,1181.804,21,32.0,F1,ppp,5,144,29,5,,,,, +275,56,3,8153,1216,1181.892,,,,,,144,29,0,,,,, +275,57,3,8154,1237,1181.892,43,16.0,B0,ppp,5,144,23,5,,,,, +276,0,0,8155,0,1182.072,,,,,,,,,276,,,, +276,1,1,8156,0,1182.072,,,,,,176,102,0,,,,, +276,2,3,8157,0,1182.072,256,4.0,B0,,,,,,,,,, +275,57,3,8154,1237,1183.144,,,,,,144,23,0,,,,, +276,3,3,8158,,1183.144,,8.0,C#1,ppp,5,144,25,5,,,,g, +276,3,3,8158,,1183.194,,,,,,144,25,0,,,,, +276,4,3,8159,,1183.219,,8.0,D2,ppp,5,144,38,5,,,,g, +276,4,3,8159,,1183.269,,,,,,144,38,0,,,,, +276,5,3,8160,,1183.294,,8.0,C#1,ppp,5,144,25,5,,,,g, +276,5,3,8160,,1183.344,,,,,,144,25,0,,,,, +276,6,3,8161,,1183.369,,8.0,D2,ppp,5,144,38,5,,,,g, +276,6,3,8161,,1183.419,,,,,,144,38,0,,,,, +276,7,3,8162,,1183.444,,8.0,C#1,ppp,5,144,25,5,,,,g, +276,7,3,8162,,1183.494,,,,,,144,25,0,,,,, +276,8,3,8163,256,1183.519,256,4.0,A2,ppp,5,144,45,5,,,,, +276,10,1,8164,384,1184.054,38,32.0,A5,pp,8,144,81,8,,,,, +276,9,0,8165,384,1184.054,,,,,,176,64,127,,,,,V +276,10,1,8164,384,1184.213,,,,,,144,81,0,,,,, +276,11,1,8166,422,1184.213,38,32.0,E2,pp,8,144,40,8,,,,, +276,11,1,8166,422,1184.372,,,,,,144,40,0,,,,, +276,12,1,8167,460,1184.372,13,64.0,C5,pp,8,144,72,8,,,,, +276,12,1,8167,460,1184.427,,,,,,144,72,0,,,,, +276,13,1,8168,473,1184.427,13,64.0,D6,pp,8,144,86,8,,,,, +276,13,1,8168,473,1184.481,,,,,,144,86,0,,,,, +276,14,1,8169,486,1184.481,13,64.0,C5,pp,8,144,72,8,,,,, +276,14,1,8169,486,1184.536,,,,,,144,72,0,,,,, +276,15,1,8170,499,1184.536,13,64.0,D6,pp,8,144,86,8,,,,, +276,15,1,8170,499,1184.59,,,,,,144,86,0,,,,, +276,16,1,8171,512,1184.59,38,32.0,C5,pp,8,144,72,8,,,,, +276,17,3,8172,512,1184.59,,,,,,176,102,0,,,,, +276,8,3,8163,256,1184.59,,,,,,144,45,0,,,,, +276,16,1,8171,512,1184.749,,,,,,144,72,0,,,,, +276,18,1,8173,550,1184.749,38,32.0,C#4,pp,8,144,61,8,,,,, +276,18,1,8173,550,1184.908,,,,,,144,61,0,,,,, +276,19,1,8174,588,1184.908,26,32.0,C5,pp,8,144,72,8,,,,, +276,19,1,8174,588,1185.017,,,,,,144,72,0,,,,, +276,20,1,8175,614,1185.017,26,32.0,C#4,pp,8,144,61,8,,,,, +276,20,1,8175,614,1185.126,,,,,,144,61,0,,,,, +276,21,1,8176,640,1185.126,,,,,,176,102,0,,,,, +276,22,1,8177,682,1185.302,14,32.0,D7,pp,8,144,98,8,,,,, +276,22,1,8177,682,1185.36,,,,,,144,98,0,,,,, +276,23,1,8178,696,1185.36,14,32.0,G#6,pp,8,144,92,8,,,,, +276,23,1,8178,696,1185.419,,,,,,144,92,0,,,,, +276,24,1,8179,710,1185.419,14,32.0,C#5,pp,8,144,73,8,,,,, +276,24,1,8179,710,1185.477,,,,,,144,73,0,,,,, +276,25,1,8180,724,1185.477,14,32.0,E4,pp,8,144,64,8,,,,, +276,25,1,8180,724,1185.536,,,,,,144,64,0,,,,, +276,26,1,8181,738,1185.536,30,16.0,C6,pp,8,144,84,8,,,,, +276,26,1,8181,738,1185.661,,,,,,144,84,0,,,,, +276,27,1,8182,768,1185.661,21,32.0,G#6,ppp,5,144,92,5,,,,, +276,28,3,8183,768,1185.661,,,,,,176,102,0,,,,, +276,27,1,8182,768,1185.749,,,,,,144,92,0,,,,, +276,29,1,8184,789,1185.749,21,32.0,D7,ppp,5,144,98,5,,,,, +276,29,1,8184,789,1185.837,,,,,,144,98,0,,,,, +276,30,1,8185,810,1185.837,22,32.0,G#6,ppp,5,144,92,5,,,,, +276,30,1,8185,810,1185.929,,,,,,144,92,0,,,,, +276,31,1,8186,832,1185.929,21,32.0,E4,ppp,5,144,64,5,,,,, +276,31,1,8186,832,1186.017,,,,,,144,64,0,,,,, +276,32,1,8187,853,1186.017,21,32.0,G#6,ppp,5,144,92,5,,,,, +276,32,1,8187,853,1186.105,,,,,,144,92,0,,,,, +276,33,1,8188,874,1186.105,22,32.0,D7,ppp,5,144,98,5,,,,, +276,33,1,8188,874,1186.197,,,,,,144,98,0,,,,, +276,34,1,8189,896,1186.197,32,32.0,E3,ppp,5,144,52,5,,,,, +276,34,1,8189,896,1186.331,,,,,,144,52,0,,,,, +276,35,1,8190,928,1186.331,21,32.0,D7,ppp,5,144,98,5,,,,, +276,35,1,8190,928,1186.419,,,,,,144,98,0,,,,, +276,36,1,8191,949,1186.419,21,32.0,C#5,ppp,5,144,73,5,,,,, +276,36,1,8191,949,1186.507,,,,,,144,73,0,,,,, +276,37,1,8192,970,1186.507,32,32.0,C6,ppp,5,144,84,5,,,,, +276,37,1,8192,970,1186.641,,,,,,144,84,0,,,,, +276,38,1,8193,1002,1186.641,22,32.0,C#4,ppp,5,144,61,5,,,,, +276,38,1,8193,1002,1186.733,,,,,,144,61,0,,,,, +276,39,1,8194,1024,1186.733,32,32.0,D7,ppp,5,144,98,5,,,,, +276,40,3,8195,1024,1186.733,256,4.0,A4,f,20,144,69,20,,,,, +276,39,1,8194,1024,1186.867,,,,,,144,98,0,,,,, +276,41,1,8196,1056,1186.867,32,32.0,C6,ppp,5,144,84,5,,,,, +276,41,1,8196,1056,1187.001,,,,,,144,84,0,,,,, +276,42,1,8197,1088,1187.001,64,16.0,C#5,ppp,5,144,73,5,,,,, +276,42,1,8197,1088,1187.269,,,,,,144,73,0,,,,, +276,43,1,8198,1152,1187.269,,,,,,176,102,0,,,,, +276,44,0,8199,1190,1187.428,,,,,,176,64,0,,,,,^ +277,0,0,8200,0,1187.804,,,,,,,,,277,,,, +277,1,1,8201,0,1187.804,,,,,,176,102,0,,,,, +277,2,3,8202,0,1187.804,768,2.0,A4,,,,,,,,,, +277,3,1,8203,,1188.265,,8.0,E5,mf,17,144,76,17,,,,g, +277,3,1,8203,,1188.315,,,,,,144,76,0,,,,, +277,4,1,8204,128,1188.34,384,4.0,C#2,mf,17,144,37,17,,,,, +277,4,1,8204,128,1189.947,,,,,,144,37,0,,,,, +277,5,1,8205,512,1189.947,,,,,,176,102,0,,,,, +276,40,3,8195,1024,1191.019,,,,,,144,69,0,,,,, +277,6,1,8206,768,1191.019,128,8.0,F#3,f,20,144,54,20,,,,, +277,7,1,8207,768,1191.019,128,8.0,A4,f,20,144,69,20,,,,, +277,8,3,8208,,1191.019,,8.0,D3,ppp,5,144,50,5,,,,g, +277,8,3,8208,,1191.069,,,,,,144,50,0,,,,, +277,9,3,8209,,1191.094,,8.0,C#2,ppp,5,144,37,5,,,,g, +277,9,3,8209,,1191.144,,,,,,144,37,0,,,,, +277,10,3,8210,,1191.169,,8.0,D3,ppp,5,144,50,5,,,,g, +277,10,3,8210,,1191.219,,,,,,144,50,0,,,,, +277,11,3,8211,,1191.244,,8.0,C#2,ppp,5,144,37,5,,,,g, +277,11,3,8211,,1191.294,,,,,,144,37,0,,,,, +277,12,3,8212,,1191.319,,8.0,C4,ppp,5,144,60,5,,,,g, +277,12,3,8212,,1191.369,,,,,,144,60,0,,,,, +277,13,3,8213,,1191.394,,8.0,D3,ppp,5,144,50,5,,,,g, +277,13,3,8213,,1191.444,,,,,,144,50,0,,,,, +277,14,3,8214,,1191.469,,8.0,C#2,ppp,5,144,37,5,,,,g, +277,14,3,8214,,1191.519,,,,,,144,37,0,,,,, +277,15,3,8215,,1191.544,,8.0,C4,ppp,5,144,60,5,,,,g, +277,6,1,8206,768,1191.554,,,,,,144,54,0,,,,, +277,7,1,8207,768,1191.554,,,,,,144,69,0,,,,, +277,15,3,8215,,1191.594,,,,,,144,60,0,,,,, +277,16,3,8216,,1191.619,,8.0,D3,ppp,5,144,50,5,,,,g, +277,16,3,8216,,1191.669,,,,,,144,50,0,,,,, +277,17,3,8217,768,1191.694,32,32.0,E4,ppp,5,144,64,5,,,,, +277,17,3,8217,768,1191.828,,,,,,144,64,0,,,,, +277,19,3,8218,800,1191.828,224,8.0,G#1,ppp,5,144,32,5,,,,, +277,20,3,8219,800,1191.828,128,8.0,E4,ppp,5,144,64,5,,,,, +277,18,0,8220,800,1191.828,,,,,,176,64,127,,,,,V +277,21,1,8221,896,1192.229,32,32.0,C#2,f,20,144,37,20,,,,, +277,22,1,8222,896,1192.229,32,32.0,E5,f,20,144,76,20,,,,, +277,20,3,8219,800,1192.363,,,,,,144,64,0,,,,, +277,21,1,8221,896,1192.363,,,,,,144,37,0,,,,, +277,22,1,8222,896,1192.363,,,,,,144,76,0,,,,, +277,23,1,8223,928,1192.363,96,16.0,C#2,f,20,144,37,20,,,,, +277,24,1,8224,928,1192.363,64,16.0,A#2,f,20,144,46,20,,,,, +277,25,1,8225,928,1192.363,64,16.0,E5,f,20,144,76,20,,,,, +277,24,1,8224,928,1192.631,,,,,,144,46,0,,,,, +277,25,1,8225,928,1192.631,,,,,,144,76,0,,,,, +277,19,3,8218,800,1192.765,,,,,,144,32,0,,,,, +277,23,1,8223,928,1192.765,,,,,,144,37,0,,,,, +277,26,0,8226,1024,1192.765,,,,,,176,64,0,,,,,^ +277,27,1,8227,1024,1192.765,,,,,,176,102,0,,,,, +277,28,3,8228,1024,1192.765,64,16.0,F5,ff,22,144,77,22,,,,, +277,28,3,8228,1024,1193.033,,,,,,144,77,0,,,,, +277,29,3,8229,1088,1193.033,21,32.0,G1,mf+,18,144,31,18,,,,, +277,29,3,8229,1088,1193.121,,,,,,144,31,0,,,,, +277,30,3,8230,1109,1193.121,21,32.0,E2,mf,17,144,40,17,,,,, +277,30,3,8230,1109,1193.209,,,,,,144,40,0,,,,, +277,31,3,8231,1130,1193.209,22,32.0,G1,mp+,15,144,31,15,,,,, +277,31,3,8231,1130,1193.301,,,,,,144,31,0,,,,, +277,32,3,8232,1152,1193.301,21,32.0,E2,mp,14,144,40,14,,,,, +277,32,3,8232,1152,1193.389,,,,,,144,40,0,,,,, +277,33,3,8233,1173,1193.389,21,32.0,G1,mp-,13,144,31,13,,,,, +277,33,3,8233,1173,1193.477,,,,,,144,31,0,,,,, +277,34,3,8234,1194,1193.477,22,32.0,E2,p,11,144,40,11,,,,, +277,34,3,8234,1194,1193.569,,,,,,144,40,0,,,,, +277,35,3,8235,1216,1193.569,14,32.0,G1,p-,10,144,31,10,,,,, +277,35,3,8235,1216,1193.627,,,,,,144,31,0,,,,, +277,36,3,8236,1230,1193.627,14,32.0,E2,pp+,9,144,40,9,,,,, +277,36,3,8236,1230,1193.686,,,,,,144,40,0,,,,, +277,37,3,8237,1244,1193.686,14,32.0,G1,pp,8,144,31,8,,,,, +277,38,3,8238,1258,1193.744,22,32.0,G1,,,,,,,,,, +277,37,3,8237,1244,1193.836,,,,,,144,31,0,,,,, +278,0,0,8239,0,1193.836,,,,,,,,,278,,,, +278,1,1,8240,0,1193.836,,,,,,176,102,0,,,,, +278,2,3,8241,0,1193.836,384,4.0,G1,pp,8,144,31,8,,,,, +278,3,3,8242,0,1193.836,256,4.0,E2,pp,8,144,40,8,,,,, +278,4,3,8243,0,1193.836,256,4.0,F4,pp,8,144,65,8,,,,, +278,3,3,8242,0,1194.908,,,,,,144,40,0,,,,, +278,4,3,8243,0,1194.908,,,,,,144,65,0,,,,, +278,5,1,8244,256,1194.908,,,,,,176,102,0,,,,, +278,2,3,8241,0,1195.444,,,,,,144,31,0,,,,, +278,6,3,8245,384,1195.444,128,8.0,G1,pp,8,144,31,8,,,,, +278,7,3,8246,384,1195.444,128,8.0,E2,pp,8,144,40,8,,,,, +278,8,3,8247,384,1195.444,128,8.0,F3,pp,8,144,53,8,,,,, +278,9,1,8248,480,1195.845,32,32.0,F#2,ff,22,144,42,22,,,,, +278,10,1,8249,480,1195.845,32,32.0,A4,ff,22,144,69,22,,,,, +278,6,3,8245,384,1195.979,,,,,,144,31,0,,,,, +278,7,3,8246,384,1195.979,,,,,,144,40,0,,,,, +278,8,3,8247,384,1195.979,,,,,,144,53,0,,,,, +278,9,1,8248,480,1195.979,,,,,,144,42,0,,,,, +278,10,1,8249,480,1195.979,,,,,,144,69,0,,,,, +278,11,1,8250,512,1195.979,64,16.0,C2,ff,22,144,36,22,,,,, +278,12,3,8251,512,1195.979,32,32.0,C#1,pp,8,144,25,8,,,,, +278,13,3,8252,512,1195.979,32,32.0,D#3,pp,8,144,51,8,,,,, +278,12,3,8251,512,1196.113,,,,,,144,25,0,,,,, +278,13,3,8252,512,1196.113,,,,,,144,51,0,,,,, +278,14,3,8253,544,1196.113,32,32.0,B1,pp-,7,144,35,7,,,,, +278,11,1,8250,512,1196.247,,,,,,144,36,0,,,,, +278,14,3,8253,544,1196.247,,,,,,144,35,0,,,,, +278,15,1,8254,576,1196.247,,,,,,176,102,0,,,,, +278,16,3,8255,576,1196.247,32,32.0,G3,ppp+,6,144,55,6,,,,, +278,16,3,8255,576,1196.381,,,,,,144,55,0,,,,, +278,18,3,8256,608,1196.381,32,32.0,C1,ppp,5,144,24,5,,,,, +278,17,0,8257,608,1196.381,,,,,,176,64,127,,,,,V +278,18,3,8256,608,1196.515,,,,,,144,24,0,,,,, +278,19,1,8258,640,1196.515,21,32.0,D6,ppp,5,144,86,5,,,,, +278,20,3,8259,640,1196.515,,,,,,176,102,0,,,,, +278,19,1,8258,640,1196.603,,,,,,144,86,0,,,,, +278,21,1,8260,661,1196.603,21,32.0,G#5,ppp,5,144,80,5,,,,, +278,21,1,8260,661,1196.691,,,,,,144,80,0,,,,, +278,22,1,8261,682,1196.691,22,32.0,C#4,ppp+,6,144,61,6,,,,, +278,22,1,8261,682,1196.783,,,,,,144,61,0,,,,, +278,23,1,8262,704,1196.783,21,32.0,E3,ppp+,6,144,52,6,,,,, +278,23,1,8262,704,1196.871,,,,,,144,52,0,,,,, +278,24,1,8263,725,1196.871,21,32.0,C5,ppp+,6,144,72,6,,,,, +278,24,1,8263,725,1196.959,,,,,,144,72,0,,,,, +278,25,1,8264,746,1196.959,22,32.0,G#5,ppp+,6,144,80,6,,,,, +278,25,1,8264,746,1197.051,,,,,,144,80,0,,,,, +278,26,1,8265,768,1197.051,21,32.0,E3,pp-,7,144,52,7,,,,, +278,27,3,8266,768,1197.051,,,,,,176,102,0,,,,, +278,26,1,8265,768,1197.139,,,,,,144,52,0,,,,, +278,28,1,8267,789,1197.139,21,32.0,C5,pp-,7,144,72,7,,,,, +278,28,1,8267,789,1197.227,,,,,,144,72,0,,,,, +278,29,1,8268,810,1197.227,22,32.0,D6,pp-,7,144,86,7,,,,, +278,29,1,8268,810,1197.319,,,,,,144,86,0,,,,, +278,30,1,8269,832,1197.319,21,32.0,C5,pp,8,144,72,8,,,,, +278,30,1,8269,832,1197.407,,,,,,144,72,0,,,,, +278,31,1,8270,853,1197.407,21,32.0,C#4,pp,8,144,61,8,,,,, +278,31,1,8270,853,1197.494,,,,,,144,61,0,,,,, +278,32,1,8271,874,1197.494,22,32.0,E3,pp,8,144,52,8,,,,, +278,32,1,8271,874,1197.586,,,,,,144,52,0,,,,, +278,33,1,8272,896,1197.586,21,32.0,C5,pp,8,144,72,8,,,,, +278,33,1,8272,896,1197.674,,,,,,144,72,0,,,,, +278,34,1,8273,917,1197.674,21,32.0,D6,pp+,9,144,86,9,,,,, +278,34,1,8273,917,1197.762,,,,,,144,86,0,,,,, +278,35,1,8274,938,1197.762,22,32.0,G#5,pp+,9,144,80,9,,,,, +278,35,1,8274,938,1197.854,,,,,,144,80,0,,,,, +278,36,1,8275,960,1197.854,32,32.0,D6,pp+,9,144,86,9,,,,, +278,36,1,8275,960,1197.988,,,,,,144,86,0,,,,, +278,37,1,8276,992,1197.988,32,32.0,C5,p-,10,144,72,10,,,,, +278,37,1,8276,992,1198.122,,,,,,144,72,0,,,,, +278,38,1,8277,1024,1198.122,21,32.0,C#3,p-,10,144,49,10,,,,, +278,38,1,8277,1024,1198.21,,,,,,144,49,0,,,,, +278,39,1,8278,1045,1198.21,21,32.0,E2,p-,10,144,40,10,,,,, +278,39,1,8278,1045,1198.298,,,,,,144,40,0,,,,, +278,40,1,8279,1066,1198.298,22,32.0,C5,p,11,144,72,11,,,,, +278,40,1,8279,1066,1198.39,,,,,,144,72,0,,,,, +278,41,1,8280,1088,1198.39,32,32.0,G#5,p,11,144,80,11,,,,, +278,41,1,8280,1088,1198.524,,,,,,144,80,0,,,,, +278,42,1,8281,1120,1198.524,32,32.0,E2,p,11,144,40,11,,,,, +278,42,1,8281,1120,1198.658,,,,,,144,40,0,,,,, +278,43,1,8282,1152,1198.658,32,32.0,D6,p,11,144,86,11,,,,, +278,48,0,8283,1279,1198.689,,,,,,176,64,0,,,,,^ +278,43,1,8282,1152,1198.792,,,,,,144,86,0,,,,, +278,44,1,8284,1184,1198.792,32,32.0,C5,p,11,144,72,11,,,,, +278,44,1,8284,1184,1198.926,,,,,,144,72,0,,,,, +278,45,1,8285,1216,1198.926,21,32.0,C#3,p,11,144,49,11,,,,, +278,45,1,8285,1216,1199.014,,,,,,144,49,0,,,,, +278,46,1,8286,1237,1199.014,21,32.0,E2,p,11,144,40,11,,,,, +278,46,1,8286,1237,1199.102,,,,,,144,40,0,,,,, +278,47,1,8287,1258,1199.102,22,32.0,C5,p,11,144,72,11,,,,, +278,47,1,8287,1258,1199.194,,,,,,144,72,0,,,,, +279,0,0,8288,0,1199.194,,,,,,,,,279,,,, +279,1,0,8289,0,1199.194,,,,,,,,,,6000,,, +279,2,1,8290,0,1199.194,,,,,,176,102,0,,,,, +279,3,3,8291,0,1199.194,128,8.0,C2,f,20,144,36,20,,,,, +279,4,3,8292,0,1199.194,128,8.0,F#2,f,20,144,42,20,,,,, +279,5,3,8293,0,1199.194,128,8.0,A4,f,20,144,69,20,,,,, +279,6,0,8294,128,1199.229,,,,,,176,64,127,,,,,V +279,3,3,8291,0,1199.244,,,,,,144,36,0,,,,, +279,4,3,8292,0,1199.244,,,,,,144,42,0,,,,, +279,5,3,8293,0,1199.244,,,,,,144,69,0,,,,, +279,7,3,8295,128,1199.729,128,8.0,C1,pp,8,144,24,8,,,,, +279,8,3,8296,128,1199.729,128,8.0,C#1,pp,8,144,25,8,,,,, +279,9,3,8297,128,1199.729,128,8.0,B1,pp,8,144,35,8,,,,, +279,10,3,8298,128,1199.729,128,8.0,G2,pp,8,144,43,8,,,,, +279,7,3,8295,128,1200.265,,,,,,144,24,0,,,,, +279,8,3,8296,128,1200.265,,,,,,144,25,0,,,,, +279,9,3,8297,128,1200.265,,,,,,144,35,0,,,,, +279,10,3,8298,128,1200.265,,,,,,144,43,0,,,,, +279,11,3,8299,256,1200.265,,,,,,176,102,0,,,,, +279,12,0,8300,768,1202.408,,,,,,176,64,0,,,,,^ +279,13,1,8301,768,1202.408,32,32.0,E5,p,11,144,76,11,,,,, +279,14,3,8302,768,1202.408,32,32.0,C#2,p,11,144,37,11,,,,, +279,15,3,8303,768,1202.408,32,32.0,A#2,p,11,144,46,11,,,,, +279,13,1,8301,768,1202.542,,,,,,144,76,0,,,,, +279,14,3,8302,768,1202.542,,,,,,144,37,0,,,,, +279,15,3,8303,768,1202.542,,,,,,144,46,0,,,,, +279,16,1,8304,800,1202.542,96,16.0,E5,mp+,15,144,76,15,,,,, +279,17,3,8305,800,1202.542,96,16.0,C#2,mp-,13,144,37,13,,,,, +279,18,3,8306,800,1202.542,64,16.0,A#2,mp-,13,144,46,13,,,,, +279,18,3,8306,800,1202.81,,,,,,144,46,0,,,,, +279,16,1,8304,800,1202.944,,,,,,144,76,0,,,,, +279,17,3,8305,800,1202.944,,,,,,144,37,0,,,,, +279,19,1,8307,896,1202.944,96,16.0,G#3,f,20,144,56,20,,,,, +279,20,3,8308,896,1202.944,128,8.0,C#2,f,20,144,37,20,,,,, +279,21,3,8309,896,1202.944,128,8.0,A#2,f,20,144,46,20,,,,, +279,19,1,8307,896,1203.345,,,,,,144,56,0,,,,, +279,22,1,8310,992,1203.345,32,32.0,C5,mp+,15,144,72,15,,,,, +279,20,3,8308,896,1203.479,,,,,,144,37,0,,,,, +279,21,3,8309,896,1203.479,,,,,,144,46,0,,,,, +279,22,1,8310,992,1203.479,,,,,,144,72,0,,,,, +279,23,1,8311,1024,1203.479,,,,,,176,102,0,,,,, +279,24,3,8312,1024,1203.479,64,16.0,F4,p,11,144,65,11,,,,, +279,24,3,8312,1024,1203.747,,,,,,144,65,0,,,,, +279,26,3,8313,1088,1203.747,21,32.0,G1,p-,10,144,31,10,,,,, +279,25,0,8314,1088,1203.747,,,,,,176,64,127,,,,,V +279,26,3,8313,1088,1203.835,,,,,,144,31,0,,,,, +279,27,3,8315,1109,1203.835,21,32.0,E2,p-,10,144,40,10,,,,, +279,27,3,8315,1109,1203.923,,,,,,144,40,0,,,,, +279,28,3,8316,1130,1203.923,22,32.0,G1,p-,10,144,31,10,,,,, +279,28,3,8316,1130,1204.015,,,,,,144,31,0,,,,, +279,29,3,8317,1152,1204.015,21,32.0,E2,pp+,9,144,40,9,,,,, +279,29,3,8317,1152,1204.103,,,,,,144,40,0,,,,, +279,30,3,8318,1173,1204.103,21,32.0,G1,pp+,9,144,31,9,,,,, +279,30,3,8318,1173,1204.191,,,,,,144,31,0,,,,, +279,31,3,8319,1194,1204.191,22,32.0,E2,pp+,9,144,40,9,,,,, +279,31,3,8319,1194,1204.283,,,,,,144,40,0,,,,, +279,32,3,8320,1216,1204.283,14,32.0,G1,pp,8,144,31,8,,,,, +279,32,3,8320,1216,1204.342,,,,,,144,31,0,,,,, +279,33,3,8321,1230,1204.342,14,32.0,E2,pp,8,144,40,8,,,,, +279,33,3,8321,1230,1204.4,,,,,,144,40,0,,,,, +279,34,3,8322,1244,1204.4,14,32.0,G1,pp,8,144,31,8,,,,, +279,35,3,8323,1258,1204.459,22,32.0,G1,,,,,,,,,, +280,0,0,8324,0,1204.551,,,,,,,,,280,,,, +280,1,1,8325,0,1204.551,,,,,,176,102,0,,,,, +280,2,3,8326,0,1204.551,384,4.0,G1,pp,8,144,31,8,,,,, +280,3,3,8327,0,1204.551,256,4.0,E2,pp,8,144,40,8,,,,, +280,4,3,8328,0,1204.551,256,4.0,F3,pp,8,144,53,8,,,,, +279,34,3,8322,1244,1204.926,,,,,,144,31,0,,,,, +280,3,3,8327,0,1205.622,,,,,,144,40,0,,,,, +280,4,3,8328,0,1205.622,,,,,,144,53,0,,,,, +280,5,0,8329,384,1206.096,,,,,,176,64,0,,,,,^ +280,2,3,8326,0,1206.158,,,,,,144,31,0,,,,, +280,6,3,8330,384,1206.158,42,16.0,G1,pp,8,144,31,8,,,,, +280,7,3,8331,384,1206.158,64,16.0,E2,pp,8,144,40,8,,,,, +280,8,3,8332,384,1206.158,64,16.0,F2,pp,8,144,41,8,,,,, +280,6,3,8330,384,1206.334,,,,,,144,31,0,,,,, +280,10,3,8333,426,1206.334,28,16.0,F4,pp,8,144,65,8,,,,, +280,9,0,8334,426,1206.396,,,,,,176,64,127,,,,,V +280,7,3,8331,384,1206.426,,,,,,144,40,0,,,,, +280,8,3,8332,384,1206.426,,,,,,144,41,0,,,,, +280,10,3,8333,426,1206.451,,,,,,144,65,0,,,,, +280,11,3,8335,454,1206.451,28,16.0,G2,pp,8,144,43,8,,,,, +280,11,3,8335,454,1206.568,,,,,,144,43,0,,,,, +280,12,3,8336,482,1206.568,30,16.0,E3,pp,8,144,52,8,,,,, +280,12,3,8336,482,1206.694,,,,,,144,52,0,,,,, +280,13,3,8337,512,1206.694,256,4.0,D#5,pp,8,144,75,8,,,,, +280,14,1,8338,512,1206.694,,,,,,176,102,0,,,,, +280,15,1,8339,736,1207.631,32,32.0,D#4,pp,8,144,63,8,,,,, +280,16,1,8340,736,1207.631,32,32.0,G#5,f,20,144,80,20,,,,, +280,15,1,8339,736,1207.765,,,,,,144,63,0,,,,, +280,16,1,8340,736,1207.765,,,,,,144,80,0,,,,, +280,17,0,8341,768,1207.765,,,,,,176,64,0,,,,,^ +280,18,3,8342,768,1207.765,256,4.0,D#5,,,,,,,,,, +280,19,1,8343,768,1207.765,256,4.0,B3,p,11,144,59,11,,,,, +280,20,1,8344,768,1207.765,256,4.0,D#4,p,11,144,63,11,,,,, +280,21,1,8345,768,1207.765,256,4.0,G#5,p,11,144,80,11,,,,, +280,13,3,8337,512,1208.836,,,,,,144,75,0,,,,, +280,19,1,8343,768,1208.836,,,,,,144,59,0,,,,, +280,20,1,8344,768,1208.836,,,,,,144,63,0,,,,, +280,21,1,8345,768,1208.836,,,,,,144,80,0,,,,, +280,22,3,8346,1024,1208.836,,,,,,176,102,0,,,,, +280,23,1,8347,1024,1208.836,25,32.0,G#6,pp,8,144,92,8,,,,, +280,23,1,8347,1024,1208.941,,,,,,144,92,0,,,,, +280,25,1,8348,1049,1208.941,13,64.0,G#6,pp,8,144,92,8,,,,, +280,24,0,8349,1049,1208.941,,,,,,176,64,127,,,,,V +280,25,1,8348,1049,1208.996,,,,,,144,92,0,,,,, +280,26,1,8350,1062,1208.996,13,64.0,D7,pp,8,144,98,8,,,,, +280,26,1,8350,1062,1209.05,,,,,,144,98,0,,,,, +280,27,1,8351,1075,1209.05,13,64.0,G#6,pp,8,144,92,8,,,,, +280,27,1,8351,1075,1209.104,,,,,,144,92,0,,,,, +280,28,1,8352,1088,1209.104,12,64.0,E2,pp+,9,144,40,9,,,,, +280,28,1,8352,1088,1209.155,,,,,,144,40,0,,,,, +280,29,1,8353,1100,1209.155,13,64.0,G#5,pp+,9,144,80,9,,,,, +280,29,1,8353,1100,1209.209,,,,,,144,80,0,,,,, +280,30,1,8354,1113,1209.209,13,64.0,D6,pp+,9,144,86,9,,,,, +280,30,1,8354,1113,1209.263,,,,,,144,86,0,,,,, +280,31,1,8355,1126,1209.263,13,64.0,E3,pp+,9,144,52,9,,,,, +280,31,1,8355,1126,1209.318,,,,,,144,52,0,,,,, +280,32,1,8356,1139,1209.318,13,64.0,C#4,pp+,9,144,61,9,,,,, +280,32,1,8356,1139,1209.372,,,,,,144,61,0,,,,, +280,33,1,8357,1152,1209.372,21,32.0,C5,p-,10,144,72,10,,,,, +280,34,3,8358,1152,1209.372,,,,,,176,102,0,,,,, +280,33,1,8357,1152,1209.46,,,,,,144,72,0,,,,, +280,35,1,8359,1173,1209.46,21,32.0,C#4,p-,10,144,61,10,,,,, +280,35,1,8359,1173,1209.548,,,,,,144,61,0,,,,, +280,36,1,8360,1194,1209.548,22,32.0,G#5,p-,10,144,80,10,,,,, +280,38,0,8361,1216,1209.624,,,,,,176,64,0,,,,,^ +280,36,1,8360,1194,1209.64,,,,,,144,80,0,,,,, +280,37,1,8362,1216,1209.64,21,32.0,E3,p,11,144,52,11,,,,, +280,37,1,8362,1216,1209.728,,,,,,144,52,0,,,,, +280,39,1,8363,1237,1209.728,21,32.0,D6,p,11,144,86,11,,,,, +280,39,1,8363,1237,1209.816,,,,,,144,86,0,,,,, +280,40,1,8364,1258,1209.816,22,32.0,C5,p,11,144,72,11,,,,, +280,40,1,8364,1258,1209.908,,,,,,144,72,0,,,,, +281,0,0,8365,0,1209.908,,,,,,,,,281,,,, +281,2,1,8366,0,1209.908,,,,,,176,102,0,,,,, +281,3,3,8367,0,1209.908,12,64.0,E2,p+,12,144,40,12,,,,, +281,1,0,8368,0,1209.924,,,,,,176,64,127,,,,,V +281,3,3,8367,0,1209.958,,,,,,144,40,0,,,,, +281,4,3,8369,12,1209.958,13,64.0,C#3,p+,12,144,49,12,,,,, +281,4,3,8369,12,1210.013,,,,,,144,49,0,,,,, +281,5,3,8370,25,1210.013,13,64.0,C4,p+,12,144,60,12,,,,, +281,5,3,8370,25,1210.067,,,,,,144,60,0,,,,, +281,6,3,8371,38,1210.067,13,64.0,G#4,p+,12,144,68,12,,,,, +281,6,3,8371,38,1210.121,,,,,,144,68,0,,,,, +281,7,3,8372,51,1210.121,13,64.0,D5,mp-,13,144,74,13,,,,, +281,7,3,8372,51,1210.176,,,,,,144,74,0,,,,, +281,8,3,8373,64,1210.176,32,32.0,G#4,mp-,13,144,68,13,,,,, +281,8,3,8373,64,1210.31,,,,,,144,68,0,,,,, +281,9,3,8374,96,1210.31,21,32.0,E2,mp-,13,144,40,13,,,,, +281,9,3,8374,96,1210.398,,,,,,144,40,0,,,,, +281,10,3,8375,117,1210.398,21,32.0,C#3,mp,14,144,49,14,,,,, +281,10,3,8375,117,1210.485,,,,,,144,49,0,,,,, +281,11,3,8376,138,1210.485,32,32.0,C4,mp,14,144,60,14,,,,, +281,11,3,8376,138,1210.619,,,,,,144,60,0,,,,, +281,12,3,8377,170,1210.619,22,32.0,C#3,mp,14,144,49,14,,,,, +281,12,3,8377,170,1210.711,,,,,,144,49,0,,,,, +281,13,3,8378,192,1210.711,,,,,,176,102,0,,,,, +281,14,3,8379,256,1210.979,512,2.0,C1,pp,8,144,24,8,,,,, +281,15,3,8380,256,1210.979,512,2.0,C#1,pp,8,144,25,8,,,,, +281,16,3,8381,256,1210.979,512,2.0,B1,pp,8,144,35,8,,,,, +281,17,3,8382,256,1210.979,512,2.0,G3,pp,8,144,55,8,,,,, +281,18,0,8383,767,1213.118,,,,,,176,64,0,,,,,^ +281,19,1,8384,768,1213.122,32,32.0,E4,fff,24,144,64,23,,,,, +281,20,1,8385,768,1213.122,32,32.0,A4,fff,24,144,69,23,,,,, +281,21,3,8386,768,1213.122,32,32.0,C2,fff,24,144,36,23,,,,, +281,22,3,8387,768,1213.122,32,32.0,F#2,fff,24,144,42,23,,,,, +281,19,1,8384,768,1213.256,,,,,,144,64,0,,,,, +281,20,1,8385,768,1213.256,,,,,,144,69,0,,,,, +281,21,3,8386,768,1213.256,,,,,,144,36,0,,,,, +281,22,3,8387,768,1213.256,,,,,,144,42,0,,,,, +281,23,1,8388,800,1213.256,96,16.0,E4,pp,8,144,64,8,,,,, +281,24,1,8389,800,1213.256,64,16.0,G#4,pp,8,144,68,8,,,,, +281,25,1,8390,800,1213.256,64,16.0,A4,pp,8,144,69,8,,,,, +281,26,3,8391,800,1213.256,96,16.0,C2,pp,8,144,36,8,,,,, +281,27,3,8392,800,1213.256,64,16.0,F#2,pp,8,144,42,8,,,,, +281,28,0,8393,845,1213.444,,,,,,176,64,127,,,,,V +281,24,1,8389,800,1213.524,,,,,,144,68,0,,,,, +281,25,1,8390,800,1213.524,,,,,,144,69,0,,,,, +281,27,3,8392,800,1213.524,,,,,,144,42,0,,,,, +281,29,1,8394,896,1213.658,,,,,,176,102,0,,,,, +281,30,3,8395,896,1213.658,,,,,,176,102,0,,,,, +281,23,1,8388,800,1213.658,,,,,,144,64,0,,,,, +281,26,3,8391,800,1213.658,,,,,,144,36,0,,,,, +281,14,3,8379,256,1213.797,,,,,,144,24,0,,,,, +281,15,3,8380,256,1213.797,,,,,,144,25,0,,,,, +281,16,3,8381,256,1213.797,,,,,,144,35,0,,,,, +281,17,3,8382,256,1213.797,,,,,,144,55,0,,,,, +281,31,1,8396,1024,1214.194,,,,,,176,102,0,,,,, +281,32,3,8397,1024,1214.194,,,,,,176,102,0,,,,, +282,0,0,8398,0,1215.265,,,,,,,,,282,,,, +282,1,1,8399,0,1215.265,,,,,,176,102,0,,,,, +282,2,3,8400,0,1215.265,,,,,,176,102,0,,,,, +282,3,4,8401,0,1215.265,,,,,,176,102,0,,,,, +282,5,1,8402,256,1216.336,,,,,,176,102,0,,,,, +282,4,1,8403,,1216.336,,8.0,F#5,pp,8,144,78,8,,,,g, +282,6,3,8404,,1216.336,,8.0,C#1,pp,8,144,25,8,,,,g, +282,4,1,8403,,1216.386,,,,,,144,78,0,,,,, +282,6,3,8404,,1216.386,,,,,,144,25,0,,,,, +282,7,3,8405,,1216.411,,8.0,D2,pp,8,144,38,8,,,,g, +282,7,3,8405,,1216.461,,,,,,144,38,0,,,,, +282,8,3,8406,,1216.486,,8.0,C#1,pp,8,144,25,8,,,,g, +282,8,3,8406,,1216.536,,,,,,144,25,0,,,,, +282,9,3,8407,,1216.561,,8.0,D2,pp,8,144,38,8,,,,g, +282,9,3,8407,,1216.611,,,,,,144,38,0,,,,, +282,10,3,8408,,1216.636,,8.0,C#1,pp,8,144,25,8,,,,g, +282,10,3,8408,,1216.686,,,,,,144,25,0,,,,, +282,11,3,8409,256,1216.786,256,4.0,F1,pp,8,144,29,8,,,,, +282,12,3,8410,256,1216.786,256,4.0,A2,pp,8,144,45,8,,,,, +282,13,3,8411,256,1216.786,256,4.0,E3,pp,8,144,52,8,,,,, +282,14,4,8412,256,1216.786,,,,,,176,102,0,,,,, +282,15,1,8413,277,1216.874,21,32.0,C5,mp,14,144,72,14,,,,, +282,15,1,8413,277,1216.962,,,,,,144,72,0,,,,, +282,16,1,8414,298,1216.962,22,32.0,G#3,mp,14,144,56,14,,,,, +282,16,1,8414,298,1217.054,,,,,,144,56,0,,,,, +282,17,1,8415,320,1217.054,21,32.0,F5,mp,14,144,77,14,,,,, +282,17,1,8415,320,1217.142,,,,,,144,77,0,,,,, +282,18,1,8416,341,1217.142,21,32.0,G#3,mp,14,144,56,14,,,,, +282,18,1,8416,341,1217.23,,,,,,144,56,0,,,,, +282,19,1,8417,362,1217.23,22,32.0,F5,mp,14,144,77,14,,,,, +282,19,1,8417,362,1217.322,,,,,,144,77,0,,,,, +282,20,0,8418,384,1217.322,,,,,,176,64,0,,,,,^ +282,21,1,8419,384,1217.322,,,,,,176,102,0,,,,, +282,11,3,8409,256,1217.858,,,,,,144,29,0,,,,, +282,22,1,8420,512,1217.858,768,2.0,E4,ppp,5,144,64,5,,,,, +282,23,1,8421,512,1217.858,512,2.0,G#4,ppp,5,144,68,5,,,,, +282,24,1,8422,512,1217.858,512,2.0,A4,ppp,5,144,69,5,,,,, +282,25,3,8423,512,1217.858,768,2.0,F#2,ppp,5,144,42,5,,,,, +282,26,4,8424,512,1217.858,32,32.0,F1,pp,8,144,29,8,,,,, +282,12,3,8410,256,1217.858,,,,,,144,45,0,,,,, +282,13,3,8411,256,1217.858,,,,,,144,52,0,,,,, +282,27,0,8425,522,1217.9,,,,,,176,64,127,,,,,V +282,26,4,8424,512,1217.992,,,,,,144,29,0,,,,, +282,28,4,8426,544,1217.992,224,8.0,B0,pp,8,144,23,8,,,,, +282,29,4,8427,544,1217.992,128,8.0,F1,pp,8,144,29,8,,,,, +282,29,4,8427,544,1218.528,,,,,,144,29,0,,,,, +282,28,4,8426,544,1218.929,,,,,,144,23,0,,,,, +282,30,4,8428,768,1218.929,,,,,,176,102,0,,,,, +282,23,1,8421,512,1220.001,,,,,,144,68,0,,,,, +282,24,1,8422,512,1220.001,,,,,,144,69,0,,,,, +283,1,0,8429,0,1220.922,,,,,,176,64,0,,,,,^ +282,22,1,8420,512,1221.072,,,,,,144,64,0,,,,, +283,0,0,8430,0,1221.072,,,,,,,,,283,,,, +283,3,1,8431,0,1221.072,512,2.0,E4,pp,8,144,64,8,,,,, +283,4,1,8432,0,1221.072,512,2.0,G#4,pp,8,144,68,8,,,,, +283,5,3,8433,0,1221.072,256,4.0,B0,pp,8,144,23,8,,,,, +283,6,3,8434,0,1221.072,256,4.0,F1,pp,8,144,29,8,,,,, +283,7,3,8435,0,1221.072,256,4.0,C2,pp,8,144,36,8,,,,, +282,25,3,8423,512,1221.072,,,,,,144,42,0,,,,, +283,2,0,8436,0,1221.222,,,,,,176,64,127,,,,,V +283,8,0,8437,256,1222.144,,,,,,176,64,0,,,,,^ +283,9,3,8438,256,1222.144,256,4.0,B0,,,,,,,,,, +283,10,3,8439,256,1222.144,256,4.0,F1,,,,,,,,,, +283,11,3,8440,256,1222.144,256,4.0,C2,,,,,,,,,, +283,3,1,8431,0,1223.215,,,,,,144,64,0,,,,, +283,4,1,8432,0,1223.215,,,,,,144,68,0,,,,, +283,5,3,8433,0,1223.215,,,,,,144,23,0,,,,, +283,6,3,8434,0,1223.215,,,,,,144,29,0,,,,, +283,7,3,8435,0,1223.215,,,,,,144,36,0,,,,, +283,13,1,8441,512,1223.215,,,,,,176,102,0,,,,, +283,14,3,8442,512,1223.215,32,32.0,F1,ppp,5,144,29,5,,,,, +283,12,0,8443,512,1223.215,,,,,,176,64,127,,,,,V +283,14,3,8442,512,1223.349,,,,,,144,29,0,,,,, +283,15,3,8444,544,1223.349,224,8.0,B0,ppp,5,144,23,5,,,,, +283,16,0,8445,768,1224.286,,,,,,176,64,0,,,,,^ +283,17,1,8446,768,1224.286,,,,,,176,102,0,,,,, +283,18,3,8447,768,1224.286,512,2.0,B0,,,,,,,,,, +283,19,3,8448,1280,1226.429,256,4.0,B0,,,,,,,,,, +283,15,3,8444,544,1227.501,,,,,,144,23,0,,,,, +283,20,3,8449,1536,1227.501,,,,,,176,102,0,,,,, +284,0,0,8450,0,1228.572,,,,,,,,,284,,,, +284,1,0,8451,0,1228.572,,,,,,,,,,,56,, +284,2,0,8452,0,1228.572,,,,,,,,,,6001,,, +284,3,1,8453,0,1228.572,1024,1.0,B3,fff,24,144,59,23,,,,, +284,4,1,8454,0,1228.572,1024,1.0,D#4,fff,24,144,63,23,,,,, +284,5,1,8455,0,1228.572,1024,1.0,G#5,fff,24,144,80,23,,,,, +284,6,3,8456,0,1228.572,,,,,,176,102,0,,,,, +284,7,3,8457,128,1229.108,,,,,,176,102,0,,,,, +284,8,0,8458,180,1229.326,,,,,,176,64,127,,,,,V +284,9,3,8459,256,1229.644,,,,,,176,102,0,,,,, +284,10,1,8460,1024,1232.858,256,4.0,B3,,,,,,,,,, +284,11,1,8461,1024,1232.858,256,4.0,D#4,,,,,,,,,, +284,12,1,8462,1024,1232.858,256,4.0,G#5,,,,,,,,,, +284,13,3,8463,1024,1232.858,28,16.0,E4,ppp,5,144,64,5,,,,, +284,13,3,8463,1024,1232.975,,,,,,144,64,0,,,,, +284,14,3,8464,1052,1232.975,14,32.0,G#3,pp,8,144,56,8,,,,, +284,14,3,8464,1052,1233.034,,,,,,144,56,0,,,,, +284,15,3,8465,1066,1233.034,14,32.0,E4,p-,10,144,64,10,,,,, +284,15,3,8465,1066,1233.092,,,,,,144,64,0,,,,, +284,16,3,8466,1080,1233.092,14,32.0,G#3,p,11,144,56,11,,,,, +284,16,3,8466,1080,1233.151,,,,,,144,56,0,,,,, +284,17,3,8467,1094,1233.151,15,32.0,C#2,mp-,13,144,37,13,,,,, +284,17,3,8467,1094,1233.214,,,,,,144,37,0,,,,, +284,18,3,8468,1109,1233.214,14,32.0,C4,mp,14,144,60,14,,,,, +284,18,3,8468,1109,1233.272,,,,,,144,60,0,,,,, +284,19,3,8469,1123,1233.272,14,32.0,G#3,mf-,16,144,56,16,,,,, +284,19,3,8469,1123,1233.331,,,,,,144,56,0,,,,, +284,20,3,8470,1137,1233.331,15,32.0,C#2,mf+,18,144,37,18,,,,, +284,20,3,8470,1137,1233.394,,,,,,144,37,0,,,,, +284,21,3,8471,1152,1233.394,14,32.0,A#2,f-,19,144,46,19,,,,, +284,21,3,8471,1152,1233.452,,,,,,144,46,0,,,,, +284,22,3,8472,1166,1233.452,14,32.0,C4,f+,21,144,60,21,,,,, +284,22,3,8472,1166,1233.511,,,,,,144,60,0,,,,, +284,23,3,8473,1180,1233.511,14,32.0,A#2,ff,22,144,46,22,,,,, +284,23,3,8473,1180,1233.569,,,,,,144,46,0,,,,, +284,24,3,8474,1194,1233.569,64,16.0,C#1,fff,24,144,25,23,,,,, +284,26,0,8475,1279,1233.777,,,,,,176,64,0,,,,,^ +284,24,3,8474,1194,1233.837,,,,,,144,25,0,,,,, +284,25,3,8476,1258,1233.837,22,32.0,C#1,fff,24,144,25,23,,,,, +284,25,3,8476,1258,1233.929,,,,,,144,25,0,,,,, +285,0,0,8477,0,1233.929,,,,,,,,,285,,,, +285,2,1,8478,0,1233.929,1024,1.0,B3,,,,,,,,,, +285,3,1,8479,0,1233.929,1024,1.0,D#4,,,,,,,,,, +285,4,1,8480,0,1233.929,1024,1.0,G#5,,,,,,,,,, +285,5,2,8481,0,1233.929,,,,,,176,102,0,,,,, +285,6,3,8482,0,1233.929,298,4.0,C#1,ff+,23,144,25,23,,,,, +285,7,3,8483,0,1233.929,256,4.0,A#1,ff+,23,144,34,23,,,,, +285,1,0,8484,0,1234.077,,,,,,176,64,127,,,,,V +285,7,3,8483,0,1235.001,,,,,,144,34,0,,,,, +285,6,3,8482,0,1235.177,,,,,,144,25,0,,,,, +285,8,3,8485,298,1235.177,43,16.0,C#1,mp-,13,144,25,13,,,,, +285,9,3,8486,298,1235.177,64,16.0,A#1,mp-,13,144,34,13,,,,, +285,8,3,8485,298,1235.357,,,,,,144,25,0,,,,, +285,9,3,8486,298,1235.357,,,,,,144,34,0,,,,, +285,10,2,8487,341,1235.357,128,8.0,E5,p,11,144,76,11,,,,, +285,11,3,8488,341,1235.357,171,4.0,C#1,p,11,144,25,11,,,,, +285,12,3,8489,341,1235.357,256,4.0,A#1,p,11,144,34,11,,,,, +285,13,2,8490,469,1235.892,21,32.0,E5,,,,,,,,,, +285,10,2,8487,341,1235.98,,,,,,144,76,0,,,,, +285,14,2,8491,490,1235.98,22,32.0,E5,ppp+,6,144,76,6,,,,, +285,11,3,8488,341,1236.072,,,,,,144,25,0,,,,, +285,12,3,8489,341,1236.072,,,,,,144,34,0,,,,, +285,14,2,8491,490,1236.072,,,,,,144,76,0,,,,, +285,15,2,8492,512,1236.072,21,32.0,G#3,ppp,5,144,56,5,,,,, +285,16,3,8493,512,1236.072,170,4.0,C#1,ppp,5,144,25,5,,,,, +285,17,3,8494,512,1236.072,256,4.0,A#1,ppp,5,144,34,5,,,,, +285,15,2,8492,512,1236.16,,,,,,144,56,0,,,,, +285,18,2,8495,533,1236.16,64,16.0,C5,ppp,5,144,72,5,,,,, +285,19,2,8496,597,1236.428,85,8.0,C5,,,,,,,,,, +285,16,3,8493,512,1236.784,,,,,,144,25,0,,,,, +285,18,2,8495,533,1236.784,,,,,,144,72,0,,,,, +285,20,0,8497,682,1236.784,,,,,,176,64,0,,,,,^ +285,21,2,8498,682,1236.784,,,,,,176,102,0,,,,, +285,22,3,8499,682,1236.784,,,,,,176,102,0,,,,, +285,23,2,8500,768,1237.144,,,,,,176,102,0,,,,, +285,24,3,8501,768,1237.144,,,,,,176,102,0,,,,, +285,17,3,8494,512,1237.144,,,,,,144,34,0,,,,, +285,25,1,8502,1024,1238.215,256,4.0,B3,,,,,,,,,, +285,26,1,8503,1024,1238.215,256,4.0,D#4,,,,,,,,,, +285,27,1,8504,1024,1238.215,256,4.0,G#5,,,,,,,,,, +286,0,0,8505,0,1239.286,,,,,,,,,286,,,, +286,1,1,8506,0,1239.286,256,4.0,B3,,,,,,,,,, +286,2,1,8507,0,1239.286,256,4.0,D#4,,,,,,,,,, +286,3,1,8508,0,1239.286,256,4.0,G#5,,,,,,,,,, +286,4,3,8509,0,1239.286,,,,,,176,102,0,,,,, +286,5,4,8510,0,1239.286,,,,,,176,102,0,,,,, +286,6,1,8511,256,1240.358,64,16.0,B3,p,11,144,59,11,,,,, +286,7,1,8512,256,1240.358,64,16.0,G#5,p,11,144,80,11,,,,, +286,8,3,8513,256,1240.358,64,16.0,G2,f,20,144,43,20,,,,, +286,6,1,8511,256,1240.626,,,,,,144,59,0,,,,, +286,7,1,8512,256,1240.626,,,,,,144,80,0,,,,, +286,8,3,8513,256,1240.626,,,,,,144,43,0,,,,, +286,9,1,8514,320,1240.626,,,,,,176,102,0,,,,, +286,10,3,8515,320,1240.626,64,16.0,A0,f,20,144,21,20,,,,, +284,3,1,8453,0,1240.808,,,,,,144,59,0,,,,, +284,4,1,8454,0,1240.808,,,,,,144,63,0,,,,, +284,5,1,8455,0,1240.808,,,,,,144,80,0,,,,, +286,10,3,8515,320,1240.894,,,,,,144,21,0,,,,, +286,11,1,8516,,1240.894,,8.0,D7,p,11,144,98,11,,,,g, +286,11,1,8516,,1240.944,,,,,,144,98,0,,,,, +286,12,1,8517,384,1240.969,128,8.0,G#6,p,11,144,92,11,,,,, +286,13,3,8518,384,1240.969,25,32.0,D#3,mf,17,144,51,17,,,,, +286,13,3,8518,384,1241.073,,,,,,144,51,0,,,,, +286,14,3,8519,409,1241.073,26,32.0,B2,mf,17,144,47,17,,,,, +286,14,3,8519,409,1241.182,,,,,,144,47,0,,,,, +286,15,3,8520,435,1241.182,25,32.0,G#3,mf-,16,144,56,16,,,,, +286,19,1,8521,,1241.279,,8.0,A#6,pp,8,144,94,8,,,,g, +286,15,3,8520,435,1241.287,,,,,,144,56,0,,,,, +286,16,3,8522,460,1241.287,26,32.0,D#3,mf-,16,144,51,16,,,,, +286,19,1,8521,,1241.329,,,,,,144,94,0,,,,, +286,12,1,8517,384,1241.354,,,,,,144,92,0,,,,, +286,20,1,8523,,1241.354,,8.0,G#6,pp,8,144,92,8,,,,g, +286,16,3,8522,460,1241.396,,,,,,144,51,0,,,,, +286,17,3,8524,486,1241.396,26,32.0,G#3,mp+,15,144,56,15,,,,, +286,21,1,8525,,1241.429,,8.0,F#5,pp,8,144,78,8,,,,g, +286,21,1,8525,,1241.479,,,,,,144,78,0,,,,, +286,20,1,8523,,1241.504,,,,,,144,92,0,,,,, +286,17,3,8524,486,1241.504,,,,,,144,56,0,,,,, +286,22,1,8526,512,1241.504,384,4.0,D6,pp,8,144,86,8,,,,, +286,23,4,8527,512,1241.504,384,4.0,A2,f,20,144,45,20,,,,, +286,24,3,8528,512,1241.504,38,32.0,D#3,mp+,15,144,51,15,,,,, +286,18,0,8529,512,1241.504,,,,,,176,64,127,,,,,V +286,24,3,8528,512,1241.663,,,,,,144,51,0,,,,, +286,25,3,8530,550,1241.663,38,32.0,G#3,mp,14,144,56,14,,,,, +286,25,3,8530,550,1241.822,,,,,,144,56,0,,,,, +286,26,3,8531,588,1241.822,26,32.0,B2,mp-,13,144,47,13,,,,, +286,26,3,8531,588,1241.931,,,,,,144,47,0,,,,, +286,27,3,8532,614,1241.931,26,32.0,G#3,mp-,13,144,56,13,,,,, +286,27,3,8532,614,1242.04,,,,,,144,56,0,,,,, +286,28,3,8533,640,1242.04,28,32.0,A1,p+,12,144,33,12,,,,, +286,28,3,8533,640,1242.157,,,,,,144,33,0,,,,, +286,29,3,8534,668,1242.157,28,32.0,G2,p+,12,144,43,12,,,,, +286,29,3,8534,668,1242.274,,,,,,144,43,0,,,,, +286,30,3,8535,696,1242.274,29,32.0,A1,p,11,144,33,11,,,,, +286,30,3,8535,696,1242.396,,,,,,144,33,0,,,,, +286,31,3,8536,725,1242.396,43,32.0,G2,p,11,144,43,11,,,,, +286,31,3,8536,725,1242.576,,,,,,144,43,0,,,,, +286,32,3,8537,768,1242.576,25,32.0,A1,p-,10,144,33,10,,,,, +286,32,3,8537,768,1242.68,,,,,,144,33,0,,,,, +286,33,3,8538,793,1242.68,26,32.0,G2,pp+,9,144,43,9,,,,, +286,33,3,8538,793,1242.789,,,,,,144,43,0,,,,, +286,34,3,8539,819,1242.789,25,32.0,B2,pp+,9,144,47,9,,,,, +286,34,3,8539,819,1242.894,,,,,,144,47,0,,,,, +286,35,3,8540,844,1242.894,26,32.0,G#3,pp,8,144,56,8,,,,, +286,35,3,8540,844,1243.003,,,,,,144,56,0,,,,, +286,36,3,8541,870,1243.003,26,32.0,A1,pp,8,144,33,8,,,,, +286,22,1,8526,512,1243.111,,,,,,144,86,0,,,,, +286,23,4,8527,512,1243.111,,,,,,144,45,0,,,,, +286,36,3,8541,870,1243.111,,,,,,144,33,0,,,,, +286,38,0,8542,896,1243.111,,,,,,176,64,0,,,,,^ +286,37,3,8543,896,1243.111,38,32.0,G2,pp-,7,144,43,7,,,,, +286,39,1,8544,896,1243.111,,,,,,176,102,0,,,,, +286,40,4,8545,896,1243.111,,,,,,176,102,0,,,,, +286,37,3,8543,896,1243.271,,,,,,144,43,0,,,,, +286,41,3,8546,934,1243.271,26,32.0,A0,pp-,7,144,21,7,,,,, +286,41,3,8546,934,1243.379,,,,,,144,21,0,,,,, +286,42,3,8547,960,1243.379,25,32.0,G1,ppp+,6,144,31,6,,,,, +286,42,3,8547,960,1243.484,,,,,,144,31,0,,,,, +286,43,3,8548,985,1243.484,39,32.0,D#2,ppp+,6,144,39,6,,,,, +286,43,3,8548,985,1243.647,,,,,,144,39,0,,,,, +286,44,3,8549,1024,1243.647,38,32.0,G#2,ppp,5,144,44,5,,,,, +286,45,1,8550,1024,1243.647,,,,,,176,102,0,,,,, +286,44,3,8549,1024,1243.806,,,,,,144,44,0,,,,, +286,46,3,8551,1062,1243.806,38,32.0,B1,ppp,5,144,35,5,,,,, +286,46,3,8551,1062,1243.965,,,,,,144,35,0,,,,, +286,47,3,8552,1100,1243.965,52,16.0,A0,ppp,5,144,21,5,,,,, +286,48,0,8553,1100,1243.965,,,,,,,,,,6002,,, +286,47,3,8552,1100,1244.183,,,,,,144,21,0,,,,, +286,50,1,8554,,1244.183,,8.0,G#5,ppp,5,144,80,5,,,,g, +286,50,1,8554,,1244.233,,,,,,144,80,0,,,,, +286,51,1,8555,,1244.258,,8.0,D#5,ppp,5,144,75,5,,,,g, +286,51,1,8555,,1244.308,,,,,,144,75,0,,,,, +286,52,1,8556,1152,1244.333,128,8.0,B4,ppp,5,144,71,5,,,,, +286,53,3,8557,1152,1244.333,,,,,,176,102,0,,,,, +286,49,0,8558,1152,1244.333,,,,,,176,64,127,,,,,V +286,52,1,8556,1152,1244.869,,,,,,144,71,0,,,,, +287,0,0,8559,0,1244.869,,,,,,,,,287,,,, +287,1,1,8560,0,1244.869,64,16.0,D6,pp,8,144,86,8,,,,, +287,2,3,8561,0,1244.869,,,,,,176,102,0,,,,, +287,1,1,8560,0,1245.136,,,,,,144,86,0,,,,, +287,3,1,8562,64,1245.136,64,16.0,G7,pp,8,144,103,8,,,,, +287,3,1,8562,64,1245.404,,,,,,144,103,0,,,,, +287,4,1,8563,,1245.404,,8.0,D7,ppp,5,144,98,5,,,,g, +287,4,1,8563,,1245.454,,,,,,144,98,0,,,,, +287,5,1,8564,128,1245.479,32,32.0,G#6,ppp,5,144,92,5,,,,, +287,5,1,8564,128,1245.613,,,,,,144,92,0,,,,, +287,6,1,8565,160,1245.613,32,32.0,E3,ppp,5,144,52,5,,,,, +287,6,1,8565,160,1245.747,,,,,,144,52,0,,,,, +287,7,1,8566,192,1245.747,,,,,,176,102,0,,,,, +287,8,1,8567,213,1245.835,21,32.0,A#6,pp,8,144,94,8,,,,, +287,8,1,8567,213,1245.923,,,,,,144,94,0,,,,, +287,9,1,8568,234,1245.923,22,32.0,G#6,pp,8,144,92,8,,,,, +287,9,1,8568,234,1246.015,,,,,,144,92,0,,,,, +287,10,1,8569,256,1246.015,12,64.0,F#5,pp,8,144,78,8,,,,, +287,10,1,8569,256,1246.065,,,,,,144,78,0,,,,, +287,11,1,8570,268,1246.065,13,64.0,G#6,pp+,9,144,92,9,,,,, +287,11,1,8570,268,1246.12,,,,,,144,92,0,,,,, +287,12,1,8571,281,1246.12,13,64.0,F#5,pp+,9,144,78,9,,,,, +287,12,1,8571,281,1246.174,,,,,,144,78,0,,,,, +287,13,1,8572,294,1246.174,13,64.0,G#6,pp+,9,144,92,9,,,,, +287,13,1,8572,294,1246.229,,,,,,144,92,0,,,,, +287,14,1,8573,307,1246.229,13,64.0,F#5,pp+,9,144,78,9,,,,, +287,14,1,8573,307,1246.283,,,,,,144,78,0,,,,, +287,15,1,8574,320,1246.283,128,8.0,D6,pp+,9,144,86,9,,,,, +287,15,1,8574,320,1246.819,,,,,,144,86,0,,,,, +287,16,1,8575,448,1246.819,64,16.0,G7,p-,10,144,103,10,,,,, +287,16,1,8575,448,1247.086,,,,,,144,103,0,,,,, +287,17,1,8576,512,1247.086,,,,,,176,102,0,,,,, +287,18,3,8577,512,1247.086,,,,,,176,102,0,,,,, +287,19,1,8578,640,1247.622,128,8.0,F#5,p+,12,144,78,12,,,,, +287,20,1,8579,640,1247.622,128,8.0,D6,p+,12,144,86,12,,,,, +287,21,1,8580,640,1247.622,128,8.0,G#6,p+,12,144,92,12,,,,, +287,22,1,8581,640,1247.622,128,8.0,A#6,p+,12,144,94,12,,,,, +287,23,1,8582,640,1247.622,128,8.0,G7,p+,12,144,103,12,,,,, +287,19,1,8578,640,1248.158,,,,,,144,78,0,,,,, +287,20,1,8579,640,1248.158,,,,,,144,86,0,,,,, +287,21,1,8580,640,1248.158,,,,,,144,92,0,,,,, +287,22,1,8581,640,1248.158,,,,,,144,94,0,,,,, +287,23,1,8582,640,1248.158,,,,,,144,103,0,,,,, +287,24,1,8583,768,1248.158,,,,,,176,102,0,,,,, +287,25,1,8584,789,1248.246,14,64.0,G#5,ppp,5,144,80,5,,,,, +287,25,1,8584,789,1248.304,,,,,,144,80,0,,,,, +287,26,1,8585,803,1248.304,14,64.0,D#5,ppp,5,144,75,5,,,,, +287,26,1,8585,803,1248.363,,,,,,144,75,0,,,,, +287,27,1,8586,817,1248.363,15,64.0,B4,ppp,5,144,71,5,,,,, +287,27,1,8586,817,1248.426,,,,,,144,71,0,,,,, +287,28,1,8587,832,1248.426,21,64.0,D#5,ppp,5,144,75,5,,,,, +287,28,1,8587,832,1248.514,,,,,,144,75,0,,,,, +287,29,1,8588,853,1248.514,21,64.0,G#5,ppp,5,144,80,5,,,,, +287,29,1,8588,853,1248.602,,,,,,144,80,0,,,,, +287,30,1,8589,874,1248.602,22,64.0,B4,ppp,5,144,71,5,,,,, +287,30,1,8589,874,1248.694,,,,,,144,71,0,,,,, +287,31,1,8590,896,1248.694,21,32.0,G3,ppp,5,144,55,5,,,,, +287,31,1,8590,896,1248.782,,,,,,144,55,0,,,,, +287,32,1,8591,917,1248.782,21,32.0,A2,ppp,5,144,45,5,,,,, +287,33,1,8592,938,1248.869,86,8.0,A2,,,,,,,,,, +287,34,0,8593,1024,1249.079,,,,,,176,64,0,,,,,^ +287,32,1,8591,917,1249.229,,,,,,144,45,0,,,,, +287,36,1,8594,1024,1249.229,,,,,,176,102,0,,,,, +287,37,3,8595,1024,1249.229,21,32.0,D#4,ppp,5,144,63,5,,,,, +287,37,3,8595,1024,1249.317,,,,,,144,63,0,,,,, +287,38,3,8596,1045,1249.317,21,32.0,G#4,ppp,5,144,68,5,,,,, +287,35,0,8597,1024,1249.379,,,,,,176,64,127,,,,,V +287,38,3,8596,1045,1249.405,,,,,,144,68,0,,,,, +287,39,3,8598,1066,1249.405,22,32.0,B3,ppp,5,144,59,5,,,,, +287,39,3,8598,1066,1249.497,,,,,,144,59,0,,,,, +287,40,3,8599,1088,1249.497,21,32.0,A0,ppp,5,144,21,5,,,,, +287,40,3,8599,1088,1249.585,,,,,,144,21,0,,,,, +287,41,3,8600,1109,1249.585,21,32.0,G1,ppp,5,144,31,5,,,,, +287,41,3,8600,1109,1249.673,,,,,,144,31,0,,,,, +287,42,3,8601,1130,1249.673,22,32.0,A0,ppp,5,144,21,5,,,,, +287,42,3,8601,1130,1249.765,,,,,,144,21,0,,,,, +287,43,1,8602,1152,1249.765,64,16.0,C4,mp,14,144,60,14,,,,, +287,44,3,8603,1152,1249.765,21,32.0,B2,ppp,5,144,47,5,,,,, +287,44,3,8603,1152,1249.853,,,,,,144,47,0,,,,, +287,45,3,8604,1173,1249.853,21,32.0,G#3,ppp,5,144,56,5,,,,, +287,45,3,8604,1173,1249.941,,,,,,144,56,0,,,,, +287,46,3,8605,1194,1249.941,22,32.0,A0,ppp,5,144,21,5,,,,, +287,43,1,8602,1152,1250.033,,,,,,144,60,0,,,,, +287,46,3,8605,1194,1250.033,,,,,,144,21,0,,,,, +287,47,1,8606,1216,1250.033,64,16.0,C#3,mp,14,144,49,14,,,,, +287,48,3,8607,1216,1250.033,21,32.0,G2,ppp,5,144,43,5,,,,, +287,48,3,8607,1216,1250.121,,,,,,144,43,0,,,,, +287,49,3,8608,1237,1250.121,,,,,,176,102,0,,,,, +287,50,0,8609,1279,1250.297,,,,,,176,64,0,,,,,^ +287,47,1,8606,1216,1250.301,,,,,,144,49,0,,,,, +288,0,0,8610,0,1250.301,,,,,,,,,288,,,, +288,1,0,8611,0,1250.301,,,,,,,,,,6003,,, +288,2,1,8612,0,1250.301,1024,1.0,G#4,mf,17,144,68,17,,,,, +288,3,3,8613,0,1250.301,,,,,,176,102,0,,,,, +288,5,3,8614,,1254.361,,8.0,G#2,p,11,144,44,11,,,,g, +288,5,3,8614,,1254.411,,,,,,144,44,0,,,,, +288,6,3,8615,,1254.436,,8.0,D#2,p,11,144,39,11,,,,g, +288,6,3,8615,,1254.486,,,,,,144,39,0,,,,, +288,7,3,8616,,1254.511,,8.0,A0,p,11,144,21,11,,,,g, +288,7,3,8616,,1254.561,,,,,,144,21,0,,,,, +288,4,1,8617,1024,1254.586,256,4.0,G#4,,,,,,,,,, +288,8,3,8618,1024,1254.586,42,16.0,B1,p,11,144,35,11,,,,, +288,8,3,8618,1024,1254.762,,,,,,144,35,0,,,,, +288,9,3,8619,1066,1254.762,171,4.0,G1,p,11,144,31,11,,,,, +288,10,3,8620,1066,1254.762,256,4.0,B1,p,11,144,35,11,,,,, +288,9,3,8619,1066,1255.478,,,,,,144,31,0,,,,, +288,10,3,8620,1066,1255.478,,,,,,144,35,0,,,,, +288,11,3,8621,1237,1255.478,43,16.0,A0,ff,22,144,21,22,,,,, +288,12,3,8622,1237,1255.478,64,16.0,G1,ff,22,144,31,22,,,,, +288,13,3,8623,1237,1255.478,64,16.0,B1,ff,22,144,35,22,,,,, +288,14,3,8624,1237,1255.478,64,16.0,D#2,ff,22,144,39,22,,,,, +288,15,3,8625,1237,1255.478,64,16.0,G#2,ff,22,144,44,22,,,,, +288,11,3,8621,1237,1255.658,,,,,,144,21,0,,,,, +289,0,0,8626,0,1255.658,,,,,,,,,289,,,, +289,1,1,8627,0,1255.658,128,8.0,G#4,,,,,,,,,, +289,2,3,8628,0,1255.658,,,,,,176,102,0,,,,, +288,12,3,8622,1237,1255.746,,,,,,144,31,0,,,,, +288,14,3,8624,1237,1255.746,,,,,,144,39,0,,,,, +288,15,3,8625,1237,1255.746,,,,,,144,44,0,,,,, +288,13,3,8623,1237,1255.834,,,,,,144,35,0,,,,, +289,4,1,8629,128,1256.194,128,8.0,F#5,pp,8,144,78,8,,,,, +289,5,1,8630,128,1256.194,128,8.0,D6,pp,8,144,86,8,,,,, +289,6,1,8631,128,1256.194,128,8.0,G#6,pp,8,144,92,8,,,,, +289,7,1,8632,128,1256.194,128,8.0,A#6,pp,8,144,94,8,,,,, +289,8,1,8633,128,1256.194,128,8.0,G7,pp,8,144,103,8,,,,, +289,3,0,8634,128,1256.194,,,,,,176,64,127,,,,,V +288,2,1,8612,0,1256.194,,,,,,144,68,0,,,,, +289,4,1,8629,128,1256.729,,,,,,144,78,0,,,,, +289,5,1,8630,128,1256.729,,,,,,144,86,0,,,,, +289,6,1,8631,128,1256.729,,,,,,144,92,0,,,,, +289,7,1,8632,128,1256.729,,,,,,144,94,0,,,,, +289,8,1,8633,128,1256.729,,,,,,144,103,0,,,,, +289,9,1,8635,256,1256.729,,,,,,176,102,0,,,,, +289,10,3,8636,256,1256.729,21,32.0,E1,pp,8,144,28,8,,,,, +289,10,3,8636,256,1256.817,,,,,,144,28,0,,,,, +289,11,3,8637,277,1256.817,21,32.0,D5,pp,8,144,74,8,,,,, +289,11,3,8637,277,1256.905,,,,,,144,74,0,,,,, +289,12,3,8638,298,1256.905,22,32.0,C#2,pp,8,144,37,8,,,,, +289,12,3,8638,298,1256.997,,,,,,144,37,0,,,,, +289,13,3,8639,320,1256.997,21,32.0,C4,pp,8,144,60,8,,,,, +289,13,3,8639,320,1257.085,,,,,,144,60,0,,,,, +289,14,3,8640,341,1257.085,21,32.0,C#2,pp,8,144,37,8,,,,, +289,14,3,8640,341,1257.173,,,,,,144,37,0,,,,, +289,15,3,8641,362,1257.173,22,32.0,D5,pp,8,144,74,8,,,,, +289,15,3,8641,362,1257.265,,,,,,144,74,0,,,,, +289,16,3,8642,384,1257.265,21,32.0,C4,pp,8,144,60,8,,,,, +289,16,3,8642,384,1257.353,,,,,,144,60,0,,,,, +289,17,3,8643,405,1257.353,21,32.0,C#2,pp,8,144,37,8,,,,, +289,17,3,8643,405,1257.441,,,,,,144,37,0,,,,, +289,18,1,8644,,1257.441,,8.0,G#5,pp,8,144,80,8,,,,g, +289,18,1,8644,,1257.491,,,,,,144,80,0,,,,, +289,19,1,8645,,1257.516,,8.0,D6,pp,8,144,86,8,,,,g, +289,19,1,8645,,1257.566,,,,,,144,86,0,,,,, +289,20,1,8646,,1257.591,,8.0,E3,pp,8,144,52,8,,,,g, +289,20,1,8646,,1257.641,,,,,,144,52,0,,,,, +289,21,1,8647,426,1257.666,43,16.0,C5,pp,8,144,72,8,,,,, +289,22,3,8648,426,1257.666,,,,,,176,102,0,,,,, +289,21,1,8647,426,1257.846,,,,,,144,72,0,,,,, +289,23,1,8649,469,1257.846,43,16.0,C#4,pp,8,144,61,8,,,,, +289,24,0,8650,487,1257.861,,,,,,176,64,0,,,,,^ +289,23,1,8649,469,1258.026,,,,,,144,61,0,,,,, +289,26,1,8651,,1258.026,,8.0,D5,pp,8,144,74,8,,,,g, +289,26,1,8651,,1258.076,,,,,,144,74,0,,,,, +289,27,1,8652,512,1258.101,32,32.0,G#4,pp,8,144,68,8,,,,, +289,28,3,8653,512,1258.101,,,,,,176,102,0,,,,, +289,25,0,8654,512,1258.161,,,,,,176,64,127,,,,,V +289,27,1,8652,512,1258.235,,,,,,144,68,0,,,,, +289,29,1,8655,544,1258.235,21,32.0,E2,pp,8,144,40,8,,,,, +289,29,1,8655,544,1258.323,,,,,,144,40,0,,,,, +289,30,1,8656,565,1258.323,21,32.0,C#3,pp,8,144,49,8,,,,, +289,30,1,8656,565,1258.41,,,,,,144,49,0,,,,, +289,31,1,8657,586,1258.41,32,32.0,C4,pp,8,144,60,8,,,,, +289,31,1,8657,586,1258.544,,,,,,144,60,0,,,,, +289,32,1,8658,618,1258.544,22,32.0,C#3,pp,8,144,49,8,,,,, +289,32,1,8658,618,1258.636,,,,,,144,49,0,,,,, +289,33,1,8659,640,1258.636,32,32.0,G#4,pp,8,144,68,8,,,,, +289,33,1,8659,640,1258.77,,,,,,144,68,0,,,,, +289,34,1,8660,672,1258.77,32,32.0,E2,pp,8,144,40,8,,,,, +289,34,1,8660,672,1258.904,,,,,,144,40,0,,,,, +289,35,1,8661,704,1258.904,64,16.0,D5,pp,8,144,74,8,,,,, +289,35,1,8661,704,1259.172,,,,,,144,74,0,,,,, +289,36,1,8662,768,1259.172,,,,,,176,102,0,,,,, +289,37,3,8663,768,1259.172,85,8.0,G2,ppp,5,144,43,5,,,,, +289,37,3,8663,768,1259.528,,,,,,144,43,0,,,,, +289,38,3,8664,853,1259.528,171,4.0,G2,ppp,5,144,43,5,,,,, +289,39,3,8665,853,1259.528,256,4.0,B2,ppp,5,144,47,5,,,,, +289,38,3,8664,853,1260.244,,,,,,144,43,0,,,,, +289,40,1,8666,1024,1260.244,21,32.0,G#6,ppp,5,144,92,5,,,,, +289,41,3,8667,1024,1260.244,,,,,,176,102,0,,,,, +289,40,1,8666,1024,1260.332,,,,,,144,92,0,,,,, +289,42,1,8668,1045,1260.332,21,32.0,D7,ppp,5,144,98,5,,,,, +289,42,1,8668,1045,1260.419,,,,,,144,98,0,,,,, +289,43,1,8669,1066,1260.419,22,32.0,C#4,ppp+,6,144,61,6,,,,, +289,43,1,8669,1066,1260.511,,,,,,144,61,0,,,,, +289,44,1,8670,1088,1260.511,21,32.0,E3,ppp+,6,144,52,6,,,,, +289,44,1,8670,1088,1260.599,,,,,,144,52,0,,,,, +289,45,1,8671,1109,1260.599,21,32.0,C6,pp-,7,144,84,7,,,,, +289,46,1,8672,1109,1260.599,32,32.0,D7,pp-,7,144,98,7,,,,, +289,39,3,8665,853,1260.599,,,,,,144,47,0,,,,, +289,45,1,8671,1109,1260.687,,,,,,144,84,0,,,,, +289,47,1,8673,1130,1260.687,32,32.0,G#6,pp-,7,144,92,7,,,,, +289,46,1,8672,1109,1260.733,,,,,,144,98,0,,,,, +289,47,1,8673,1130,1260.821,,,,,,144,92,0,,,,, +289,48,1,8674,1162,1260.821,32,32.0,E3,pp,8,144,52,8,,,,, +289,49,1,8675,1162,1260.821,32,32.0,C#4,pp,8,144,61,8,,,,, +289,48,1,8674,1162,1260.955,,,,,,144,52,0,,,,, +289,49,1,8675,1162,1260.955,,,,,,144,61,0,,,,, +289,50,1,8676,1194,1260.955,22,32.0,C6,pp+,9,144,84,9,,,,, +289,51,1,8677,1194,1260.955,32,32.0,G#6,pp+,9,144,92,9,,,,, +289,50,1,8676,1194,1261.047,,,,,,144,84,0,,,,, +289,52,1,8678,1216,1261.047,32,32.0,D7,pp+,9,144,98,9,,,,, +289,51,1,8677,1194,1261.089,,,,,,144,92,0,,,,, +289,52,1,8678,1216,1261.181,,,,,,144,98,0,,,,, +289,53,1,8679,1248,1261.181,32,32.0,C6,pp+,9,144,84,9,,,,, +289,53,1,8679,1248,1261.315,,,,,,144,84,0,,,,, +290,0,0,8680,0,1261.315,,,,,,,,,290,,,, +290,1,1,8681,0,1261.315,,,,,,176,102,0,,,,, +290,2,3,8682,0,1261.315,21,32.0,C#2,pp,8,144,37,8,,,,, +290,2,3,8682,0,1261.403,,,,,,144,37,0,,,,, +290,3,3,8683,21,1261.403,21,32.0,E1,pp,8,144,28,8,,,,, +290,3,3,8683,21,1261.491,,,,,,144,28,0,,,,, +290,4,3,8684,42,1261.491,43,16.0,C3,pp,8,144,48,8,,,,, +290,5,3,8685,42,1261.491,64,16.0,G#3,pp,8,144,56,8,,,,, +290,6,3,8686,42,1261.491,64,16.0,D4,pp,8,144,62,8,,,,, +290,4,3,8684,42,1261.671,,,,,,144,48,0,,,,, +290,7,3,8687,85,1261.671,64,16.0,E1,pp,8,144,28,8,,,,, +290,8,3,8688,85,1261.671,64,16.0,C#2,pp,8,144,37,8,,,,, +290,5,3,8685,42,1261.759,,,,,,144,56,0,,,,, +290,6,3,8686,42,1261.759,,,,,,144,62,0,,,,, +290,7,3,8687,85,1261.939,,,,,,144,28,0,,,,, +290,8,3,8688,85,1261.939,,,,,,144,37,0,,,,, +290,9,0,8689,149,1261.939,,,,,,176,64,0,,,,,^ +290,10,3,8690,149,1261.939,43,16.0,E1,f,20,144,28,20,,,,, +290,11,3,8691,149,1261.939,64,16.0,C#2,f,20,144,37,20,,,,, +290,12,3,8692,149,1261.939,64,16.0,C3,f,20,144,48,20,,,,, +290,13,3,8693,149,1261.939,64,16.0,G#3,f,20,144,56,20,,,,, +290,14,3,8694,149,1261.939,64,16.0,D4,f,20,144,62,20,,,,, +290,10,3,8690,149,1262.119,,,,,,144,28,0,,,,, +290,15,3,8695,192,1262.119,,,,,,176,102,0,,,,, +290,16,0,8696,192,1262.119,,,,,,,,,,6004,,, +290,11,3,8691,149,1262.207,,,,,,144,37,0,,,,, +290,12,3,8692,149,1262.207,,,,,,144,48,0,,,,, +290,13,3,8693,149,1262.207,,,,,,144,56,0,,,,, +290,14,3,8694,149,1262.207,,,,,,144,62,0,,,,, +290,17,1,8697,256,1262.386,,,,,,176,102,0,,,,, +290,18,3,8698,256,1262.386,1024,1.0,G#5,ff,22,144,80,22,,,,, +290,20,1,8699,384,1262.922,25,32.0,F#5,ppp,5,144,78,5,,,,, +290,19,0,8700,384,1262.922,,,,,,176,64,127,,,,,V +290,20,1,8699,384,1263.027,,,,,,144,78,0,,,,, +290,21,1,8701,409,1263.027,26,32.0,D6,ppp,5,144,86,5,,,,, +290,21,1,8701,409,1263.136,,,,,,144,86,0,,,,, +290,22,1,8702,435,1263.136,25,32.0,A#6,ppp,5,144,94,5,,,,, +290,22,1,8702,435,1263.24,,,,,,144,94,0,,,,, +290,23,1,8703,460,1263.24,26,32.0,G7,ppp,5,144,103,5,,,,, +290,24,1,8704,486,1263.349,26,32.0,G#6,ppp,5,144,92,5,,,,, +290,23,1,8703,460,1263.424,,,,,,144,103,0,,,,, +290,24,1,8704,486,1263.458,,,,,,144,92,0,,,,, +290,25,1,8705,512,1263.458,38,32.0,A#6,ppp+,6,144,94,6,,,,, +290,25,1,8705,512,1263.617,,,,,,144,94,0,,,,, +290,26,1,8706,550,1263.617,26,32.0,F#4,ppp+,6,144,66,6,,,,, +290,26,1,8706,550,1263.726,,,,,,144,66,0,,,,, +290,27,1,8707,576,1263.726,25,32.0,D5,ppp+,6,144,74,6,,,,, +290,27,1,8707,576,1263.83,,,,,,144,74,0,,,,, +290,28,1,8708,601,1263.83,39,32.0,F#4,ppp+,6,144,66,6,,,,, +290,18,3,8698,256,1263.994,,,,,,144,80,0,,,,, +290,28,1,8708,601,1263.994,,,,,,144,66,0,,,,, +290,29,1,8709,640,1263.994,32,32.0,G#5,ppp+,6,144,80,6,,,,, +290,30,1,8710,672,1264.128,21,32.0,D5,ppp+,6,144,74,6,,,,, +290,30,1,8710,672,1264.215,,,,,,144,74,0,,,,, +290,31,1,8711,693,1264.215,21,32.0,A#5,pp-,7,144,82,7,,,,, +290,31,1,8711,693,1264.303,,,,,,144,82,0,,,,, +290,32,1,8712,714,1264.303,22,32.0,G7,pp-,7,144,103,7,,,,, +290,32,1,8712,714,1264.395,,,,,,144,103,0,,,,, +290,33,1,8713,736,1264.395,32,32.0,D5,pp-,7,144,74,7,,,,, +290,33,1,8713,736,1264.529,,,,,,144,74,0,,,,, +290,34,1,8714,768,1264.529,25,32.0,G7,pp-,7,144,103,7,,,,, +290,29,1,8709,640,1264.634,,,,,,144,80,0,,,,, +290,34,1,8714,768,1264.634,,,,,,144,103,0,,,,, +290,35,1,8715,793,1264.634,26,32.0,G#5,pp-,7,144,80,7,,,,, +290,36,1,8716,819,1264.743,25,32.0,F#4,pp-,7,144,66,7,,,,, +290,36,1,8716,819,1264.847,,,,,,144,66,0,,,,, +290,37,1,8717,844,1264.847,26,32.0,D5,pp-,7,144,74,7,,,,, +290,37,1,8717,844,1264.956,,,,,,144,74,0,,,,, +290,38,1,8718,870,1264.956,38,32.0,F#4,pp-,7,144,66,7,,,,, +290,35,1,8715,793,1265.115,,,,,,144,80,0,,,,, +290,38,1,8718,870,1265.115,,,,,,144,66,0,,,,, +290,39,1,8719,908,1265.115,39,32.0,G#5,pp,8,144,80,8,,,,, +290,40,1,8720,947,1265.279,38,32.0,D5,pp,8,144,74,8,,,,, +290,40,1,8720,947,1265.438,,,,,,144,74,0,,,,, +290,41,1,8721,985,1265.438,39,32.0,G7,pp,8,144,103,8,,,,, +290,39,1,8719,908,1265.601,,,,,,144,80,0,,,,, +290,41,1,8721,985,1265.601,,,,,,144,103,0,,,,, +290,42,1,8722,1024,1265.601,25,32.0,G#5,pp,8,144,80,8,,,,, +290,43,1,8723,1049,1265.705,26,32.0,A#6,pp,8,144,94,8,,,,, +290,43,1,8723,1049,1265.814,,,,,,144,94,0,,,,, +290,44,1,8724,1075,1265.814,25,32.0,F#3,pp,8,144,54,8,,,,, +290,44,1,8724,1075,1265.919,,,,,,144,54,0,,,,, +290,45,1,8725,1100,1265.919,26,32.0,D5,pp,8,144,74,8,,,,, +290,42,1,8722,1024,1266.028,,,,,,144,80,0,,,,, +290,45,1,8725,1100,1266.028,,,,,,144,74,0,,,,, +290,46,1,8726,1126,1266.028,38,32.0,G#5,pp+,9,144,80,9,,,,, +290,47,1,8727,1164,1266.187,39,32.0,D5,pp+,9,144,74,9,,,,, +290,47,1,8727,1164,1266.35,,,,,,144,74,0,,,,, +290,48,1,8728,1203,1266.35,77,16.0,G7,pp+,9,144,103,9,,,,, +291,0,0,8729,0,1266.672,,,,,,,,,291,,,, +291,1,1,8730,0,1266.672,,,,,,176,102,0,,,,, +291,2,3,8731,0,1266.672,,,,,,176,102,0,,,,, +290,48,1,8728,1203,1266.822,,,,,,144,103,0,,,,, +290,46,1,8726,1126,1266.897,,,,,,144,80,0,,,,, +291,3,0,8732,768,1269.736,,,,,,176,64,0,,,,,^ +291,5,1,8733,768,1269.886,,,,,,176,102,0,,,,, +291,6,3,8734,768,1269.886,42,16.0,G2,ppp,5,144,43,5,,,,, +291,4,0,8735,768,1270.036,,,,,,176,64,127,,,,,V +291,6,3,8734,768,1270.062,,,,,,144,43,0,,,,, +291,7,3,8736,810,1270.062,128,8.0,G2,ppp,5,144,43,5,,,,, +291,8,3,8737,810,1270.062,128,8.0,B2,ppp,5,144,47,5,,,,, +291,7,3,8736,810,1270.598,,,,,,144,43,0,,,,, +291,8,3,8737,810,1270.598,,,,,,144,47,0,,,,, +291,9,3,8738,938,1270.598,86,8.0,A4,ppp,5,144,69,5,,,,, +291,10,3,8739,1024,1270.958,256,4.0,A4,,,,,,,,,, +291,9,3,8738,938,1272.029,,,,,,144,69,0,,,,, +292,0,0,8740,0,1272.029,,,,,,,,,292,,,, +292,1,1,8741,0,1272.029,,,,,,176,102,0,,,,, +292,2,3,8742,0,1272.029,,,,,,176,102,0,,,,, +292,3,3,8743,85,1272.385,21,32.0,A4,ppp,5,144,69,5,,,,, +292,3,3,8743,85,1272.473,,,,,,144,69,0,,,,, +292,4,3,8744,106,1272.473,22,32.0,D#4,ppp,5,144,63,5,,,,, +292,4,3,8744,106,1272.565,,,,,,144,63,0,,,,, +292,5,3,8745,128,1272.565,64,16.0,C2,ppp,5,144,36,5,,,,, +292,5,3,8745,128,1272.833,,,,,,144,36,0,,,,, +292,6,3,8746,192,1272.833,64,16.0,A4,ppp,5,144,69,5,,,,, +292,7,3,8747,256,1273.101,32,32.0,A4,,,,,,,,,, +292,6,3,8746,192,1273.235,,,,,,144,69,0,,,,, +292,8,3,8748,288,1273.235,224,8.0,D#4,ppp,5,144,63,5,,,,, +292,8,3,8748,288,1274.172,,,,,,144,63,0,,,,, +292,9,3,8749,512,1274.172,,,,,,176,102,0,,,,, +292,10,1,8750,,1276.24,,8.0,F4,ppp,5,144,65,5,,,,g, +292,10,1,8750,,1276.29,,,,,,144,65,0,,,,, +292,11,1,8751,1024,1276.315,256,4.0,F4,ppp,5,144,65,5,,,,, +292,12,3,8752,1024,1276.315,256,4.0,G1,ppp,5,144,31,5,,,,, +292,11,1,8751,1024,1277.386,,,,,,144,65,0,,,,, +292,12,3,8752,1024,1277.386,,,,,,144,31,0,,,,, +293,0,0,8753,0,1277.386,,,,,,,,,293,,,, +293,1,1,8754,0,1277.386,512,2.0,G#5,mp,14,144,80,14,,,,, +293,2,3,8755,0,1277.386,512,2.0,E2,mp,14,144,40,14,,,,, +293,1,1,8754,0,1279.529,,,,,,144,80,0,,,,, +293,2,3,8755,0,1279.529,,,,,,144,40,0,,,,, +293,3,1,8756,512,1279.529,256,4.0,G#5,mp+,15,144,80,15,,,,, +293,4,1,8757,512,1279.529,256,4.0,D6,mp+,15,144,86,15,,,,, +293,5,3,8758,512,1279.529,512,2.0,E2,mp,14,144,40,14,,,,, +293,6,1,8759,768,1280.601,256,4.0,G#5,,,,,,,,,, +293,7,1,8760,768,1280.601,256,4.0,D6,,,,,,,,,, +293,8,1,8761,1024,1281.672,192,8.0,C5,mp+,15,144,72,15,,,,, +293,9,1,8762,1024,1281.672,128,8.0,G#5,mp+,15,144,80,15,,,,, +293,10,1,8763,1024,1281.672,128,8.0,D6,mp+,15,144,86,15,,,,, +293,11,3,8764,1024,1281.672,,,,,,176,102,0,,,,, +293,3,1,8756,512,1281.972,,,,,,144,80,0,,,,, +293,4,1,8757,512,1281.972,,,,,,144,86,0,,,,, +293,5,3,8758,512,1281.972,,,,,,144,40,0,,,,, +293,9,1,8762,1024,1282.208,,,,,,144,80,0,,,,, +293,10,1,8763,1024,1282.208,,,,,,144,86,0,,,,, +293,8,1,8761,1024,1282.476,,,,,,144,72,0,,,,, +293,12,0,8765,1216,1282.476,,,,,,176,64,0,,,,,^ +293,13,1,8766,1216,1282.476,64,16.0,C#3,mp+,15,144,49,15,,,,, +293,14,0,8767,1216,1282.476,,,,,,,,,,6005,,, +293,13,1,8766,1216,1282.744,,,,,,144,49,0,,,,, +294,0,0,8768,0,1282.744,,,,,,,,,294,,,, +294,2,1,8769,0,1282.744,,,,,,176,102,0,,,,, +294,3,3,8770,,1282.744,,8.0,D4,ppp,5,144,62,5,,,,g, +294,3,3,8770,,1282.794,,,,,,144,62,0,,,,, +294,4,3,8771,,1282.819,,8.0,C#2,ppp,5,144,37,5,,,,g, +294,4,3,8771,,1282.869,,,,,,144,37,0,,,,, +294,5,3,8772,0,1282.894,32,32.0,G#3,ppp,5,144,56,5,,,,, +294,1,0,8773,0,1282.894,,,,,,176,64,127,,,,,V +294,5,3,8772,0,1283.028,,,,,,144,56,0,,,,, +294,6,3,8774,32,1283.028,21,32.0,E1,ppp,5,144,28,5,,,,, +294,6,3,8774,32,1283.115,,,,,,144,28,0,,,,, +294,7,3,8775,53,1283.115,32,32.0,C3,ppp,5,144,48,5,,,,, +294,7,3,8775,53,1283.249,,,,,,144,48,0,,,,, +294,8,3,8776,85,1283.249,,,,,,176,102,0,,,,, +294,9,3,8777,128,1283.429,,,,,,176,102,0,,,,, +294,10,3,8778,256,1283.965,768,2.0,D3,ppp,5,144,50,5,,,,, +294,11,1,8779,,1284.961,,8.0,A2,pp,8,144,45,8,,,,g, +294,11,1,8779,,1285.011,,,,,,144,45,0,,,,, +294,12,1,8780,512,1285.036,768,2.0,A2,ff,22,144,45,22,,,,, +294,13,1,8781,512,1285.036,512,2.0,C#6,ff,22,144,85,22,,,,, +294,10,3,8778,256,1287.179,,,,,,144,50,0,,,,, +294,13,1,8781,512,1287.179,,,,,,144,85,0,,,,, +294,14,3,8782,1024,1287.179,21,32.0,D3,ppp,5,144,50,5,,,,, +294,14,3,8782,1024,1287.267,,,,,,144,50,0,,,,, +294,15,3,8783,1045,1287.267,21,32.0,C#2,ppp,5,144,37,5,,,,, +294,15,3,8783,1045,1287.355,,,,,,144,37,0,,,,, +294,16,3,8784,1066,1287.355,14,32.0,F2,ppp,5,144,41,5,,,,, +294,16,3,8784,1066,1287.414,,,,,,144,41,0,,,,, +294,17,3,8785,1080,1287.414,14,32.0,A3,ppp,5,144,57,5,,,,, +294,17,3,8785,1080,1287.472,,,,,,144,57,0,,,,, +294,18,3,8786,1094,1287.472,15,32.0,F2,ppp,5,144,41,5,,,,, +294,18,3,8786,1094,1287.535,,,,,,144,41,0,,,,, +294,19,3,8787,1109,1287.535,14,32.0,A3,ppp,5,144,57,5,,,,, +294,19,3,8787,1109,1287.594,,,,,,144,57,0,,,,, +294,20,3,8788,1123,1287.594,14,32.0,F2,ppp,5,144,41,5,,,,, +294,20,3,8788,1123,1287.652,,,,,,144,41,0,,,,, +294,21,3,8789,1137,1287.652,15,32.0,A3,ppp,5,144,57,5,,,,, +294,21,3,8789,1137,1287.715,,,,,,144,57,0,,,,, +294,22,3,8790,1152,1287.715,21,32.0,F2,ppp,5,144,41,5,,,,, +294,22,3,8790,1152,1287.803,,,,,,144,41,0,,,,, +294,23,3,8791,1173,1287.803,21,32.0,B1,ppp,5,144,35,5,,,,, +294,23,3,8791,1173,1287.891,,,,,,144,35,0,,,,, +294,24,3,8792,1194,1287.891,22,32.0,A3,ppp,5,144,57,5,,,,, +294,24,3,8792,1194,1287.983,,,,,,144,57,0,,,,, +294,25,3,8793,1216,1287.983,21,32.0,B0,ppp,5,144,23,5,,,,, +294,25,3,8793,1216,1288.071,,,,,,144,23,0,,,,, +294,26,3,8794,1237,1288.071,21,32.0,F1,ppp,5,144,29,5,,,,, +294,26,3,8794,1237,1288.159,,,,,,144,29,0,,,,, +294,27,3,8795,1258,1288.159,22,32.0,B0,ppp,5,144,23,5,,,,, +294,27,3,8795,1258,1288.251,,,,,,144,23,0,,,,, +295,0,0,8796,0,1288.251,,,,,,,,,295,,,, +295,1,1,8797,0,1288.251,,,,,,176,102,0,,,,, +295,2,3,8798,0,1288.251,21,32.0,D2,ppp,5,144,38,5,,,,, +294,12,1,8780,512,1288.251,,,,,,144,45,0,,,,, +295,2,3,8798,0,1288.339,,,,,,144,38,0,,,,, +295,3,3,8799,21,1288.339,21,32.0,C#1,ppp,5,144,25,5,,,,, +295,3,3,8799,21,1288.427,,,,,,144,25,0,,,,, +295,4,3,8800,42,1288.427,14,32.0,F1,ppp,5,144,29,5,,,,, +295,5,3,8801,42,1288.427,32,32.0,D2,ppp,5,144,38,5,,,,, +295,4,3,8800,42,1288.485,,,,,,144,29,0,,,,, +295,6,3,8802,56,1288.485,14,32.0,A2,ppp,5,144,45,5,,,,, +295,5,3,8801,42,1288.544,,,,,,144,38,0,,,,, +295,6,3,8802,56,1288.544,,,,,,144,45,0,,,,, +295,7,3,8803,70,1288.544,15,32.0,F1,ppp,5,144,29,5,,,,, +295,8,3,8804,70,1288.544,32,32.0,D2,ppp,5,144,38,5,,,,, +295,7,3,8803,70,1288.607,,,,,,144,29,0,,,,, +295,9,3,8805,85,1288.607,14,32.0,A2,ppp,5,144,45,5,,,,, +295,8,3,8804,70,1288.665,,,,,,144,38,0,,,,, +295,9,3,8805,85,1288.665,,,,,,144,45,0,,,,, +295,10,3,8806,99,1288.665,14,32.0,F1,ppp,5,144,29,5,,,,, +295,11,3,8807,99,1288.665,32,32.0,D2,ppp,5,144,38,5,,,,, +295,10,3,8806,99,1288.724,,,,,,144,29,0,,,,, +295,12,3,8808,113,1288.724,15,32.0,A2,ppp,5,144,45,5,,,,, +295,12,3,8808,113,1288.786,,,,,,144,45,0,,,,, +295,13,3,8809,128,1288.786,21,32.0,F1,ppp,5,144,29,5,,,,, +295,11,3,8807,99,1288.799,,,,,,144,38,0,,,,, +295,13,3,8809,128,1288.874,,,,,,144,29,0,,,,, +295,14,3,8810,149,1288.874,21,32.0,B0,ppp,5,144,23,5,,,,, +295,14,3,8810,149,1288.962,,,,,,144,23,0,,,,, +295,15,3,8811,170,1288.962,22,32.0,D2,ppp,5,144,38,5,,,,, +295,16,3,8812,170,1288.962,32,32.0,A2,ppp,5,144,45,5,,,,, +295,15,3,8811,170,1289.054,,,,,,144,38,0,,,,, +295,17,3,8813,192,1289.054,21,32.0,B0,ppp,5,144,23,5,,,,, +295,16,3,8812,170,1289.096,,,,,,144,45,0,,,,, +295,17,3,8813,192,1289.142,,,,,,144,23,0,,,,, +295,18,3,8814,213,1289.142,21,32.0,F1,ppp,5,144,29,5,,,,, +295,19,3,8815,213,1289.142,32,32.0,D2,ppp,5,144,38,5,,,,, +295,20,3,8816,213,1289.142,32,32.0,A2,ppp,5,144,45,5,,,,, +295,18,3,8814,213,1289.23,,,,,,144,29,0,,,,, +295,21,3,8817,234,1289.23,22,32.0,B0,ppp,5,144,23,5,,,,, +295,19,3,8815,213,1289.276,,,,,,144,38,0,,,,, +295,20,3,8816,213,1289.276,,,,,,144,45,0,,,,, +295,21,3,8817,234,1289.322,,,,,,144,23,0,,,,, +295,22,3,8818,256,1289.322,1024,1.0,B0,ppp,5,144,23,5,,,,, +295,23,3,8819,256,1289.322,1024,1.0,C#1,ppp,5,144,25,5,,,,, +295,24,3,8820,256,1289.322,1024,1.0,F1,ppp,5,144,29,5,,,,, +295,25,3,8821,256,1289.322,1024,1.0,D3,ppp,5,144,50,5,,,,, +295,26,3,8822,256,1289.322,1024,1.0,A3,ppp,5,144,57,5,,,,, +296,0,0,8823,0,1293.608,,,,,,,,,296,,,, +296,1,1,8824,0,1293.608,,,,,,176,102,0,,,,, +296,2,2,8825,0,1293.608,,,,,,176,102,0,,,,, +296,3,3,8826,0,1293.608,768,2.0,B0,,,,,,,,,, +296,4,3,8827,0,1293.608,512,2.0,C#1,,,,,,,,,, +296,5,3,8828,0,1293.608,512,2.0,F1,,,,,,,,,, +296,6,3,8829,0,1293.608,512,2.0,D3,,,,,,,,,, +296,7,3,8830,0,1293.608,512,2.0,A3,,,,,,,,,, +296,8,2,8831,256,1294.679,,,,,,176,102,0,,,,, +295,23,3,8819,256,1295.751,,,,,,144,25,0,,,,, +295,24,3,8820,256,1295.751,,,,,,144,29,0,,,,, +295,25,3,8821,256,1295.751,,,,,,144,50,0,,,,, +295,26,3,8822,256,1295.751,,,,,,144,57,0,,,,, +296,9,1,8832,512,1295.751,256,4.0,C#6,mp,14,144,85,14,,,,, +296,10,2,8833,512,1295.751,256,4.0,A2,mp,14,144,45,14,,,,, +296,11,2,8834,512,1295.751,256,4.0,F#3,mp,14,144,54,14,,,,, +295,22,3,8818,256,1296.822,,,,,,144,23,0,,,,, +296,12,1,8835,768,1296.822,128,8.0,C#6,,,,,,,,,, +296,13,2,8836,768,1296.822,128,8.0,A2,,,,,,,,,, +296,14,2,8837,768,1296.822,128,8.0,F#3,,,,,,,,,, +296,15,3,8838,768,1296.822,,,,,,176,102,0,,,,, +296,9,1,8832,512,1297.358,,,,,,144,85,0,,,,, +296,10,2,8833,512,1297.358,,,,,,144,45,0,,,,, +296,11,2,8834,512,1297.358,,,,,,144,54,0,,,,, +296,16,1,8839,896,1297.358,25,32.0,F#4,ppp,5,144,66,5,,,,, +296,17,2,8840,896,1297.358,,,,,,176,102,0,,,,, +296,16,1,8839,896,1297.463,,,,,,144,66,0,,,,, +296,18,1,8841,921,1297.463,26,32.0,D5,ppp,5,144,74,5,,,,, +296,18,1,8841,921,1297.571,,,,,,144,74,0,,,,, +296,19,1,8842,947,1297.571,25,32.0,A#6,ppp,5,144,94,5,,,,, +296,19,1,8842,947,1297.676,,,,,,144,94,0,,,,, +296,20,1,8843,972,1297.676,26,32.0,G7,ppp,5,144,103,5,,,,, +296,20,1,8843,972,1297.785,,,,,,144,103,0,,,,, +296,21,1,8844,998,1297.785,26,32.0,G#6,ppp,5,144,92,5,,,,, +296,21,1,8844,998,1297.894,,,,,,144,92,0,,,,, +296,22,1,8845,1024,1297.894,38,32.0,A#6,ppp,5,144,94,5,,,,, +296,23,2,8846,1024,1297.894,,,,,,176,102,0,,,,, +296,22,1,8845,1024,1298.053,,,,,,144,94,0,,,,, +296,24,1,8847,1062,1298.053,26,32.0,F#4,ppp,5,144,66,5,,,,, +296,24,1,8847,1062,1298.161,,,,,,144,66,0,,,,, +296,25,1,8848,1088,1298.161,25,32.0,D5,ppp,5,144,74,5,,,,, +296,25,1,8848,1088,1298.266,,,,,,144,74,0,,,,, +296,26,1,8849,1113,1298.266,39,32.0,F#4,ppp,5,144,66,5,,,,, +296,26,1,8849,1113,1298.429,,,,,,144,66,0,,,,, +296,27,1,8850,1152,1298.429,32,32.0,G#5,ppp,5,144,80,5,,,,, +296,27,1,8850,1152,1298.563,,,,,,144,80,0,,,,, +296,28,1,8851,1184,1298.563,21,32.0,D5,ppp,5,144,74,5,,,,, +296,28,1,8851,1184,1298.651,,,,,,144,74,0,,,,, +296,29,1,8852,1205,1298.651,21,32.0,A#5,ppp,5,144,82,5,,,,, +296,29,1,8852,1205,1298.739,,,,,,144,82,0,,,,, +296,30,1,8853,1226,1298.739,22,32.0,G7,ppp,5,144,103,5,,,,, +296,30,1,8853,1226,1298.831,,,,,,144,103,0,,,,, +296,31,1,8854,1248,1298.831,32,32.0,D5,ppp,5,144,74,5,,,,, +296,31,1,8854,1248,1298.965,,,,,,144,74,0,,,,, +297,0,0,8855,0,1298.965,,,,,,,,,297,,,, +297,1,1,8856,0,1298.965,25,32.0,G7,ppp,5,144,103,5,,,,, +297,2,3,8857,0,1298.965,,,,,,176,102,0,,,,, +297,1,1,8856,0,1299.07,,,,,,144,103,0,,,,, +297,3,1,8858,25,1299.07,26,32.0,G#4,ppp,5,144,68,5,,,,, +297,3,1,8858,25,1299.179,,,,,,144,68,0,,,,, +297,4,1,8859,51,1299.179,25,32.0,F#3,ppp,5,144,54,5,,,,, +297,4,1,8859,51,1299.283,,,,,,144,54,0,,,,, +297,5,1,8860,76,1299.283,26,32.0,D4,ppp,5,144,62,5,,,,, +297,5,1,8860,76,1299.392,,,,,,144,62,0,,,,, +297,6,1,8861,102,1299.392,38,32.0,F#3,ppp,5,144,54,5,,,,, +297,6,1,8861,102,1299.551,,,,,,144,54,0,,,,, +297,7,1,8862,140,1299.551,39,32.0,G#4,ppp,5,144,68,5,,,,, +297,7,1,8862,140,1299.714,,,,,,144,68,0,,,,, +297,8,1,8863,179,1299.714,38,32.0,D4,ppp,5,144,62,5,,,,, +297,8,1,8863,179,1299.873,,,,,,144,62,0,,,,, +297,9,1,8864,217,1299.873,39,32.0,A#6,ppp,5,144,94,5,,,,, +297,10,1,8865,217,1299.873,32,32.0,G7,ppp,5,144,103,5,,,,, +297,10,1,8865,217,1300.007,,,,,,144,103,0,,,,, +297,9,1,8864,217,1300.036,,,,,,144,94,0,,,,, +297,11,1,8866,256,1300.036,25,32.0,G#5,ppp,5,144,80,5,,,,, +297,12,3,8867,256,1300.036,,,,,,176,102,0,,,,, +297,11,1,8866,256,1300.141,,,,,,144,80,0,,,,, +297,13,1,8868,281,1300.141,26,32.0,A#5,ppp,5,144,82,5,,,,, +297,13,1,8868,281,1300.25,,,,,,144,82,0,,,,, +297,14,1,8869,307,1300.25,25,32.0,F#3,ppp,5,144,54,5,,,,, +297,14,1,8869,307,1300.355,,,,,,144,54,0,,,,, +297,15,1,8870,332,1300.355,26,32.0,D5,ppp,5,144,74,5,,,,, +297,16,1,8871,332,1300.355,32,32.0,A#5,ppp,5,144,82,5,,,,, +297,15,1,8870,332,1300.463,,,,,,144,74,0,,,,, +297,17,1,8872,358,1300.463,38,32.0,G#5,ppp,5,144,80,5,,,,, +297,16,1,8871,332,1300.488,,,,,,144,82,0,,,,, +297,17,1,8872,358,1300.622,,,,,,144,80,0,,,,, +297,18,1,8873,396,1300.622,39,32.0,D5,ppp,5,144,74,5,,,,, +297,18,1,8873,396,1300.786,,,,,,144,74,0,,,,, +297,19,1,8874,435,1300.786,77,16.0,G7,ppp,5,144,103,5,,,,, +297,19,1,8874,435,1301.108,,,,,,144,103,0,,,,, +297,20,1,8875,512,1301.108,,,,,,176,102,0,,,,, +297,21,3,8876,512,1301.108,21,32.0,D3,pppp,2,144,50,2,,,,, +297,21,3,8876,512,1301.196,,,,,,144,50,0,,,,, +297,22,3,8877,533,1301.196,21,32.0,C#1,pppp,2,144,25,2,,,,, +297,22,3,8877,533,1301.284,,,,,,144,25,0,,,,, +297,23,3,8878,554,1301.284,14,32.0,F1,pppp,2,144,29,2,,,,, +297,23,3,8878,554,1301.342,,,,,,144,29,0,,,,, +297,24,3,8879,568,1301.342,14,32.0,A4,pppp,2,144,69,2,,,,, +297,24,3,8879,568,1301.401,,,,,,144,69,0,,,,, +297,25,3,8880,582,1301.401,15,32.0,F1,pppp,2,144,29,2,,,,, +297,25,3,8880,582,1301.464,,,,,,144,29,0,,,,, +297,26,3,8881,597,1301.464,14,32.0,A3,pppp,2,144,57,2,,,,, +297,26,3,8881,597,1301.522,,,,,,144,57,0,,,,, +297,27,3,8882,611,1301.522,14,32.0,F1,pppp,2,144,29,2,,,,, +297,27,3,8882,611,1301.581,,,,,,144,29,0,,,,, +297,28,3,8883,625,1301.581,15,32.0,A3,pppp,2,144,57,2,,,,, +297,28,3,8883,625,1301.644,,,,,,144,57,0,,,,, +297,29,3,8884,640,1301.644,21,32.0,F1,pppp,2,144,29,2,,,,, +297,29,3,8884,640,1301.732,,,,,,144,29,0,,,,, +297,30,3,8885,661,1301.732,21,32.0,B0,pppp,2,144,23,2,,,,, +297,30,3,8885,661,1301.819,,,,,,144,23,0,,,,, +297,31,3,8886,682,1301.819,22,32.0,A3,pppp,2,144,57,2,,,,, +297,31,3,8886,682,1301.911,,,,,,144,57,0,,,,, +297,32,3,8887,704,1301.911,21,32.0,B0,pppp,2,144,23,2,,,,, +297,32,3,8887,704,1301.999,,,,,,144,23,0,,,,, +297,33,3,8888,725,1301.999,21,32.0,F1,pppp,2,144,29,2,,,,, +297,33,3,8888,725,1302.087,,,,,,144,29,0,,,,, +297,34,3,8889,746,1302.087,22,32.0,B0,pppp,2,144,23,2,,,,, +297,34,3,8889,746,1302.179,,,,,,144,23,0,,,,, +297,35,1,8890,768,1302.179,,,,,,176,102,0,,,,, +297,36,3,8891,768,1302.179,21,32.0,D2,pppp,2,144,38,2,,,,, +297,36,3,8891,768,1302.267,,,,,,144,38,0,,,,, +297,37,3,8892,789,1302.267,21,32.0,C#1,pppp,2,144,25,2,,,,, +297,37,3,8892,789,1302.355,,,,,,144,25,0,,,,, +297,38,3,8893,810,1302.355,14,32.0,F1,pppp,2,144,29,2,,,,, +297,38,3,8893,810,1302.414,,,,,,144,29,0,,,,, +297,39,3,8894,824,1302.414,14,32.0,A2,pppp,2,144,45,2,,,,, +297,39,3,8894,824,1302.472,,,,,,144,45,0,,,,, +297,40,3,8895,838,1302.472,15,32.0,F1,pppp,2,144,29,2,,,,, +297,40,3,8895,838,1302.535,,,,,,144,29,0,,,,, +297,41,3,8896,853,1302.535,14,32.0,A2,pppp,2,144,45,2,,,,, +297,41,3,8896,853,1302.594,,,,,,144,45,0,,,,, +297,42,3,8897,867,1302.594,14,32.0,F1,pppp,2,144,29,2,,,,, +297,42,3,8897,867,1302.652,,,,,,144,29,0,,,,, +297,43,3,8898,881,1302.652,15,32.0,A2,pppp,2,144,45,2,,,,, +297,43,3,8898,881,1302.715,,,,,,144,45,0,,,,, +297,44,3,8899,896,1302.715,21,32.0,F1,pppp,2,144,29,2,,,,, +297,44,3,8899,896,1302.803,,,,,,144,29,0,,,,, +297,45,3,8900,917,1302.803,21,32.0,B0,pppp,2,144,23,2,,,,, +297,45,3,8900,917,1302.891,,,,,,144,23,0,,,,, +297,46,3,8901,938,1302.891,22,32.0,A2,pppp,2,144,45,2,,,,, +297,46,3,8901,938,1302.983,,,,,,144,45,0,,,,, +297,47,3,8902,960,1302.983,21,32.0,B0,pppp,2,144,23,2,,,,, +297,47,3,8902,960,1303.071,,,,,,144,23,0,,,,, +297,48,3,8903,981,1303.071,21,32.0,F1,pppp,2,144,29,2,,,,, +297,48,3,8903,981,1303.159,,,,,,144,29,0,,,,, +297,49,3,8904,1002,1303.159,22,32.0,B0,pppp,2,144,23,2,,,,, +297,49,3,8904,1002,1303.251,,,,,,144,23,0,,,,, +297,50,3,8905,1024,1303.251,21,32.0,D2,pppp,2,144,38,2,,,,, +297,51,3,8906,1024,1303.251,32,32.0,A2,pppp,2,144,45,2,,,,, +297,50,3,8905,1024,1303.339,,,,,,144,38,0,,,,, +297,52,3,8907,1045,1303.339,21,32.0,C#1,pppp,2,144,25,2,,,,, +297,51,3,8906,1024,1303.385,,,,,,144,45,0,,,,, +297,52,3,8907,1045,1303.427,,,,,,144,25,0,,,,, +297,53,3,8908,1066,1303.427,14,32.0,F1,pppp,2,144,29,2,,,,, +297,53,3,8908,1066,1303.485,,,,,,144,29,0,,,,, +297,54,3,8909,1080,1303.485,14,32.0,D2,pppp,2,144,38,2,,,,, +297,55,3,8910,1080,1303.485,32,32.0,A2,pppp,2,144,45,2,,,,, +297,54,3,8909,1080,1303.544,,,,,,144,38,0,,,,, +297,56,3,8911,1094,1303.544,15,32.0,F1,pppp,2,144,29,2,,,,, +297,55,3,8910,1080,1303.607,,,,,,144,45,0,,,,, +297,56,3,8911,1094,1303.607,,,,,,144,29,0,,,,, +297,57,3,8912,1109,1303.607,14,32.0,D2,pppp,2,144,38,2,,,,, +297,58,3,8913,1109,1303.607,32,32.0,A2,pppp,2,144,45,2,,,,, +297,57,3,8912,1109,1303.665,,,,,,144,38,0,,,,, +297,59,3,8914,1123,1303.665,14,32.0,F1,pppp,2,144,29,2,,,,, +297,58,3,8913,1109,1303.724,,,,,,144,45,0,,,,, +297,59,3,8914,1123,1303.724,,,,,,144,29,0,,,,, +297,60,3,8915,1137,1303.724,15,32.0,D2,pppp,2,144,38,2,,,,, +297,61,3,8916,1137,1303.724,32,32.0,A2,pppp,2,144,45,2,,,,, +297,60,3,8915,1137,1303.786,,,,,,144,38,0,,,,, +297,62,3,8917,1152,1303.786,21,32.0,F1,pppp,2,144,29,2,,,,, +297,61,3,8916,1137,1303.858,,,,,,144,45,0,,,,, +297,62,3,8917,1152,1303.874,,,,,,144,29,0,,,,, +297,63,3,8918,1173,1303.874,21,32.0,B0,pppp,2,144,23,2,,,,, +297,63,3,8918,1173,1303.962,,,,,,144,23,0,,,,, +297,64,3,8919,1194,1303.962,22,32.0,C#1,pppp,2,144,25,2,,,,, +297,65,3,8920,1194,1303.962,32,32.0,D2,pppp,2,144,38,2,,,,, +297,66,3,8921,1194,1303.962,32,32.0,A2,pppp,2,144,45,2,,,,, +297,64,3,8919,1194,1304.054,,,,,,144,25,0,,,,, +297,67,3,8922,1216,1304.054,21,32.0,B0,pppp,2,144,23,2,,,,, +297,65,3,8920,1194,1304.096,,,,,,144,38,0,,,,, +297,66,3,8921,1194,1304.096,,,,,,144,45,0,,,,, +297,67,3,8922,1216,1304.142,,,,,,144,23,0,,,,, +297,68,3,8923,1237,1304.142,21,32.0,F1,pppp,2,144,29,2,,,,, +297,69,3,8924,1237,1304.142,32,32.0,D2,pppp,2,144,38,2,,,,, +297,70,3,8925,1237,1304.142,32,32.0,A2,pppp,2,144,45,2,,,,, +297,68,3,8923,1237,1304.23,,,,,,144,29,0,,,,, +297,71,3,8926,1258,1304.23,22,32.0,B0,pppp,2,144,23,2,,,,, +297,69,3,8924,1237,1304.276,,,,,,144,38,0,,,,, +297,70,3,8925,1237,1304.276,,,,,,144,45,0,,,,, +297,72,0,8927,1279,1304.318,,,,,,176,64,0,,,,,^ +297,71,3,8926,1258,1304.322,,,,,,144,23,0,,,,, +298,0,0,8928,0,1304.322,,,,,,,,,298,,,, +298,1,1,8929,0,1304.322,,,,,,176,102,0,,,,, +298,2,3,8930,0,1304.322,,,,,,176,102,0,,,,, +298,3,4,8931,0,1304.322,256,4.0,B0,pppp,2,144,23,2,,,,, +298,4,4,8932,0,1304.322,256,4.0,C#1,pppp,2,144,25,2,,,,, +298,5,4,8933,0,1304.322,256,4.0,F1,pppp,2,144,29,2,,,,, +298,6,4,8934,0,1304.322,256,4.0,D2,pppp,2,144,38,2,,,,, +298,7,4,8935,0,1304.322,256,4.0,A2,pppp,2,144,45,2,,,,, +298,8,3,8936,256,1305.394,,,,,,176,102,0,,,,, +298,9,4,8937,256,1305.394,85,8.0,B0,,,,,,,,,, +298,10,4,8938,256,1305.394,128,8.0,C#1,,,,,,,,,, +298,11,4,8939,256,1305.394,128,8.0,F1,,,,,,,,,, +298,12,4,8940,256,1305.394,128,8.0,D2,,,,,,,,,, +298,13,4,8941,256,1305.394,128,8.0,A2,,,,,,,,,, +298,14,4,8942,341,1305.749,171,4.0,B0,pppp,2,144,23,2,,,,, +298,15,4,8943,341,1305.749,256,4.0,C#1,pppp,2,144,25,2,,,,, +298,16,4,8944,341,1305.749,256,4.0,F1,pppp,2,144,29,2,,,,, +298,17,4,8945,341,1305.749,256,4.0,D2,pppp,2,144,38,2,,,,, +298,18,4,8946,341,1305.749,256,4.0,A2,pppp,2,144,45,2,,,,, +298,3,4,8931,0,1305.899,,,,,,144,23,0,,,,, +298,4,4,8932,0,1306.079,,,,,,144,25,0,,,,, +298,5,4,8933,0,1306.079,,,,,,144,29,0,,,,, +298,6,4,8934,0,1306.079,,,,,,144,38,0,,,,, +298,7,4,8935,0,1306.079,,,,,,144,45,0,,,,, +298,19,1,8947,512,1306.465,128,8.0,F4,pp,8,144,65,8,,,,, +298,20,1,8948,512,1306.465,128,8.0,C#6,pp,8,144,85,8,,,,, +298,21,3,8949,512,1306.465,32,32.0,F#3,pp,8,144,54,8,,,,, +298,22,4,8950,512,1306.465,341,2.0,B0,,,,,,,,,, +298,23,4,8951,512,1306.465,512,2.0,C#1,,,,,,,,,, +298,24,4,8952,512,1306.465,512,2.0,F1,,,,,,,,,, +298,25,4,8953,512,1306.465,512,2.0,D2,,,,,,,,,, +298,26,4,8954,512,1306.465,512,2.0,A2,,,,,,,,,, +298,21,3,8949,512,1306.599,,,,,,144,54,0,,,,, +298,27,3,8955,544,1306.599,96,16.0,G2,pp,8,144,43,8,,,,, +298,19,1,8947,512,1307.001,,,,,,144,65,0,,,,, +298,20,1,8948,512,1307.001,,,,,,144,85,0,,,,, +298,27,3,8955,544,1307.001,,,,,,144,43,0,,,,, +298,28,1,8956,640,1307.001,,,,,,176,102,0,,,,, +298,29,3,8957,640,1307.001,,,,,,176,102,0,,,,, +298,30,1,8958,768,1307.536,,,,,,176,102,0,,,,, +298,31,3,8959,768,1307.536,,,,,,176,102,0,,,,, +298,14,4,8942,341,1307.892,,,,,,144,23,0,,,,, +298,32,4,8960,853,1307.892,85,8.0,B0,pp,8,144,23,8,,,,, +298,33,4,8961,853,1307.892,128,8.0,C#1,pp,8,144,25,8,,,,, +298,34,4,8962,853,1307.892,128,8.0,F1,pp,8,144,29,8,,,,, +298,35,4,8963,853,1307.892,128,8.0,D2,pp,8,144,38,8,,,,, +298,36,4,8964,853,1307.892,128,8.0,A2,pp,8,144,45,8,,,,, +298,32,4,8960,853,1308.248,,,,,,144,23,0,,,,, +298,38,4,8965,938,1308.248,,,,,,176,102,0,,,,, +298,37,0,8966,938,1308.248,,,,,,176,64,127,,,,,V +298,33,4,8961,853,1308.428,,,,,,144,25,0,,,,, +298,34,4,8962,853,1308.428,,,,,,144,29,0,,,,, +298,35,4,8963,853,1308.428,,,,,,144,38,0,,,,, +298,36,4,8964,853,1308.428,,,,,,144,45,0,,,,, +298,41,0,8967,1024,1308.778,,,,,,176,64,0,,,,,^ +298,39,0,8968,1024,1308.778,,,,,,,,,,,38,, +298,40,0,8969,1024,1308.778,,,,,,,,,,6006,,, +298,42,4,8970,1024,1308.778,,,,,,176,102,0,,,,, +298,15,4,8943,341,1308.964,,,,,,144,25,0,,,,, +298,16,4,8944,341,1308.964,,,,,,144,29,0,,,,, +298,17,4,8945,341,1308.964,,,,,,144,38,0,,,,, +298,18,4,8946,341,1308.964,,,,,,144,45,0,,,,, +298,44,3,8971,,1310.23,,8.0,E1,s,0,144,28,0,,,,g, +298,44,3,8971,,1310.28,,,,,,144,28,0,,,,, +298,45,3,8972,,1310.305,,8.0,C3,s,0,144,48,0,,,,g, +298,45,3,8972,,1310.355,,,,,,144,48,0,,,,, +298,43,0,8973,1393,1310.38,,,,,,,,,,,54,, +299,0,0,8974,0,1311.001,,,,,,,,,299,,,, +299,1,1,8975,0,1311.001,256,4.0,G#4,p,11,144,68,11,,,,, +299,2,1,8976,0,1311.001,256,4.0,D#6,p,11,144,87,11,,,,, +299,3,2,8977,0,1311.001,,,,,,176,102,0,,,,, +299,4,3,8978,0,1311.001,,,,,,176,102,0,,,,, +299,5,4,8979,0,1311.001,,,,,,176,102,0,,,,, +299,6,0,8980,136,1311.591,,,,,,176,64,127,,,,,V +299,1,1,8975,0,1312.112,,,,,,144,68,0,,,,, +299,2,1,8976,0,1312.112,,,,,,144,87,0,,,,, +299,10,4,8981,,1312.112,,8.0,E4,ppp,5,144,64,5,,,,g, +299,10,4,8981,,1312.162,,,,,,144,64,0,,,,, +299,11,4,8982,,1312.187,,8.0,A#3,ppp,5,144,58,5,,,,g, +299,11,4,8982,,1312.237,,,,,,144,58,0,,,,, +299,12,4,8983,,1312.262,,8.0,D3,ppp,5,144,50,5,,,,g, +299,13,4,8984,,1312.262,,8.0,E3,ppp,5,144,52,5,,,,g, +299,12,4,8983,,1312.312,,,,,,144,50,0,,,,, +299,13,4,8984,,1312.312,,,,,,144,52,0,,,,, +299,7,1,8985,256,1312.412,512,2.0,C#4,p,11,144,61,11,,,,, +299,8,1,8986,256,1312.412,512,2.0,F#4,pp,8,144,66,8,,,,, +299,9,3,8987,256,1312.412,,,,,,176,102,0,,,,, +299,14,4,8988,256,1312.412,512,2.0,C1,ff,22,144,24,22,,,,, +299,15,4,8989,256,1312.412,512,2.0,C#1,pp,8,144,25,8,,,,, +299,16,4,8990,256,1312.412,512,2.0,E1,pp,8,144,28,8,,,,, +299,17,3,8991,358,1312.854,154,8.0,D#2,ppp,5,144,39,5,,,,, +299,17,3,8991,358,1313.523,,,,,,144,39,0,,,,, +299,18,3,8992,512,1313.523,21,32.0,G#1,ppp,5,144,32,5,,,,, +299,18,3,8992,512,1313.614,,,,,,144,32,0,,,,, +299,19,3,8993,533,1313.614,21,32.0,F2,ppp+,6,144,41,6,,,,, +299,19,3,8993,533,1313.705,,,,,,144,41,0,,,,, +299,20,3,8994,554,1313.705,22,32.0,F#1,pp-,7,144,30,7,,,,, +299,20,3,8994,554,1313.801,,,,,,144,30,0,,,,, +299,21,3,8995,576,1313.801,21,32.0,G#1,pp-,7,144,32,7,,,,, +299,21,3,8995,576,1313.892,,,,,,144,32,0,,,,, +299,22,3,8996,597,1313.892,21,32.0,F2,pp,8,144,41,8,,,,, +299,22,3,8996,597,1313.983,,,,,,144,41,0,,,,, +299,23,3,8997,618,1313.983,22,32.0,F#1,pp+,9,144,30,9,,,,, +299,23,3,8997,618,1314.078,,,,,,144,30,0,,,,, +299,24,3,8998,640,1314.078,18,64.0,F3,p-,10,144,53,10,,,,, +299,24,3,8998,640,1314.157,,,,,,144,53,0,,,,, +299,25,3,8999,658,1314.157,36,32.0,E4,p,11,144,64,11,,,,, +299,25,3,8999,658,1314.313,,,,,,144,64,0,,,,, +299,26,3,9000,694,1314.313,19,64.0,F3,p+,12,144,53,12,,,,, +299,26,3,9000,694,1314.395,,,,,,144,53,0,,,,, +299,27,3,9001,713,1314.395,18,64.0,E4,mp-,13,144,64,13,,,,, +299,27,3,9001,713,1314.473,,,,,,144,64,0,,,,, +299,28,3,9002,731,1314.473,18,64.0,F3,mp-,13,144,53,13,,,,, +299,29,0,9003,749,1314.51,,,,,,176,64,0,,,,,^ +299,28,3,9002,731,1314.551,,,,,,144,53,0,,,,, +299,30,3,9004,749,1314.551,19,64.0,F#2,mp,14,144,42,14,,,,, +299,7,1,8985,256,1314.634,,,,,,144,61,0,,,,, +299,15,4,8989,256,1314.634,,,,,,144,25,0,,,,, +299,16,4,8990,256,1314.634,,,,,,144,28,0,,,,, +299,30,3,9004,749,1314.634,,,,,,144,42,0,,,,, +299,31,1,9005,768,1314.634,256,4.0,C#4,pp,8,144,61,8,,,,, +299,32,2,9006,768,1314.634,,,,,,176,102,0,,,,, +299,33,3,9007,768,1314.634,256,4.0,E1,ff,22,144,28,22,,,,, +299,34,4,9008,768,1314.634,256,4.0,C#1,pp,8,144,25,8,,,,, +299,35,4,9009,768,1314.634,256,4.0,C2,mp,14,144,36,14,,,,, +299,8,1,8986,256,1314.634,,,,,,144,66,0,,,,, +299,14,4,8988,256,1314.634,,,,,,144,24,0,,,,, +299,36,0,9010,799,1314.81,,,,,,176,64,127,,,,,V +299,37,2,9011,870,1315.077,26,32.0,D3,pp-,7,144,50,7,,,,, +299,37,2,9011,870,1315.19,,,,,,144,50,0,,,,, +299,38,2,9012,896,1315.19,25,32.0,F#5,pp-,7,144,78,7,,,,, +299,38,2,9012,896,1315.298,,,,,,144,78,0,,,,, +299,39,2,9013,921,1315.298,26,32.0,E5,pp-,7,144,76,7,,,,, +299,39,2,9013,921,1315.411,,,,,,144,76,0,,,,, +299,40,2,9014,947,1315.411,25,32.0,D#2,pp-,7,144,39,7,,,,, +299,40,2,9014,947,1315.519,,,,,,144,39,0,,,,, +299,41,2,9015,972,1315.519,52,16.0,A#3,pp-,7,144,58,7,,,,, +299,41,2,9015,972,1315.745,,,,,,144,58,0,,,,, +299,42,1,9016,1024,1315.745,25,32.0,F#5,ppp+,6,144,78,6,,,,, +299,43,3,9017,1024,1315.745,256,4.0,G#2,ppp+,6,144,44,6,,,,, +299,44,4,9018,1024,1315.745,,,,,,176,102,0,,,,, +299,51,2,9019,1024,1315.745,,,,,,176,102,0,,,,, +299,31,1,9005,768,1315.745,,,,,,144,61,0,,,,, +299,33,3,9007,768,1315.745,,,,,,144,28,0,,,,, +299,34,4,9008,768,1315.745,,,,,,144,25,0,,,,, +299,35,4,9009,768,1315.745,,,,,,144,36,0,,,,, +299,42,1,9016,1024,1315.854,,,,,,144,78,0,,,,, +299,45,1,9020,1049,1315.854,26,32.0,E4,ppp+,6,144,64,6,,,,, +299,45,1,9020,1049,1315.966,,,,,,144,64,0,,,,, +299,46,1,9021,1075,1315.966,25,32.0,D3,ppp+,6,144,50,6,,,,, +299,46,1,9021,1075,1316.075,,,,,,144,50,0,,,,, +299,47,1,9022,1100,1316.075,26,32.0,F#5,ppp+,6,144,78,6,,,,, +299,47,1,9022,1100,1316.188,,,,,,144,78,0,,,,, +299,48,1,9023,1126,1316.188,26,32.0,E4,ppp+,6,144,64,6,,,,, +299,48,1,9023,1126,1316.301,,,,,,144,64,0,,,,, +299,49,1,9024,1152,1316.301,51,16.0,D#2,ppp+,6,144,39,6,,,,, +299,49,1,9024,1152,1316.522,,,,,,144,39,0,,,,, +299,50,1,9025,1203,1316.522,25,32.0,A#3,ppp,5,144,58,5,,,,, +299,50,1,9025,1203,1316.63,,,,,,144,58,0,,,,, +299,52,1,9026,1228,1316.63,26,32.0,E4,ppp,5,144,64,5,,,,, +299,52,1,9026,1228,1316.743,,,,,,144,64,0,,,,, +299,53,1,9027,1254,1316.743,26,32.0,D#1,ppp,5,144,27,5,,,,, +299,53,1,9027,1254,1316.856,,,,,,144,27,0,,,,, +300,0,0,9028,0,1316.856,,,,,,,,,300,,,, +300,1,1,9029,0,1316.856,,,,,,176,102,0,,,,, +300,2,2,9030,0,1316.856,51,16.0,E4,mf,17,144,64,17,,,,, +300,3,3,9031,,1316.856,,8.0,E1,fff,24,144,28,23,,,,g, +299,43,3,9017,1024,1316.856,,,,,,144,44,0,,,,, +300,3,3,9031,,1316.906,,,,,,144,28,0,,,,, +300,4,3,9032,0,1316.931,768,2.0,E1,,,,,,,,,, +300,5,3,9033,0,1316.931,512,2.0,C3,fff,24,144,48,23,,,,, +300,6,4,9034,0,1316.931,,,,,,176,102,0,,,,, +300,2,2,9030,0,1317.078,,,,,,144,64,0,,,,, +300,7,0,9035,51,1317.153,,,,,,176,64,0,,,,,^ +300,8,2,9036,51,1317.153,51,16.0,F2,f,20,144,41,20,,,,, +300,9,4,9037,64,1317.209,64,16.0,C1,ff,22,144,24,22,,,,, +300,10,4,9038,64,1317.209,64,16.0,F#1,ff,22,144,30,22,,,,, +300,11,4,9039,64,1317.209,64,16.0,G#1,ff,22,144,32,22,,,,, +300,12,4,9040,64,1317.209,64,16.0,F3,ff,22,144,53,22,,,,, +300,13,4,9041,64,1317.209,64,16.0,E4,ff,22,144,64,22,,,,, +300,14,1,9042,85,1317.3,85,8.0,D3,pp,8,144,50,8,,,,, +300,15,2,9043,102,1317.374,154,8.0,C2,ff,22,144,36,22,,,,, +300,8,2,9036,51,1317.374,,,,,,144,41,0,,,,, +300,17,4,9044,128,1317.487,,,,,,176,102,0,,,,, +300,16,0,9045,128,1317.487,,,,,,176,64,127,,,,,V +300,9,4,9037,64,1317.487,,,,,,144,24,0,,,,, +300,10,4,9038,64,1317.487,,,,,,144,30,0,,,,, +300,11,4,9039,64,1317.487,,,,,,144,32,0,,,,, +300,12,4,9040,64,1317.487,,,,,,144,53,0,,,,, +300,13,4,9041,64,1317.487,,,,,,144,64,0,,,,, +300,14,1,9042,85,1317.669,,,,,,144,50,0,,,,, +300,18,1,9046,170,1317.669,86,8.0,G6,f,20,144,91,20,,,,, +300,15,2,9043,102,1318.042,,,,,,144,36,0,,,,, +300,18,1,9046,170,1318.042,,,,,,144,91,0,,,,, +300,19,1,9047,256,1318.042,21,32.0,A#5,f,20,144,82,20,,,,, +300,20,2,9048,256,1318.042,512,2.0,A#4,pp,8,144,70,8,,,,, +300,21,4,9049,256,1318.042,,,,,,176,102,0,,,,, +300,19,1,9047,256,1318.133,,,,,,144,82,0,,,,, +300,22,1,9050,277,1318.133,21,32.0,F#2,f-,19,144,42,19,,,,, +300,22,1,9050,277,1318.225,,,,,,144,42,0,,,,, +300,23,1,9051,298,1318.225,22,32.0,D4,mf+,18,144,62,18,,,,, +300,23,1,9051,298,1318.32,,,,,,144,62,0,,,,, +300,24,1,9052,320,1318.32,21,32.0,G#4,mf-,16,144,68,16,,,,, +300,24,1,9052,320,1318.411,,,,,,144,68,0,,,,, +300,25,1,9053,341,1318.411,21,32.0,D4,mp+,15,144,62,15,,,,, +300,25,1,9053,341,1318.502,,,,,,144,62,0,,,,, +300,26,1,9054,362,1318.502,22,32.0,G#4,mp,14,144,68,14,,,,, +300,26,1,9054,362,1318.598,,,,,,144,68,0,,,,, +300,27,1,9055,384,1318.598,21,32.0,D4,mp-,13,144,62,13,,,,, +300,27,1,9055,384,1318.689,,,,,,144,62,0,,,,, +300,28,1,9056,405,1318.689,21,32.0,G#4,p+,12,144,68,12,,,,, +300,28,1,9056,405,1318.78,,,,,,144,68,0,,,,, +300,29,1,9057,426,1318.78,22,32.0,G6,p-,10,144,91,10,,,,, +300,29,1,9057,426,1318.876,,,,,,144,91,0,,,,, +300,30,1,9058,448,1318.876,21,32.0,G#4,pp+,9,144,68,9,,,,, +300,30,1,9058,448,1318.967,,,,,,144,68,0,,,,, +300,31,1,9059,469,1318.967,43,16.0,G6,pp,8,144,91,8,,,,, +300,31,1,9059,469,1319.153,,,,,,144,91,0,,,,, +300,32,1,9060,512,1319.153,,,,,,176,102,0,,,,, +300,5,3,9033,0,1319.153,,,,,,144,48,0,,,,, +300,33,1,9061,768,1320.265,,,,,,176,102,0,,,,, +300,34,2,9062,768,1320.265,,,,,,176,102,0,,,,, +300,35,3,9063,768,1320.265,,,,,,176,102,0,,,,, +300,36,4,9064,768,1320.265,,,,,,176,102,0,,,,, +300,20,2,9048,256,1320.265,,,,,,144,70,0,,,,, +300,37,0,9065,896,1320.82,,,,,,176,64,0,,,,,^ +300,38,4,9066,921,1320.929,51,16.0,G#2,mp,14,144,44,14,,,,, +300,39,0,9067,921,1320.929,,,,,,,,,,6007,,, +300,40,3,9068,,1321.002,,8.0,F#1,mf-,16,144,30,16,,,,g, +300,40,3,9068,,1321.052,,,,,,144,30,0,,,,, +300,41,3,9069,,1321.077,,8.0,A#4,mf+,18,144,70,18,,,,g, +300,41,3,9069,,1321.127,,,,,,144,70,0,,,,, +300,38,4,9066,921,1321.15,,,,,,144,44,0,,,,, +300,42,3,9070,938,1321.152,86,8.0,D3,f,20,144,50,20,,,,, +300,43,4,9071,972,1321.3,52,16.0,F#2,p,11,144,42,11,,,,, +300,44,0,9072,978,1321.326,,,,,,176,64,127,,,,,V +300,43,4,9071,972,1321.526,,,,,,144,42,0,,,,, +300,42,3,9070,938,1321.526,,,,,,144,50,0,,,,, +300,45,0,9073,1024,1321.571,,,,,,,,,,,44,, +300,48,1,9074,1024,1321.571,153,8.0,A#4,fff,24,144,70,23,,,,, +300,49,1,9075,1024,1321.571,128,8.0,E5,fff,24,144,76,23,,,,, +300,50,2,9076,1024,1321.571,256,4.0,D4,p,11,144,62,11,,,,, +300,46,1,9077,,1321.571,,8.0,D3,mf,17,144,50,17,,,,g, +300,46,1,9077,,1321.621,,,,,,144,50,0,,,,, +300,49,1,9075,1024,1321.646,,,,,,144,76,0,,,,, +300,47,1,9078,,1321.646,,8.0,E5,f,20,144,76,20,,,,g, +300,58,3,9079,1024,1321.721,256,4.0,B1,p,11,144,35,11,,,,, +300,51,3,9080,,1321.721,,8.0,E4,p,11,144,64,11,,,,g, +300,51,3,9080,,1321.771,,,,,,144,64,0,,,,, +300,52,3,9081,,1321.796,,8.0,C2,mp-,13,144,36,13,,,,g, +300,52,3,9081,,1321.846,,,,,,144,36,0,,,,, +300,53,3,9082,,1321.871,,8.0,F3,mp+,15,144,53,15,,,,g, +300,53,3,9082,,1321.921,,,,,,144,53,0,,,,, +300,54,3,9083,,1321.946,,8.0,A#1,mf-,16,144,34,16,,,,g, +300,55,3,9084,,1321.946,,8.0,F#2,mf-,16,144,42,16,,,,g, +300,54,3,9083,,1321.996,,,,,,144,34,0,,,,, +300,55,3,9084,,1321.996,,,,,,144,42,0,,,,, +300,56,3,9085,,1322.021,,8.0,G#2,mf+,18,144,44,18,,,,g, +300,56,3,9085,,1322.071,,,,,,144,44,0,,,,, +300,57,3,9086,,1322.096,,8.0,C3,f,20,144,48,20,,,,g, +300,57,3,9086,,1322.146,,,,,,144,48,0,,,,, +300,59,3,9087,1024,1322.246,256,4.0,F#2,ff,22,144,42,22,,,,, +300,60,4,9088,1024,1322.246,,,,,,176,102,0,,,,, +300,61,1,9089,1177,1323.061,103,8.0,A#4,,,,,,,,,, +300,62,1,9090,1177,1323.061,128,8.0,E5,,,,,,,,,, +300,63,1,9091,1177,1323.061,128,8.0,F5,f,20,144,77,20,,,,, +301,0,0,9092,0,1323.61,,,,,,,,,301,,,, +301,1,1,9093,0,1323.61,153,8.0,A#4,,,,,,,,,, +301,2,1,9094,0,1323.61,128,8.0,E5,,,,,,,,,, +301,3,1,9095,0,1323.61,128,8.0,F5,,,,,,,,,, +301,4,2,9096,0,1323.61,153,8.0,D4,,,,,,,,,, +301,5,3,9097,0,1323.61,153,8.0,B1,,,,,,,,,, +301,6,3,9098,0,1323.61,128,8.0,F#2,,,,,,,,,, +301,7,4,9099,0,1323.61,153,8.0,B4,pp,8,144,71,8,,,,, +300,47,1,9078,,1323.616,,,,,,144,76,0,,,,, +300,64,1,9100,,1323.668,,8.0,D#5,pp,8,144,75,8,,,,g, +300,64,1,9100,,1323.718,,,,,,144,75,0,,,,, +300,48,1,9074,1024,1323.75,,,,,,144,70,0,,,,, +300,50,2,9076,1024,1323.75,,,,,,144,62,0,,,,, +300,58,3,9079,1024,1323.9,,,,,,144,35,0,,,,, +300,59,3,9087,1024,1324.291,,,,,,144,42,0,,,,, +300,63,1,9091,1177,1324.425,,,,,,144,77,0,,,,, +301,7,4,9099,0,1324.425,,,,,,144,71,0,,,,, +301,8,1,9101,153,1324.425,103,8.0,A#4,mp,14,144,70,14,,,,, +301,9,1,9102,153,1324.425,128,8.0,F5,f,20,,,,,,,, +301,10,2,9103,153,1324.425,103,8.0,D4,pp,8,144,62,8,,,,, +301,11,3,9104,153,1324.425,103,8.0,B1,pp,8,144,35,8,,,,, +301,12,3,9105,153,1324.425,128,8.0,F#2,pp,8,144,42,8,,,,, +301,13,4,9106,153,1324.425,26,32.0,F5,f,20,144,77,20,,,,, +301,14,4,9107,179,1324.563,13,64.0,A1,mf,17,144,33,17,,,,, +301,14,4,9107,179,1324.632,,,,,,144,33,0,,,,, +301,15,4,9108,192,1324.632,25,32.0,G1,mp+,15,144,31,15,,,,, +301,13,4,9106,153,1324.766,,,,,,144,77,0,,,,, +301,15,4,9108,192,1324.766,,,,,,144,31,0,,,,, +301,16,4,9109,217,1324.766,13,64.0,F5,mp-,13,144,77,13,,,,, +301,17,4,9110,230,1324.835,26,32.0,G1,p,11,144,31,11,,,,, +301,11,3,9104,153,1324.973,,,,,,144,35,0,,,,, +301,12,3,9105,153,1324.973,,,,,,144,42,0,,,,, +301,17,4,9110,230,1324.973,,,,,,144,31,0,,,,, +301,18,1,9111,256,1324.973,256,4.0,A#4,,,,,,,,,, +301,19,1,9112,256,1324.973,256,4.0,F5,,,,,,,,,, +301,20,2,9113,256,1324.973,256,4.0,D4,,,,,,,,,, +301,21,3,9114,256,1324.973,256,4.0,B1,ppp,5,144,35,5,,,,, +301,22,3,9115,256,1324.973,256,4.0,F#2,ppp,5,144,42,5,,,,, +301,23,4,9116,256,1324.973,256,4.0,G1,ppp,5,144,31,5,,,,, +301,24,1,9117,512,1326.337,153,8.0,A#4,,,,,,,,,, +301,25,1,9118,512,1326.337,128,8.0,F5,,,,,,,,,, +301,26,2,9119,512,1326.337,153,8.0,D4,,,,,,,,,, +301,27,3,9120,512,1326.337,153,8.0,B1,,,,,,,,,, +301,28,3,9121,512,1326.337,128,8.0,F#2,,,,,,,,,, +301,29,4,9122,512,1326.337,51,16.0,G1,,,,,,,,,, +301,23,4,9116,256,1326.609,,,,,,144,31,0,,,,, +301,30,0,9123,563,1326.609,,,,,,176,64,0,,,,,^ +301,31,4,9124,563,1326.609,102,8.0,F3,ff,22,144,53,22,,,,, +301,22,3,9115,256,1327.019,,,,,,144,42,0,,,,, +301,31,4,9124,563,1327.152,,,,,,144,53,0,,,,, +301,32,1,9125,665,1327.152,103,8.0,A#4,ppp,5,144,70,5,,,,, +301,33,1,9126,665,1327.152,128,8.0,F5,ppp,5,144,77,5,,,,, +301,34,2,9127,665,1327.152,,,,,,176,102,0,,,,, +301,36,3,9128,665,1327.152,103,8.0,B1,ppp,5,144,35,5,,,,, +301,37,3,9129,665,1327.152,128,8.0,F#2,ppp,5,144,42,5,,,,, +301,38,4,9130,665,1327.152,,,,,,176,102,0,,,,, +301,35,0,9131,665,1327.152,,,,,,176,64,127,,,,,V +301,8,1,9101,153,1327.152,,,,,,144,70,0,,,,, +301,10,2,9103,153,1327.152,,,,,,144,62,0,,,,, +301,16,4,9109,217,1327.152,,,,,,144,77,0,,,,, +301,21,3,9114,256,1327.152,,,,,,144,35,0,,,,, +301,39,0,9132,768,1327.518,,,,,,,,,,,66,, +301,40,1,9133,768,1327.518,256,4.0,F#6,fff,24,144,90,23,,,,, +301,41,2,9134,768,1327.518,,,,,,176,102,0,,,,, +301,42,3,9135,768,1327.518,,,,,,176,102,0,,,,, +301,43,4,9136,768,1327.518,,,,,,176,102,0,,,,, +301,32,1,9125,665,1327.701,,,,,,144,70,0,,,,, +301,36,3,9128,665,1327.701,,,,,,144,35,0,,,,, +301,44,3,9137,844,1327.788,77,16.0,D4,pp,8,144,62,8,,,,, +301,33,1,9126,665,1327.834,,,,,,144,77,0,,,,, +301,37,3,9129,665,1327.834,,,,,,144,42,0,,,,, +301,44,3,9137,844,1328.061,,,,,,144,62,0,,,,, +301,45,3,9138,921,1328.061,13,64.0,F#2,pp,8,144,42,8,,,,, +301,45,3,9138,921,1328.107,,,,,,144,42,0,,,,, +301,46,3,9139,934,1328.107,26,32.0,B2,pp,8,144,47,8,,,,, +301,46,3,9139,934,1328.199,,,,,,144,47,0,,,,, +301,47,3,9140,960,1328.199,12,64.0,F#2,pp,8,144,42,8,,,,, +301,47,3,9140,960,1328.242,,,,,,144,42,0,,,,, +301,48,3,9141,972,1328.242,26,32.0,B2,pp-,7,144,47,7,,,,, +301,48,3,9141,972,1328.334,,,,,,144,47,0,,,,, +301,49,3,9142,998,1328.334,13,64.0,F#2,pp-,7,144,42,7,,,,, +301,49,3,9142,998,1328.381,,,,,,144,42,0,,,,, +301,50,3,9143,1011,1328.381,13,64.0,B2,pp-,7,144,47,7,,,,, +301,50,3,9143,1011,1328.427,,,,,,144,47,0,,,,, +301,51,1,9144,1024,1328.427,256,4.0,F4,mf,17,144,65,17,,,,, +301,52,2,9145,1024,1328.427,,,,,,176,102,0,,,,, +301,53,3,9146,1024,1328.427,,,,,,176,102,0,,,,, +301,40,1,9133,768,1328.427,,,,,,144,90,0,,,,, +301,54,3,9147,1075,1328.608,13,64.0,F#2,ppp+,6,144,42,6,,,,, +301,54,3,9147,1075,1328.654,,,,,,144,42,0,,,,, +301,55,3,9148,1088,1328.654,25,32.0,B2,ppp+,6,144,47,6,,,,, +301,55,3,9148,1088,1328.743,,,,,,144,47,0,,,,, +301,56,3,9149,1113,1328.743,13,64.0,F#2,ppp+,6,144,42,6,,,,, +301,56,3,9149,1113,1328.789,,,,,,144,42,0,,,,, +301,57,3,9150,1126,1328.789,51,16.0,B2,ppp+,6,144,47,6,,,,, +301,57,3,9150,1126,1328.97,,,,,,144,47,0,,,,, +301,58,3,9151,1177,1328.97,13,64.0,F#2,ppp,5,144,42,5,,,,, +301,58,3,9151,1177,1329.016,,,,,,144,42,0,,,,, +301,59,3,9152,1190,1329.016,26,32.0,B2,ppp,5,144,47,5,,,,, +301,59,3,9152,1190,1329.109,,,,,,144,47,0,,,,, +301,60,3,9153,1216,1329.109,12,64.0,F#2,ppp,5,144,42,5,,,,, +301,60,3,9153,1216,1329.151,,,,,,144,42,0,,,,, +301,61,3,9154,1228,1329.151,52,16.0,B2,ppp,5,144,47,5,,,,, +301,51,1,9144,1024,1329.336,,,,,,144,65,0,,,,, +301,61,3,9154,1228,1329.336,,,,,,144,47,0,,,,, +301,62,1,9155,1280,1329.336,,,,,,176,102,0,,,,, +301,63,2,9156,1280,1329.336,,,,,,176,102,0,,,,, +301,64,3,9157,1280,1329.336,,,,,,176,102,0,,,,, +301,65,4,9158,1280,1329.336,128,8.0,G#1,pp,8,144,32,8,,,,, +301,66,3,9159,1331,1329.517,13,64.0,F#2,pp,8,144,42,8,,,,, +301,66,3,9159,1331,1329.563,,,,,,144,42,0,,,,, +301,67,3,9160,1344,1329.563,25,32.0,B2,pp,8,144,47,8,,,,, +301,67,3,9160,1344,1329.652,,,,,,144,47,0,,,,, +301,68,3,9161,1369,1329.652,13,64.0,F#2,pp,8,144,42,8,,,,, +301,68,3,9161,1369,1329.698,,,,,,144,42,0,,,,, +301,69,0,9162,1382,1329.698,,,,,,176,64,0,,,,,^ +301,70,3,9163,1382,1329.698,26,32.0,B2,pp,8,144,47,8,,,,, +301,65,4,9158,1280,1329.79,,,,,,144,32,0,,,,, +301,70,3,9163,1382,1329.79,,,,,,144,47,0,,,,, +301,71,0,9164,1408,1329.825,,,,,,,,,,,48,, +301,72,1,9165,1408,1329.825,21,64.0,E2,p,11,144,40,11,,,,, +301,73,3,9166,1408,1329.825,128,8.0,C2,ff,22,144,36,22,,,,, +301,74,4,9167,1408,1329.825,,,,,,176,102,0,,,,, +301,72,1,9165,1408,1329.928,,,,,,144,40,0,,,,, +301,75,1,9168,1429,1329.928,21,64.0,F#5,p-,10,144,78,10,,,,, +301,75,1,9168,1429,1330.03,,,,,,144,78,0,,,,, +301,76,1,9169,1450,1330.03,14,64.0,C3,pp,8,144,48,8,,,,, +301,76,1,9169,1450,1330.098,,,,,,144,48,0,,,,, +301,77,1,9170,1464,1330.098,15,64.0,F#5,pp,8,144,78,8,,,,, +301,77,1,9170,1464,1330.172,,,,,,144,78,0,,,,, +301,78,1,9171,1479,1330.172,14,64.0,G#2,pp-,7,144,44,7,,,,, +301,79,1,9172,1479,1330.172,16,64.0,C3,pp-,7,144,48,7,,,,, +301,78,1,9171,1479,1330.24,,,,,,144,44,0,,,,, +301,80,1,9173,1493,1330.24,14,64.0,F4,ppp+,6,144,65,6,,,,, +301,81,1,9174,1493,1330.24,16,64.0,F#5,ppp+,6,144,78,6,,,,, +301,79,1,9172,1479,1330.25,,,,,,144,48,0,,,,, +301,80,1,9173,1493,1330.308,,,,,,144,65,0,,,,, +301,82,1,9175,1507,1330.308,29,32.0,G#2,ppp,5,144,44,5,,,,, +301,81,1,9174,1493,1330.318,,,,,,144,78,0,,,,, +301,73,3,9166,1408,1330.45,,,,,,144,36,0,,,,, +301,82,1,9175,1507,1330.45,,,,,,144,44,0,,,,, +302,0,0,9176,0,1330.45,,,,,,,,,302,,,, +302,1,0,9177,0,1330.45,,,,,,,,,,6008,,, +302,2,0,9178,0,1330.45,,,,,,,,,,,80,, +302,3,1,9179,,1330.45,,8.0,F#4,ppp,5,144,66,5,,,,g, +302,3,1,9179,,1330.5,,,,,,144,66,0,,,,, +302,4,1,9180,0,1330.525,384,4.0,E1,ppp,5,144,28,5,,,,, +302,5,3,9181,0,1330.525,,,,,,176,102,0,,,,, +302,6,3,9182,,1331.275,,8.0,C#5,p,11,144,73,11,,,,g, +302,6,3,9182,,1331.325,,,,,,144,73,0,,,,, +302,7,3,9183,,1331.35,,8.0,A1,p,11,144,33,11,,,,g, +302,7,3,9183,,1331.4,,,,,,144,33,0,,,,, +302,8,3,9184,,1331.425,,8.0,C#4,p-,10,144,61,10,,,,g, +302,8,3,9184,,1331.475,,,,,,144,61,0,,,,, +302,9,3,9185,,1331.5,,8.0,A1,p-,10,144,33,10,,,,g, +302,9,3,9185,,1331.55,,,,,,144,33,0,,,,, +302,10,3,9186,,1331.575,,8.0,C#4,pp,8,144,61,8,,,,g, +302,10,3,9186,,1331.625,,,,,,144,61,0,,,,, +302,4,1,9180,0,1331.65,,,,,,144,28,0,,,,, +302,11,3,9187,256,1331.65,153,8.0,A1,pp,8,144,33,8,,,,, +302,12,3,9188,256,1331.65,128,8.0,F#2,pp,8,144,42,8,,,,, +302,13,3,9189,256,1331.65,128,8.0,C#4,pp,8,144,61,8,,,,, +302,12,3,9188,256,1332.025,,,,,,144,42,0,,,,, +302,13,3,9189,256,1332.025,,,,,,144,61,0,,,,, +302,14,1,9190,384,1332.025,,,,,,176,102,0,,,,, +302,11,3,9187,256,1332.098,,,,,,144,33,0,,,,, +302,15,3,9191,409,1332.098,103,8.0,A1,ff,22,144,33,22,,,,, +302,16,3,9192,409,1332.098,128,8.0,F#2,ff,22,144,42,22,,,,, +302,17,3,9193,409,1332.098,128,8.0,C#4,ff,22,144,61,22,,,,, +302,19,1,9194,,1332.325,,8.0,D#5,p,11,144,75,11,,,,g, +302,19,1,9194,,1332.375,,,,,,144,75,0,,,,, +302,15,3,9191,409,1332.4,,,,,,144,33,0,,,,, +302,17,3,9193,409,1332.4,,,,,,144,61,0,,,,, +302,20,1,9195,512,1332.4,512,2.0,B4,p,11,144,71,11,,,,, +302,21,3,9196,512,1332.4,28,32.0,C#4,ppp,5,144,61,5,,,,, +302,18,0,9197,512,1332.4,,,,,,176,64,127,,,,,V +302,16,3,9192,409,1332.473,,,,,,144,42,0,,,,, +302,21,3,9196,512,1332.482,,,,,,144,61,0,,,,, +302,22,3,9198,540,1332.482,28,32.0,A1,ppp,5,144,33,5,,,,, +302,22,3,9198,540,1332.564,,,,,,144,33,0,,,,, +302,23,3,9199,568,1332.564,29,32.0,F#2,ppp,5,144,42,5,,,,, +302,23,3,9199,568,1332.649,,,,,,144,42,0,,,,, +302,24,3,9200,597,1332.649,28,32.0,C#4,ppp,5,144,61,5,,,,, +302,24,3,9200,597,1332.731,,,,,,144,61,0,,,,, +302,25,3,9201,625,1332.731,29,32.0,F#2,ppp,5,144,42,5,,,,, +302,25,3,9201,625,1332.816,,,,,,144,42,0,,,,, +302,26,3,9202,654,1332.816,57,16.0,A1,ppp,5,144,33,5,,,,, +302,26,3,9202,654,1332.983,,,,,,144,33,0,,,,, +302,27,3,9203,711,1332.983,28,32.0,C#4,ppp,5,144,61,5,,,,, +302,27,3,9203,711,1333.065,,,,,,144,61,0,,,,, +302,28,3,9204,739,1333.065,29,32.0,F#2,ppp,5,144,42,5,,,,, +302,28,3,9204,739,1333.15,,,,,,144,42,0,,,,, +302,29,3,9205,768,1333.15,28,32.0,C#4,ppp,5,144,61,5,,,,, +302,29,3,9205,768,1333.232,,,,,,144,61,0,,,,, +302,30,3,9206,796,1333.232,28,32.0,A1,ppp+,6,144,33,6,,,,, +302,30,3,9206,796,1333.314,,,,,,144,33,0,,,,, +302,31,3,9207,824,1333.314,29,32.0,F#2,ppp+,6,144,42,6,,,,, +302,31,3,9207,824,1333.399,,,,,,144,42,0,,,,, +302,32,3,9208,853,1333.399,28,32.0,C#4,ppp+,6,144,61,6,,,,, +302,32,3,9208,853,1333.481,,,,,,144,61,0,,,,, +302,33,3,9209,881,1333.481,29,32.0,F#2,ppp+,6,144,42,6,,,,, +302,33,3,9209,881,1333.566,,,,,,144,42,0,,,,, +302,34,3,9210,910,1333.566,57,16.0,A1,ppp+,6,144,33,6,,,,, +302,34,3,9210,910,1333.733,,,,,,144,33,0,,,,, +302,35,3,9211,967,1333.733,28,32.0,C#4,pp-,7,144,61,7,,,,, +302,35,3,9211,967,1333.815,,,,,,144,61,0,,,,, +302,36,3,9212,995,1333.815,29,32.0,F#2,pp-,7,144,42,7,,,,, +302,20,1,9195,512,1333.9,,,,,,144,71,0,,,,, +302,36,3,9212,995,1333.9,,,,,,144,42,0,,,,, +303,0,0,9213,0,1333.9,,,,,,,,,303,,,, +303,1,1,9214,0,1333.9,,,,,,176,102,0,,,,, +303,2,3,9215,0,1333.9,28,32.0,C#4,pp-,7,144,61,7,,,,, +303,2,3,9215,0,1333.982,,,,,,144,61,0,,,,, +303,3,3,9216,28,1333.982,28,32.0,A1,pp-,7,144,33,7,,,,, +303,3,3,9216,28,1334.064,,,,,,144,33,0,,,,, +303,4,3,9217,56,1334.064,29,32.0,F#2,pp-,7,144,42,7,,,,, +303,4,3,9217,56,1334.149,,,,,,144,42,0,,,,, +303,5,3,9218,85,1334.149,28,32.0,C#4,pp,8,144,61,8,,,,, +303,5,3,9218,85,1334.231,,,,,,144,61,0,,,,, +303,6,3,9219,113,1334.231,29,32.0,F#2,pp,8,144,42,8,,,,, +303,6,3,9219,113,1334.316,,,,,,144,42,0,,,,, +303,7,3,9220,142,1334.316,57,16.0,A1,pp,8,144,33,8,,,,, +303,7,3,9220,142,1334.483,,,,,,144,33,0,,,,, +303,8,3,9221,199,1334.483,28,32.0,C#4,pp,8,144,61,8,,,,, +303,8,3,9221,199,1334.565,,,,,,144,61,0,,,,, +303,9,3,9222,227,1334.565,29,32.0,F#2,pp+,9,144,42,9,,,,, +303,9,3,9222,227,1334.65,,,,,,144,42,0,,,,, +303,10,3,9223,256,1334.65,28,32.0,C#4,pp+,9,144,61,9,,,,, +303,10,3,9223,256,1334.732,,,,,,144,61,0,,,,, +303,11,3,9224,284,1334.732,28,32.0,A1,pp+,9,144,33,9,,,,, +303,11,3,9224,284,1334.814,,,,,,144,33,0,,,,, +303,12,3,9225,312,1334.814,29,32.0,F#2,pp+,9,144,42,9,,,,, +303,12,3,9225,312,1334.899,,,,,,144,42,0,,,,, +303,13,3,9226,341,1334.899,28,32.0,C#4,pp+,9,144,61,9,,,,, +303,13,3,9226,341,1334.981,,,,,,144,61,0,,,,, +303,14,3,9227,369,1334.981,29,32.0,F#2,pp+,9,144,42,9,,,,, +303,14,3,9227,369,1335.066,,,,,,144,42,0,,,,, +303,15,3,9228,398,1335.066,57,16.0,A1,p-,10,144,33,10,,,,, +303,15,3,9228,398,1335.233,,,,,,144,33,0,,,,, +303,16,3,9229,455,1335.233,28,32.0,C#4,p-,10,144,61,10,,,,, +303,16,3,9229,455,1335.315,,,,,,144,61,0,,,,, +303,17,3,9230,483,1335.315,29,32.0,F#2,p-,10,144,42,10,,,,, +303,17,3,9230,483,1335.4,,,,,,144,42,0,,,,, +303,18,3,9231,512,1335.4,28,32.0,C#4,p-,10,144,61,10,,,,, +303,19,1,9232,512,1335.4,,,,,,176,102,0,,,,, +303,18,3,9231,512,1335.482,,,,,,144,61,0,,,,, +303,20,3,9233,540,1335.482,28,32.0,A1,p-,10,144,33,10,,,,, +303,20,3,9233,540,1335.564,,,,,,144,33,0,,,,, +303,21,3,9234,568,1335.564,29,32.0,F#2,p-,10,144,42,10,,,,, +303,21,3,9234,568,1335.649,,,,,,144,42,0,,,,, +303,22,3,9235,597,1335.649,99,16.0,A1,p-,10,144,33,10,,,,, +303,23,0,9236,597,1335.649,,,,,,,,,,,66,, +303,24,1,9237,640,1335.802,28,32.0,D#5,p,11,144,75,11,,,,, +303,24,1,9237,640,1335.901,,,,,,144,75,0,,,,, +303,25,1,9238,668,1335.901,28,32.0,B4,p,11,144,71,11,,,,, +303,22,3,9235,597,1335.939,,,,,,144,33,0,,,,, +303,25,1,9238,668,1336.001,,,,,,144,71,0,,,,, +303,27,0,9239,696,1336.001,,,,,,176,64,0,,,,,^ +303,26,3,9240,696,1336.001,43,32.0,B3,p,11,144,59,11,,,,, +303,28,1,9241,696,1336.001,43,32.0,D#5,p-,10,144,75,10,,,,, +303,26,3,9240,696,1336.153,,,,,,144,59,0,,,,, +303,28,1,9241,696,1336.153,,,,,,144,75,0,,,,, +303,29,3,9242,739,1336.153,29,32.0,G3,p-,10,144,55,10,,,,, +303,30,1,9243,739,1336.153,29,32.0,B4,pp+,9,144,71,9,,,,, +303,29,3,9242,739,1336.256,,,,,,144,55,0,,,,, +303,30,1,9243,739,1336.256,,,,,,144,71,0,,,,, +303,31,3,9244,768,1336.256,,,,,,176,102,0,,,,, +303,32,1,9245,768,1336.256,28,32.0,D#5,pp+,9,144,75,9,,,,, +303,34,1,9246,796,1336.356,57,16.0,B4,pp,8,144,71,8,,,,, +303,33,0,9247,796,1336.356,,,,,,176,64,127,,,,,V +303,35,3,9248,824,1336.455,57,16.0,G3,pp,8,144,55,8,,,,, +303,32,1,9245,768,1336.558,,,,,,144,75,0,,,,, +303,34,1,9246,796,1336.558,,,,,,144,71,0,,,,, +303,36,1,9249,853,1336.558,28,32.0,D#5,pp-,7,144,75,7,,,,, +303,35,3,9248,824,1336.658,,,,,,144,55,0,,,,, +303,36,1,9249,853,1336.658,,,,,,144,75,0,,,,, +303,37,3,9250,881,1336.658,57,16.0,G3,pp-,7,144,55,7,,,,, +303,38,1,9251,881,1336.658,29,32.0,B4,pp-,7,144,71,7,,,,, +303,38,1,9251,881,1336.761,,,,,,144,71,0,,,,, +303,39,1,9252,910,1336.761,28,32.0,G#5,mp,14,144,80,14,,,,, +303,37,3,9250,881,1336.86,,,,,,144,55,0,,,,, +303,39,1,9252,910,1336.86,,,,,,144,80,0,,,,, +303,40,3,9253,938,1336.86,86,16.0,G3,mp,14,144,55,14,,,,, +303,41,1,9254,938,1336.86,43,32.0,D#5,mp-,13,144,75,13,,,,, +303,41,1,9254,938,1337.013,,,,,,144,75,0,,,,, +303,42,1,9255,981,1337.013,43,32.0,B4,p+,12,144,71,12,,,,, +303,43,1,9256,981,1337.013,32,32.0,G#5,p+,12,144,80,12,,,,, +303,43,1,9256,981,1337.126,,,,,,144,80,0,,,,, +303,42,1,9255,981,1337.165,,,,,,144,71,0,,,,, +304,0,0,9257,0,1337.165,,,,,,,,,304,,,, +304,1,1,9258,0,1337.165,42,32.0,B4,p,11,144,71,11,,,,, +304,2,1,9259,0,1337.165,32,32.0,D#5,p,11,144,75,11,,,,, +304,3,3,9260,0,1337.165,,,,,,176,102,0,,,,, +303,40,3,9253,938,1337.165,,,,,,144,55,0,,,,, +304,2,1,9259,0,1337.279,,,,,,144,75,0,,,,, +304,1,1,9258,0,1337.315,,,,,,144,71,0,,,,, +304,4,1,9261,42,1337.315,,,,,,176,102,0,,,,, +304,5,3,9262,42,1337.315,57,16.0,G3,mp-,13,144,55,13,,,,, +304,6,1,9263,71,1337.418,57,16.0,B4,mf,17,144,71,17,,,,, +304,7,1,9264,71,1337.418,64,16.0,D#5,mf,17,144,75,17,,,,, +304,8,1,9265,71,1337.418,64,16.0,G#5,mf,17,144,80,17,,,,, +304,5,3,9262,42,1337.517,,,,,,144,55,0,,,,, +304,9,3,9266,99,1337.517,29,32.0,A2,mf,17,144,45,17,,,,, +304,6,1,9263,71,1337.62,,,,,,144,71,0,,,,, +304,9,3,9266,99,1337.62,,,,,,144,45,0,,,,, +304,10,1,9267,128,1337.62,,,,,,176,102,0,,,,, +304,11,3,9268,128,1337.62,42,32.0,G3,mf-,16,144,55,16,,,,, +304,7,1,9264,71,1337.645,,,,,,144,75,0,,,,, +304,8,1,9265,71,1337.645,,,,,,144,80,0,,,,, +304,11,3,9268,128,1337.769,,,,,,144,55,0,,,,, +304,12,1,9269,170,1337.769,57,16.0,B4,p,11,144,71,11,,,,, +304,13,1,9270,170,1337.769,64,16.0,D#5,p,11,144,75,11,,,,, +304,14,3,9271,170,1337.769,29,32.0,A2,mp,14,144,45,14,,,,, +304,14,3,9271,170,1337.872,,,,,,144,45,0,,,,, +304,15,3,9272,199,1337.872,57,16.0,G3,mp-,13,144,55,13,,,,, +304,12,1,9269,170,1337.971,,,,,,144,71,0,,,,, +304,16,1,9273,227,1337.971,29,32.0,G#6,pp-,7,144,92,7,,,,, +304,13,1,9270,170,1337.996,,,,,,144,75,0,,,,, +304,15,3,9272,199,1338.074,,,,,,144,55,0,,,,, +304,16,1,9273,227,1338.074,,,,,,144,92,0,,,,, +304,17,1,9274,256,1338.074,42,32.0,D#4,p,11,144,63,11,,,,, +304,18,3,9275,256,1338.074,,,,,,176,102,0,,,,, +304,17,1,9274,256,1338.224,,,,,,144,63,0,,,,, +304,19,1,9276,298,1338.224,43,32.0,G#5,p-,10,144,80,10,,,,, +304,19,1,9276,298,1338.376,,,,,,144,80,0,,,,, +304,20,1,9277,341,1338.376,43,32.0,B3,pp,8,144,59,8,,,,, +304,20,1,9277,341,1338.529,,,,,,144,59,0,,,,, +304,21,1,9278,384,1338.529,,,,,,176,102,0,,,,, +304,22,3,9279,384,1338.529,18,64.0,G2,mp,14,144,43,14,,,,, +304,22,3,9279,384,1338.593,,,,,,144,43,0,,,,, +304,23,3,9280,402,1338.593,18,64.0,D#3,mf,17,144,51,17,,,,, +304,23,3,9280,402,1338.657,,,,,,144,51,0,,,,, +304,24,3,9281,420,1338.657,18,64.0,B2,f-,19,144,47,19,,,,, +304,24,3,9281,420,1338.721,,,,,,144,47,0,,,,, +304,25,3,9282,438,1338.721,19,64.0,G#4,ff,22,144,68,22,,,,, +304,26,3,9283,438,1338.721,16,64.0,B4,ff,22,144,71,22,,,,, +304,27,3,9284,438,1338.721,16,64.0,D#5,ff,22,144,75,22,,,,, +304,28,3,9285,438,1338.721,16,64.0,G#5,ff,22,144,80,22,,,,, +304,26,3,9283,438,1338.778,,,,,,144,71,0,,,,, +304,27,3,9284,438,1338.778,,,,,,144,75,0,,,,, +304,28,3,9285,438,1338.778,,,,,,144,80,0,,,,, +304,25,3,9282,438,1338.788,,,,,,144,68,0,,,,, +304,29,3,9286,457,1338.788,18,64.0,A1,ff,22,144,33,22,,,,, +304,30,3,9287,457,1338.788,16,64.0,G2,ff,22,144,43,22,,,,, +304,31,1,9288,469,1338.831,,,,,,176,102,0,,,,, +304,30,3,9287,457,1338.845,,,,,,144,43,0,,,,, +304,29,3,9286,457,1338.852,,,,,,144,33,0,,,,, +304,32,3,9289,475,1338.852,18,64.0,D#4,ff,22,144,63,22,,,,, +304,32,3,9289,475,1338.916,,,,,,144,63,0,,,,, +304,33,3,9290,493,1338.916,19,64.0,B3,f+,21,144,59,21,,,,, +304,33,3,9290,493,1338.984,,,,,,144,59,0,,,,, +304,34,1,9291,512,1338.984,,,,,,176,102,0,,,,, +304,35,3,9292,512,1338.984,42,32.0,G2,f-,19,144,43,19,,,,, +304,35,3,9292,512,1339.133,,,,,,144,43,0,,,,, +304,36,3,9293,554,1339.133,29,32.0,A1,mf-,16,144,33,16,,,,, +304,36,3,9293,554,1339.236,,,,,,144,33,0,,,,, +304,37,3,9294,583,1339.236,42,32.0,G2,mp-,13,144,43,13,,,,, +304,38,3,9295,583,1339.236,32,32.0,B3,mp-,13,144,59,13,,,,, +304,39,3,9296,583,1339.236,32,32.0,D#4,mp-,13,144,63,13,,,,, +304,38,3,9295,583,1339.349,,,,,,144,59,0,,,,, +304,39,3,9296,583,1339.349,,,,,,144,63,0,,,,, +304,37,3,9294,583,1339.385,,,,,,144,43,0,,,,, +304,40,3,9297,625,1339.385,29,32.0,A0,p-,10,144,21,10,,,,, +304,40,3,9297,625,1339.488,,,,,,144,21,0,,,,, +304,41,3,9298,654,1339.488,28,32.0,G3,pp-,7,144,55,7,,,,, +304,42,3,9299,654,1339.488,32,32.0,G#4,pp-,7,144,68,7,,,,, +304,43,0,9300,654,1339.488,,,,,,,,,,6009,,, +304,41,3,9298,654,1339.587,,,,,,144,55,0,,,,, +304,44,0,9301,682,1339.587,,,,,,176,64,0,,,,,^ +304,45,3,9302,682,1339.587,86,16.0,A0,ppp,5,144,21,5,,,,, +304,42,3,9299,654,1339.601,,,,,,144,68,0,,,,, +304,46,0,9303,768,1340.007,,,,,,,,,,,48,, +304,47,1,9304,768,1340.007,64,16.0,A1,p,11,144,33,11,,,,, +304,48,1,9305,768,1340.007,64,16.0,F#2,p,11,144,42,11,,,,, +304,49,1,9306,768,1340.007,64,16.0,F3,p,11,144,53,11,,,,, +304,50,1,9307,768,1340.007,64,16.0,C#4,p,11,144,61,11,,,,, +304,51,3,9308,768,1340.007,256,4.0,A0,,,,,,,,,, +304,47,1,9304,768,1340.32,,,,,,144,33,0,,,,, +304,48,1,9305,768,1340.32,,,,,,144,42,0,,,,, +304,49,1,9306,768,1340.32,,,,,,144,53,0,,,,, +304,50,1,9307,768,1340.32,,,,,,144,61,0,,,,, +304,52,1,9309,832,1340.32,192,8.0,G1,p-,10,144,31,10,,,,, +304,53,1,9310,832,1340.32,128,8.0,A1,p-,10,144,33,10,,,,, +304,54,1,9311,832,1340.32,128,8.0,F#2,p-,10,144,42,10,,,,, +304,55,1,9312,832,1340.32,128,8.0,F3,p-,10,144,53,10,,,,, +304,56,1,9313,832,1340.32,128,8.0,C#4,p-,10,144,61,10,,,,, +304,54,1,9311,832,1340.945,,,,,,144,42,0,,,,, +304,55,1,9312,832,1340.945,,,,,,144,53,0,,,,, +304,56,1,9313,832,1340.945,,,,,,144,61,0,,,,, +305,0,0,9314,0,1341.257,,,,,,,,,305,,,, +305,1,0,9315,0,1341.257,,,,,,,,,,,66,, +305,2,1,9316,0,1341.257,128,8.0,E1,pp,8,144,28,8,,,,, +305,3,1,9317,0,1341.257,128,8.0,G1,,,,,,,,,, +305,4,1,9318,0,1341.257,128,8.0,A1,,,,,,,,,, +305,5,3,9319,0,1341.257,1024,1.0,A0,,,,,,,,,, +304,53,1,9310,832,1341.474,,,,,,144,33,0,,,,, +305,6,1,9320,,1341.637,,8.0,F#4,pp,8,144,66,8,,,,g, +305,6,1,9320,,1341.687,,,,,,144,66,0,,,,, +305,2,1,9316,0,1341.712,,,,,,144,28,0,,,,, +305,7,1,9321,128,1341.712,128,8.0,C3,pp,8,144,48,8,,,,, +304,52,1,9309,832,1341.787,,,,,,144,31,0,,,,, +305,7,1,9321,128,1342.166,,,,,,144,48,0,,,,, +305,8,1,9322,256,1342.166,,,,,,176,102,0,,,,, +305,9,0,9323,334,1342.443,,,,,,176,64,127,,,,,V +305,10,1,9324,,1342.62,,8.0,F#1,mf,17,144,30,17,,,,g, +305,10,1,9324,,1342.67,,,,,,144,30,0,,,,, +305,11,1,9325,,1342.695,,8.0,A#4,mf,17,144,70,17,,,,g, +305,11,1,9325,,1342.745,,,,,,144,70,0,,,,, +305,12,1,9326,426,1342.77,86,8.0,D3,mf,17,144,50,17,,,,, +305,13,0,9327,471,1342.872,,,,,,176,64,0,,,,,^ +305,12,1,9326,426,1343.075,,,,,,144,50,0,,,,, +305,14,1,9328,512,1343.075,28,32.0,F#1,mf,17,144,30,17,,,,, +305,15,0,9329,523,1343.172,,,,,,176,64,127,,,,,V +305,14,1,9328,512,1343.175,,,,,,144,30,0,,,,, +305,16,1,9330,540,1343.175,43,32.0,A#4,p,11,144,70,11,,,,, +305,16,1,9330,540,1343.327,,,,,,144,70,0,,,,, +305,17,1,9331,583,1343.327,28,32.0,F#2,p+,12,144,42,12,,,,, +305,18,1,9332,583,1343.327,32,32.0,D3,p+,12,144,50,12,,,,, +305,17,1,9331,583,1343.427,,,,,,144,42,0,,,,, +305,19,1,9333,611,1343.427,43,32.0,A#3,mp-,13,144,58,13,,,,, +305,18,1,9332,583,1343.441,,,,,,144,50,0,,,,, +305,19,1,9333,611,1343.58,,,,,,144,58,0,,,,, +305,20,1,9334,654,1343.58,42,32.0,D3,mp+,15,144,50,15,,,,, +305,20,1,9334,654,1343.729,,,,,,144,50,0,,,,, +305,21,1,9335,696,1343.729,29,32.0,D3,mf-,16,144,50,16,,,,, +305,22,1,9336,696,1343.729,32,32.0,G5,mf-,16,144,79,16,,,,, +305,21,1,9335,696,1343.832,,,,,,144,50,0,,,,, +305,23,1,9337,725,1343.832,43,32.0,G#3,mf,17,144,56,17,,,,, +305,22,1,9336,696,1343.842,,,,,,144,79,0,,,,, +305,23,1,9337,725,1343.984,,,,,,144,56,0,,,,, +305,24,1,9338,768,1343.984,42,32.0,D3,mf+,18,144,50,18,,,,, +305,25,1,9339,768,1343.984,32,32.0,A#3,mf+,18,144,58,18,,,,, +305,25,1,9339,768,1344.098,,,,,,144,58,0,,,,, +305,24,1,9338,768,1344.134,,,,,,144,50,0,,,,, +305,26,1,9340,810,1344.134,29,32.0,G6,f-,19,144,91,19,,,,, +305,26,1,9340,810,1344.237,,,,,,144,91,0,,,,, +305,27,1,9341,839,1344.237,42,32.0,D3,f,20,144,50,20,,,,, +305,28,1,9342,839,1344.237,32,32.0,G#3,f,20,144,56,20,,,,, +305,29,1,9343,839,1344.237,32,32.0,A#3,f,20,144,58,20,,,,, +305,30,0,9344,839,1344.237,,,,,,,,,,,48,, +305,28,1,9342,839,1344.35,,,,,,144,56,0,,,,, +305,29,1,9343,839,1344.35,,,,,,144,58,0,,,,, +305,27,1,9341,839,1344.386,,,,,,144,50,0,,,,, +305,31,1,9345,881,1344.442,57,16.0,G7,ff,22,144,103,22,,,,, +305,31,1,9345,881,1344.72,,,,,,144,103,0,,,,, +305,32,1,9346,938,1344.72,,,,,,176,102,0,,,,, +304,45,3,9302,682,1344.854,,,,,,144,21,0,,,,, +305,33,0,9347,1023,1345.025,,,,,,176,64,0,,,,,^ +306,0,0,9348,0,1345.14,,,,,,,,,306,,,, +306,1,0,9349,0,1345.14,,,,,,,,,,6010,,, +306,2,0,9350,0,1345.14,,,,,,,,,,,80,, +306,4,1,9351,0,1345.14,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,5,3,9352,,1345.14,,8.0,C3,pp,8,144,48,8,,,,g, +306,5,3,9352,,1345.19,,,,,,144,48,0,,,,, +306,6,3,9353,0,1345.215,512,2.0,C4,pp,8,144,60,8,,,,, +306,4,1,9351,0,1345.222,,,,,,144,85,0,,,,, +306,7,1,9354,28,1345.297,28,32.0,F#4,ppp,5,144,66,5,,,,, +306,3,0,9355,0,1345.325,,,,,,176,64,127,,,,,V +306,8,1,9356,56,1345.379,29,32.0,A3,ppp,5,144,57,5,,,,, +306,8,1,9356,56,1345.464,,,,,,144,57,0,,,,, +306,9,1,9357,85,1345.464,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,7,1,9354,28,1345.529,,,,,,144,66,0,,,,, +306,9,1,9357,85,1345.546,,,,,,144,85,0,,,,, +306,10,1,9358,113,1345.546,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,10,1,9358,113,1345.631,,,,,,144,66,0,,,,, +306,11,1,9359,142,1345.631,57,16.0,A3,ppp,5,144,57,5,,,,, +306,11,1,9359,142,1345.798,,,,,,144,57,0,,,,, +306,12,1,9360,199,1345.798,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,13,1,9361,227,1345.88,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,12,1,9360,199,1345.965,,,,,,144,85,0,,,,, +306,13,1,9361,227,1345.965,,,,,,144,66,0,,,,, +306,14,1,9362,256,1345.965,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,15,1,9363,284,1346.047,28,32.0,F#4,ppp,5,144,66,5,,,,, +306,15,1,9363,284,1346.129,,,,,,144,66,0,,,,, +306,16,1,9364,312,1346.129,29,32.0,A3,ppp,5,144,57,5,,,,, +306,14,1,9362,256,1346.214,,,,,,144,85,0,,,,, +306,16,1,9364,312,1346.214,,,,,,144,57,0,,,,, +306,17,1,9365,341,1346.214,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,18,1,9366,369,1346.296,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,18,1,9366,369,1346.381,,,,,,144,66,0,,,,, +306,19,1,9367,398,1346.381,57,16.0,A3,ppp,5,144,57,5,,,,, +306,17,1,9365,341,1346.548,,,,,,144,85,0,,,,, +306,19,1,9367,398,1346.548,,,,,,144,57,0,,,,, +306,20,1,9368,455,1346.548,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,20,1,9368,455,1346.63,,,,,,144,85,0,,,,, +306,21,1,9369,483,1346.63,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,6,3,9353,0,1346.715,,,,,,144,60,0,,,,, +306,21,1,9369,483,1346.715,,,,,,144,66,0,,,,, +306,22,1,9370,512,1346.715,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,23,3,9371,512,1346.715,512,2.0,C4,pp,8,144,60,8,,,,, +306,24,3,9372,512,1346.715,512,2.0,F4,pp,8,144,65,8,,,,, +306,22,1,9370,512,1346.797,,,,,,144,85,0,,,,, +306,25,1,9373,540,1346.797,28,32.0,F#4,ppp,5,144,66,5,,,,, +306,25,1,9373,540,1346.879,,,,,,144,66,0,,,,, +306,26,1,9374,568,1346.879,29,32.0,A3,ppp,5,144,57,5,,,,, +306,26,1,9374,568,1346.964,,,,,,144,57,0,,,,, +306,27,1,9375,597,1346.964,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,27,1,9375,597,1347.046,,,,,,144,85,0,,,,, +306,28,1,9376,625,1347.046,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,28,1,9376,625,1347.131,,,,,,144,66,0,,,,, +306,29,1,9377,654,1347.131,57,16.0,A3,ppp,5,144,57,5,,,,, +306,29,1,9377,654,1347.298,,,,,,144,57,0,,,,, +306,30,1,9378,711,1347.298,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,30,1,9378,711,1347.38,,,,,,144,85,0,,,,, +306,31,1,9379,739,1347.38,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,31,1,9379,739,1347.465,,,,,,144,66,0,,,,, +306,32,1,9380,768,1347.465,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,32,1,9380,768,1347.547,,,,,,144,85,0,,,,, +306,33,1,9381,796,1347.547,28,32.0,F#4,ppp,5,144,66,5,,,,, +306,33,1,9381,796,1347.629,,,,,,144,66,0,,,,, +306,34,1,9382,824,1347.629,29,32.0,A3,ppp,5,144,57,5,,,,, +306,34,1,9382,824,1347.714,,,,,,144,57,0,,,,, +306,35,1,9383,853,1347.714,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,35,1,9383,853,1347.796,,,,,,144,85,0,,,,, +306,36,1,9384,881,1347.796,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,36,1,9384,881,1347.881,,,,,,144,66,0,,,,, +306,37,1,9385,910,1347.881,57,16.0,A3,ppp,5,144,57,5,,,,, +306,37,1,9385,910,1348.048,,,,,,144,57,0,,,,, +306,38,1,9386,967,1348.048,28,32.0,C#6,ppp,5,144,85,5,,,,, +306,38,1,9386,967,1348.13,,,,,,144,85,0,,,,, +306,39,1,9387,995,1348.13,29,32.0,F#4,ppp,5,144,66,5,,,,, +306,23,3,9371,512,1348.215,,,,,,144,60,0,,,,, +306,24,3,9372,512,1348.215,,,,,,144,65,0,,,,, +306,39,1,9387,995,1348.215,,,,,,144,66,0,,,,, +307,0,0,9388,0,1348.215,,,,,,,,,307,,,, +307,1,1,9389,0,1348.215,28,32.0,C#6,ppp,5,144,85,5,,,,, +307,2,3,9390,0,1348.215,170,4.0,C4,p,11,144,60,11,,,,, +307,3,3,9391,0,1348.215,256,4.0,F4,p,11,144,65,11,,,,, +307,1,1,9389,0,1348.297,,,,,,144,85,0,,,,, +307,4,1,9392,28,1348.297,28,32.0,F#4,ppp,5,144,66,5,,,,, +307,4,1,9392,28,1348.379,,,,,,144,66,0,,,,, +307,5,1,9393,56,1348.379,29,32.0,A3,ppp,5,144,57,5,,,,, +307,5,1,9393,56,1348.464,,,,,,144,57,0,,,,, +307,6,1,9394,85,1348.464,28,32.0,C#6,ppp,5,144,85,5,,,,, +307,6,1,9394,85,1348.546,,,,,,144,85,0,,,,, +307,7,1,9395,113,1348.546,29,32.0,F#4,ppp,5,144,66,5,,,,, +307,7,1,9395,113,1348.631,,,,,,144,66,0,,,,, +307,8,1,9396,142,1348.631,57,16.0,A3,ppp,5,144,57,5,,,,, +307,2,3,9390,0,1348.713,,,,,,144,60,0,,,,, +307,9,3,9397,170,1348.713,86,8.0,G#3,p+,12,144,56,12,,,,, +307,8,1,9396,142,1348.798,,,,,,144,57,0,,,,, +307,10,1,9398,199,1348.798,28,32.0,C#6,ppp,5,144,85,5,,,,, +307,10,1,9398,199,1348.88,,,,,,144,85,0,,,,, +307,11,1,9399,227,1348.88,29,32.0,F#4,ppp,5,144,66,5,,,,, +307,3,3,9391,0,1348.965,,,,,,144,65,0,,,,, +307,11,1,9399,227,1348.965,,,,,,144,66,0,,,,, +307,12,1,9400,256,1348.965,28,32.0,C#6,ppp,5,144,85,5,,,,, +307,13,3,9401,256,1348.965,170,4.0,G#3,,,,,,,,,, +307,12,1,9400,256,1349.047,,,,,,144,85,0,,,,, +307,14,1,9402,284,1349.047,28,32.0,F#4,ppp,5,144,66,5,,,,, +307,14,1,9402,284,1349.129,,,,,,144,66,0,,,,, +307,15,1,9403,312,1349.129,29,32.0,A3,ppp,5,144,57,5,,,,, +307,15,1,9403,312,1349.214,,,,,,144,57,0,,,,, +307,16,1,9404,341,1349.214,114,8.0,F5,ppp,5,144,77,5,,,,, +307,9,3,9397,170,1349.463,,,,,,144,56,0,,,,, +307,17,3,9405,426,1349.463,86,8.0,G#3,mf,17,144,56,17,,,,, +307,18,3,9406,426,1349.463,128,8.0,C4,mf,17,144,60,17,,,,, +307,19,3,9407,426,1349.463,128,8.0,F4,mf,17,144,65,17,,,,, +307,21,0,9408,455,1349.481,,,,,,176,64,0,,,,,^ +307,16,1,9404,341,1349.548,,,,,,144,77,0,,,,, +307,20,1,9409,455,1349.548,57,16.0,G3,ppp,5,144,55,5,,,,, +307,17,3,9405,426,1349.715,,,,,,144,56,0,,,,, +307,20,1,9409,455,1349.715,,,,,,144,55,0,,,,, +307,22,1,9410,512,1349.715,28,32.0,F#3,ppp,5,144,54,5,,,,, +307,24,3,9411,512,1349.715,,,,,,176,102,0,,,,, +307,23,0,9412,512,1349.781,,,,,,176,64,127,,,,,V +307,22,1,9410,512,1349.797,,,,,,144,54,0,,,,, +307,25,1,9413,540,1349.797,28,32.0,D4,ppp,5,144,62,5,,,,, +307,18,3,9406,426,1349.838,,,,,,144,60,0,,,,, +307,19,3,9407,426,1349.838,,,,,,144,65,0,,,,, +307,25,1,9413,540,1349.879,,,,,,144,62,0,,,,, +307,26,1,9414,568,1349.879,29,32.0,A#5,ppp+,6,144,82,6,,,,, +307,26,1,9414,568,1349.964,,,,,,144,82,0,,,,, +307,27,1,9415,597,1349.964,28,32.0,F#3,ppp+,6,144,54,6,,,,, +307,27,1,9415,597,1350.046,,,,,,144,54,0,,,,, +307,28,1,9416,625,1350.046,29,32.0,D4,pp-,7,144,62,7,,,,, +307,28,1,9416,625,1350.131,,,,,,144,62,0,,,,, +307,29,1,9417,654,1350.131,28,32.0,A#5,pp,8,144,82,8,,,,, +307,29,1,9417,654,1350.213,,,,,,144,82,0,,,,, +307,30,1,9418,682,1350.213,29,32.0,G#5,pp,8,144,80,8,,,,, +307,30,1,9418,682,1350.298,,,,,,144,80,0,,,,, +307,31,1,9419,711,1350.298,28,32.0,F#3,pp+,9,144,54,9,,,,, +307,32,1,9420,711,1350.298,32,32.0,D4,pp+,9,144,62,9,,,,, +307,31,1,9419,711,1350.38,,,,,,144,54,0,,,,, +307,33,1,9421,739,1350.38,29,32.0,G#4,mp-,13,144,68,13,,,,, +307,32,1,9420,711,1350.392,,,,,,144,62,0,,,,, +307,33,1,9421,739,1350.465,,,,,,144,68,0,,,,, +307,34,1,9422,768,1350.465,28,32.0,F#3,mf,17,144,54,17,,,,, +307,35,1,9423,768,1350.465,32,32.0,D4,mf,17,144,62,17,,,,, +307,34,1,9422,768,1350.547,,,,,,144,54,0,,,,, +307,36,1,9424,796,1350.547,28,32.0,A#5,pp,8,144,82,8,,,,, +307,35,1,9423,768,1350.559,,,,,,144,62,0,,,,, +307,36,1,9424,796,1350.629,,,,,,144,82,0,,,,, +307,37,1,9425,824,1350.629,29,32.0,G#4,pp+,9,144,68,9,,,,, +307,37,1,9425,824,1350.714,,,,,,144,68,0,,,,, +307,38,1,9426,853,1350.714,28,32.0,D3,pp+,9,144,50,9,,,,, +307,38,1,9426,853,1350.796,,,,,,144,50,0,,,,, +307,39,1,9427,881,1350.796,43,32.0,F#2,p-,10,144,42,10,,,,, +307,39,1,9427,881,1350.922,,,,,,144,42,0,,,,, +307,40,1,9428,924,1350.922,43,32.0,G#4,p,11,144,68,11,,,,, +307,40,1,9428,924,1351.048,,,,,,144,68,0,,,,, +307,41,1,9429,967,1351.048,28,32.0,F#2,f,20,144,42,20,,,,, +307,42,1,9430,967,1351.048,32,32.0,D3,f,20,144,50,20,,,,, +307,41,1,9429,967,1351.13,,,,,,144,42,0,,,,, +307,43,1,9431,995,1351.13,29,32.0,A#5,p,11,144,82,11,,,,, +307,42,1,9430,967,1351.142,,,,,,144,50,0,,,,, +307,43,1,9431,995,1351.215,,,,,,144,82,0,,,,, +308,0,0,9432,0,1351.215,,,,,,,,,308,,,, +308,1,1,9433,0,1351.215,28,32.0,G#5,p+,12,144,80,12,,,,, +308,2,3,9434,0,1351.215,256,4.0,C#5,p+,12,144,73,12,,,,, +308,1,1,9433,0,1351.297,,,,,,144,80,0,,,,, +308,3,1,9435,28,1351.297,28,32.0,G6,p+,12,144,91,12,,,,, +308,3,1,9435,28,1351.379,,,,,,144,91,0,,,,, +308,4,1,9436,56,1351.379,29,32.0,D4,mp-,13,144,62,13,,,,, +308,4,1,9436,56,1351.464,,,,,,144,62,0,,,,, +308,5,1,9437,85,1351.464,43,32.0,G#5,mp-,13,144,80,13,,,,, +308,5,1,9437,85,1351.59,,,,,,144,80,0,,,,, +308,6,1,9438,128,1351.59,42,32.0,D5,mp,14,144,74,14,,,,, +308,6,1,9438,128,1351.713,,,,,,144,74,0,,,,, +308,7,1,9439,170,1351.713,29,32.0,G#5,mp+,15,144,80,15,,,,, +308,8,1,9440,170,1351.713,32,32.0,G6,mp+,15,144,91,15,,,,, +308,7,1,9439,170,1351.798,,,,,,144,80,0,,,,, +308,9,1,9441,199,1351.798,28,32.0,D3,p,11,144,50,11,,,,, +308,8,1,9440,170,1351.807,,,,,,144,91,0,,,,, +308,9,1,9441,199,1351.88,,,,,,144,50,0,,,,, +308,10,1,9442,227,1351.88,29,32.0,F#2,p+,12,144,42,12,,,,, +308,10,1,9442,227,1351.965,,,,,,144,42,0,,,,, +308,11,1,9443,256,1351.965,28,32.0,D3,p+,12,144,50,12,,,,, +308,12,3,9444,256,1351.965,512,2.0,C#5,,,,,,,,,, +308,13,3,9445,256,1351.965,512,2.0,D5,p+,12,144,74,12,,,,, +308,11,1,9443,256,1352.047,,,,,,144,50,0,,,,, +308,14,1,9446,284,1352.047,,,,,,176,102,0,,,,, +308,15,1,9447,312,1352.129,29,32.0,A#5,mp,14,144,82,14,,,,, +308,15,1,9447,312,1352.214,,,,,,144,82,0,,,,, +308,16,1,9448,341,1352.214,28,32.0,G#4,mp,14,144,68,14,,,,, +308,16,1,9448,341,1352.296,,,,,,144,68,0,,,,, +308,17,1,9449,369,1352.296,43,32.0,A#5,mp+,15,144,82,15,,,,, +308,17,1,9449,369,1352.422,,,,,,144,82,0,,,,, +308,18,1,9450,412,1352.422,43,32.0,F#1,mf-,16,144,30,16,,,,, +308,18,1,9450,412,1352.548,,,,,,144,30,0,,,,, +308,19,1,9451,455,1352.548,28,32.0,G#5,mf,17,144,80,17,,,,, +308,19,1,9451,455,1352.63,,,,,,144,80,0,,,,, +308,20,1,9452,483,1352.63,29,32.0,A#6,mf+,18,144,94,18,,,,, +308,20,1,9452,483,1352.715,,,,,,144,94,0,,,,, +308,21,1,9453,512,1352.715,28,32.0,G#5,f-,19,144,80,19,,,,, +308,21,1,9453,512,1352.797,,,,,,144,80,0,,,,, +308,22,1,9454,540,1352.797,28,32.0,G7,f-,19,144,103,19,,,,, +308,22,1,9454,540,1352.879,,,,,,144,103,0,,,,, +308,23,1,9455,568,1352.879,29,32.0,F#3,f,20,144,54,20,,,,, +308,24,1,9456,568,1352.879,32,32.0,D4,f,20,144,62,20,,,,, +308,23,1,9455,568,1352.964,,,,,,144,54,0,,,,, +308,25,1,9457,597,1352.964,43,32.0,G#4,p,11,144,68,11,,,,, +308,24,1,9456,568,1352.973,,,,,,144,62,0,,,,, +308,25,1,9457,597,1353.09,,,,,,144,68,0,,,,, +308,26,1,9458,640,1353.09,42,32.0,D4,p+,12,144,62,12,,,,, +308,26,1,9458,640,1353.213,,,,,,144,62,0,,,,, +308,27,1,9459,682,1353.213,29,32.0,G7,p+,12,144,103,12,,,,, +308,27,1,9459,682,1353.298,,,,,,144,103,0,,,,, +308,28,1,9460,711,1353.298,28,32.0,A#5,mp-,13,144,82,13,,,,, +308,28,1,9460,711,1353.38,,,,,,144,82,0,,,,, +308,29,1,9461,739,1353.38,29,32.0,G#4,mp-,13,144,68,13,,,,, +308,2,3,9434,0,1353.465,,,,,,144,73,0,,,,, +308,13,3,9445,256,1353.465,,,,,,144,74,0,,,,, +308,29,1,9461,739,1353.465,,,,,,144,68,0,,,,, +308,30,1,9462,768,1353.465,42,32.0,F#2,mp-,13,144,42,13,,,,, +308,31,0,9463,768,1353.465,,,,,,,,,,,48,, +308,32,3,9464,,1353.465,,8.0,E2,p,11,144,40,11,,,,g, +308,32,3,9464,,1353.515,,,,,,144,40,0,,,,, +308,33,3,9465,768,1353.54,128,8.0,F#5,p,11,144,78,11,,,,, +308,30,1,9462,768,1353.588,,,,,,144,42,0,,,,, +308,34,1,9466,810,1353.745,43,32.0,G#5,mp+,15,144,80,15,,,,, +308,34,1,9466,810,1353.955,,,,,,144,80,0,,,,, +308,35,1,9467,853,1353.955,28,32.0,F#2,mf-,16,144,42,16,,,,, +308,36,1,9468,853,1353.955,32,32.0,D3,mf-,16,144,50,16,,,,, +308,35,1,9467,853,1354.092,,,,,,144,42,0,,,,, +308,37,1,9469,881,1354.092,29,32.0,G#5,mf-,16,144,80,16,,,,, +308,38,1,9470,881,1354.092,32,32.0,A#5,mf-,16,144,82,16,,,,, +308,36,1,9468,853,1354.111,,,,,,144,50,0,,,,, +308,33,3,9465,768,1354.165,,,,,,144,78,0,,,,, +308,39,3,9471,896,1354.165,42,16.0,F4,mp,14,144,65,14,,,,, +308,40,3,9472,896,1354.165,64,16.0,F#5,mp,14,144,78,14,,,,, +308,37,1,9469,881,1354.233,,,,,,144,80,0,,,,, +308,41,1,9473,910,1354.233,57,16.0,G6,mf,17,144,91,17,,,,, +308,38,1,9470,881,1354.248,,,,,,144,82,0,,,,, +308,39,3,9471,896,1354.37,,,,,,144,65,0,,,,, +308,40,3,9472,896,1354.37,,,,,,144,78,0,,,,, +308,42,0,9474,938,1354.37,,,,,,176,64,0,,,,,^ +308,43,3,9475,938,1354.37,43,16.0,C2,ff,22,144,36,22,,,,, +308,44,3,9476,938,1354.37,64,16.0,F2,ff,22,144,41,22,,,,, +308,45,3,9477,938,1354.37,64,16.0,F#5,f,20,144,78,20,,,,, +308,41,1,9473,910,1354.512,,,,,,144,91,0,,,,, +308,46,1,9478,967,1354.512,,,,,,176,102,0,,,,, +308,43,3,9475,938,1354.58,,,,,,144,36,0,,,,, +308,44,3,9476,938,1354.58,,,,,,144,41,0,,,,, +308,47,3,9479,981,1354.58,43,16.0,G#1,p,11,144,32,11,,,,, +308,48,3,9480,981,1354.58,64,16.0,C2,p,11,144,36,11,,,,, +308,49,3,9481,981,1354.58,64,16.0,F2,p,11,144,41,11,,,,, +308,50,3,9482,981,1354.58,64,16.0,F#4,p,11,144,66,11,,,,, +308,45,3,9477,938,1354.682,,,,,,144,78,0,,,,, +308,47,3,9479,981,1354.79,,,,,,144,32,0,,,,, +309,0,0,9483,0,1354.79,,,,,,,,,309,,,, +309,1,0,9484,0,1354.79,,,,,,,,,,,69,, +309,3,1,9485,0,1354.79,76,16.0,D5,pp,8,144,74,8,,,,, +309,4,3,9486,0,1354.79,,,,,,176,102,0,,,,, +309,2,0,9487,0,1354.79,,,,,,176,64,127,,,,,V +308,48,3,9480,981,1354.967,,,,,,144,36,0,,,,, +308,49,3,9481,981,1354.967,,,,,,144,41,0,,,,, +308,50,3,9482,981,1354.967,,,,,,144,66,0,,,,, +309,5,1,9488,76,1355.048,26,32.0,F#2,pp+,9,144,42,9,,,,, +309,3,1,9485,0,1355.123,,,,,,144,74,0,,,,, +309,5,1,9488,76,1355.136,,,,,,144,42,0,,,,, +309,6,1,9489,102,1355.136,51,16.0,A#1,p-,10,144,34,10,,,,, +309,6,1,9489,102,1355.31,,,,,,144,34,0,,,,, +309,7,1,9490,153,1355.31,51,16.0,D5,p,11,144,74,11,,,,, +309,8,0,9491,204,1355.421,,,,,,176,64,0,,,,,^ +309,7,1,9490,153,1355.483,,,,,,144,74,0,,,,, +309,9,1,9492,204,1355.483,52,16.0,F#2,p+,12,144,42,12,,,,, +309,11,1,9493,256,1355.659,,,,,,176,102,0,,,,, +309,12,3,9494,256,1355.659,54,32.0,D6,mp-,13,144,86,13,,,,, +309,10,0,9495,256,1355.721,,,,,,176,64,127,,,,,V +309,9,1,9492,204,1355.843,,,,,,144,42,0,,,,, +309,12,3,9494,256,1355.843,,,,,,144,86,0,,,,, +309,13,3,9496,310,1355.843,37,32.0,F#2,mp,14,144,42,14,,,,, +309,14,3,9497,347,1355.969,37,32.0,A#1,mp+,15,144,34,15,,,,, +309,13,3,9496,310,1356.034,,,,,,144,42,0,,,,, +309,14,3,9497,347,1356.094,,,,,,144,34,0,,,,, +309,15,3,9498,384,1356.094,25,32.0,B2,mf-,16,144,47,16,,,,, +309,15,3,9498,384,1356.179,,,,,,144,47,0,,,,, +309,16,3,9499,409,1356.179,26,32.0,C3,mf-,16,144,48,16,,,,, +309,16,3,9499,409,1356.267,,,,,,144,48,0,,,,, +309,17,3,9500,435,1356.267,25,32.0,B2,mf,17,144,47,17,,,,, +309,17,3,9500,435,1356.352,,,,,,144,47,0,,,,, +309,18,3,9501,460,1356.352,52,16.0,F#2,mf,17,144,42,17,,,,, +309,18,3,9501,460,1356.529,,,,,,144,42,0,,,,, +309,19,0,9502,512,1356.529,,,,,,176,64,0,,,,,^ +309,20,1,9503,512,1356.529,,,,,,176,102,0,,,,, +309,21,3,9504,512,1356.529,,,,,,176,102,0,,,,, +309,22,3,9505,640,1356.964,18,64.0,C3,pp,8,144,48,8,,,,, +309,22,3,9505,640,1357.025,,,,,,144,48,0,,,,, +309,23,3,9506,658,1357.025,18,64.0,B2,pp,8,144,47,8,,,,, +309,23,3,9506,658,1357.086,,,,,,144,47,0,,,,, +309,24,3,9507,676,1357.086,18,64.0,C3,pp+,9,144,48,9,,,,, +309,24,3,9507,676,1357.147,,,,,,144,48,0,,,,, +309,25,3,9508,694,1357.147,19,64.0,B2,pp+,9,144,47,9,,,,, +309,25,3,9508,694,1357.212,,,,,,144,47,0,,,,, +309,26,3,9509,713,1357.212,18,64.0,C3,p-,10,144,48,10,,,,, +309,26,3,9509,713,1357.273,,,,,,144,48,0,,,,, +309,27,3,9510,731,1357.273,18,64.0,B2,p,11,144,47,11,,,,, +309,27,3,9510,731,1357.334,,,,,,144,47,0,,,,, +309,28,3,9511,749,1357.334,19,64.0,C3,p,11,144,48,11,,,,, +309,28,3,9511,749,1357.399,,,,,,144,48,0,,,,, +309,29,3,9512,768,1357.399,256,4.0,F#1,p,11,144,30,11,,,,, +309,30,1,9513,896,1357.833,128,8.0,G#1,p,11,144,32,11,,,,, +309,31,1,9514,896,1357.833,128,8.0,C2,p,11,144,36,11,,,,, +309,32,1,9515,896,1357.833,128,8.0,F2,p,11,144,41,11,,,,, +309,33,1,9516,896,1357.833,128,8.0,F#3,p,11,144,54,11,,,,, +309,29,3,9512,768,1358.268,,,,,,144,30,0,,,,, +309,30,1,9513,896,1358.268,,,,,,144,32,0,,,,, +309,31,1,9514,896,1358.268,,,,,,144,36,0,,,,, +309,32,1,9515,896,1358.268,,,,,,144,41,0,,,,, +309,33,1,9516,896,1358.268,,,,,,144,54,0,,,,, +310,0,0,9517,0,1358.268,,,,,,,,,310,,,, +310,1,0,9518,0,1358.268,,,,,,,,,,6011,,, +310,3,1,9519,0,1358.268,,,,,,176,102,0,,,,, +310,4,3,9520,0,1358.268,128,8.0,E1,ppp,5,144,28,5,,,,, +310,5,3,9521,0,1358.268,128,8.0,F#1,mp,14,144,30,14,,,,, +310,2,0,9522,0,1358.268,,,,,,176,64,127,,,,,V +310,4,3,9520,0,1358.703,,,,,,144,28,0,,,,, +310,5,3,9521,0,1358.703,,,,,,144,30,0,,,,, +310,6,3,9523,128,1358.703,25,32.0,F#1,mf+,18,144,30,18,,,,, +310,6,3,9523,128,1358.788,,,,,,144,30,0,,,,, +310,7,3,9524,153,1358.788,26,32.0,B1,f-,19,144,35,19,,,,, +310,7,3,9524,153,1358.876,,,,,,144,35,0,,,,, +310,8,3,9525,179,1358.876,38,32.0,C2,f,20,144,36,20,,,,, +310,10,1,9526,,1358.988,,8.0,E6,mp,14,144,88,14,,,,g, +310,8,3,9525,179,1359.005,,,,,,144,36,0,,,,, +310,9,3,9527,217,1359.005,39,32.0,B1,f+,21,144,35,21,,,,, +310,10,1,9526,,1359.038,,,,,,144,88,0,,,,, +310,11,1,9528,,1359.063,,8.0,A#5,mf,17,144,82,17,,,,g, +310,11,1,9528,,1359.113,,,,,,144,82,0,,,,, +310,9,3,9527,217,1359.138,,,,,,144,35,0,,,,, +310,12,1,9529,256,1359.138,32,32.0,F#6,f,20,144,90,20,,,,, +310,13,3,9530,256,1359.138,76,16.0,A#0,ff,22,144,22,22,,,,, +310,12,1,9529,256,1359.246,,,,,,144,90,0,,,,, +310,14,1,9531,288,1359.246,96,16.0,D#1,f,20,144,27,20,,,,, +310,13,3,9530,256,1359.396,,,,,,144,22,0,,,,, +310,15,3,9532,332,1359.396,77,16.0,D7,ff,22,144,98,22,,,,, +310,14,1,9531,288,1359.573,,,,,,144,27,0,,,,, +310,16,1,9533,384,1359.573,,,,,,176,102,0,,,,, +310,17,0,9534,409,1359.657,,,,,,176,64,0,,,,,^ +310,18,3,9535,409,1359.657,77,16.0,F#1,ff,22,144,30,22,,,,, +310,15,3,9532,332,1359.657,,,,,,144,98,0,,,,, +310,18,3,9535,409,1359.919,,,,,,144,30,0,,,,, +310,19,3,9536,486,1359.919,26,32.0,A#0,ff,22,144,22,22,,,,, +310,19,3,9536,486,1360.007,,,,,,144,22,0,,,,, +310,20,3,9537,512,1360.007,25,32.0,F#1,f,20,144,30,20,,,,, +310,21,1,9538,512,1360.007,,,,,,176,102,0,,,,, +310,20,3,9537,512,1360.092,,,,,,144,30,0,,,,, +310,22,3,9539,537,1360.092,51,16.0,C2,mf,17,144,36,17,,,,, +310,22,3,9539,537,1360.265,,,,,,144,36,0,,,,, +310,24,3,9540,588,1360.265,26,32.0,B1,mp-,13,144,35,13,,,,, +310,23,0,9541,588,1360.265,,,,,,176,64,127,,,,,V +310,24,3,9540,588,1360.354,,,,,,144,35,0,,,,, +310,25,3,9542,614,1360.354,26,32.0,C2,p-,10,144,36,10,,,,, +310,25,3,9542,614,1360.442,,,,,,144,36,0,,,,, +310,26,3,9543,640,1360.442,25,32.0,B1,pp,8,144,35,8,,,,, +310,27,3,9544,665,1360.527,103,8.0,B1,,,,,,,,,, +310,28,0,9545,768,1360.727,,,,,,176,64,0,,,,,^ +310,30,1,9546,768,1360.877,512,2.0,F#6,mp,14,144,90,14,,,,, +310,31,3,9547,768,1360.877,512,2.0,A#0,mp,14,144,22,14,,,,, +310,32,3,9548,768,1360.877,512,2.0,D#1,mp,14,144,27,14,,,,, +310,33,3,9549,768,1360.877,512,2.0,E1,mp,14,144,28,14,,,,, +310,34,3,9550,768,1360.877,512,2.0,F#1,mp,14,144,30,14,,,,, +310,35,3,9551,768,1360.877,512,2.0,B1,mp,14,144,35,14,,,,, +310,36,3,9552,768,1360.877,512,2.0,C2,mp,14,144,36,14,,,,, +310,26,3,9543,640,1360.877,,,,,,144,35,0,,,,, +310,29,0,9553,768,1361.027,,,,,,176,64,127,,,,,V +310,30,1,9546,768,1362.616,,,,,,144,90,0,,,,, +310,31,3,9547,768,1362.616,,,,,,144,22,0,,,,, +310,32,3,9548,768,1362.616,,,,,,144,27,0,,,,, +310,33,3,9549,768,1362.616,,,,,,144,28,0,,,,, +310,34,3,9550,768,1362.616,,,,,,144,30,0,,,,, +310,35,3,9551,768,1362.616,,,,,,144,35,0,,,,, +310,36,3,9552,768,1362.616,,,,,,144,36,0,,,,, +310,37,0,9554,1280,1362.616,,,,,,176,64,0,,,,,^ +310,38,1,9555,1280,1362.616,,,,,,176,102,0,,,,, +310,39,3,9556,1280,1362.616,768,2.0,A#0,ppp,5,144,22,5,,,,, +310,40,3,9557,1280,1362.616,512,2.0,D#1,ppp,5,144,27,5,,,,, +310,41,3,9558,1280,1362.616,512,2.0,E1,ppp,5,144,28,5,,,,, +310,42,3,9559,1280,1362.616,512,2.0,F#1,ppp,5,144,30,5,,,,, +310,43,3,9560,1280,1362.616,512,2.0,B1,ppp,5,144,35,5,,,,, +310,44,3,9561,1280,1362.616,512,2.0,C2,ppp,5,144,36,5,,,,, +310,40,3,9557,1280,1364.355,,,,,,144,27,0,,,,, +310,41,3,9558,1280,1364.355,,,,,,144,28,0,,,,, +310,42,3,9559,1280,1364.355,,,,,,144,30,0,,,,, +310,43,3,9560,1280,1364.355,,,,,,144,35,0,,,,, +310,44,3,9561,1280,1364.355,,,,,,144,36,0,,,,, +310,39,3,9556,1280,1365.225,,,,,,144,22,0,,,,, +311,0,0,9562,0,1365.225,,,,,,,,,311,,,, +311,1,1,9563,0,1365.225,1536,1.0,F#6,f,20,144,90,20,,,,, +311,2,3,9564,0,1365.225,64,16.0,A#0,fff,24,144,22,23,,,,, +311,3,3,9565,0,1365.225,64,16.0,D#1,fff,24,144,27,23,,,,, +311,4,3,9566,0,1365.225,64,16.0,E1,fff,24,144,28,23,,,,, +311,5,3,9567,0,1365.225,64,16.0,F#1,fff,24,144,30,23,,,,, +311,6,3,9568,0,1365.225,64,16.0,B1,fff,24,144,35,23,,,,, +311,7,3,9569,0,1365.225,64,16.0,C2,fff,24,144,36,23,,,,, +311,2,3,9564,0,1365.275,,,,,,144,22,0,,,,, +311,3,3,9565,0,1365.275,,,,,,144,27,0,,,,, +311,4,3,9566,0,1365.275,,,,,,144,28,0,,,,, +311,5,3,9567,0,1365.275,,,,,,144,30,0,,,,, +311,6,3,9568,0,1365.275,,,,,,144,35,0,,,,, +311,7,3,9569,0,1365.275,,,,,,144,36,0,,,,, +311,9,3,9570,64,1365.442,,,,,,176,102,0,,,,, +311,8,0,9571,64,1365.842,,,,,,176,64,127,,,,,V +311,10,3,9572,256,1366.094,,,,,,176,102,0,,,,, +311,11,3,9573,512,1366.964,,,,,,176,102,0,,,,, +311,12,0,9574,512,1366.964,,,,,,,,,,6012,,, +311,13,0,9575,1536,1370.442,,,,,,176,64,0,,,,,^ +311,14,1,9576,1536,1370.442,,,,,,176,102,0,,,,, +311,15,3,9577,1536,1370.442,256,4.0,E1,p,11,144,28,11,,,,, +311,1,1,9563,0,1370.517,,,,,,144,90,0,,,,, +311,15,3,9577,1536,1371.312,,,,,,144,28,0,,,,, +311,16,3,9578,1792,1371.312,256,4.0,C2,pp+,9,144,36,9,,,,, +311,16,3,9578,1792,1372.181,,,,,,144,36,0,,,,, +312,0,0,9579,0,1372.181,,,,,,,,,312,,,, +312,2,1,9580,0,1372.181,,,,,,176,102,0,,,,, +312,3,3,9581,0,1372.181,42,32.0,C2,pp-,7,144,36,7,,,,, +312,1,0,9582,0,1372.181,,,,,,176,64,127,,,,,V +312,3,3,9581,0,1372.324,,,,,,144,36,0,,,,, +312,4,3,9583,42,1372.324,43,32.0,F#2,pp-,7,144,42,7,,,,, +312,4,3,9583,42,1372.47,,,,,,144,42,0,,,,, +312,5,3,9584,85,1372.47,28,32.0,G#1,ppp+,6,144,32,6,,,,, +312,5,3,9584,85,1372.565,,,,,,144,32,0,,,,, +312,6,3,9585,113,1372.565,29,32.0,F2,ppp+,6,144,41,6,,,,, +312,6,3,9585,113,1372.664,,,,,,144,41,0,,,,, +312,7,3,9586,142,1372.664,28,32.0,G#1,ppp+,6,144,32,6,,,,, +312,7,3,9586,142,1372.759,,,,,,144,32,0,,,,, +312,8,3,9587,170,1372.759,29,32.0,F#2,ppp,5,144,42,5,,,,, +312,10,0,9588,227,1372.852,,,,,,176,64,0,,,,,^ +312,8,3,9587,170,1372.857,,,,,,144,42,0,,,,, +312,9,3,9589,199,1372.857,28,32.0,F2,ppp,5,144,41,5,,,,, +312,9,3,9589,199,1372.952,,,,,,144,41,0,,,,, +312,11,3,9590,227,1372.952,29,32.0,G#1,ppp,5,144,32,5,,,,, +312,11,3,9590,227,1373.051,,,,,,144,32,0,,,,, +312,12,3,9591,256,1373.051,28,32.0,E1,mp,14,144,28,14,,,,, +312,13,3,9592,256,1373.051,32,32.0,C2,mp,14,144,36,14,,,,, +312,16,0,9593,312,1373.091,,,,,,176,64,0,,,,,^ +312,12,3,9591,256,1373.146,,,,,,144,28,0,,,,, +312,15,3,9594,284,1373.146,28,32.0,G#1,mp+,15,144,32,15,,,,, +312,14,0,9595,256,1373.152,,,,,,176,64,127,,,,,V +312,13,3,9592,256,1373.159,,,,,,144,36,0,,,,, +312,15,3,9594,284,1373.241,,,,,,144,32,0,,,,, +312,18,3,9596,312,1373.241,43,32.0,E1,mf-,16,144,28,16,,,,, +312,19,3,9597,312,1373.241,32,32.0,C2,mf-,16,144,36,16,,,,, +312,19,3,9597,312,1373.35,,,,,,144,36,0,,,,, +312,18,3,9596,312,1373.387,,,,,,144,28,0,,,,, +312,20,3,9598,355,1373.387,43,32.0,F#3,mf+,18,144,54,18,,,,, +312,17,0,9599,312,1373.391,,,,,,176,64,127,,,,,V +312,20,3,9598,355,1373.533,,,,,,144,54,0,,,,, +312,21,3,9600,398,1373.533,28,32.0,E1,f,20,144,28,20,,,,, +312,22,3,9601,398,1373.533,32,32.0,G#1,f,20,144,32,20,,,,, +312,23,3,9602,398,1373.533,32,32.0,C2,f,20,144,36,20,,,,, +312,24,0,9603,408,1373.567,,,,,,176,64,0,,,,,^ +312,25,3,9604,426,1373.628,29,32.0,F#4,p,11,144,66,11,,,,, +312,21,3,9600,398,1373.628,,,,,,144,28,0,,,,, +312,22,3,9601,398,1373.642,,,,,,144,32,0,,,,, +312,23,3,9602,398,1373.642,,,,,,144,36,0,,,,, +312,25,3,9604,426,1373.727,,,,,,144,66,0,,,,, +312,26,3,9605,455,1373.727,28,32.0,F3,p-,10,144,53,10,,,,, +312,26,3,9605,455,1373.822,,,,,,144,53,0,,,,, +312,27,3,9606,483,1373.822,29,32.0,G#1,p-,10,144,32,10,,,,, +312,27,3,9606,483,1373.92,,,,,,144,32,0,,,,, +312,28,3,9607,512,1373.92,42,32.0,E1,pp+,9,144,28,9,,,,, +312,29,3,9608,512,1373.92,32,32.0,C2,pp+,9,144,36,9,,,,, +312,30,3,9609,512,1373.92,32,32.0,F#3,pp+,9,144,54,9,,,,, +312,32,1,9610,512,1373.92,,,,,,176,102,0,,,,, +312,31,0,9611,512,1373.92,,,,,,176,64,127,,,,,V +312,29,3,9608,512,1374.029,,,,,,144,36,0,,,,, +312,30,3,9609,512,1374.029,,,,,,144,54,0,,,,, +312,28,3,9607,512,1374.063,,,,,,144,28,0,,,,, +312,33,3,9612,554,1374.063,29,32.0,G#1,pp,8,144,32,8,,,,, +312,33,3,9612,554,1374.162,,,,,,144,32,0,,,,, +312,35,0,9613,583,1374.162,,,,,,176,64,0,,,,,^ +312,34,3,9614,583,1374.162,28,32.0,F2,pp-,7,144,41,7,,,,, +312,34,3,9614,583,1374.257,,,,,,144,41,0,,,,, +312,36,3,9615,611,1374.257,,,,,,176,102,0,,,,, +312,37,1,9616,640,1374.355,64,16.0,G#2,ff,22,144,44,22,,,,, +312,38,3,9617,654,1374.403,,,,,,176,102,0,,,,, +312,37,1,9616,640,1374.573,,,,,,144,44,0,,,,, +312,39,1,9618,704,1374.573,64,16.0,F#2,ff,22,144,42,22,,,,, +312,40,1,9619,704,1374.573,64,16.0,G#2,ff,22,144,44,22,,,,, +312,39,1,9618,704,1374.79,,,,,,144,42,0,,,,, +312,40,1,9619,704,1374.79,,,,,,144,44,0,,,,, +312,41,1,9620,768,1374.79,,,,,,176,102,0,,,,, +312,42,3,9621,768,1374.79,1024,1.0,E1,ppp,5,144,28,5,,,,, +312,43,3,9622,768,1374.79,1024,1.0,G#1,ppp,5,144,32,5,,,,, +312,44,3,9623,768,1374.79,1024,1.0,C2,ppp,5,144,36,5,,,,, +312,45,3,9624,768,1374.79,1024,1.0,F4,ppp,5,144,65,5,,,,, +312,46,3,9625,768,1374.79,1024,1.0,F#4,ppp,5,144,66,5,,,,, +312,47,0,9626,905,1375.255,,,,,,176,64,127,,,,,V +312,48,1,9627,1280,1376.529,42,32.0,E5,pp,8,144,76,8,,,,, +312,48,1,9627,1280,1376.672,,,,,,144,76,0,,,,, +312,49,1,9628,1322,1376.672,29,32.0,D4,pp,8,144,62,8,,,,, +312,49,1,9628,1322,1376.77,,,,,,144,62,0,,,,, +312,50,1,9629,1351,1376.77,28,32.0,F#5,pp+,9,144,78,9,,,,, +312,50,1,9629,1351,1376.865,,,,,,144,78,0,,,,, +312,51,1,9630,1379,1376.865,29,32.0,A#4,pp+,9,144,70,9,,,,, +312,51,1,9630,1379,1376.964,,,,,,144,70,0,,,,, +312,52,1,9631,1408,1376.964,25,32.0,F#5,pp+,9,144,78,9,,,,, +312,52,1,9631,1408,1377.049,,,,,,144,78,0,,,,, +312,53,1,9632,1433,1377.049,26,32.0,A#4,pp+,9,144,70,9,,,,, +312,53,1,9632,1433,1377.137,,,,,,144,70,0,,,,, +312,54,1,9633,1459,1377.137,25,32.0,F#6,pp+,9,144,90,9,,,,, +312,54,1,9633,1459,1377.222,,,,,,144,90,0,,,,, +312,55,1,9634,1484,1377.222,26,32.0,A#4,p-,10,144,70,10,,,,, +312,55,1,9634,1484,1377.31,,,,,,144,70,0,,,,, +312,56,1,9635,1510,1377.31,26,32.0,D4,p-,10,144,62,10,,,,, +312,56,1,9635,1510,1377.399,,,,,,144,62,0,,,,, +312,57,1,9636,1536,1377.399,28,32.0,F#6,p-,10,144,90,10,,,,, +312,57,1,9636,1536,1377.494,,,,,,144,90,0,,,,, +312,58,1,9637,1564,1377.494,28,32.0,A#4,p-,10,144,70,10,,,,, +312,58,1,9637,1564,1377.589,,,,,,144,70,0,,,,, +312,59,1,9638,1592,1377.589,29,32.0,D#3,p-,10,144,51,10,,,,, +312,59,1,9638,1592,1377.687,,,,,,144,51,0,,,,, +312,60,1,9639,1621,1377.687,43,32.0,D4,p,11,144,62,11,,,,, +312,61,1,9640,1621,1377.687,32,32.0,A#4,p,11,144,70,11,,,,, +312,62,1,9641,1621,1377.687,32,32.0,F#5,p,11,144,78,11,,,,, +312,61,1,9640,1621,1377.796,,,,,,144,70,0,,,,, +312,62,1,9641,1621,1377.796,,,,,,144,78,0,,,,, +312,60,1,9639,1621,1377.833,,,,,,144,62,0,,,,, +312,63,1,9642,1664,1377.833,128,8.0,D#3,p,11,144,51,11,,,,, +312,64,0,9643,1791,1378.265,,,,,,176,64,0,,,,,^ +312,42,3,9621,768,1378.268,,,,,,144,28,0,,,,, +312,43,3,9622,768,1378.268,,,,,,144,32,0,,,,, +312,44,3,9623,768,1378.268,,,,,,144,36,0,,,,, +312,45,3,9624,768,1378.268,,,,,,144,65,0,,,,, +312,46,3,9625,768,1378.268,,,,,,144,66,0,,,,, +313,0,0,9644,0,1378.268,,,,,,,,,313,,,, +313,1,0,9645,0,1378.268,,,,,,,,,,6013,,, +313,2,1,9646,0,1378.268,,,,,,176,102,0,,,,, +313,3,3,9647,0,1378.268,256,4.0,E1,ppp,5,144,28,5,,,,, +313,4,3,9648,0,1378.268,256,4.0,G#1,ppp,5,144,32,5,,,,, +313,5,3,9649,0,1378.268,256,4.0,C2,ppp,5,144,36,5,,,,, +313,6,3,9650,0,1378.268,256,4.0,F4,ppp,5,144,65,5,,,,, +313,7,3,9651,0,1378.268,256,4.0,F#4,ppp,5,144,66,5,,,,, +312,63,1,9642,1664,1378.343,,,,,,144,51,0,,,,, +313,8,1,9652,85,1378.557,28,32.0,D2,mf,17,144,38,17,,,,, +313,8,1,9652,85,1378.652,,,,,,144,38,0,,,,, +313,9,1,9653,113,1378.652,29,32.0,E3,mf,17,144,52,17,,,,, +313,9,1,9653,113,1378.75,,,,,,144,52,0,,,,, +313,10,1,9654,142,1378.75,28,32.0,D2,mf,17,144,38,17,,,,, +313,10,1,9654,142,1378.846,,,,,,144,38,0,,,,, +313,11,1,9655,170,1378.846,29,32.0,C1,mp,14,144,24,14,,,,, +313,11,1,9655,170,1378.944,,,,,,144,24,0,,,,, +313,12,1,9656,199,1378.944,28,32.0,F#1,p,11,144,30,11,,,,, +313,4,3,9648,0,1379.039,,,,,,144,32,0,,,,, +313,12,1,9656,199,1379.039,,,,,,144,30,0,,,,, +313,13,1,9657,227,1379.039,29,32.0,G#1,pp,8,144,32,8,,,,, +313,3,3,9647,0,1379.138,,,,,,144,28,0,,,,, +313,5,3,9649,0,1379.138,,,,,,144,36,0,,,,, +313,6,3,9650,0,1379.138,,,,,,144,65,0,,,,, +313,7,3,9651,0,1379.138,,,,,,144,66,0,,,,, +313,13,1,9657,227,1379.138,,,,,,144,32,0,,,,, +313,14,1,9658,256,1379.138,28,32.0,D5,p,11,144,74,11,,,,, +313,15,3,9659,256,1379.138,64,16.0,C1,p,11,144,24,11,,,,, +313,16,3,9660,256,1379.138,64,16.0,F#1,p,11,144,30,11,,,,, +313,14,1,9658,256,1379.233,,,,,,144,74,0,,,,, +313,17,1,9661,284,1379.233,28,32.0,A#2,p+,12,144,46,12,,,,, +313,17,1,9661,284,1379.328,,,,,,144,46,0,,,,, +313,18,1,9662,312,1379.328,29,32.0,D6,mp-,13,144,86,13,,,,, +313,15,3,9659,256,1379.355,,,,,,144,24,0,,,,, +313,16,3,9660,256,1379.355,,,,,,144,30,0,,,,, +313,20,3,9663,320,1379.355,,,,,,176,102,0,,,,, +313,19,0,9664,320,1379.355,,,,,,176,64,127,,,,,V +313,18,1,9662,312,1379.426,,,,,,144,86,0,,,,, +313,21,1,9665,341,1379.426,28,32.0,A#2,mp,14,144,46,14,,,,, +313,21,1,9665,341,1379.522,,,,,,144,46,0,,,,, +313,22,1,9666,369,1379.522,29,32.0,C5,mp+,15,144,72,15,,,,, +313,22,1,9666,369,1379.62,,,,,,144,72,0,,,,, +313,23,1,9667,398,1379.62,28,32.0,A#2,mf,17,144,46,17,,,,, +313,24,1,9668,398,1379.62,32,32.0,F#3,mf,17,144,54,17,,,,, +313,23,1,9667,398,1379.715,,,,,,144,46,0,,,,, +313,25,1,9669,426,1379.715,29,32.0,C4,mf+,18,144,60,18,,,,, +313,24,1,9668,398,1379.729,,,,,,144,54,0,,,,, +313,30,0,9670,483,1379.783,,,,,,176,64,0,,,,,^ +313,25,1,9669,426,1379.814,,,,,,144,60,0,,,,, +313,26,1,9671,455,1379.814,28,32.0,A#2,f-,19,144,46,19,,,,, +313,27,1,9672,455,1379.814,32,32.0,F#3,f-,19,144,54,19,,,,, +313,28,1,9673,455,1379.814,32,32.0,D4,f-,19,144,62,19,,,,, +313,26,1,9671,455,1379.909,,,,,,144,46,0,,,,, +313,29,1,9674,483,1379.909,29,32.0,B3,f,20,144,59,20,,,,, +313,27,1,9672,455,1379.922,,,,,,144,54,0,,,,, +313,28,1,9673,455,1379.922,,,,,,144,62,0,,,,, +313,29,1,9674,483,1380.007,,,,,,144,59,0,,,,, +313,32,1,9675,512,1380.007,42,16.0,E5,mf,17,144,76,17,,,,, +313,33,1,9676,512,1380.007,64,16.0,G#5,p,11,144,80,11,,,,, +313,34,3,9677,,1380.007,,8.0,G#1,p,11,144,32,11,,,,g, +313,34,3,9677,,1380.057,,,,,,144,32,0,,,,, +313,35,3,9678,,1380.082,,8.0,C#4,p,11,144,61,11,,,,g, +313,31,0,9679,497,1380.083,,,,,,176,64,127,,,,,V +313,35,3,9678,,1380.132,,,,,,144,61,0,,,,, +313,32,1,9675,512,1380.15,,,,,,144,76,0,,,,, +313,36,3,9680,,1380.157,,8.0,G#1,p,11,144,32,11,,,,g, +313,36,3,9680,,1380.207,,,,,,144,32,0,,,,, +313,33,1,9676,512,1380.225,,,,,,144,80,0,,,,, +313,37,3,9681,512,1380.232,128,8.0,A#1,f,20,144,34,20,,,,, +313,38,3,9682,512,1380.232,128,8.0,F#2,p,11,144,42,11,,,,, +313,39,1,9683,554,1380.375,43,16.0,F4,p+,12,144,65,12,,,,, +313,39,1,9683,554,1380.521,,,,,,144,65,0,,,,, +313,40,1,9684,597,1380.521,43,16.0,F#3,p-,10,144,54,10,,,,, +313,37,3,9681,512,1380.667,,,,,,144,34,0,,,,, +313,38,3,9682,512,1380.667,,,,,,144,42,0,,,,, +313,40,1,9684,597,1380.667,,,,,,144,54,0,,,,, +313,41,1,9685,640,1380.667,28,32.0,C3,pp,8,144,48,8,,,,, +313,42,3,9686,640,1380.667,128,8.0,D#3,mp,14,144,51,14,,,,, +313,43,3,9687,640,1380.667,128,8.0,D4,mp,14,144,62,14,,,,, +313,44,3,9688,640,1380.667,128,8.0,A#4,mp,14,144,70,14,,,,, +313,45,3,9689,640,1380.667,128,8.0,F#5,mp,14,144,78,14,,,,, +313,41,1,9685,640,1380.762,,,,,,144,48,0,,,,, +313,46,1,9690,668,1380.762,28,32.0,G#3,ppp+,6,144,56,6,,,,, +313,49,0,9691,725,1380.838,,,,,,176,64,0,,,,,^ +313,46,1,9690,668,1380.857,,,,,,144,56,0,,,,, +313,47,1,9692,696,1380.857,29,32.0,F#3,ppp,5,144,54,5,,,,, +313,47,1,9692,696,1380.956,,,,,,144,54,0,,,,, +313,48,1,9693,725,1380.956,,,,,,176,102,0,,,,, +313,42,3,9686,640,1381.102,,,,,,144,51,0,,,,, +313,43,3,9687,640,1381.102,,,,,,144,62,0,,,,, +313,44,3,9688,640,1381.102,,,,,,144,70,0,,,,, +313,45,3,9689,640,1381.102,,,,,,144,78,0,,,,, +313,51,1,9694,,1381.102,,8.0,D5,p,11,144,74,11,,,,g, +313,50,0,9695,744,1381.138,,,,,,176,64,127,,,,,V +313,51,1,9694,,1381.152,,,,,,144,74,0,,,,, +313,52,1,9696,,1381.177,,8.0,E6,p+,12,144,88,12,,,,g, +313,52,1,9696,,1381.227,,,,,,144,88,0,,,,, +313,53,1,9697,768,1381.252,56,16.0,F#7,p+,12,144,102,12,,,,, +313,54,3,9698,768,1381.252,,,,,,176,102,0,,,,, +313,53,1,9697,768,1381.442,,,,,,144,102,0,,,,, +313,55,1,9699,824,1381.442,29,32.0,D#4,mp-,13,144,63,13,,,,, +313,55,1,9699,824,1381.541,,,,,,144,63,0,,,,, +313,56,1,9700,853,1381.541,57,16.0,A#5,mp,14,144,82,14,,,,, +313,56,1,9700,853,1381.734,,,,,,144,82,0,,,,, +313,57,1,9701,910,1381.734,57,16.0,F#6,mf-,16,144,90,16,,,,, +313,57,1,9701,910,1381.928,,,,,,144,90,0,,,,, +313,58,1,9702,967,1381.928,57,16.0,D#4,mf,17,144,63,17,,,,, +313,58,1,9702,967,1382.121,,,,,,144,63,0,,,,, +314,0,0,9703,0,1382.121,,,,,,,,,314,,,, +314,1,1,9704,0,1382.121,,,,,,176,102,0,,,,, +314,2,2,9705,0,1382.121,,,,,,176,102,0,,,,, +314,3,3,9706,0,1382.121,,,,,,176,102,0,,,,, +314,4,4,9707,0,1382.121,1536,1.0,E1,ppp,5,144,28,5,,,,, +314,5,4,9708,0,1382.121,1024,1.0,G#1,ppp,5,144,32,5,,,,, +314,6,4,9709,0,1382.121,1024,1.0,C2,ppp,5,144,36,5,,,,, +314,7,4,9710,0,1382.121,1024,1.0,F4,ppp,5,144,65,5,,,,, +314,8,4,9711,0,1382.121,1024,1.0,F#4,ppp,5,144,66,5,,,,, +314,9,1,9712,512,1383.861,42,32.0,G#6,pp,8,144,92,8,,,,, +314,10,2,9713,512,1383.861,384,4.0,D#4,p,11,144,63,11,,,,, +314,11,2,9714,512,1383.861,256,4.0,A#4,p,11,144,70,11,,,,, +314,12,2,9715,512,1383.861,256,4.0,D5,p,11,144,74,11,,,,, +314,13,2,9716,512,1383.861,256,4.0,F#6,p,11,144,90,11,,,,, +314,9,1,9712,512,1384.003,,,,,,144,92,0,,,,, +314,14,1,9717,554,1384.003,29,32.0,C7,pp+,9,144,96,9,,,,, +314,14,1,9717,554,1384.102,,,,,,144,96,0,,,,, +314,15,1,9718,583,1384.102,28,32.0,E6,p-,10,144,88,10,,,,, +314,15,1,9718,583,1384.197,,,,,,144,88,0,,,,, +314,16,1,9719,611,1384.197,43,32.0,C7,p-,10,144,96,10,,,,, +314,17,1,9720,611,1384.197,32,32.0,F#7,p-,10,144,102,10,,,,, +314,17,1,9720,611,1384.306,,,,,,144,102,0,,,,, +314,16,1,9719,611,1384.343,,,,,,144,96,0,,,,, +314,18,1,9721,654,1384.343,42,32.0,E6,p,11,144,88,11,,,,, +314,19,1,9722,654,1384.343,32,32.0,G#6,p,11,144,92,11,,,,, +314,19,1,9722,654,1384.452,,,,,,144,92,0,,,,, +314,18,1,9721,654,1384.486,,,,,,144,88,0,,,,, +314,20,1,9723,696,1384.486,29,32.0,C7,p+,12,144,96,12,,,,, +314,20,1,9723,696,1384.584,,,,,,144,96,0,,,,, +314,21,1,9724,725,1384.584,43,32.0,E6,mp-,13,144,88,13,,,,, +314,22,1,9725,725,1384.584,32,32.0,G#6,mp-,13,144,92,13,,,,, +314,23,1,9726,725,1384.584,32,32.0,F#7,mp-,13,144,102,13,,,,, +314,22,1,9725,725,1384.693,,,,,,144,92,0,,,,, +314,23,1,9726,725,1384.693,,,,,,144,102,0,,,,, +314,11,2,9714,512,1384.73,,,,,,144,70,0,,,,, +314,12,2,9715,512,1384.73,,,,,,144,74,0,,,,, +314,13,2,9716,512,1384.73,,,,,,144,90,0,,,,, +314,21,1,9724,725,1384.73,,,,,,144,88,0,,,,, +314,24,1,9727,768,1384.73,85,8.0,F5,mp,14,144,77,14,,,,, +314,24,1,9727,768,1385.019,,,,,,144,77,0,,,,, +314,25,1,9728,853,1385.019,171,4.0,E6,mp,14,144,88,14,,,,, +314,26,1,9729,853,1385.019,256,4.0,G#6,mp,14,144,92,14,,,,, +314,27,1,9730,853,1385.019,256,4.0,C7,mp,14,144,96,14,,,,, +314,28,1,9731,853,1385.019,256,4.0,F#7,mp,14,144,102,14,,,,, +314,10,2,9713,512,1385.165,,,,,,144,63,0,,,,, +314,29,2,9732,896,1385.165,384,4.0,D#4,mp,14,144,63,14,,,,, +314,30,2,9733,896,1385.165,256,4.0,A#4,mp,14,144,70,14,,,,, +314,31,2,9734,896,1385.165,256,4.0,D5,mp,14,144,74,14,,,,, +314,32,2,9735,896,1385.165,256,4.0,F#6,mp,14,144,90,14,,,,, +314,25,1,9728,853,1385.6,,,,,,144,88,0,,,,, +314,33,1,9736,1024,1385.6,,,,,,176,102,0,,,,, +314,26,1,9729,853,1385.888,,,,,,144,92,0,,,,, +314,27,1,9730,853,1385.888,,,,,,144,96,0,,,,, +314,28,1,9731,853,1385.888,,,,,,144,102,0,,,,, +314,34,2,9737,1280,1386.469,256,4.0,D#4,,,,,,,,,, +314,35,2,9738,1280,1386.469,256,4.0,A#4,,,,,,,,,, +314,36,2,9739,1280,1386.469,256,4.0,D5,,,,,,,,,, +314,37,2,9740,1280,1386.469,256,4.0,E5,mp,14,144,76,14,,,,, +314,38,2,9741,1280,1386.469,256,4.0,F#6,,,,,,,,,, +314,30,2,9733,896,1386.904,,,,,,144,70,0,,,,, +314,31,2,9734,896,1386.904,,,,,,144,74,0,,,,, +314,32,2,9735,896,1386.904,,,,,,144,90,0,,,,, +314,29,2,9732,896,1387.339,,,,,,144,63,0,,,,, +314,37,2,9740,1280,1387.339,,,,,,144,76,0,,,,, +315,0,0,9742,0,1387.339,,,,,,,,,315,,,, +315,1,1,9743,0,1387.339,42,32.0,F#5,p,11,144,78,11,,,,, +315,2,3,9744,0,1387.339,,,,,,176,102,0,,,,, +315,3,4,9745,0,1387.339,1536,1.0,E1,,,,,,,,,, +315,4,4,9746,0,1387.339,1024,1.0,G#1,,,,,,,,,, +315,5,4,9747,0,1387.339,1024,1.0,C2,,,,,,,,,, +315,6,4,9748,0,1387.339,1024,1.0,F4,,,,,,,,,, +315,7,4,9749,0,1387.339,1024,1.0,F#4,,,,,,,,,, +315,1,1,9743,0,1387.481,,,,,,144,78,0,,,,, +315,8,1,9750,42,1387.481,29,32.0,G#4,p+,12,144,68,12,,,,, +315,8,1,9750,42,1387.58,,,,,,144,68,0,,,,, +315,9,1,9751,71,1387.58,14,64.0,F3,mp-,13,144,53,13,,,,, +315,9,1,9751,71,1387.628,,,,,,144,53,0,,,,, +315,10,1,9752,85,1387.628,14,64.0,C5,mp-,13,144,72,13,,,,, +315,10,1,9752,85,1387.675,,,,,,144,72,0,,,,, +315,11,1,9753,99,1387.675,14,64.0,F3,mp,14,144,53,14,,,,, +315,11,1,9753,99,1387.723,,,,,,144,53,0,,,,, +315,12,1,9754,113,1387.723,15,64.0,E4,mp,14,144,64,14,,,,, +315,12,1,9754,113,1387.774,,,,,,144,64,0,,,,, +315,13,3,9755,,1387.774,,8.0,E3,p,11,144,52,11,,,,g, +315,13,3,9755,,1387.824,,,,,,144,52,0,,,,, +315,14,3,9756,,1387.849,,8.0,C1,p-,10,144,24,10,,,,g, +315,14,3,9756,,1387.899,,,,,,144,24,0,,,,, +315,15,3,9757,,1387.924,,8.0,F2,p-,10,144,41,10,,,,g, +315,15,3,9757,,1387.974,,,,,,144,41,0,,,,, +315,18,0,9758,142,1387.981,,,,,,176,64,0,,,,,^ +315,16,3,9759,128,1387.999,64,16.0,G#1,pp+,9,144,32,9,,,,, +315,17,1,9760,128,1387.999,,,,,,176,102,0,,,,, +315,19,1,9761,142,1388.046,,,,,,176,102,0,,,,, +315,16,3,9759,128,1388.216,,,,,,144,32,0,,,,, +315,21,3,9762,192,1388.216,64,16.0,F#1,pp,8,144,30,8,,,,, +315,20,0,9763,192,1388.281,,,,,,176,64,127,,,,,V +315,21,3,9762,192,1388.433,,,,,,144,30,0,,,,, +315,22,1,9764,,1388.433,,8.0,G#5,mf,17,144,80,17,,,,g, +315,22,1,9764,,1388.483,,,,,,144,80,0,,,,, +315,23,1,9765,,1388.508,,8.0,F#6,mf,17,144,90,17,,,,g, +315,23,1,9765,,1388.558,,,,,,144,90,0,,,,, +315,24,1,9766,256,1388.583,512,2.0,C6,mf,17,144,84,17,,,,, +315,25,3,9767,256,1388.583,512,2.0,F#1,ppp,5,144,30,5,,,,, +315,26,3,9768,256,1388.583,512,2.0,G#1,ppp,5,144,32,5,,,,, +314,5,4,9708,0,1389.513,,,,,,144,32,0,,,,, +314,6,4,9709,0,1389.948,,,,,,144,36,0,,,,, +314,7,4,9710,0,1389.948,,,,,,144,65,0,,,,, +314,8,4,9711,0,1389.948,,,,,,144,66,0,,,,, +315,27,1,9769,768,1390.323,768,2.0,C6,,,,,,,,,, +315,28,3,9770,768,1390.323,768,2.0,F#1,,,,,,,,,, +315,29,3,9771,768,1390.323,512,2.0,G#1,,,,,,,,,, +315,26,3,9768,256,1392.931,,,,,,144,32,0,,,,, +316,0,0,9772,0,1392.931,,,,,,,,,316,,,, +316,1,1,9773,0,1392.931,170,4.0,C6,,,,,,,,,, +316,2,3,9774,0,1392.931,256,4.0,F#1,,,,,,,,,, +316,3,3,9775,0,1392.931,256,4.0,G#1,,,,,,,,,, +316,4,4,9776,0,1392.931,85,8.0,E1,,,,,,,,,, +316,5,4,9777,0,1392.931,128,8.0,G#1,,,,,,,,,, +316,6,4,9778,0,1392.931,128,8.0,C2,,,,,,,,,, +316,7,4,9779,0,1392.931,128,8.0,F4,,,,,,,,,, +316,8,4,9780,0,1392.931,128,8.0,F#4,,,,,,,,,, +314,4,4,9707,0,1393.134,,,,,,144,28,0,,,,, +316,9,4,9781,85,1393.22,85,8.0,E1,,,,,,,,,, +316,10,4,9782,85,1393.22,128,8.0,G#1,,,,,,,,,, +316,11,4,9783,85,1393.22,128,8.0,A#1,f,20,144,34,20,,,,, +316,12,4,9784,85,1393.22,128,8.0,C2,,,,,,,,,, +316,13,4,9785,85,1393.22,128,8.0,F4,,,,,,,,,, +316,14,4,9786,85,1393.22,128,8.0,F#4,,,,,,,,,, +316,15,0,9787,85,1393.22,,,,,,,,,,6014,,, +316,16,0,9788,170,1393.359,,,,,,176,64,0,,,,,^ +315,24,1,9766,256,1393.509,,,,,,144,84,0,,,,, +316,11,4,9783,85,1393.509,,,,,,144,34,0,,,,, +316,18,1,9789,170,1393.509,86,8.0,D7,ff,22,144,98,22,,,,, +316,19,4,9790,170,1393.509,86,8.0,A#1,ff,22,144,34,22,,,,, +316,17,0,9791,170,1393.659,,,,,,176,64,127,,,,,V +315,25,3,9767,256,1393.801,,,,,,144,30,0,,,,, +316,20,1,9792,256,1393.801,768,2.0,D7,,,,,,,,,, +316,21,3,9793,256,1393.801,,,,,,176,102,0,,,,, +316,22,4,9794,256,1393.801,1024,1.0,A#1,,,,,,,,,, +316,24,1,9795,,1396.334,,8.0,C#5,ppp,5,144,73,5,,,,g, +316,24,1,9795,,1396.384,,,,,,144,73,0,,,,, +316,18,1,9789,170,1396.409,,,,,,144,98,0,,,,, +316,23,0,9796,1024,1396.409,,,,,,176,64,0,,,,,^ +316,25,1,9797,1024,1396.409,256,4.0,C#5,ppp,5,144,73,5,,,,, +316,26,3,9798,1024,1396.409,256,4.0,F#2,ppp,5,144,42,5,,,,, +316,19,4,9790,170,1397.279,,,,,,144,34,0,,,,, +316,25,1,9797,1024,1397.279,,,,,,144,73,0,,,,, +316,26,3,9798,1024,1397.279,,,,,,144,42,0,,,,, +316,27,1,9799,1280,1397.279,,,,,,176,102,0,,,,, +316,28,3,9800,1280,1397.279,64,16.0,F2,mf,17,144,41,17,,,,, +316,29,4,9801,1280,1397.279,,,,,,176,102,0,,,,, +316,,,9802,1280,1397.279,,,,,,176,64,127,,,,,V +316,30,1,9803,,1397.496,,8.0,C6,mf,17,144,84,17,,,,g, +316,30,1,9803,,1397.546,,,,,,144,84,0,,,,, +316,31,1,9804,1344,1397.571,192,8.0,C6,mf,17,144,84,17,,,,, +316,32,3,9805,1344,1397.571,192,8.0,F2,,,,,,,,,, +316,33,3,9806,1344,1397.571,128,8.0,E4,mf+,18,144,64,18,,,,, +316,33,3,9806,1344,1398.006,,,,,,144,64,0,,,,, +316,28,3,9800,1280,1398.149,,,,,,144,41,0,,,,, +316,,,9807,1535,1398.22,,,,,,176,64,0,,,,,^ +316,31,1,9804,1344,1398.224,,,,,,144,84,0,,,,, +317,0,0,9808,0,1398.224,,,,,,,,,317,,,, +317,1,1,9809,0,1398.224,32,32.0,F#4,pp,8,144,66,8,,,,, +317,2,3,9810,0,1398.224,,,,,,176,102,0,,,,, +317,1,1,9809,0,1398.332,,,,,,144,66,0,,,,, +317,3,1,9811,32,1398.332,224,8.0,F3,pp,8,144,53,8,,,,, +317,4,1,9812,256,1399.093,512,2.0,F3,,,,,,,,,, +317,5,3,9813,256,1399.093,64,16.0,G2,p,11,144,43,11,,,,, +317,5,3,9813,256,1399.311,,,,,,144,43,0,,,,, +317,6,3,9814,320,1399.311,192,8.0,G2,mp,14,144,43,14,,,,, +317,7,3,9815,320,1399.311,128,8.0,F3,mp,14,144,53,14,,,,, +317,7,3,9815,320,1399.745,,,,,,144,53,0,,,,, +317,6,3,9814,320,1399.963,,,,,,144,43,0,,,,, +317,8,3,9816,512,1399.963,,,,,,176,102,0,,,,, +317,9,3,9817,,1400.173,,8.0,F3,pp,8,144,53,8,,,,g, +317,9,3,9817,,1400.223,,,,,,144,53,0,,,,, +317,10,3,9818,,1400.248,,8.0,F#2,pp,8,144,42,8,,,,g, +317,10,3,9818,,1400.298,,,,,,144,42,0,,,,, +317,11,3,9819,,1400.323,,8.0,E4,pp,8,144,64,8,,,,g, +317,11,3,9819,,1400.373,,,,,,144,64,0,,,,, +317,12,3,9820,640,1400.398,64,16.0,C2,pp-,7,144,36,7,,,,, +317,12,3,9820,640,1400.615,,,,,,144,36,0,,,,, +317,13,3,9821,704,1400.615,64,16.0,C2,pp-,7,144,36,7,,,,, +317,14,3,9822,704,1400.615,64,16.0,G#2,pp-,7,144,44,7,,,,, +317,15,1,9823,768,1400.832,224,8.0,F3,,,,,,,,,, +317,16,3,9824,768,1400.832,256,4.0,C2,,,,,,,,,, +317,17,3,9825,768,1400.832,256,4.0,G#2,,,,,,,,,, +317,3,1,9811,32,1401.593,,,,,,144,53,0,,,,, +317,18,1,9826,992,1401.593,32,32.0,F3,ppp,5,144,53,5,,,,, +317,13,3,9821,704,1401.702,,,,,,144,36,0,,,,, +317,14,3,9822,704,1401.702,,,,,,144,44,0,,,,, +317,18,1,9826,992,1401.702,,,,,,144,53,0,,,,, +317,19,1,9827,1024,1401.702,256,4.0,E1,ppp,5,144,28,5,,,,, +317,20,1,9828,1024,1401.702,256,4.0,F3,ppp,5,144,53,5,,,,, +317,21,3,9829,1024,1401.702,21,32.0,E4,ppp-,4,144,64,4,,,,, +317,21,3,9829,1024,1401.773,,,,,,144,64,0,,,,, +317,22,3,9830,1045,1401.773,21,32.0,C1,pppp+,3,144,24,3,,,,, +317,22,3,9830,1045,1401.845,,,,,,144,24,0,,,,, +317,23,3,9831,1066,1401.845,22,32.0,E3,pppp+,3,144,52,3,,,,, +317,23,3,9831,1066,1401.919,,,,,,144,52,0,,,,, +317,24,3,9832,1088,1401.919,21,32.0,F2,pppp+,3,144,41,3,,,,, +317,24,3,9832,1088,1401.991,,,,,,144,41,0,,,,, +317,25,3,9833,1109,1401.991,21,32.0,C1,pppp+,3,144,24,3,,,,, +317,25,3,9833,1109,1402.062,,,,,,144,24,0,,,,, +317,26,3,9834,1130,1402.062,22,32.0,G#1,pppp+,3,144,32,3,,,,, +317,27,3,9835,1130,1402.062,32,32.0,F2,pppp+,3,144,41,3,,,,, +317,28,3,9836,1130,1402.062,32,32.0,E3,pppp+,3,144,52,3,,,,, +317,26,3,9834,1130,1402.137,,,,,,144,32,0,,,,, +317,29,3,9837,1152,1402.137,21,32.0,F#1,pppp,2,144,30,2,,,,, +317,27,3,9835,1130,1402.171,,,,,,144,41,0,,,,, +317,28,3,9836,1130,1402.171,,,,,,144,52,0,,,,, +317,29,3,9837,1152,1402.208,,,,,,144,30,0,,,,, +317,31,3,9838,1173,1402.208,21,32.0,F2,pppp,2,144,41,2,,,,, +317,32,3,9839,1173,1402.208,32,32.0,E3,pppp,2,144,52,2,,,,, +317,30,0,9840,1173,1402.208,,,,,,176,64,127,,,,,V +317,31,3,9838,1173,1402.279,,,,,,144,41,0,,,,, +317,33,3,9841,1194,1402.279,64,16.0,C1,pppp,2,144,24,2,,,,, +317,34,3,9842,1194,1402.279,64,16.0,F#1,pppp,2,144,30,2,,,,, +317,32,3,9839,1173,1402.317,,,,,,144,52,0,,,,, +317,33,3,9841,1194,1402.497,,,,,,144,24,0,,,,, +317,34,3,9842,1194,1402.497,,,,,,144,30,0,,,,, +317,35,3,9843,1258,1402.497,22,32.0,F#1,pppp,2,144,30,2,,,,, +317,36,3,9844,1258,1402.497,32,32.0,G#1,pppp,2,144,32,2,,,,, +317,19,1,9827,1024,1402.571,,,,,,144,28,0,,,,, +317,20,1,9828,1024,1402.571,,,,,,144,53,0,,,,, +317,35,3,9843,1258,1402.571,,,,,,144,30,0,,,,, +317,37,1,9845,1280,1402.571,,,,,,176,102,0,,,,, +317,38,3,9846,1280,1402.571,,,,,,176,102,0,,,,, +317,36,3,9844,1258,1402.605,,,,,,144,32,0,,,,, +317,39,0,9847,1791,1404.307,,,,,,176,64,0,,,,,^ +318,0,0,9848,0,1404.311,,,,,,,,,318,,,, +318,1,1,9849,0,1404.311,,,,,,176,102,0,,,,, +318,2,3,9850,0,1404.311,,,,,,176,102,0,,,,, +318,3,4,9851,0,1404.311,,,,,,176,102,0,,,,, +318,4,0,9852,0,1404.311,,,,,,,,,,6015,,, +318,6,1,9853,128,1404.745,28,32.0,D6,p,11,144,86,11,,,,, +318,5,0,9854,128,1404.745,,,,,,176,64,127,,,,,V +318,6,1,9853,128,1404.84,,,,,,144,86,0,,,,, +318,7,1,9855,156,1404.84,28,32.0,F#7,p+,12,144,102,12,,,,, +318,7,1,9855,156,1404.936,,,,,,144,102,0,,,,, +318,8,1,9856,184,1404.936,43,32.0,E7,p+,12,144,100,12,,,,, +318,8,1,9856,184,1405.082,,,,,,144,100,0,,,,, +318,9,1,9857,227,1405.082,29,32.0,D5,mp-,13,144,74,13,,,,, +318,9,1,9857,227,1405.18,,,,,,144,74,0,,,,, +318,10,1,9858,256,1405.18,25,32.0,E6,mp,14,144,88,14,,,,, +318,11,1,9859,281,1405.265,26,32.0,A#5,mp+,15,144,82,15,,,,, +318,10,1,9858,256,1405.353,,,,,,144,88,0,,,,, +318,11,1,9859,281,1405.353,,,,,,144,82,0,,,,, +318,12,1,9860,307,1405.353,38,32.0,E6,mp+,15,144,88,15,,,,, +318,13,1,9861,345,1405.482,39,32.0,D4,mf-,16,144,62,16,,,,, +318,12,1,9860,307,1405.49,,,,,,144,88,0,,,,, +318,13,1,9861,345,1405.615,,,,,,144,62,0,,,,, +318,14,1,9862,384,1405.615,42,32.0,A#5,mf,17,144,82,17,,,,, +318,14,1,9862,384,1405.758,,,,,,144,82,0,,,,, +318,15,1,9863,426,1405.758,29,32.0,F#6,mf+,18,144,90,18,,,,, +318,15,1,9863,426,1405.856,,,,,,144,90,0,,,,, +318,16,1,9864,455,1405.856,28,32.0,E5,f-,19,144,76,19,,,,, +318,16,1,9864,455,1405.951,,,,,,144,76,0,,,,, +318,17,1,9865,483,1405.951,29,32.0,A#4,f-,19,144,70,19,,,,, +318,17,1,9865,483,1406.05,,,,,,144,70,0,,,,, +318,18,1,9866,512,1406.05,85,8.0,D#3,f,20,144,51,20,,,,, +318,19,1,9867,512,1406.05,128,8.0,D7,ff,22,144,98,22,,,,, +318,20,1,9868,512,1406.05,128,8.0,F#7,f,20,144,102,20,,,,, +318,21,3,9869,512,1406.05,,,,,,176,102,0,,,,, +318,22,4,9870,512,1406.05,,,,,,176,102,0,,,,, +318,19,1,9867,512,1406.338,,,,,,144,98,0,,,,, +318,23,1,9871,597,1406.338,171,4.0,D7,f,20,144,98,20,,,,, +318,24,4,9872,597,1406.338,171,4.0,F#2,f,20,144,42,20,,,,, +318,25,3,9873,640,1406.484,25,32.0,E1,pp,8,144,28,8,,,,, +318,18,1,9866,512,1406.488,,,,,,144,51,0,,,,, +318,25,3,9873,640,1406.569,,,,,,144,28,0,,,,, +318,26,3,9874,665,1406.569,26,32.0,C2,pp-,7,144,36,7,,,,, +318,20,1,9868,512,1406.634,,,,,,144,102,0,,,,, +318,26,3,9874,665,1406.658,,,,,,144,36,0,,,,, +318,27,3,9875,691,1406.658,25,32.0,E1,ppp,5,144,28,5,,,,, +318,27,3,9875,691,1406.743,,,,,,144,28,0,,,,, +318,28,3,9876,716,1406.743,26,32.0,C2,ppp-,4,144,36,4,,,,, +318,28,3,9876,716,1406.831,,,,,,144,36,0,,,,, +318,29,3,9877,742,1406.831,26,32.0,G#1,pppp,2,144,32,2,,,,, +318,29,3,9877,742,1406.919,,,,,,144,32,0,,,,, +318,30,1,9878,768,1406.919,,,,,,176,102,0,,,,, +318,31,3,9879,768,1406.919,,,,,,176,102,0,,,,, +318,32,4,9880,768,1406.919,,,,,,176,102,0,,,,, +318,23,1,9871,597,1406.919,,,,,,144,98,0,,,,, +318,24,4,9872,597,1406.919,,,,,,144,42,0,,,,, +319,0,0,9881,0,1410.398,,,,,,,,,319,,,, +319,1,1,9882,0,1410.398,256,4.0,G#5,f,20,144,80,20,,,,, +319,2,1,9883,0,1410.398,256,4.0,F#7,f,20,144,102,20,,,,, +319,3,3,9884,0,1410.398,,,,,,176,102,0,,,,, +319,4,0,9885,196,1411.015,,,,,,176,64,0,,,,,^ +319,1,1,9882,0,1411.267,,,,,,144,80,0,,,,, +319,2,1,9883,0,1411.267,,,,,,144,102,0,,,,, +319,6,1,9886,256,1411.267,21,32.0,G#6,p,11,144,92,11,,,,, +319,7,1,9887,256,1411.267,32,32.0,F#7,p,11,144,102,11,,,,, +319,8,3,9888,256,1411.267,,,,,,176,102,0,,,,, +319,5,0,9889,256,1411.315,,,,,,176,64,127,,,,,V +319,6,1,9886,256,1411.338,,,,,,144,92,0,,,,, +319,9,1,9890,277,1411.338,21,32.0,C7,p+,12,144,96,12,,,,, +319,7,1,9887,256,1411.376,,,,,,144,102,0,,,,, +319,9,1,9890,277,1411.41,,,,,,144,96,0,,,,, +319,10,1,9891,298,1411.41,22,32.0,E4,p+,12,144,64,12,,,,, +319,10,1,9891,298,1411.484,,,,,,144,64,0,,,,, +319,11,1,9892,320,1411.484,21,32.0,C6,mp-,13,144,84,13,,,,, +319,11,1,9892,320,1411.556,,,,,,144,84,0,,,,, +319,12,1,9893,341,1411.556,21,32.0,F3,mp,14,144,53,14,,,,, +319,12,1,9893,341,1411.627,,,,,,144,53,0,,,,, +319,13,1,9894,362,1411.627,22,32.0,E4,mp+,15,144,64,15,,,,, +319,13,1,9894,362,1411.702,,,,,,144,64,0,,,,, +319,14,1,9895,384,1411.702,21,32.0,F3,mf-,16,144,53,16,,,,, +319,14,1,9895,384,1411.773,,,,,,144,53,0,,,,, +319,15,1,9896,405,1411.773,21,32.0,E4,mf-,16,144,64,16,,,,, +319,15,1,9896,405,1411.845,,,,,,144,64,0,,,,, +319,16,1,9897,426,1411.845,22,32.0,F3,mf,17,144,53,17,,,,, +319,16,1,9897,426,1411.919,,,,,,144,53,0,,,,, +319,17,1,9898,448,1411.919,,,,,,176,102,0,,,,, +319,18,0,9899,486,1411.942,,,,,,176,64,0,,,,,^ +319,20,1,9900,512,1412.137,85,8.0,A#4,p,11,144,70,11,,,,, +319,21,1,9901,512,1412.137,128,8.0,E5,p,11,144,76,11,,,,, +319,22,1,9902,512,1412.137,128,8.0,F#5,p,11,144,78,11,,,,, +319,23,3,9903,512,1412.137,85,8.0,D#3,p,11,144,51,11,,,,, +319,24,3,9904,512,1412.137,128,8.0,D4,p,11,144,62,11,,,,, +319,19,0,9905,512,1412.242,,,,,,176,64,127,,,,,V +319,20,1,9900,512,1412.425,,,,,,144,70,0,,,,, +319,23,3,9903,512,1412.425,,,,,,144,51,0,,,,, +319,25,1,9906,597,1412.425,171,4.0,G#5,pp,8,144,80,8,,,,, +319,26,1,9907,597,1412.425,256,4.0,C6,pp,8,144,84,8,,,,, +319,27,1,9908,597,1412.425,256,4.0,F#6,pp,8,144,90,8,,,,, +319,28,3,9909,597,1412.425,,,,,,176,102,0,,,,, +319,21,1,9901,512,1412.571,,,,,,144,76,0,,,,, +319,22,1,9902,512,1412.571,,,,,,144,78,0,,,,, +319,24,3,9904,512,1412.571,,,,,,144,62,0,,,,, +319,29,3,9910,640,1412.571,,,,,,176,102,0,,,,, +319,30,3,9911,661,1412.643,21,32.0,F2,pp,8,144,41,8,,,,, +319,30,3,9911,661,1412.714,,,,,,144,41,0,,,,, +319,31,3,9912,682,1412.714,22,32.0,E3,pp,8,144,52,8,,,,, +319,31,3,9912,682,1412.789,,,,,,144,52,0,,,,, +319,32,3,9913,704,1412.789,21,32.0,F2,pp,8,144,41,8,,,,, +319,32,3,9913,704,1412.86,,,,,,144,41,0,,,,, +319,33,3,9914,725,1412.86,43,16.0,E3,pp,8,144,52,8,,,,, +319,27,1,9908,597,1413.006,,,,,,144,90,0,,,,, +319,34,1,9915,768,1413.006,512,2.0,A#5,ppp,5,144,82,5,,,,, +319,35,1,9916,768,1413.006,512,2.0,E6,ppp,5,144,88,5,,,,, +319,36,1,9917,768,1413.006,512,2.0,F#6,ppp,5,144,90,5,,,,, +319,37,3,9918,768,1413.006,512,2.0,D#2,ppp,5,144,39,5,,,,, +319,38,3,9919,768,1413.006,512,2.0,D3,ppp,5,144,50,5,,,,, +319,25,1,9906,597,1413.231,,,,,,144,80,0,,,,, +319,33,3,9914,725,1413.231,,,,,,144,52,0,,,,, +319,26,1,9907,597,1413.52,,,,,,144,84,0,,,,, +319,39,0,9920,1279,1414.594,,,,,,176,64,0,,,,,^ +319,37,3,9918,768,1414.745,,,,,,144,39,0,,,,, +319,41,1,9921,1280,1414.745,85,8.0,G#6,ppp,5,144,92,5,,,,, +319,42,1,9922,1280,1414.745,128,8.0,C7,ppp,5,144,96,5,,,,, +319,43,1,9923,1280,1414.745,128,8.0,F#7,ppp,5,144,102,5,,,,, +319,44,3,9924,1280,1414.745,85,8.0,F1,ppp,5,144,29,5,,,,, +319,45,3,9925,1280,1414.745,128,8.0,D#2,ppp,5,144,39,5,,,,, +319,40,0,9926,1280,1414.894,,,,,,176,64,127,,,,,V +319,34,1,9915,768,1414.895,,,,,,144,82,0,,,,, +319,35,1,9916,768,1414.895,,,,,,144,88,0,,,,, +319,36,1,9917,768,1414.895,,,,,,144,90,0,,,,, +319,38,3,9919,768,1414.895,,,,,,144,50,0,,,,, +319,41,1,9921,1280,1415.034,,,,,,144,92,0,,,,, +319,43,1,9923,1280,1415.034,,,,,,144,102,0,,,,, +319,44,3,9924,1280,1415.034,,,,,,144,29,0,,,,, +319,46,1,9927,1365,1415.034,171,4.0,A#6,ppp,5,144,94,5,,,,, +319,47,1,9928,1365,1415.034,256,4.0,E7,ppp,5,144,100,5,,,,, +319,48,1,9929,1365,1415.034,256,4.0,F#7,ppp,5,144,102,5,,,,, +319,49,3,9930,1365,1415.034,171,4.0,D#1,ppp,5,144,27,5,,,,, +319,50,3,9931,1365,1415.034,256,4.0,D2,ppp,5,144,38,5,,,,, +319,42,1,9922,1280,1415.18,,,,,,144,96,0,,,,, +319,45,3,9925,1280,1415.18,,,,,,144,39,0,,,,, +319,51,1,9932,1536,1415.615,256,4.0,A#6,,,,,,,,,, +319,52,1,9933,1536,1415.615,256,4.0,E7,,,,,,,,,, +319,53,1,9934,1536,1415.615,256,4.0,F#7,,,,,,,,,, +319,54,3,9935,1536,1415.615,256,4.0,D#1,,,,,,,,,, +319,55,3,9936,1536,1415.615,256,4.0,D2,,,,,,,,,, +320,0,0,9937,0,1416.484,,,,,,,,,320,,,, +320,1,1,9938,0,1416.484,341,2.0,G#6,ppp,5,144,92,5,,,,, +320,2,1,9939,0,1416.484,512,2.0,C7,ppp,5,144,96,5,,,,, +320,3,1,9940,0,1416.484,512,2.0,F#7,ppp,5,144,102,5,,,,, +320,4,3,9941,0,1416.484,341,2.0,F1,ppp,5,144,29,5,,,,, +320,5,3,9942,0,1416.484,512,2.0,E2,ppp,5,144,40,5,,,,, +319,46,1,9927,1365,1416.484,,,,,,144,94,0,,,,, +319,49,3,9930,1365,1416.484,,,,,,144,27,0,,,,, +319,47,1,9928,1365,1416.773,,,,,,144,100,0,,,,, +319,48,1,9929,1365,1416.773,,,,,,144,102,0,,,,, +319,50,3,9931,1365,1416.773,,,,,,144,38,0,,,,, +320,1,1,9938,0,1417.643,,,,,,144,92,0,,,,, +320,3,1,9940,0,1417.643,,,,,,144,102,0,,,,, +320,4,3,9941,0,1417.643,,,,,,144,29,0,,,,, +320,6,1,9943,341,1417.643,171,4.0,A#6,ppp,5,144,94,5,,,,, +320,7,1,9944,341,1417.643,256,4.0,E7,ppp,5,144,100,5,,,,, +320,8,1,9945,341,1417.643,256,4.0,F#7,ppp,5,144,102,5,,,,, +320,9,3,9946,341,1417.643,171,4.0,D#1,ppp,5,144,27,5,,,,, +320,10,3,9947,341,1417.643,256,4.0,D2,ppp,5,144,38,5,,,,, +320,2,1,9939,0,1418.224,,,,,,144,96,0,,,,, +320,5,3,9942,0,1418.224,,,,,,144,40,0,,,,, +320,11,1,9948,512,1418.224,512,2.0,A#6,,,,,,,,,, +320,12,1,9949,512,1418.224,512,2.0,E7,,,,,,,,,, +320,13,1,9950,512,1418.224,512,2.0,F#7,,,,,,,,,, +320,14,3,9951,512,1418.224,512,2.0,D#1,,,,,,,,,, +320,15,3,9952,512,1418.224,512,2.0,D2,,,,,,,,,, +320,16,1,9953,1024,1419.963,1024,1.0,G#4,ppp,5,144,68,5,,,,, +320,17,1,9954,1024,1419.963,1024,1.0,C5,ppp,5,144,72,5,,,,, +320,18,1,9955,1024,1419.963,1024,1.0,F#5,ppp,5,144,78,5,,,,, +320,19,3,9956,1024,1419.963,1024,1.0,F3,ppp,5,144,53,5,,,,, +320,20,3,9957,1024,1419.963,1024,1.0,E4,ppp,5,144,64,5,,,,, +320,6,1,9943,341,1419.963,,,,,,144,94,0,,,,, +320,9,3,9946,341,1419.963,,,,,,144,27,0,,,,, +320,7,1,9944,341,1420.251,,,,,,144,100,0,,,,, +320,8,1,9945,341,1420.251,,,,,,144,102,0,,,,, +320,10,3,9947,341,1420.251,,,,,,144,38,0,,,,, +321,0,0,9958,0,1423.441,,,,,,,,,321,,,, +321,1,1,9959,0,1423.441,256,4.0,G#4,,,,,,,,,, +321,2,1,9960,0,1423.441,256,4.0,C5,,,,,,,,,, +321,3,1,9961,0,1423.441,256,4.0,F#5,,,,,,,,,, +321,4,3,9962,0,1423.441,256,4.0,F3,,,,,,,,,, +321,5,3,9963,0,1423.441,256,4.0,E4,,,,,,,,,, +321,6,1,9964,256,1424.311,1792,1.0,A#4,pp,8,144,70,8,,,,, +321,7,1,9965,256,1424.311,1024,1.0,E5,pp,8,144,76,8,,,,, +321,8,1,9966,256,1424.311,1024,1.0,F#5,pp,8,144,78,8,,,,, +321,9,3,9967,256,1424.311,1792,1.0,D#3,pp,8,144,51,8,,,,, +321,10,3,9968,256,1424.311,1024,1.0,D4,pp,8,144,62,8,,,,, +320,16,1,9953,1024,1424.386,,,,,,144,68,0,,,,, +320,17,1,9954,1024,1424.386,,,,,,144,72,0,,,,, +320,18,1,9955,1024,1424.386,,,,,,144,78,0,,,,, +320,19,3,9956,1024,1424.386,,,,,,144,53,0,,,,, +320,20,3,9957,1024,1424.386,,,,,,144,64,0,,,,, +321,7,1,9965,256,1427.789,,,,,,144,76,0,,,,, +321,8,1,9966,256,1427.789,,,,,,144,78,0,,,,, +321,10,3,9968,256,1427.789,,,,,,144,62,0,,,,, +321,11,0,9969,2047,1430.394,,,,,,176,64,0,,,,,^ +321,6,1,9964,256,1430.398,,,,,,144,70,0,,,,, +321,9,3,9967,256,1430.398,,,,,,144,51,0,,,,, +322,0,0,9970,0,1430.398,,,,,,,,,322,,,, +322,1,1,9971,0,1430.398,,,,,,176,102,0,,,,, +322,2,3,9972,0,1430.398,,,,,,176,102,0,,,,, +322,3,0,9973,0,1430.398,,,,,,,,,,6016,,, +322,4,3,9974,256,1431.267,85,8.0,F#2,mp,14,144,42,14,,,,, +322,4,3,9974,256,1431.556,,,,,,144,42,0,,,,, +322,5,3,9975,341,1431.556,128,8.0,F#2,fff,24,144,42,23,,,,, +322,6,3,9976,341,1431.556,128,8.0,C3,fff,24,144,48,23,,,,, +322,5,3,9975,341,1431.991,,,,,,144,42,0,,,,, +322,6,3,9976,341,1431.991,,,,,,144,48,0,,,,, +322,7,3,9977,469,1431.991,43,16.0,F#2,fff,24,144,42,23,,,,, +322,8,3,9978,469,1431.991,64,16.0,B2,fff,24,144,47,23,,,,, +322,9,3,9979,469,1431.991,64,16.0,C3,fff,24,144,48,23,,,,, +322,7,3,9977,469,1432.041,,,,,,144,42,0,,,,, +322,8,3,9978,469,1432.041,,,,,,144,47,0,,,,, +322,9,3,9979,469,1432.041,,,,,,144,48,0,,,,, +322,11,1,9980,512,1432.137,,,,,,176,102,0,,,,, +322,12,3,9981,512,1432.137,,,,,,176,102,0,,,,, +322,10,0,9982,512,1432.237,,,,,,176,64,127,,,,,V +322,13,0,9983,768,1432.856,,,,,,176,64,0,,,,,^ +322,15,3,9984,768,1433.006,21,32.0,D4,fff,24,144,62,23,,,,, +322,15,3,9984,768,1433.078,,,,,,144,62,0,,,,, +322,16,3,9985,789,1433.078,21,32.0,A#0,fff,24,144,22,23,,,,, +322,16,3,9985,789,1433.149,,,,,,144,22,0,,,,, +322,17,3,9986,810,1433.149,22,32.0,F#1,fff,24,144,30,23,,,,, +322,14,0,9987,768,1433.156,,,,,,176,64,127,,,,,V +322,17,3,9986,810,1433.224,,,,,,144,30,0,,,,, +322,18,3,9988,832,1433.224,21,32.0,B1,fff,24,144,35,23,,,,, +322,20,0,9989,896,1433.291,,,,,,176,64,0,,,,,^ +322,18,3,9988,832,1433.295,,,,,,144,35,0,,,,, +322,19,3,9990,853,1433.295,43,16.0,C2,fff,24,144,36,23,,,,, +322,19,3,9990,853,1433.441,,,,,,144,36,0,,,,, +322,22,3,9991,896,1433.441,28,32.0,F#1,f,20,144,30,20,,,,, +322,22,3,9991,896,1433.536,,,,,,144,30,0,,,,, +322,23,3,9992,924,1433.536,28,32.0,B1,f,20,144,35,20,,,,, +322,21,0,9993,896,1433.591,,,,,,176,64,127,,,,,V +322,23,3,9992,924,1433.631,,,,,,144,35,0,,,,, +322,24,3,9994,952,1433.631,43,32.0,C2,f,20,144,36,20,,,,, +322,24,3,9994,952,1433.777,,,,,,144,36,0,,,,, +322,25,3,9995,995,1433.777,29,32.0,B1,mf+,18,144,35,18,,,,, +322,25,3,9995,995,1433.876,,,,,,144,35,0,,,,, +322,26,3,9996,1024,1433.876,42,32.0,C2,mf-,16,144,36,16,,,,, +322,26,3,9996,1024,1434.018,,,,,,144,36,0,,,,, +322,27,3,9997,1066,1434.018,29,32.0,B1,mp,14,144,35,14,,,,, +322,27,3,9997,1066,1434.117,,,,,,144,35,0,,,,, +322,29,0,9998,1095,1434.117,,,,,,176,64,0,,,,,^ +322,28,3,9999,1095,1434.117,28,32.0,D5,p+,12,144,74,12,,,,, +322,28,3,9999,1095,1434.212,,,,,,144,74,0,,,,, +322,30,3,10000,1123,1434.212,29,32.0,A#0,p,11,144,22,11,,,,, +322,30,3,10000,1123,1434.311,,,,,,144,22,0,,,,, +322,31,3,10001,1152,1434.311,42,32.0,F#1,pp+,9,144,30,9,,,,, +322,31,3,10001,1152,1434.453,,,,,,144,30,0,,,,, +322,32,3,10002,1194,1434.453,29,32.0,C2,pp-,7,144,36,7,,,,, +322,32,3,10002,1194,1434.552,,,,,,144,36,0,,,,, +322,33,3,10003,1223,1434.552,28,32.0,B1,ppp,5,144,35,5,,,,, +322,33,3,10003,1223,1434.647,,,,,,144,35,0,,,,, +322,34,3,10004,1251,1434.647,29,32.0,C2,ppp,5,144,36,5,,,,, +322,34,3,10004,1251,1434.745,,,,,,144,36,0,,,,, +322,35,1,10005,1280,1434.745,256,4.0,D6,ppp,5,144,86,5,,,,, +322,36,3,10006,1280,1434.745,,,,,,176,102,0,,,,, +322,35,1,10005,1280,1435.615,,,,,,144,86,0,,,,, +323,0,0,10007,0,1435.615,,,,,,,,,323,,,, +323,1,0,10008,0,1435.615,,,,,,,,,,6017,,, +323,3,1,10009,0,1435.615,512,2.0,A#6,f,20,144,94,20,,,,, +323,4,3,10010,0,1435.615,,,,,,176,102,0,,,,, +323,5,4,10011,0,1435.615,,,,,,176,102,0,,,,, +323,2,0,10012,0,1435.615,,,,,,176,64,127,,,,,V +323,6,3,10013,256,1436.484,256,4.0,G#1,pp,8,144,32,8,,,,, +323,7,3,10014,256,1436.484,256,4.0,F#2,pp,8,144,42,8,,,,, +323,8,4,10015,256,1436.484,512,2.0,G#2,fff,24,144,44,23,,,,, +323,3,1,10009,0,1437.354,,,,,,144,94,0,,,,, +323,9,1,10016,512,1437.354,32,32.0,E6,f,20,144,88,20,,,,, +323,10,3,10017,512,1437.354,85,8.0,G#1,,,,,,,,,, +323,11,3,10018,512,1437.354,128,8.0,F#2,,,,,,,,,, +323,12,1,10019,544,1437.463,224,8.0,D4,f,20,144,62,20,,,,, +323,13,1,10020,544,1437.463,128,8.0,E6,,,,,,,,,, +323,6,3,10013,256,1437.643,,,,,,144,32,0,,,,, +323,14,3,10021,597,1437.643,43,16.0,C3,ppp,5,144,48,5,,,,, +323,7,3,10014,256,1437.789,,,,,,144,42,0,,,,, +323,14,3,10021,597,1437.789,,,,,,144,48,0,,,,, +323,15,3,10022,640,1437.789,21,32.0,E3,ppp,5,144,52,5,,,,, +323,15,3,10022,640,1437.86,,,,,,144,52,0,,,,, +323,16,3,10023,661,1437.86,21,32.0,C#4,ppp+,6,144,61,6,,,,, +323,9,1,10016,512,1437.898,,,,,,144,88,0,,,,, +323,16,3,10023,661,1437.931,,,,,,144,61,0,,,,, +323,17,3,10024,682,1437.931,22,32.0,D2,ppp+,6,144,38,6,,,,, +323,17,3,10024,682,1438.006,,,,,,144,38,0,,,,, +323,18,3,10025,704,1438.006,21,32.0,G#1,pp-,7,144,32,7,,,,, +323,18,3,10025,704,1438.078,,,,,,144,32,0,,,,, +323,19,3,10026,725,1438.078,21,32.0,C3,pp-,7,144,48,7,,,,, +323,19,3,10026,725,1438.149,,,,,,144,48,0,,,,, +323,20,3,10027,746,1438.149,22,32.0,E3,pp,8,144,52,8,,,,, +323,21,0,10028,768,1438.218,,,,,,176,64,0,,,,,^ +323,8,4,10015,256,1438.224,,,,,,144,44,0,,,,, +323,12,1,10019,544,1438.224,,,,,,144,62,0,,,,, +323,20,3,10027,746,1438.224,,,,,,144,52,0,,,,, +323,22,1,10029,768,1438.224,,,,,,176,102,0,,,,, +323,23,3,10030,768,1438.224,85,16.0,G#1,p,11,144,32,11,,,,, +323,24,3,10031,768,1438.224,64,16.0,D2,p,11,144,38,11,,,,, +323,25,3,10032,768,1438.224,64,16.0,C3,p,11,144,48,11,,,,, +323,26,3,10033,768,1438.224,64,16.0,C#4,p,11,144,61,11,,,,, +323,27,4,10034,768,1438.224,,,,,,176,102,0,,,,, +323,24,3,10031,768,1438.441,,,,,,144,38,0,,,,, +323,25,3,10032,768,1438.441,,,,,,144,48,0,,,,, +323,26,3,10033,768,1438.441,,,,,,144,61,0,,,,, +323,23,3,10030,768,1438.512,,,,,,144,32,0,,,,, +323,29,3,10035,853,1438.512,14,64.0,C#7,ppp,5,144,97,5,,,,, +323,28,0,10036,853,1438.518,,,,,,176,64,127,,,,,V +323,29,3,10035,853,1438.56,,,,,,144,97,0,,,,, +323,30,3,10037,867,1438.56,14,64.0,G#4,ppp,5,144,68,5,,,,, +323,30,3,10037,867,1438.607,,,,,,144,68,0,,,,, +323,31,3,10038,881,1438.607,15,64.0,D5,ppp+,6,144,74,6,,,,, +323,31,3,10038,881,1438.658,,,,,,144,74,0,,,,, +323,32,3,10039,896,1438.658,14,64.0,G#4,ppp+,6,144,68,6,,,,, +323,32,3,10039,896,1438.706,,,,,,144,68,0,,,,, +323,33,3,10040,910,1438.706,14,64.0,D5,ppp+,6,144,74,6,,,,, +323,33,3,10040,910,1438.753,,,,,,144,74,0,,,,, +323,34,3,10041,924,1438.753,14,64.0,G#4,pp-,7,144,68,7,,,,, +323,34,3,10041,924,1438.801,,,,,,144,68,0,,,,, +323,35,3,10042,938,1438.801,57,16.0,C6,pp-,7,144,84,7,,,,, +323,35,3,10042,938,1438.995,,,,,,144,84,0,,,,, +323,36,3,10043,995,1438.995,29,32.0,E6,pp+,9,144,88,9,,,,, +323,36,3,10043,995,1439.093,,,,,,144,88,0,,,,, +323,37,1,10044,1024,1439.093,21,32.0,G#3,pp+,9,144,56,9,,,,, +323,38,3,10045,1024,1439.093,,,,,,176,102,0,,,,, +323,37,1,10044,1024,1439.164,,,,,,144,56,0,,,,, +323,39,1,10046,1045,1439.164,21,32.0,C#6,p-,10,144,85,10,,,,, +323,39,1,10046,1045,1439.236,,,,,,144,85,0,,,,, +323,40,1,10047,1066,1439.236,22,32.0,C5,p-,10,144,72,10,,,,, +323,40,1,10047,1066,1439.311,,,,,,144,72,0,,,,, +323,41,1,10048,1088,1439.311,21,32.0,D4,p,11,144,62,11,,,,, +323,41,1,10048,1088,1439.382,,,,,,144,62,0,,,,, +323,42,1,10049,1109,1439.382,32,32.0,C#6,p,11,144,85,11,,,,, +323,42,1,10049,1109,1439.491,,,,,,144,85,0,,,,, +323,43,1,10050,1141,1439.491,32,32.0,D3,p+,12,144,50,12,,,,, +323,43,1,10050,1141,1439.599,,,,,,144,50,0,,,,, +323,44,1,10051,1173,1439.599,21,32.0,G#2,mp-,13,144,44,13,,,,, +323,44,1,10051,1173,1439.671,,,,,,144,44,0,,,,, +323,45,1,10052,1194,1439.671,22,32.0,C#6,mp-,13,144,85,13,,,,, +323,45,1,10052,1194,1439.745,,,,,,144,85,0,,,,, +323,46,1,10053,1216,1439.745,21,32.0,C5,mp,14,144,72,14,,,,, +323,48,0,10054,1258,1439.813,,,,,,176,64,0,,,,,^ +323,46,1,10053,1216,1439.817,,,,,,144,72,0,,,,, +323,47,1,10055,1237,1439.817,21,32.0,D3,mp,14,144,50,14,,,,, +323,47,1,10055,1237,1439.888,,,,,,144,50,0,,,,, +323,49,1,10056,1258,1439.888,22,32.0,G#2,f,20,144,44,20,,,,, +323,50,1,10057,1258,1439.888,32,32.0,D3,f,20,144,50,20,,,,, +323,51,1,10058,1258,1439.888,32,32.0,C5,f,20,144,72,20,,,,, +323,52,1,10059,1258,1439.888,32,32.0,E5,f,20,144,76,20,,,,, +323,53,1,10060,1258,1439.888,32,32.0,C#6,f,20,144,85,20,,,,, +323,49,1,10056,1258,1439.963,,,,,,144,44,0,,,,, +323,54,1,10061,,1439.963,,8.0,C#5,f,20,144,73,20,,,,g, +323,50,1,10057,1258,1439.997,,,,,,144,50,0,,,,, +323,51,1,10058,1258,1439.997,,,,,,144,72,0,,,,, +323,52,1,10059,1258,1439.997,,,,,,144,76,0,,,,, +323,53,1,10060,1258,1439.997,,,,,,144,85,0,,,,, +323,54,1,10061,,1440.013,,,,,,144,73,0,,,,, +324,0,0,10062,0,1440.038,,,,,,,,,324,,,, +324,2,1,10063,0,1440.038,85,8.0,F#4,mp,14,144,66,14,,,,, +324,3,1,10064,0,1440.038,128,8.0,E5,pp,8,144,76,8,,,,, +324,4,3,10065,0,1440.038,256,4.0,G#1,pp,8,144,32,8,,,,, +324,1,0,10066,0,1440.113,,,,,,176,64,127,,,,,V +324,2,1,10063,0,1440.326,,,,,,144,66,0,,,,, +324,3,1,10064,0,1440.326,,,,,,144,76,0,,,,, +324,5,1,10067,85,1440.326,128,8.0,F#4,f,20,144,66,20,,,,, +324,6,1,10068,85,1440.326,128,8.0,E5,p,11,144,76,11,,,,, +324,7,1,10069,85,1440.326,128,8.0,A#6,f,20,144,94,20,,,,, +324,5,1,10067,85,1440.761,,,,,,144,66,0,,,,, +324,6,1,10068,85,1440.761,,,,,,144,76,0,,,,, +324,7,1,10069,85,1440.761,,,,,,144,94,0,,,,, +324,8,1,10070,213,1440.761,43,16.0,D4,p,11,144,62,11,,,,, +324,9,1,10071,213,1440.761,64,16.0,F#4,p,11,144,66,11,,,,, +324,10,1,10072,213,1440.761,64,16.0,E5,p,11,144,76,11,,,,, +324,4,3,10065,0,1440.907,,,,,,144,32,0,,,,, +324,8,1,10070,213,1440.907,,,,,,144,62,0,,,,, +324,11,0,10073,256,1440.907,,,,,,176,64,0,,,,,^ +324,12,1,10074,256,1440.907,,,,,,176,102,0,,,,, +324,13,3,10075,256,1440.907,42,32.0,F3,ppp,5,144,53,5,,,,, +324,9,1,10071,213,1440.979,,,,,,144,66,0,,,,, +324,10,1,10072,213,1440.979,,,,,,144,76,0,,,,, +324,13,3,10075,256,1441.05,,,,,,144,53,0,,,,, +324,14,3,10076,298,1441.05,29,32.0,G1,ppp-,4,144,31,4,,,,, +324,14,3,10076,298,1441.148,,,,,,144,31,0,,,,, +324,15,3,10077,327,1441.148,28,32.0,A1,ppp-,4,144,33,4,,,,, +324,15,3,10077,327,1441.244,,,,,,144,33,0,,,,, +324,16,3,10078,355,1441.244,29,32.0,G1,ppp-,4,144,31,4,,,,, +324,16,3,10078,355,1441.342,,,,,,144,31,0,,,,, +324,17,3,10079,384,1441.342,28,32.0,A1,pppp+,3,144,33,3,,,,, +324,17,3,10079,384,1441.437,,,,,,144,33,0,,,,, +324,18,3,10080,412,1441.437,28,32.0,G1,pppp+,3,144,31,3,,,,, +324,18,3,10080,412,1441.532,,,,,,144,31,0,,,,, +324,19,3,10081,440,1441.532,43,32.0,F3,pppp+,3,144,53,3,,,,, +324,19,3,10081,440,1441.678,,,,,,144,53,0,,,,, +324,20,3,10082,483,1441.678,29,32.0,G1,pppp,2,144,31,2,,,,, +324,21,3,10083,483,1441.678,32,32.0,F3,pppp,2,144,53,2,,,,, +324,20,3,10082,483,1441.777,,,,,,144,31,0,,,,, +324,22,1,10084,512,1441.777,,,,,,176,102,0,,,,, +324,23,3,10085,512,1441.777,,,,,,176,102,0,,,,, +324,24,0,10086,512,1441.777,,,,,,,,,,6018,,, +324,21,3,10083,483,1441.787,,,,,,144,53,0,,,,, +324,25,1,10087,704,1442.429,32,32.0,E6,p,11,144,88,11,,,,, +324,25,1,10087,704,1442.538,,,,,,144,88,0,,,,, +324,26,1,10088,736,1442.538,32,32.0,D4,mp,14,144,62,14,,,,, +324,27,1,10089,736,1442.538,32,32.0,E6,mp,14,144,88,14,,,,, +324,26,1,10088,736,1442.646,,,,,,144,62,0,,,,, +324,27,1,10089,736,1442.646,,,,,,144,88,0,,,,, +324,28,1,10090,768,1442.646,76,16.0,F#6,mf,17,144,90,17,,,,, +324,29,3,10091,768,1442.646,,,,,,176,102,0,,,,, +324,28,1,10090,768,1442.905,,,,,,144,90,0,,,,, +324,30,1,10092,844,1442.905,26,32.0,D#3,mp,14,144,51,14,,,,, +324,30,1,10092,844,1442.993,,,,,,144,51,0,,,,, +324,31,1,10093,870,1442.993,26,32.0,A#4,p,11,144,70,11,,,,, +324,31,1,10093,870,1443.081,,,,,,144,70,0,,,,, +324,33,1,10094,896,1443.081,128,8.0,D4,ppp,5,144,62,5,,,,, +324,34,1,10095,896,1443.081,128,8.0,F#4,ppp,5,144,66,5,,,,, +324,35,1,10096,896,1443.081,128,8.0,E5,ppp,5,144,76,5,,,,, +324,32,0,10097,896,1443.081,,,,,,176,64,127,,,,,V +324,36,1,10098,1024,1443.516,128,8.0,D4,,,,,,,,,, +324,37,1,10099,1024,1443.516,128,8.0,F#4,,,,,,,,,, +324,38,1,10100,1024,1443.516,128,8.0,E5,,,,,,,,,, +324,33,1,10094,896,1443.951,,,,,,144,62,0,,,,, +324,34,1,10095,896,1443.951,,,,,,144,66,0,,,,, +324,35,1,10096,896,1443.951,,,,,,144,76,0,,,,, +324,39,1,10101,1152,1443.951,128,8.0,D4,mp,14,144,62,14,,,,, +324,40,1,10102,1152,1443.951,128,8.0,F#4,mp,14,144,66,14,,,,, +324,41,1,10103,1152,1443.951,128,8.0,E5,mp,14,144,76,14,,,,, +324,42,1,10104,1152,1443.951,128,8.0,A#6,f,20,144,94,20,,,,, +324,43,1,10105,1280,1444.386,256,4.0,D4,,,,,,,,,, +324,44,1,10106,1280,1444.386,256,4.0,F#4,,,,,,,,,, +324,45,1,10107,1280,1444.386,256,4.0,E5,,,,,,,,,, +324,46,1,10108,1280,1444.386,256,4.0,A#6,,,,,,,,,, +324,47,0,10109,1535,1445.103,,,,,,176,64,0,,,,,^ +324,39,1,10101,1152,1445.255,,,,,,144,62,0,,,,, +324,40,1,10102,1152,1445.255,,,,,,144,66,0,,,,, +324,41,1,10103,1152,1445.255,,,,,,144,76,0,,,,, +324,42,1,10104,1152,1445.255,,,,,,144,94,0,,,,, +325,0,0,10110,0,1445.255,,,,,,,,,325,,,, +325,2,1,10111,0,1445.255,28,32.0,G#6,ppp,5,144,92,5,,,,, +325,3,3,10112,0,1445.255,,,,,,176,102,0,,,,, +325,2,1,10111,0,1445.35,,,,,,144,92,0,,,,, +325,4,1,10113,28,1445.35,14,64.0,C7,ppp+,6,144,96,6,,,,, +325,4,1,10113,28,1445.398,,,,,,144,96,0,,,,, +325,5,1,10114,42,1445.398,29,32.0,F#7,ppp+,6,144,102,6,,,,, +325,1,0,10115,0,1445.403,,,,,,176,64,127,,,,,V +325,5,1,10114,42,1445.496,,,,,,144,102,0,,,,, +325,6,1,10116,71,1445.496,28,32.0,G#6,pp-,7,144,92,7,,,,, +325,6,1,10116,71,1445.591,,,,,,144,92,0,,,,, +325,7,1,10117,99,1445.591,29,32.0,C7,pp,8,144,96,8,,,,, +325,7,1,10117,99,1445.69,,,,,,144,96,0,,,,, +325,8,1,10118,128,1445.69,28,32.0,G#5,pp+,9,144,80,9,,,,, +325,8,1,10118,128,1445.785,,,,,,144,80,0,,,,, +325,9,1,10119,156,1445.785,14,64.0,C7,p-,10,144,96,10,,,,, +325,9,1,10119,156,1445.833,,,,,,144,96,0,,,,, +325,10,1,10120,170,1445.833,29,32.0,F#7,p,11,144,102,11,,,,, +325,10,1,10120,170,1445.931,,,,,,144,102,0,,,,, +325,11,1,10121,199,1445.931,28,32.0,G#5,p+,12,144,80,12,,,,, +325,11,1,10121,199,1446.026,,,,,,144,80,0,,,,, +325,12,1,10122,227,1446.026,29,32.0,C6,p+,12,144,84,12,,,,, +325,12,1,10122,227,1446.125,,,,,,144,84,0,,,,, +325,13,1,10123,256,1446.125,28,32.0,G#4,mp-,13,144,68,13,,,,, +325,14,1,10124,256,1446.125,32,32.0,C6,mp-,13,144,84,13,,,,, +325,15,1,10125,256,1446.125,32,32.0,F#6,mp-,13,144,90,13,,,,, +325,13,1,10123,256,1446.22,,,,,,144,68,0,,,,, +325,16,1,10126,284,1446.22,14,64.0,C7,mp,14,144,96,14,,,,, +325,14,1,10124,256,1446.233,,,,,,144,84,0,,,,, +325,15,1,10125,256,1446.233,,,,,,144,90,0,,,,, +325,16,1,10126,284,1446.267,,,,,,144,96,0,,,,, +325,17,1,10127,298,1446.267,29,32.0,F#7,mp+,15,144,102,15,,,,, +325,17,1,10127,298,1446.366,,,,,,144,102,0,,,,, +325,18,1,10128,327,1446.366,28,32.0,G#5,mf-,16,144,80,16,,,,, +325,18,1,10128,327,1446.461,,,,,,144,80,0,,,,, +325,19,1,10129,355,1446.461,29,32.0,C7,mf,17,144,96,17,,,,, +325,19,1,10129,355,1446.559,,,,,,144,96,0,,,,, +325,20,1,10130,384,1446.559,28,32.0,G#4,mf+,18,144,68,18,,,,, +325,21,1,10131,384,1446.559,32,32.0,C7,mf+,18,144,96,18,,,,, +325,22,1,10132,384,1446.559,32,32.0,F#7,mf+,18,144,102,18,,,,, +325,20,1,10130,384,1446.655,,,,,,144,68,0,,,,, +325,21,1,10131,384,1446.655,,,,,,144,96,0,,,,, +325,23,1,10133,412,1446.655,14,64.0,C7,f-,19,144,96,19,,,,, +325,22,1,10132,384,1446.668,,,,,,144,102,0,,,,, +325,23,1,10133,412,1446.702,,,,,,144,96,0,,,,, +325,24,1,10134,426,1446.702,29,32.0,F#7,f-,19,144,102,19,,,,, +325,24,1,10134,426,1446.801,,,,,,144,102,0,,,,, +325,25,1,10135,455,1446.801,28,32.0,G#4,f,20,144,68,20,,,,, +325,28,0,10136,512,1446.844,,,,,,176,64,0,,,,,^ +325,25,1,10135,455,1446.896,,,,,,144,68,0,,,,, +325,26,1,10137,483,1446.896,29,32.0,C6,f,20,144,84,20,,,,, +325,26,1,10137,483,1446.994,,,,,,144,84,0,,,,, +325,27,1,10138,512,1446.994,42,32.0,D5,pp,8,144,74,8,,,,, +325,27,1,10138,512,1447.137,,,,,,144,74,0,,,,, +325,30,1,10139,554,1447.137,29,32.0,G7,p-,10,144,103,10,,,,, +325,29,0,10140,512,1447.144,,,,,,176,64,127,,,,,V +325,30,1,10139,554,1447.235,,,,,,144,103,0,,,,, +325,31,1,10141,583,1447.235,42,32.0,G#5,p,11,144,80,11,,,,, +325,31,1,10141,583,1447.378,,,,,,144,80,0,,,,, +325,32,1,10142,625,1447.378,43,32.0,D6,mp-,13,144,86,13,,,,, +325,32,1,10142,625,1447.524,,,,,,144,86,0,,,,, +325,33,1,10143,668,1447.524,43,32.0,G7,mp,14,144,103,14,,,,, +325,33,1,10143,668,1447.67,,,,,,144,103,0,,,,, +325,34,1,10144,711,1447.67,28,32.0,F#4,mf-,16,144,66,16,,,,, +325,34,1,10144,711,1447.765,,,,,,144,66,0,,,,, +325,35,1,10145,739,1447.765,29,32.0,D5,mf,17,144,74,17,,,,, +325,35,1,10145,739,1447.864,,,,,,144,74,0,,,,, +325,36,1,10146,768,1447.864,28,32.0,F#4,f-,19,144,66,19,,,,, +325,37,1,10147,768,1447.864,32,32.0,D5,f-,19,144,74,19,,,,, +325,38,1,10148,768,1447.864,32,32.0,G6,f-,19,144,91,19,,,,, +325,39,3,10149,768,1447.864,,,,,,176,102,0,,,,, +325,36,1,10146,768,1447.959,,,,,,144,66,0,,,,, +325,40,1,10150,796,1447.959,28,32.0,G#5,f,20,144,80,20,,,,, +325,37,1,10147,768,1447.973,,,,,,144,74,0,,,,, +325,38,1,10148,768,1447.973,,,,,,144,91,0,,,,, +325,40,1,10150,796,1448.054,,,,,,144,80,0,,,,, +325,41,1,10151,824,1448.054,29,32.0,D5,f+,21,144,74,21,,,,, +325,41,1,10151,824,1448.153,,,,,,144,74,0,,,,, +325,42,1,10152,853,1448.153,171,8.0,G#5,ff,22,144,80,22,,,,, +325,43,1,10153,853,1448.153,128,8.0,G6,ff,22,144,91,22,,,,, +325,44,3,10154,896,1448.299,25,32.0,G#2,ff,22,144,44,22,,,,, +325,44,3,10154,896,1448.384,,,,,,144,44,0,,,,, +325,45,3,10155,921,1448.384,26,32.0,C4,ff,22,144,60,22,,,,, +325,45,3,10155,921,1448.472,,,,,,144,60,0,,,,, +325,46,3,10156,947,1448.472,25,32.0,F#4,ff,22,144,66,22,,,,, +325,46,3,10156,947,1448.557,,,,,,144,66,0,,,,, +325,47,3,10157,972,1448.557,26,32.0,G#2,ff,22,144,44,22,,,,, +325,43,1,10153,853,1448.587,,,,,,144,91,0,,,,, +325,47,3,10157,972,1448.645,,,,,,144,44,0,,,,, +325,48,3,10158,998,1448.645,26,32.0,C3,ff,22,144,48,22,,,,, +325,48,3,10158,998,1448.733,,,,,,144,48,0,,,,, +325,49,1,10159,1024,1448.733,,,,,,176,102,0,,,,, +325,50,3,10160,1024,1448.733,28,32.0,F#1,f,20,144,30,20,,,,, +325,42,1,10152,853,1448.733,,,,,,144,80,0,,,,, +325,50,3,10160,1024,1448.828,,,,,,144,30,0,,,,, +325,51,3,10161,1052,1448.828,43,32.0,A#2,f+,21,144,46,21,,,,, +325,51,3,10161,1052,1448.975,,,,,,144,46,0,,,,, +325,52,3,10162,1095,1448.975,28,32.0,F#1,ff,22,144,30,22,,,,, +325,52,3,10162,1095,1449.07,,,,,,144,30,0,,,,, +325,53,3,10163,1123,1449.07,29,32.0,D2,ff,22,144,38,22,,,,, +325,53,3,10163,1123,1449.168,,,,,,144,38,0,,,,, +325,54,1,10164,1152,1449.168,128,8.0,G#1,pp,8,144,32,8,,,,, +325,55,1,10165,1152,1449.168,128,8.0,C4,ff,22,144,60,22,,,,, +325,56,1,10166,1152,1449.168,128,8.0,G4,ff,22,144,67,22,,,,, +325,57,3,10167,1152,1449.168,42,32.0,G#2,ff+,23,144,44,23,,,,, +325,57,3,10167,1152,1449.311,,,,,,144,44,0,,,,, +325,58,3,10168,1194,1449.311,43,32.0,D2,fff,24,144,38,23,,,,, +325,60,0,10169,1279,1449.451,,,,,,176,64,0,,,,,^ +325,58,3,10168,1194,1449.457,,,,,,144,38,0,,,,, +325,59,3,10170,1237,1449.457,43,32.0,G5,fff,24,144,79,23,,,,, +325,54,1,10164,1152,1449.603,,,,,,144,32,0,,,,, +325,55,1,10165,1152,1449.603,,,,,,144,60,0,,,,, +325,56,1,10166,1152,1449.603,,,,,,144,67,0,,,,, +325,59,3,10170,1237,1449.603,,,,,,144,79,0,,,,, +326,0,0,10171,0,1449.603,,,,,,,,,326,,,, +326,1,0,10172,0,1449.603,,,,,,,,,,6019,,, +326,3,1,10173,0,1449.603,768,2.0,A#5,fff,24,144,82,23,,,,, +326,4,3,10174,0,1449.603,1024,1.0,G#3,mp,14,144,56,14,,,,, +326,5,3,10175,0,1449.603,1024,1.0,C4,mp,14,144,60,14,,,,, +326,6,3,10176,0,1449.603,1024,1.0,F#4,mp,14,144,66,14,,,,, +326,2,0,10177,0,1449.751,,,,,,176,64,127,,,,,V +326,3,1,10173,0,1452.212,,,,,,144,82,0,,,,, +326,7,1,10178,768,1452.212,,,,,,176,102,0,,,,, +326,4,3,10174,0,1452.646,,,,,,144,56,0,,,,, +326,8,1,10179,896,1452.646,25,32.0,G#3,p,11,144,56,11,,,,, +326,5,3,10175,0,1452.731,,,,,,144,60,0,,,,, +326,9,1,10180,921,1452.731,26,32.0,C4,p-,10,144,60,10,,,,, +326,6,3,10176,0,1452.82,,,,,,144,66,0,,,,, +326,10,1,10181,947,1452.82,25,32.0,F#4,p-,10,144,66,10,,,,, +326,8,1,10179,896,1452.905,,,,,,144,56,0,,,,, +326,11,1,10182,972,1452.905,26,32.0,G#3,pp+,9,144,56,9,,,,, +326,9,1,10180,921,1452.993,,,,,,144,60,0,,,,, +326,12,1,10183,998,1452.993,26,32.0,C4,pp,8,144,60,8,,,,, +326,13,1,10184,1024,1453.081,,,,,,176,102,0,,,,, +326,14,3,10185,1024,1453.081,,,,,,176,102,0,,,,, +326,10,1,10181,947,1453.081,,,,,,144,66,0,,,,, +326,11,1,10182,972,1453.081,,,,,,144,56,0,,,,, +326,12,1,10183,998,1453.081,,,,,,144,60,0,,,,, +326,15,3,10186,1152,1453.516,256,4.0,G#2,p,11,144,44,11,,,,, +326,15,3,10186,1152,1454.386,,,,,,144,44,0,,,,, +326,16,3,10187,1408,1454.386,128,8.0,G#2,pp-,7,144,44,7,,,,, +326,17,3,10188,1408,1454.386,128,8.0,C3,pp-,7,144,48,7,,,,, +326,18,3,10189,1536,1454.82,256,4.0,G#2,,,,,,,,,, +326,19,3,10190,1536,1454.82,256,4.0,C3,,,,,,,,,, +326,16,3,10187,1408,1455.69,,,,,,144,44,0,,,,, +326,17,3,10188,1408,1455.69,,,,,,144,48,0,,,,, +326,20,3,10191,1792,1455.69,102,8.0,F1,mp,14,144,29,14,,,,, +326,20,3,10191,1792,1456.036,,,,,,144,29,0,,,,, +326,21,3,10192,1894,1456.036,26,32.0,F1,mf,17,144,29,17,,,,, +326,21,3,10192,1894,1456.125,,,,,,144,29,0,,,,, +326,22,3,10193,1920,1456.125,25,32.0,E2,mf+,18,144,40,18,,,,, +326,22,3,10193,1920,1456.21,,,,,,144,40,0,,,,, +326,23,3,10194,1945,1456.21,26,32.0,F1,f-,19,144,29,19,,,,, +326,23,3,10194,1945,1456.298,,,,,,144,29,0,,,,, +326,24,3,10195,1971,1456.298,77,16.0,E2,f,20,144,40,20,,,,, +326,25,0,10196,2047,1456.494,,,,,,176,64,0,,,,,^ +326,24,3,10195,1971,1456.559,,,,,,144,40,0,,,,, +327,0,0,10197,0,1456.559,,,,,,,,,327,,,, +327,1,0,10198,0,1456.559,,,,,,,,,,6020,,, +327,2,1,10199,0,1456.559,,,,,,176,102,0,,,,, +327,3,3,10200,0,1456.559,,,,,,176,102,0,,,,, +327,5,1,10201,51,1456.733,25,32.0,G#5,ppp,5,144,80,5,,,,, +327,4,0,10202,51,1456.794,,,,,,176,64,127,,,,,V +327,5,1,10201,51,1456.818,,,,,,144,80,0,,,,, +327,6,1,10203,76,1456.818,26,32.0,F#6,ppp+,6,144,90,6,,,,, +327,6,1,10203,76,1456.906,,,,,,144,90,0,,,,, +327,7,1,10204,102,1456.906,26,32.0,G#5,pp-,7,144,80,7,,,,, +327,7,1,10204,102,1456.994,,,,,,144,80,0,,,,, +327,8,1,10205,128,1456.994,25,32.0,F#7,pp,8,144,102,8,,,,, +327,8,1,10205,128,1457.079,,,,,,144,102,0,,,,, +327,9,1,10206,153,1457.079,26,32.0,G#4,pp+,9,144,68,9,,,,, +327,9,1,10206,153,1457.167,,,,,,144,68,0,,,,, +327,10,1,10207,179,1457.167,25,32.0,C6,p,11,144,84,11,,,,, +327,10,1,10207,179,1457.252,,,,,,144,84,0,,,,, +327,11,1,10208,204,1457.252,26,32.0,G#4,p+,12,144,68,12,,,,, +327,11,1,10208,204,1457.341,,,,,,144,68,0,,,,, +327,12,1,10209,230,1457.341,26,32.0,C5,mp-,13,144,72,13,,,,, +327,12,1,10209,230,1457.429,,,,,,144,72,0,,,,, +327,13,1,10210,256,1457.429,25,32.0,G#4,mp,14,144,68,14,,,,, +327,13,1,10210,256,1457.514,,,,,,144,68,0,,,,, +327,14,1,10211,281,1457.514,26,32.0,C5,mp+,15,144,72,15,,,,, +327,14,1,10211,281,1457.602,,,,,,144,72,0,,,,, +327,15,1,10212,307,1457.602,25,32.0,E3,mf-,16,144,52,16,,,,, +327,16,1,10213,307,1457.602,32,32.0,G#4,mf-,16,144,68,16,,,,, +327,17,1,10214,307,1457.602,32,32.0,C5,mf-,16,144,72,16,,,,, +327,15,1,10212,307,1457.687,,,,,,144,52,0,,,,, +327,18,1,10215,332,1457.687,26,32.0,F2,mf,17,144,41,17,,,,, +327,16,1,10213,307,1457.711,,,,,,144,68,0,,,,, +327,17,1,10214,307,1457.711,,,,,,144,72,0,,,,, +327,18,1,10215,332,1457.775,,,,,,144,41,0,,,,, +327,19,1,10216,358,1457.775,26,32.0,E4,mf+,18,144,64,18,,,,, +327,19,1,10216,358,1457.864,,,,,,144,64,0,,,,, +327,20,1,10217,384,1457.864,25,32.0,F2,f,20,144,41,20,,,,, +327,20,1,10217,384,1457.949,,,,,,144,41,0,,,,, +327,21,1,10218,409,1457.949,26,32.0,C5,f+,21,144,72,21,,,,, +327,21,1,10218,409,1458.037,,,,,,144,72,0,,,,, +327,22,1,10219,435,1458.037,51,16.0,E3,ff,22,144,52,22,,,,, +327,22,1,10219,435,1458.21,,,,,,144,52,0,,,,, +327,23,1,10220,486,1458.21,26,32.0,F1,fff,24,144,29,23,,,,, +327,23,1,10220,486,1458.299,,,,,,144,29,0,,,,, +327,24,1,10221,512,1458.299,256,4.0,F#7,fff,24,144,102,23,,,,, +327,24,1,10221,512,1459.168,,,,,,144,102,0,,,,, +327,25,1,10222,768,1459.168,,,,,,176,102,0,,,,, +327,26,3,10223,768,1459.168,,,,,,176,102,0,,,,, +327,27,1,10224,810,1459.311,43,16.0,G#5,fff,24,144,80,23,,,,, +327,28,1,10225,810,1459.311,64,16.0,F#7,fff,24,144,102,23,,,,, +327,29,1,10226,853,1459.457,171,4.0,G#5,,,,,,,,,, +327,30,1,10227,853,1459.457,256,4.0,F#7,,,,,,,,,, +327,31,1,10228,1024,1460.038,256,4.0,G#5,,,,,,,,,, +327,32,1,10229,1024,1460.038,256,4.0,F#7,,,,,,,,,, +327,33,0,10230,1279,1460.756,,,,,,176,64,0,,,,,^ +327,27,1,10224,810,1460.907,,,,,,144,80,0,,,,, +328,0,0,10231,0,1460.907,,,,,,,,,328,,,, +328,2,1,10232,0,1460.907,1024,1.0,G#5,mf,17,144,80,17,,,,, +328,3,1,10233,0,1460.907,1024,1.0,F#7,mf,17,144,102,17,,,,, +328,4,3,10234,0,1460.907,25,32.0,D5,ppp,5,144,74,5,,,,, +328,4,3,10234,0,1460.992,,,,,,144,74,0,,,,, +328,5,3,10235,25,1460.992,26,32.0,E6,pp-,7,144,88,7,,,,, +328,1,0,10236,0,1461.056,,,,,,176,64,127,,,,,V +328,5,3,10235,25,1461.081,,,,,,144,88,0,,,,, +328,6,3,10237,51,1461.081,25,32.0,D4,pp+,9,144,62,9,,,,, +328,6,3,10237,51,1461.165,,,,,,144,62,0,,,,, +328,7,3,10238,76,1461.165,26,32.0,F#6,p,11,144,90,11,,,,, +328,7,3,10238,76,1461.254,,,,,,144,90,0,,,,, +328,8,3,10239,102,1461.254,26,32.0,E5,mp-,13,144,76,13,,,,, +327,28,1,10225,810,1461.267,,,,,,144,102,0,,,,, +328,3,1,10233,0,1461.342,,,,,,144,102,0,,,,, +328,8,3,10239,102,1461.342,,,,,,144,76,0,,,,, +328,9,3,10240,128,1461.342,25,32.0,F#7,mf-,16,144,102,16,,,,, +328,10,3,10241,153,1461.427,26,32.0,A#4,mf+,18,144,70,18,,,,, +328,10,3,10241,153,1461.515,,,,,,144,70,0,,,,, +328,11,3,10242,179,1461.515,25,32.0,E5,f,20,144,76,20,,,,, +328,12,3,10243,179,1461.515,32,32.0,F#6,f,20,144,90,20,,,,, +328,11,3,10242,179,1461.6,,,,,,144,76,0,,,,, +328,13,3,10244,204,1461.6,26,32.0,A#4,ff,22,144,70,22,,,,, +328,12,3,10243,179,1461.624,,,,,,144,90,0,,,,, +328,13,3,10244,204,1461.689,,,,,,144,70,0,,,,, +328,14,3,10245,230,1461.689,26,32.0,D#3,fff,24,144,51,23,,,,, +328,14,3,10245,230,1461.777,,,,,,144,51,0,,,,, +328,15,3,10246,256,1461.777,,,,,,176,102,0,,,,, +328,16,3,10247,298,1461.92,43,16.0,D4,p,11,144,62,11,,,,, +328,17,3,10248,298,1461.92,64,16.0,A#4,p,11,144,70,11,,,,, +328,18,3,10249,298,1461.92,64,16.0,E5,p,11,144,76,11,,,,, +328,19,3,10250,298,1461.92,64,16.0,F#6,p,11,144,90,11,,,,, +328,20,3,10251,341,1462.066,171,4.0,D4,,,,,,,,,, +328,21,3,10252,341,1462.066,256,4.0,A#4,,,,,,,,,, +328,22,3,10253,341,1462.066,256,4.0,E5,,,,,,,,,, +328,23,3,10254,341,1462.066,256,4.0,F#6,,,,,,,,,, +328,24,3,10255,512,1462.646,85,8.0,D4,,,,,,,,,, +328,25,3,10256,512,1462.646,128,8.0,A#4,,,,,,,,,, +328,26,3,10257,512,1462.646,128,8.0,E5,,,,,,,,,, +328,27,3,10258,512,1462.646,128,8.0,F#6,,,,,,,,,, +328,16,3,10247,298,1462.935,,,,,,144,62,0,,,,, +328,28,3,10259,597,1462.935,171,4.0,D4,f,20,144,62,20,,,,, +328,29,3,10260,597,1462.935,256,4.0,A#4,f,20,144,70,20,,,,, +328,30,3,10261,597,1462.935,256,4.0,E5,f,20,144,76,20,,,,, +328,31,3,10262,597,1462.935,256,4.0,F#6,f,20,144,90,20,,,,, +328,17,3,10248,298,1463.441,,,,,,144,70,0,,,,, +328,18,3,10249,298,1463.441,,,,,,144,76,0,,,,, +328,19,3,10250,298,1463.441,,,,,,144,90,0,,,,, +328,32,3,10263,768,1463.516,256,4.0,D4,,,,,,,,,, +328,33,3,10264,768,1463.516,256,4.0,A#4,,,,,,,,,, +328,34,3,10265,768,1463.516,256,4.0,E5,,,,,,,,,, +328,35,3,10266,768,1463.516,256,4.0,F#6,,,,,,,,,, +328,36,0,10267,1023,1464.234,,,,,,176,64,0,,,,,^ +328,2,1,10232,0,1464.386,,,,,,144,80,0,,,,, +328,9,3,10240,128,1464.386,,,,,,144,102,0,,,,, +329,0,0,10268,0,1464.386,,,,,,,,,329,,,, +329,1,0,10269,0,1464.386,,,,,,,,,,6021,,, +329,3,1,10270,0,1464.386,512,2.0,E6,fff,24,144,88,23,,,,, +329,4,1,10271,0,1464.386,512,2.0,C#7,fff,24,144,97,23,,,,, +329,5,2,10272,0,1464.386,768,2.0,G#5,f,20,144,80,20,,,,, +329,6,2,10273,0,1464.386,512,2.0,F#7,f,20,144,102,20,,,,, +329,7,3,10274,0,1464.386,,,,,,176,102,0,,,,, +328,28,3,10259,597,1464.386,,,,,,144,62,0,,,,, +329,2,0,10275,0,1464.534,,,,,,176,64,127,,,,,V +328,29,3,10260,597,1464.674,,,,,,144,70,0,,,,, +328,30,3,10261,597,1464.674,,,,,,144,76,0,,,,, +328,31,3,10262,597,1464.674,,,,,,144,90,0,,,,, +329,8,1,10276,512,1466.125,85,8.0,E6,,,,,,,,,, +329,9,1,10277,512,1466.125,128,8.0,C#7,,,,,,,,,, +329,10,3,10278,512,1466.125,,,,,,176,102,0,,,,, +329,6,2,10273,0,1466.2,,,,,,144,102,0,,,,, +329,11,1,10279,597,1466.413,171,4.0,E6,f,20,144,88,20,,,,, +329,12,1,10280,597,1466.413,256,4.0,C#7,f,20,144,97,20,,,,, +329,13,3,10281,597,1466.413,171,4.0,A0,ff,22,144,21,22,,,,, +329,3,1,10270,0,1466.488,,,,,,144,88,0,,,,, +329,4,1,10271,0,1466.634,,,,,,144,97,0,,,,, +329,11,1,10279,597,1466.994,,,,,,144,88,0,,,,, +329,14,1,10282,768,1466.994,,,,,,176,102,0,,,,, +329,15,2,10283,768,1466.994,,,,,,176,102,0,,,,, +329,16,3,10284,768,1466.994,128,8.0,A0,,,,,,,,,, +329,5,2,10272,0,1467.069,,,,,,144,80,0,,,,, +329,12,1,10280,597,1467.283,,,,,,144,97,0,,,,, +329,17,2,10285,853,1467.283,171,4.0,G#5,fff,24,144,80,23,,,,, +329,18,2,10286,853,1467.283,256,4.0,C7,fff,24,144,96,23,,,,, +329,19,2,10287,853,1467.283,256,4.0,F#7,fff,24,144,102,23,,,,, +329,13,3,10281,597,1467.429,,,,,,144,21,0,,,,, +329,20,3,10288,896,1467.429,42,16.0,F#2,ff,22,144,42,22,,,,, +329,22,0,10289,960,1467.532,,,,,,176,64,0,,,,,^ +329,20,3,10288,896,1467.572,,,,,,144,42,0,,,,, +329,21,3,10290,938,1467.572,22,32.0,G3,ff,22,144,55,22,,,,, +329,21,3,10290,938,1467.646,,,,,,144,55,0,,,,, +329,23,3,10291,960,1467.646,21,32.0,F5,ff,22,144,77,22,,,,, +329,23,3,10291,960,1467.718,,,,,,144,77,0,,,,, +329,25,3,10292,981,1467.718,14,32.0,C#5,mf,17,144,73,17,,,,, +329,25,3,10292,981,1467.765,,,,,,144,73,0,,,,, +329,26,3,10293,995,1467.765,14,32.0,F#2,mf-,16,144,42,16,,,,, +329,26,3,10293,995,1467.813,,,,,,144,42,0,,,,, +329,27,3,10294,1009,1467.813,15,32.0,A1,mp+,15,144,33,15,,,,, +329,24,0,10295,981,1467.832,,,,,,176,64,127,,,,,V +329,17,2,10285,853,1467.864,,,,,,144,80,0,,,,, +329,18,2,10286,853,1467.864,,,,,,144,96,0,,,,, +329,27,3,10294,1009,1467.864,,,,,,144,33,0,,,,, +330,0,0,10296,0,1467.864,,,,,,,,,330,,,, +330,1,1,10297,0,1467.864,256,4.0,E6,mp,14,144,88,14,,,,, +330,2,1,10298,0,1467.864,256,4.0,C7,mp,14,144,96,14,,,,, +330,3,3,10299,0,1467.864,85,8.0,G2,mp,14,144,43,14,,,,, +329,19,2,10287,853,1468.153,,,,,,144,102,0,,,,, +330,3,3,10299,0,1468.153,,,,,,144,43,0,,,,, +330,4,3,10300,85,1468.153,171,4.0,F3,pp-,7,144,53,7,,,,, +330,1,1,10297,0,1468.733,,,,,,144,88,0,,,,, +330,2,1,10298,0,1468.733,,,,,,144,96,0,,,,, +330,4,3,10300,85,1468.733,,,,,,144,53,0,,,,, +330,5,1,10301,256,1468.733,170,4.0,D4,fff,24,144,62,23,,,,, +330,6,1,10302,256,1468.733,256,4.0,E6,fff,24,144,88,23,,,,, +330,7,3,10303,256,1468.733,,,,,,176,102,0,,,,, +330,5,1,10301,256,1469.311,,,,,,144,62,0,,,,, +330,8,1,10304,426,1469.311,86,8.0,C7,fff,24,144,96,23,,,,, +330,9,3,10305,426,1469.311,43,16.0,F1,fff,24,144,29,23,,,,, +330,9,3,10305,426,1469.457,,,,,,144,29,0,,,,, +330,10,3,10306,469,1469.457,43,16.0,E3,fff,24,144,52,23,,,,, +330,6,1,10302,256,1469.603,,,,,,144,88,0,,,,, +330,8,1,10304,426,1469.603,,,,,,144,96,0,,,,, +330,10,3,10306,469,1469.603,,,,,,144,52,0,,,,, +330,11,1,10307,512,1469.603,,,,,,176,102,0,,,,, +330,12,3,10308,512,1469.603,,,,,,176,102,0,,,,, +330,13,1,10309,625,1469.987,15,64.0,G#4,ff,22,144,68,22,,,,, +330,13,1,10309,625,1470.038,,,,,,144,68,0,,,,, +330,14,1,10310,640,1470.038,14,64.0,F#5,f,20,144,78,20,,,,, +330,14,1,10310,640,1470.085,,,,,,144,78,0,,,,, +330,15,1,10311,654,1470.085,14,64.0,G#4,f-,19,144,68,19,,,,, +330,15,1,10311,654,1470.133,,,,,,144,68,0,,,,, +330,16,1,10312,668,1470.133,14,64.0,F3,mf,17,144,53,17,,,,, +330,16,1,10312,668,1470.18,,,,,,144,53,0,,,,, +330,17,1,10313,682,1470.18,14,64.0,C5,mf-,16,144,72,16,,,,, +330,17,1,10313,682,1470.228,,,,,,144,72,0,,,,, +330,18,1,10314,696,1470.228,15,64.0,F2,mp,14,144,41,14,,,,, +330,21,0,10315,742,1470.278,,,,,,176,64,0,,,,,^ +330,18,1,10314,696,1470.279,,,,,,144,41,0,,,,, +330,19,1,10316,711,1470.279,14,64.0,C5,mp-,13,144,72,13,,,,, +330,19,1,10316,711,1470.326,,,,,,144,72,0,,,,, +330,20,1,10317,725,1470.326,43,32.0,E4,p,11,144,64,11,,,,, +330,20,1,10317,725,1470.473,,,,,,144,64,0,,,,, +330,23,1,10318,768,1470.473,16,64.0,G#5,f,20,144,80,20,,,,, +330,24,3,10319,768,1470.473,,,,,,176,102,0,,,,, +330,23,1,10318,768,1470.527,,,,,,144,80,0,,,,, +330,25,1,10320,784,1470.527,16,64.0,C6,f,20,144,84,20,,,,, +330,22,0,10321,768,1470.578,,,,,,176,64,127,,,,,V +330,25,1,10320,784,1470.581,,,,,,144,84,0,,,,, +330,26,1,10322,800,1470.581,16,64.0,G#4,f-,19,144,68,19,,,,, +330,26,1,10322,800,1470.636,,,,,,144,68,0,,,,, +330,27,1,10323,816,1470.636,16,64.0,C6,f-,19,144,84,19,,,,, +330,27,1,10323,816,1470.69,,,,,,144,84,0,,,,, +330,28,1,10324,832,1470.69,16,64.0,G#5,f-,19,144,80,19,,,,, +330,28,1,10324,832,1470.744,,,,,,144,80,0,,,,, +330,29,1,10325,848,1470.744,24,64.0,C6,mf+,18,144,84,18,,,,, +330,30,1,10326,848,1470.744,16,64.0,F#6,mf+,18,144,90,18,,,,, +330,30,1,10326,848,1470.799,,,,,,144,90,0,,,,, +330,29,1,10325,848,1470.826,,,,,,144,84,0,,,,, +330,31,1,10327,872,1470.826,24,64.0,G#5,mf+,18,144,80,18,,,,, +330,31,1,10327,872,1470.907,,,,,,144,80,0,,,,, +330,32,1,10328,896,1470.907,64,16.0,G#5,mf,17,144,80,17,,,,, +330,33,1,10329,896,1470.907,64,16.0,F#6,mf,17,144,90,17,,,,, +330,34,3,10330,896,1470.907,21,32.0,E4,mf,17,144,64,17,,,,, +330,34,3,10330,896,1470.979,,,,,,144,64,0,,,,, +330,35,3,10331,917,1470.979,32,32.0,F3,mf,17,144,53,17,,,,, +330,35,3,10331,917,1471.087,,,,,,144,53,0,,,,, +330,36,3,10332,949,1471.087,32,32.0,E4,mf-,16,144,64,16,,,,, +330,32,1,10328,896,1471.125,,,,,,144,80,0,,,,, +330,33,1,10329,896,1471.125,,,,,,144,90,0,,,,, +330,37,1,10333,960,1471.125,64,16.0,G#5,mf-,16,144,80,16,,,,, +330,38,1,10334,960,1471.125,64,16.0,C6,mf-,16,144,84,16,,,,, +330,39,1,10335,960,1471.125,64,16.0,F#6,mf-,16,144,90,16,,,,, +330,36,3,10332,949,1471.196,,,,,,144,64,0,,,,, +330,40,3,10336,981,1471.196,21,32.0,F3,mp+,15,144,53,15,,,,, +330,40,3,10336,981,1471.267,,,,,,144,53,0,,,,, +330,41,3,10337,1002,1471.267,22,32.0,E4,mp+,15,144,64,15,,,,, +330,37,1,10333,960,1471.342,,,,,,144,80,0,,,,, +330,38,1,10334,960,1471.342,,,,,,144,84,0,,,,, +330,39,1,10335,960,1471.342,,,,,,144,90,0,,,,, +330,41,3,10337,1002,1471.342,,,,,,144,64,0,,,,, +331,0,0,10338,0,1471.342,,,,,,,,,331,,,, +331,1,1,10339,0,1471.342,28,32.0,F#7,mp,14,144,102,14,,,,, +331,2,3,10340,0,1471.342,256,4.0,F3,mp,14,144,53,14,,,,, +331,3,3,10341,0,1471.342,256,4.0,E4,mp,14,144,64,14,,,,, +331,1,1,10339,0,1471.437,,,,,,144,102,0,,,,, +331,4,1,10342,28,1471.437,28,32.0,G#6,mp-,13,144,92,13,,,,, +331,4,1,10342,28,1471.532,,,,,,144,92,0,,,,, +331,5,1,10343,56,1471.532,29,32.0,C7,mp-,13,144,96,13,,,,, +331,5,1,10343,56,1471.631,,,,,,144,96,0,,,,, +331,6,1,10344,85,1471.631,28,32.0,F#7,p+,12,144,102,12,,,,, +331,6,1,10344,85,1471.726,,,,,,144,102,0,,,,, +331,7,1,10345,113,1471.726,29,32.0,G#5,p+,12,144,80,12,,,,, +331,7,1,10345,113,1471.824,,,,,,144,80,0,,,,, +331,8,1,10346,142,1471.824,28,32.0,C7,p,11,144,96,11,,,,, +331,8,1,10346,142,1471.92,,,,,,144,96,0,,,,, +331,9,1,10347,170,1471.92,29,32.0,F4,p-,10,144,65,10,,,,, +331,9,1,10347,170,1472.018,,,,,,144,65,0,,,,, +331,10,1,10348,199,1472.018,28,32.0,E5,p-,10,144,76,10,,,,, +331,10,1,10348,199,1472.113,,,,,,144,76,0,,,,, +331,11,1,10349,227,1472.113,29,32.0,E3,pp+,9,144,52,9,,,,, +331,2,3,10340,0,1472.212,,,,,,144,53,0,,,,, +331,3,3,10341,0,1472.212,,,,,,144,64,0,,,,, +331,11,1,10349,227,1472.212,,,,,,144,52,0,,,,, +331,12,1,10350,256,1472.212,28,32.0,F#7,pp,8,144,102,8,,,,, +331,13,3,10351,256,1472.212,256,4.0,E7,ff,22,144,100,22,,,,, +331,12,1,10350,256,1472.307,,,,,,144,102,0,,,,, +331,14,1,10352,284,1472.307,114,8.0,F5,pp,8,144,77,8,,,,, +331,14,1,10352,284,1472.694,,,,,,144,77,0,,,,, +331,15,1,10353,398,1472.694,28,32.0,F#7,ppp,5,144,102,5,,,,, +331,15,1,10353,398,1472.789,,,,,,144,102,0,,,,, +331,16,1,10354,426,1472.789,86,16.0,F5,ppp,5,144,77,5,,,,, +331,16,1,10354,426,1473.081,,,,,,144,77,0,,,,, +331,17,1,10355,512,1473.081,170,4.0,F5,mp,14,144,77,14,,,,, +331,18,1,10356,512,1473.081,256,4.0,G#6,mp,14,144,92,14,,,,, +331,19,1,10357,512,1473.081,256,4.0,F#7,mp,14,144,102,14,,,,, +331,20,3,10358,512,1473.081,64,16.0,E7,,,,,,,,,, +331,13,3,10351,256,1473.299,,,,,,144,100,0,,,,, +331,21,3,10359,576,1473.299,96,16.0,F4,ff,22,144,65,22,,,,, +331,22,3,10360,576,1473.299,64,16.0,E7,ff,22,144,100,22,,,,, +331,22,3,10360,576,1473.516,,,,,,144,100,0,,,,, +331,21,3,10359,576,1473.625,,,,,,144,65,0,,,,, +331,23,3,10361,672,1473.625,96,16.0,F#1,ff,22,144,30,22,,,,, +331,24,3,10362,672,1473.625,64,16.0,F4,ff,22,144,65,22,,,,, +331,25,1,10363,682,1473.659,,,,,,176,102,0,,,,, +331,17,1,10355,512,1473.659,,,,,,144,77,0,,,,, +331,26,1,10364,725,1473.805,21,32.0,C7,p,11,144,96,11,,,,, +331,24,3,10362,672,1473.842,,,,,,144,65,0,,,,, +331,26,1,10364,725,1473.876,,,,,,144,96,0,,,,, +331,28,0,10365,746,1473.876,,,,,,176,64,0,,,,,^ +331,27,1,10366,746,1473.876,22,32.0,E6,p,11,144,88,11,,,,, +331,18,1,10356,512,1473.951,,,,,,144,92,0,,,,, +331,19,1,10357,512,1473.951,,,,,,144,102,0,,,,, +331,23,3,10361,672,1473.951,,,,,,144,30,0,,,,, +331,27,1,10366,746,1473.951,,,,,,144,88,0,,,,, +331,29,1,10367,768,1473.951,85,8.0,G#6,pp,8,144,92,8,,,,, +331,30,1,10368,768,1473.951,128,8.0,C7,pp,8,144,96,8,,,,, +331,31,1,10369,768,1473.951,128,8.0,F#7,pp,8,144,102,8,,,,, +331,32,3,10370,768,1473.951,25,32.0,F2,f,20,144,41,20,,,,, +331,32,3,10370,768,1474.036,,,,,,144,41,0,,,,, +331,33,3,10371,793,1474.036,26,32.0,G#1,mf+,18,144,32,18,,,,, +331,33,3,10371,793,1474.124,,,,,,144,32,0,,,,, +331,34,3,10372,819,1474.124,25,32.0,F#1,mf,17,144,30,17,,,,, +331,34,3,10372,819,1474.209,,,,,,144,30,0,,,,, +331,35,3,10373,844,1474.209,26,32.0,F2,mp+,15,144,41,15,,,,, +331,36,1,10374,853,1474.239,85,8.0,G#5,pp-,7,144,80,7,,,,, +331,37,1,10375,853,1474.239,128,8.0,C6,pp-,7,144,84,7,,,,, +331,29,1,10367,768,1474.239,,,,,,144,92,0,,,,, +331,35,3,10373,844,1474.297,,,,,,144,41,0,,,,, +331,38,3,10376,870,1474.297,26,32.0,F#1,mp,14,144,30,14,,,,, +331,38,3,10376,870,1474.386,,,,,,144,30,0,,,,, +331,39,3,10377,896,1474.386,64,16.0,C2,p+,12,144,36,12,,,,, +331,30,1,10368,768,1474.386,,,,,,144,96,0,,,,, +331,31,1,10369,768,1474.386,,,,,,144,102,0,,,,, +331,36,1,10374,853,1474.528,,,,,,144,80,0,,,,, +331,40,1,10378,938,1474.528,86,8.0,E5,ppp,5,144,76,5,,,,, +331,41,3,10379,960,1474.603,16,64.0,C2,,,,,,,,,, +331,39,3,10377,896,1474.657,,,,,,144,36,0,,,,, +331,42,3,10380,976,1474.657,16,64.0,F#1,pp-,7,144,30,7,,,,, +331,43,3,10381,976,1474.657,16,64.0,G#1,pp-,7,144,32,7,,,,, +331,44,3,10382,976,1474.657,16,64.0,F2,pp-,7,144,41,7,,,,, +331,37,1,10375,853,1474.674,,,,,,144,84,0,,,,, +331,45,3,10383,992,1474.712,16,64.0,F#1,,,,,,,,,, +331,46,3,10384,992,1474.712,16,64.0,G#1,,,,,,,,,, +331,47,3,10385,992,1474.712,16,64.0,C2,ppp+,6,144,36,6,,,,, +331,48,3,10386,992,1474.712,16,64.0,F2,,,,,,,,,, +331,42,3,10380,976,1474.766,,,,,,144,30,0,,,,, +331,43,3,10381,976,1474.766,,,,,,144,32,0,,,,, +331,44,3,10382,976,1474.766,,,,,,144,41,0,,,,, +331,47,3,10385,992,1474.766,,,,,,144,36,0,,,,, +331,49,3,10387,1008,1474.766,16,64.0,E4,ppp,5,144,64,5,,,,, +331,40,1,10378,938,1474.82,,,,,,144,76,0,,,,, +331,49,3,10387,1008,1474.82,,,,,,144,64,0,,,,, +332,0,0,10388,0,1474.82,,,,,,,,,332,,,, +332,1,1,10389,0,1474.82,,,,,,176,102,0,,,,, +332,2,3,10390,0,1474.82,1024,1.0,F#2,ppp,5,144,42,5,,,,, +332,3,4,10391,0,1474.82,,,,,,176,102,0,,,,, +332,5,4,10392,256,1475.69,256,4.0,F#1,fff,24,144,30,23,,,,, +332,4,0,10393,256,1475.69,,,,,,176,64,127,,,,,V +332,6,4,10394,512,1476.559,1024,1.0,F#1,,,,,,,,,, +332,7,3,10395,1024,1478.299,1792,1.0,F#2,,,,,,,,,, +332,8,1,10396,1536,1480.038,256,4.0,G#4,mp,14,144,68,14,,,,, +332,9,4,10397,1536,1480.038,256,4.0,F#1,mp,14,144,30,14,,,,, +332,5,4,10392,256,1480.038,,,,,,144,30,0,,,,, +332,10,1,10398,1792,1480.907,1024,1.0,G#4,,,,,,,,,, +332,11,4,10399,1792,1480.907,1024,1.0,F#1,,,,,,,,,, +332,12,0,10400,2815,1484.234,,,,,,176,64,0,,,,,^ +332,8,1,10396,1536,1484.386,,,,,,144,68,0,,,,, +332,9,4,10397,1536,1484.386,,,,,,144,30,0,,,,, +333,0,0,10401,0,1484.386,,,,,,,,,333,,,, +333,2,1,10402,0,1484.386,25,32.0,G#5,mp,14,144,80,14,,,,, +333,3,3,10403,0,1484.386,,,,,,176,102,0,,,,, +332,2,3,10390,0,1484.386,,,,,,144,42,0,,,,, +333,2,1,10402,0,1484.47,,,,,,144,80,0,,,,, +333,4,1,10404,25,1484.47,26,32.0,F6,mp,14,144,89,14,,,,, +333,1,0,10405,0,1484.534,,,,,,176,64,127,,,,,V +333,4,1,10404,25,1484.559,,,,,,144,89,0,,,,, +333,5,1,10406,51,1484.559,25,32.0,G#5,mp,14,144,80,14,,,,, +333,5,1,10406,51,1484.644,,,,,,144,80,0,,,,, +333,6,1,10407,76,1484.644,26,32.0,C6,mp,14,144,84,14,,,,, +333,6,1,10407,76,1484.732,,,,,,144,84,0,,,,, +333,7,1,10408,102,1484.732,26,32.0,G#5,mp+,15,144,80,15,,,,, +333,7,1,10408,102,1484.82,,,,,,144,80,0,,,,, +333,8,1,10409,128,1484.82,38,32.0,F7,mp+,15,144,101,15,,,,, +333,8,1,10409,128,1484.949,,,,,,144,101,0,,,,, +333,9,1,10410,166,1484.949,38,32.0,C7,mp+,15,144,96,15,,,,, +333,9,1,10410,166,1485.078,,,,,,144,96,0,,,,, +333,10,1,10411,204,1485.078,26,32.0,F#5,mp+,15,144,78,15,,,,, +333,10,1,10411,204,1485.167,,,,,,144,78,0,,,,, +333,11,1,10412,230,1485.167,26,32.0,F7,mp+,15,144,101,15,,,,, +333,12,1,10413,256,1485.255,25,32.0,F7,,,,,,,,,, +333,13,1,10414,281,1485.34,39,32.0,F#5,mf-,16,144,78,16,,,,, +333,11,1,10412,230,1485.34,,,,,,144,101,0,,,,, +333,13,1,10414,281,1485.473,,,,,,144,78,0,,,,, +333,14,1,10415,320,1485.473,38,32.0,E7,mf-,16,144,100,16,,,,, +333,14,1,10415,320,1485.602,,,,,,144,100,0,,,,, +333,15,1,10416,358,1485.602,26,32.0,F6,mf-,16,144,89,16,,,,, +333,15,1,10416,358,1485.69,,,,,,144,89,0,,,,, +333,16,1,10417,384,1485.69,25,32.0,C5,mf-,16,144,72,16,,,,, +333,16,1,10417,384,1485.775,,,,,,144,72,0,,,,, +333,17,1,10418,409,1485.775,39,32.0,F#4,mf,17,144,66,17,,,,, +333,17,1,10418,409,1485.907,,,,,,144,66,0,,,,, +333,18,1,10419,448,1485.907,38,32.0,E7,mf,17,144,100,17,,,,, +333,18,1,10419,448,1486.036,,,,,,144,100,0,,,,, +333,19,1,10420,486,1486.036,26,32.0,E6,mf,17,144,88,17,,,,, +333,19,1,10420,486,1486.125,,,,,,144,88,0,,,,, +333,20,1,10421,512,1486.125,,,,,,176,102,0,,,,, +333,21,0,10422,1023,1487.86,,,,,,176,64,0,,,,,^ +333,22,1,10423,1024,1487.864,,,,,,176,102,0,,,,, +333,23,3,10424,1024,1487.864,,,,,,176,102,0,,,,, +334,0,0,10425,0,1488.733,,,,,,,,,334,,,, +334,1,0,10426,0,1488.733,,,,,,,,,,6022,,, +334,2,0,10427,0,1488.733,,,,,,,,,,,56,, +334,5,1,10428,0,1488.733,384,4.0,E6,mf,17,144,88,17,,,,, +334,6,3,10429,0,1488.733,,,,,,176,102,0,,,,, +334,4,1,10430,,1488.733,,8.0,C5,mf,17,144,72,17,,,,g, +334,4,1,10430,,1488.783,,,,,,144,72,0,,,,, +334,7,4,10431,,1488.808,,8.0,F#4,pp,8,144,66,8,,,,g, +334,7,4,10431,,1488.858,,,,,,144,66,0,,,,, +334,8,4,10432,,1488.883,,8.0,F4,pp,8,144,65,8,,,,g, +334,8,4,10432,,1488.933,,,,,,144,65,0,,,,, +334,9,4,10433,0,1488.958,1024,1.0,G#2,p,11,144,44,11,,,,, +334,10,4,10434,0,1488.958,1024,1.0,B2,p,11,144,47,11,,,,, +334,3,0,10435,0,1488.958,,,,,,176,64,127,,,,,V +334,5,1,10428,0,1490.341,,,,,,144,88,0,,,,, +334,11,1,10436,384,1490.566,64,16.0,E6,mf,17,144,88,17,,,,, +334,11,1,10436,384,1490.833,,,,,,144,88,0,,,,, +334,12,1,10437,448,1490.833,64,16.0,G#4,mp,14,144,68,14,,,,, +334,13,1,10438,512,1491.101,256,4.0,G#4,,,,,,,,,, +334,14,3,10439,512,1491.101,21,32.0,G1,ppp,5,144,31,5,,,,, +334,14,3,10439,512,1491.189,,,,,,144,31,0,,,,, +334,15,3,10440,533,1491.189,21,32.0,F2,ppp,5,144,41,5,,,,, +334,15,3,10440,533,1491.277,,,,,,144,41,0,,,,, +334,16,3,10441,554,1491.277,22,32.0,G1,ppp,5,144,31,5,,,,, +334,16,3,10441,554,1491.369,,,,,,144,31,0,,,,, +334,17,3,10442,576,1491.369,42,16.0,F2,ppp,5,144,41,5,,,,, +334,17,3,10442,576,1491.545,,,,,,144,41,0,,,,, +334,18,3,10443,618,1491.545,22,32.0,A0,ppp,5,144,21,5,,,,, +334,19,3,10444,640,1491.637,128,8.0,A0,,,,,,,,,, +334,20,0,10445,768,1492.023,,,,,,176,64,0,,,,,^ +334,18,3,10443,618,1492.173,,,,,,144,21,0,,,,, +334,22,1,10446,768,1492.173,128,8.0,G#4,,,,,,,,,, +334,23,3,10447,768,1492.173,,,,,,176,102,0,,,,, +334,21,0,10448,768,1492.323,,,,,,176,64,127,,,,,V +334,24,1,10449,896,1492.708,16,64.0,A#6,mf,17,144,94,17,,,,, +334,12,1,10437,448,1492.708,,,,,,144,68,0,,,,, +334,24,1,10449,896,1492.775,,,,,,144,94,0,,,,, +334,25,1,10450,912,1492.775,16,64.0,F5,mf-,16,144,77,16,,,,, +334,25,1,10450,912,1492.842,,,,,,144,77,0,,,,, +334,26,1,10451,928,1492.842,16,64.0,A#7,mf-,16,144,106,16,,,,, +334,26,1,10451,928,1492.909,,,,,,144,106,0,,,,, +334,27,1,10452,944,1492.909,16,64.0,C6,mp+,15,144,84,15,,,,, +334,27,1,10452,944,1492.976,,,,,,144,84,0,,,,, +334,28,1,10453,960,1492.976,64,16.0,F6,mp,14,144,89,14,,,,, +334,29,0,10454,1023,1493.092,,,,,,176,64,0,,,,,^ +334,28,1,10453,960,1493.244,,,,,,144,89,0,,,,, +335,0,0,10455,0,1493.244,,,,,,,,,335,,,, +335,2,1,10456,0,1493.244,64,16.0,A#7,p+,12,144,106,12,,,,, +335,3,3,10457,0,1493.244,512,2.0,D4,pp,8,144,62,8,,,,, +335,4,4,10458,0,1493.244,102,8.0,C5,ppp,5,144,72,5,,,,, +334,9,4,10433,0,1493.244,,,,,,144,44,0,,,,, +334,10,4,10434,0,1493.244,,,,,,144,47,0,,,,, +335,1,0,10459,0,1493.392,,,,,,176,64,127,,,,,V +335,2,1,10456,0,1493.512,,,,,,144,106,0,,,,, +335,5,1,10460,64,1493.512,32,32.0,C6,pp+,9,144,84,9,,,,, +335,5,1,10460,64,1493.646,,,,,,144,84,0,,,,, +335,6,1,10461,96,1493.646,64,16.0,A#7,pp,8,144,106,8,,,,, +335,4,4,10458,0,1493.671,,,,,,144,72,0,,,,, +335,7,4,10462,102,1493.671,77,16.0,G#3,ppp,5,144,56,5,,,,, +335,6,1,10461,96,1493.914,,,,,,144,106,0,,,,, +335,8,1,10463,160,1493.914,96,16.0,E7,ppp,5,144,100,5,,,,, +335,7,4,10462,102,1493.993,,,,,,144,56,0,,,,, +335,9,4,10464,179,1493.993,25,32.0,C5,ppp,5,144,72,5,,,,, +335,9,4,10464,179,1494.098,,,,,,144,72,0,,,,, +335,10,4,10465,204,1494.098,52,16.0,E5,ppp,5,144,76,5,,,,, +335,8,1,10463,160,1494.316,,,,,,144,100,0,,,,, +335,11,1,10466,256,1494.316,,,,,,176,102,0,,,,, +335,12,4,10467,256,1494.316,51,16.0,E5,,,,,,,,,, +335,13,4,10468,307,1494.529,25,32.0,C5,ppp,5,144,72,5,,,,, +335,10,4,10465,204,1494.529,,,,,,144,76,0,,,,, +335,13,4,10468,307,1494.634,,,,,,144,72,0,,,,, +335,14,4,10469,332,1494.634,26,32.0,E5,ppp,5,144,76,5,,,,, +335,15,1,10470,352,1494.717,32,32.0,G#5,ppp,5,144,80,5,,,,, +335,3,3,10457,0,1494.742,,,,,,144,62,0,,,,, +335,14,4,10469,332,1494.742,,,,,,144,76,0,,,,, +335,16,4,10471,358,1494.742,154,8.0,D4,ppp,5,144,62,5,,,,, +335,15,1,10470,352,1494.851,,,,,,144,80,0,,,,, +335,17,1,10472,384,1494.851,64,16.0,E7,ppp,5,144,100,5,,,,, +335,17,1,10472,384,1495.119,,,,,,144,100,0,,,,, +335,18,1,10473,448,1495.119,64,16.0,G#5,ppp,5,144,80,5,,,,, +335,16,4,10471,358,1495.387,,,,,,144,62,0,,,,, +335,18,1,10473,448,1495.387,,,,,,144,80,0,,,,, +335,19,1,10474,512,1495.387,32,32.0,D4,p,11,144,62,11,,,,, +335,20,3,10475,512,1495.387,,,,,,176,102,0,,,,, +335,21,4,10476,512,1495.387,,,,,,176,102,0,,,,, +335,19,1,10474,512,1495.521,,,,,,144,62,0,,,,, +335,22,1,10477,544,1495.521,96,16.0,A#5,mp,14,144,82,14,,,,, +335,23,4,10478,563,1495.6,25,32.0,C5,ppp,5,144,72,5,,,,, +335,23,4,10478,563,1495.705,,,,,,144,72,0,,,,, +335,24,4,10479,588,1495.705,26,32.0,E5,ppp,5,144,76,5,,,,, +335,24,4,10479,588,1495.814,,,,,,144,76,0,,,,, +335,25,4,10480,614,1495.814,154,8.0,D4,ppp-,4,144,62,4,,,,, +335,22,1,10477,544,1495.923,,,,,,144,82,0,,,,, +335,26,1,10481,640,1495.923,,,,,,176,102,0,,,,, +335,27,1,10482,704,1496.191,64,16.0,G#5,pppp+,3,144,80,3,,,,, +335,25,4,10480,614,1496.458,,,,,,144,62,0,,,,, +335,27,1,10482,704,1496.458,,,,,,144,80,0,,,,, +335,28,1,10483,768,1496.458,256,4.0,G#5,pppp+,3,144,80,3,,,,, +335,29,4,10484,768,1496.458,102,8.0,C5,pppp+,3,144,72,3,,,,, +335,29,4,10484,768,1496.885,,,,,,144,72,0,,,,, +335,30,4,10485,870,1496.885,26,32.0,E5,pppp-,1,144,76,1,,,,, +335,30,4,10485,870,1496.994,,,,,,144,76,0,,,,, +335,31,4,10486,896,1496.994,25,32.0,D4,pppp-,1,144,62,1,,,,, +335,32,4,10487,921,1497.099,103,8.0,D4,,,,,,,,,, +335,33,0,10488,1023,1497.378,,,,,,176,64,0,,,,,^ +335,28,1,10483,768,1497.53,,,,,,144,80,0,,,,, +335,31,4,10486,896,1497.53,,,,,,144,62,0,,,,, +336,0,0,10489,0,1497.53,,,,,,,,,336,,,, +336,2,1,10490,0,1497.53,14,64.0,C3,ppp,5,144,48,5,,,,, +336,3,3,10491,0,1497.53,768,2.0,G#2,ppp,5,144,44,5,,,,, +336,4,4,10492,0,1497.53,384,4.0,C#2,f,20,144,37,20,,,,, +336,2,1,10490,0,1497.588,,,,,,144,48,0,,,,, +336,5,1,10493,14,1497.588,14,64.0,A#7,ppp,5,144,106,5,,,,, +336,5,1,10493,14,1497.647,,,,,,144,106,0,,,,, +336,6,1,10494,28,1497.647,14,64.0,E7,ppp+,6,144,100,6,,,,, +336,1,0,10495,0,1497.678,,,,,,176,64,127,,,,,V +336,6,1,10494,28,1497.706,,,,,,144,100,0,,,,, +336,7,1,10496,42,1497.706,14,64.0,F6,ppp+,6,144,89,6,,,,, +336,7,1,10496,42,1497.764,,,,,,144,89,0,,,,, +336,8,1,10497,56,1497.764,15,64.0,E7,pp-,7,144,100,7,,,,, +336,8,1,10497,56,1497.827,,,,,,144,100,0,,,,, +336,9,1,10498,71,1497.827,14,64.0,G#4,pp,8,144,68,8,,,,, +336,9,1,10498,71,1497.886,,,,,,144,68,0,,,,, +336,10,1,10499,85,1497.886,14,64.0,A#6,pp,8,144,94,8,,,,, +336,10,1,10499,85,1497.944,,,,,,144,94,0,,,,, +336,11,1,10500,99,1497.944,14,64.0,C5,pp,8,144,72,8,,,,, +336,11,1,10500,99,1498.003,,,,,,144,72,0,,,,, +336,12,1,10501,113,1498.003,15,64.0,A#6,pp+,9,144,94,9,,,,, +336,12,1,10501,113,1498.066,,,,,,144,94,0,,,,, +336,13,1,10502,128,1498.066,42,16.0,E6,p-,10,144,88,10,,,,, +336,13,1,10502,128,1498.241,,,,,,144,88,0,,,,, +336,14,1,10503,170,1498.241,43,16.0,G#3,p,11,144,56,11,,,,, +336,14,1,10503,170,1498.421,,,,,,144,56,0,,,,, +336,15,1,10504,213,1498.421,43,16.0,F5,p,11,144,77,11,,,,, +336,15,1,10504,213,1498.601,,,,,,144,77,0,,,,, +336,16,1,10505,256,1498.601,,,,,,176,102,0,,,,, +336,4,4,10492,0,1499.137,,,,,,144,37,0,,,,, +336,17,4,10506,384,1499.137,384,4.0,D#1,p,11,144,27,11,,,,, +336,18,4,10507,384,1499.137,256,4.0,C#2,p,11,144,37,11,,,,, +336,18,4,10507,384,1500.208,,,,,,144,37,0,,,,, +336,23,1,10508,,1500.594,,8.0,D4,p,11,144,62,11,,,,g, +336,23,1,10508,,1500.644,,,,,,144,62,0,,,,, +336,24,1,10509,,1500.669,,8.0,A#4,p,11,144,70,11,,,,g, +336,24,1,10509,,1500.719,,,,,,144,70,0,,,,, +336,17,4,10506,384,1500.744,,,,,,144,27,0,,,,, +336,19,0,10510,768,1500.744,,,,,,176,64,0,,,,,^ +336,20,3,10511,768,1500.744,,,,,,176,102,0,,,,, +336,21,4,10512,768,1500.744,,,,,,176,102,0,,,,, +336,22,0,10513,768,1500.744,,,,,,,,,,6023,,, +336,3,3,10491,0,1500.744,,,,,,144,44,0,,,,, +337,0,0,10514,0,1501.816,,,,,,,,,337,,,, +337,1,1,10515,0,1501.816,,,,,,176,102,0,,,,, +337,2,2,10516,0,1501.816,,,,,,176,102,0,,,,, +337,3,3,10517,0,1501.816,256,4.0,B0,p,11,144,23,11,,,,, +337,4,4,10518,0,1501.816,32,32.0,D#1,f,20,144,27,20,,,,, +337,5,4,10519,0,1501.816,32,32.0,C#2,f,20,144,37,20,,,,, +337,6,1,10520,21,1501.903,43,16.0,C2,ppp,5,144,36,5,,,,, +337,4,4,10518,0,1501.949,,,,,,144,27,0,,,,, +337,5,4,10519,0,1501.949,,,,,,144,37,0,,,,, +337,7,4,10521,32,1501.949,,,,,,176,102,0,,,,, +337,6,1,10520,21,1502.083,,,,,,144,36,0,,,,, +337,8,1,10522,64,1502.083,21,32.0,E4,pp-,7,144,64,7,,,,, +337,9,4,10523,64,1502.083,64,16.0,D#1,p,11,144,27,11,,,,, +337,8,1,10522,64,1502.171,,,,,,144,64,0,,,,, +337,10,1,10524,85,1502.171,43,16.0,C2,pp,8,144,36,8,,,,, +337,9,4,10523,64,1502.351,,,,,,144,27,0,,,,, +337,10,1,10524,85,1502.351,,,,,,144,36,0,,,,, +337,12,1,10525,128,1502.351,42,16.0,A#4,p-,10,144,70,10,,,,, +337,13,4,10526,128,1502.351,,,,,,176,102,0,,,,, +337,11,0,10527,128,1502.351,,,,,,176,64,127,,,,,V +337,12,1,10525,128,1502.527,,,,,,144,70,0,,,,, +337,14,1,10528,170,1502.527,22,32.0,F3,p,11,144,53,11,,,,, +337,14,1,10528,170,1502.619,,,,,,144,53,0,,,,, +337,15,1,10529,192,1502.619,21,32.0,A#4,p+,12,144,70,12,,,,, +337,15,1,10529,192,1502.707,,,,,,144,70,0,,,,, +337,16,1,10530,213,1502.707,43,16.0,F3,mp-,13,144,53,13,,,,, +337,3,3,10517,0,1502.887,,,,,,144,23,0,,,,, +337,16,1,10530,213,1502.887,,,,,,144,53,0,,,,, +337,17,1,10531,256,1502.887,42,16.0,A#3,mp+,15,144,58,15,,,,, +337,18,3,10532,256,1502.887,25,32.0,B0,p,11,144,23,11,,,,, +337,19,4,10533,256,1502.887,,,,,,176,102,0,,,,, +337,18,3,10532,256,1502.992,,,,,,144,23,0,,,,, +337,20,3,10534,281,1502.992,26,32.0,D1,mp+,15,144,26,15,,,,, +337,23,0,10535,307,1503.057,,,,,,176,64,0,,,,,^ +337,17,1,10531,256,1503.063,,,,,,144,58,0,,,,, +337,21,1,10536,298,1503.063,22,32.0,F3,mf,17,144,53,17,,,,, +337,22,3,10537,307,1503.1,25,32.0,F#1,f,20,144,30,20,,,,, +337,20,3,10534,281,1503.1,,,,,,144,26,0,,,,, +337,21,1,10536,298,1503.155,,,,,,144,53,0,,,,, +337,24,1,10538,320,1503.155,21,32.0,G#2,mf,17,144,44,17,,,,, +337,22,3,10537,307,1503.205,,,,,,144,30,0,,,,, +337,25,3,10539,332,1503.205,26,32.0,B0,p,11,144,23,11,,,,, +337,24,1,10538,320,1503.243,,,,,,144,44,0,,,,, +337,26,1,10540,341,1503.243,171,4.0,C3,mf,17,144,48,17,,,,, +337,28,3,10541,358,1503.314,26,32.0,D1,pp,8,144,26,8,,,,, +337,25,3,10539,332,1503.314,,,,,,144,23,0,,,,, +337,27,0,10542,358,1503.357,,,,,,176,64,127,,,,,V +337,28,3,10541,358,1503.423,,,,,,144,26,0,,,,, +337,29,3,10543,384,1503.423,,,,,,176,102,0,,,,, +337,30,1,10544,512,1503.958,42,16.0,C3,,,,,,,,,, +337,31,2,10545,512,1503.958,256,4.0,A#4,ff,22,144,70,22,,,,, +337,32,3,10546,512,1503.958,,,,,,176,102,0,,,,, +337,33,4,10547,512,1503.958,,,,,,176,102,0,,,,, +337,26,1,10540,341,1504.134,,,,,,144,48,0,,,,, +337,34,1,10548,554,1504.134,128,8.0,C3,mf,17,144,48,17,,,,, +337,35,3,10549,640,1504.494,25,32.0,B0,f,20,144,23,20,,,,, +337,35,3,10549,640,1504.599,,,,,,144,23,0,,,,, +337,36,3,10550,665,1504.599,26,32.0,D1,mf,17,144,26,17,,,,, +337,34,1,10548,554,1504.67,,,,,,144,48,0,,,,, +337,37,1,10551,682,1504.67,86,8.0,A#5,mf,17,144,82,17,,,,, +337,38,3,10552,691,1504.708,25,32.0,F#1,mp,14,144,30,14,,,,, +337,36,3,10550,665,1504.708,,,,,,144,26,0,,,,, +337,38,3,10552,691,1504.812,,,,,,144,30,0,,,,, +337,39,3,10553,716,1504.812,26,32.0,B0,p,11,144,23,11,,,,, +337,40,0,10554,742,1504.869,,,,,,176,64,0,,,,,^ +337,39,3,10553,716,1504.921,,,,,,144,23,0,,,,, +337,41,3,10555,742,1504.921,26,32.0,D1,pp,8,144,26,8,,,,, +337,37,1,10551,682,1505.03,,,,,,144,82,0,,,,, +337,31,2,10545,512,1505.03,,,,,,144,70,0,,,,, +337,41,3,10555,742,1505.03,,,,,,144,26,0,,,,, +337,42,1,10556,768,1505.03,32,32.0,E5,mf,17,144,76,17,,,,, +337,43,1,10557,768,1505.03,32,32.0,A#5,mf,17,144,82,17,,,,, +337,44,2,10558,768,1505.03,32,32.0,C3,pp,8,144,48,8,,,,, +337,45,3,10559,768,1505.03,,,,,,176,102,0,,,,, +337,47,3,10560,789,1505.118,21,32.0,G#2,pp,8,144,44,8,,,,, +337,43,1,10557,768,1505.164,,,,,,144,82,0,,,,, +337,44,2,10558,768,1505.164,,,,,,144,48,0,,,,, +337,48,1,10561,800,1505.164,224,8.0,E5,,,,,,,,,, +337,49,2,10562,800,1505.164,,,,,,176,102,0,,,,, +337,46,0,10563,789,1505.169,,,,,,176,64,127,,,,,V +337,47,3,10560,789,1505.206,,,,,,144,44,0,,,,, +337,50,3,10564,810,1505.206,22,32.0,F3,pp,8,144,53,8,,,,, +337,50,3,10564,810,1505.298,,,,,,144,53,0,,,,, +337,51,3,10565,832,1505.298,16,64.0,G#1,pp,8,144,32,8,,,,, +337,51,3,10565,832,1505.365,,,,,,144,32,0,,,,, +337,52,3,10566,848,1505.365,16,64.0,E5,pp,8,144,76,8,,,,, +337,52,3,10566,848,1505.432,,,,,,144,76,0,,,,, +337,53,3,10567,864,1505.432,32,32.0,G#1,pp,8,144,32,8,,,,, +337,53,3,10567,864,1505.566,,,,,,144,32,0,,,,, +337,54,3,10568,896,1505.566,,,,,,176,102,0,,,,, +337,55,2,10569,992,1505.967,32,32.0,D#1,pp,8,144,27,8,,,,, +337,56,0,10570,1023,1506.097,,,,,,176,64,0,,,,,^ +337,55,2,10569,992,1506.101,,,,,,144,27,0,,,,, +338,0,0,10571,0,1506.101,,,,,,,,,338,,,, +338,1,1,10572,0,1506.101,,,,,,176,102,0,,,,, +338,2,2,10573,0,1506.101,32,32.0,A#4,ppp,5,144,70,5,,,,, +338,3,3,10574,0,1506.101,,,,,,176,102,0,,,,, +338,4,4,10575,0,1506.101,64,16.0,D#1,fff,24,144,27,23,,,,, +338,5,4,10576,0,1506.101,64,16.0,A#3,fff,24,144,58,23,,,,, +337,42,1,10556,768,1506.101,,,,,,144,76,0,,,,, +338,2,2,10573,0,1506.235,,,,,,144,70,0,,,,, +338,6,2,10577,32,1506.235,32,32.0,F3,ppp,5,144,53,5,,,,, +338,4,4,10575,0,1506.369,,,,,,144,27,0,,,,, +338,6,2,10577,32,1506.369,,,,,,144,53,0,,,,, +338,7,2,10578,64,1506.369,,,,,,176,102,0,,,,, +338,8,4,10579,64,1506.369,192,8.0,A#3,,,,,,,,,, +338,9,0,10580,82,1506.444,,,,,,176,64,127,,,,,V +338,10,1,10581,,1506.637,,8.0,C#7,ppp,5,144,97,5,,,,g, +338,10,1,10581,,1506.687,,,,,,144,97,0,,,,, +338,11,1,10582,,1506.712,,8.0,C7,ppp,5,144,96,5,,,,g, +338,11,1,10582,,1506.762,,,,,,144,96,0,,,,, +338,12,1,10583,,1506.787,,8.0,G6,ppp,5,144,91,5,,,,g, +338,12,1,10583,,1506.837,,,,,,144,91,0,,,,, +338,13,1,10584,128,1506.862,64,16.0,E7,ppp,5,144,100,5,,,,, +338,14,2,10585,128,1506.862,25,32.0,A6,ppp,5,144,93,5,,,,, +338,15,3,10586,,1506.862,,8.0,B1,ppp,5,144,35,5,,,,g, +338,15,3,10586,,1506.912,,,,,,144,35,0,,,,, +338,16,3,10587,,1506.937,,8.0,F#2,pp,8,144,42,8,,,,g, +338,14,2,10585,128,1506.967,,,,,,144,93,0,,,,, +338,16,3,10587,,1506.987,,,,,,144,42,0,,,,, +338,17,3,10588,,1507.012,,8.0,F2,p,11,144,41,11,,,,g, +338,17,3,10588,,1507.062,,,,,,144,41,0,,,,, +338,18,3,10589,128,1507.087,64,16.0,D2,mp,14,144,38,14,,,,, +338,13,1,10584,128,1507.13,,,,,,144,100,0,,,,, +338,19,2,10590,153,1507.192,26,32.0,F7,ppp,5,144,101,5,,,,, +338,19,2,10590,153,1507.3,,,,,,144,101,0,,,,, +338,20,2,10591,179,1507.3,16,32.0,C#7,ppp,5,144,97,5,,,,, +338,18,3,10589,128,1507.355,,,,,,144,38,0,,,,, +338,21,1,10592,192,1507.355,64,16.0,G#6,ppp,5,144,92,5,,,,, +338,22,3,10593,192,1507.355,64,16.0,A#2,mp,14,144,46,14,,,,, +338,20,2,10591,179,1507.367,,,,,,144,97,0,,,,, +338,23,2,10594,195,1507.367,18,32.0,E7,ppp,5,144,100,5,,,,, +338,23,2,10594,195,1507.443,,,,,,144,100,0,,,,, +338,24,2,10595,213,1507.443,17,32.0,C#7,ppp,5,144,97,5,,,,, +338,24,2,10595,213,1507.514,,,,,,144,97,0,,,,, +338,25,2,10596,230,1507.514,26,32.0,A#6,ppp,5,144,94,5,,,,, +338,25,2,10596,230,1507.623,,,,,,144,94,0,,,,, +338,26,1,10597,256,1507.623,32,32.0,G#6,,,,,,,,,, +338,27,2,10598,256,1507.623,,,,,,176,102,0,,,,, +338,28,3,10599,256,1507.623,32,32.0,A#2,,,,,,,,,, +338,29,4,10600,256,1507.623,128,8.0,A#3,,,,,,,,,, +338,5,4,10576,0,1507.708,,,,,,144,58,0,,,,, +338,21,1,10592,192,1507.757,,,,,,144,92,0,,,,, +338,22,3,10593,192,1507.757,,,,,,144,46,0,,,,, +338,30,1,10601,288,1507.757,21,32.0,G6,ppp,5,144,91,5,,,,, +338,31,3,10602,288,1507.757,32,32.0,B1,ppp,5,144,35,5,,,,, +338,30,1,10601,288,1507.844,,,,,,144,91,0,,,,, +338,32,1,10603,309,1507.844,21,32.0,C#7,ppp,5,144,97,5,,,,, +338,31,3,10602,288,1507.891,,,,,,144,35,0,,,,, +338,33,3,10604,320,1507.891,32,32.0,F#2,ppp,5,144,42,5,,,,, +338,32,1,10603,309,1507.932,,,,,,144,97,0,,,,, +338,34,1,10605,330,1507.932,22,32.0,G6,ppp,5,144,91,5,,,,, +338,34,1,10605,330,1508.024,,,,,,144,91,0,,,,, +338,35,1,10606,352,1508.024,32,32.0,C#7,ppp,5,144,97,5,,,,, +338,36,3,10607,352,1508.024,21,32.0,B1,ppp,5,144,35,5,,,,, +338,33,3,10604,320,1508.024,,,,,,144,42,0,,,,, +338,36,3,10607,352,1508.112,,,,,,144,35,0,,,,, +338,37,3,10608,373,1508.112,21,32.0,F#2,ppp,5,144,42,5,,,,, +338,35,1,10606,352,1508.158,,,,,,144,97,0,,,,, +338,38,1,10609,384,1508.158,32,32.0,G6,ppp,5,144,91,5,,,,, +338,39,4,10610,384,1508.158,128,8.0,A6,ppp,5,144,93,5,,,,, +338,37,3,10608,373,1508.2,,,,,,144,42,0,,,,, +338,40,3,10611,394,1508.2,22,32.0,B1,ppp,5,144,35,5,,,,, +338,40,3,10611,394,1508.292,,,,,,144,35,0,,,,, +338,41,1,10612,416,1508.292,32,32.0,C#7,ppp,5,144,97,5,,,,, +338,42,3,10613,416,1508.292,16,64.0,F2,ppp,5,144,41,5,,,,, +338,38,1,10609,384,1508.292,,,,,,144,91,0,,,,, +338,42,3,10613,416,1508.359,,,,,,144,41,0,,,,, +338,43,3,10614,432,1508.359,16,64.0,D2,ppp,5,144,38,5,,,,, +338,43,3,10614,432,1508.426,,,,,,144,38,0,,,,, +338,44,1,10615,448,1508.426,64,16.0,E7,ppp,5,144,100,5,,,,, +338,45,3,10616,448,1508.426,21,32.0,A#2,ppp,5,144,46,5,,,,, +338,41,1,10612,416,1508.426,,,,,,144,97,0,,,,, +338,45,3,10616,448,1508.514,,,,,,144,46,0,,,,, +338,46,3,10617,469,1508.514,21,32.0,D2,ppp,5,144,38,5,,,,, +338,46,3,10617,469,1508.602,,,,,,144,38,0,,,,, +338,47,3,10618,490,1508.602,22,32.0,A#2,ppp,5,144,46,5,,,,, +338,44,1,10615,448,1508.694,,,,,,144,100,0,,,,, +338,47,3,10618,490,1508.694,,,,,,144,46,0,,,,, +338,39,4,10610,384,1508.694,,,,,,144,93,0,,,,, +338,48,0,10619,512,1508.705,,,,,,,,,,,50,, +338,49,1,10620,512,1508.705,,,,,,176,102,0,,,,, +338,50,2,10621,512,1508.705,,,,,,176,102,0,,,,, +338,51,3,10622,512,1508.705,512,2.0,F3,ppp,5,144,53,5,,,,, +338,52,4,10623,512,1508.705,,,,,,176,102,0,,,,, +338,53,0,10624,768,1509.755,,,,,,176,64,0,,,,,^ +338,53,0,10625,768,1510.055,,,,,,176,64,127,,,,,V +339,0,0,10626,0,1511.105,,,,,,,,,339,,,, +339,1,1,10627,0,1511.105,,,,,,176,102,0,,,,, +339,2,3,10628,0,1511.105,512,2.0,F3,,,,,,,,,, +338,51,3,10622,512,1513.505,,,,,,144,53,0,,,,, +339,4,0,10629,584,1513.505,,,,,,176,64,0,,,,,^ +339,3,3,10630,512,1513.505,,,,,,176,102,0,,,,, +339,5,0,10631,584,1513.505,,,,,,,,,,6024,,, +339,6,3,10632,768,1514.368,,,,,,176,102,0,,,,, +339,7,3,10633,938,1515.165,86,8.0,B1,ff,22,144,35,22,,,,, +339,8,3,10634,938,1515.165,128,8.0,D2,ff,22,144,38,22,,,,, +339,9,3,10635,938,1515.165,128,8.0,F2,ff,22,144,41,22,,,,, +339,10,3,10636,938,1515.165,128,8.0,F#2,ff,22,144,42,22,,,,, +339,11,3,10637,938,1515.165,128,8.0,A#2,ff,22,144,46,22,,,,, +339,7,3,10633,938,1515.215,,,,,,144,35,0,,,,, +339,8,3,10634,938,1515.215,,,,,,144,38,0,,,,, +339,9,3,10635,938,1515.215,,,,,,144,41,0,,,,, +339,10,3,10636,938,1515.215,,,,,,144,42,0,,,,, +339,11,3,10637,938,1515.215,,,,,,144,46,0,,,,, +340,0,0,10638,0,1515.568,,,,,,,,,340,,,, +340,1,1,10639,0,1515.568,25,32.0,E6,ppp,5,144,88,5,,,,, +340,2,3,10640,0,1515.568,768,2.0,D#2,p,11,144,39,11,,,,, +340,1,1,10639,0,1515.685,,,,,,144,88,0,,,,, +340,3,1,10641,25,1515.685,26,32.0,A4,ppp,5,144,69,5,,,,, +340,3,1,10641,25,1515.807,,,,,,144,69,0,,,,, +340,4,1,10642,51,1515.807,25,32.0,A#5,ppp+,6,144,82,6,,,,, +339,12,0,10643,1023,1515.813,,,,,,176,64,127,,,,,V +340,4,1,10642,51,1515.924,,,,,,144,82,0,,,,, +340,5,1,10644,76,1515.924,16,32.0,F6,ppp+,6,144,89,6,,,,, +340,5,1,10644,76,1515.999,,,,,,144,89,0,,,,, +340,6,1,10645,92,1515.999,18,32.0,A4,pp-,7,144,69,7,,,,, +340,6,1,10645,92,1516.083,,,,,,144,69,0,,,,, +340,7,1,10646,110,1516.083,18,32.0,F6,pp-,7,144,89,7,,,,, +340,7,1,10646,110,1516.168,,,,,,144,89,0,,,,, +340,8,1,10647,128,1516.168,25,32.0,E5,pp-,7,144,76,7,,,,, +340,8,1,10647,128,1516.285,,,,,,144,76,0,,,,, +340,9,1,10648,153,1516.285,26,32.0,A3,pp,8,144,57,8,,,,, +340,9,1,10648,153,1516.407,,,,,,144,57,0,,,,, +340,10,1,10649,179,1516.407,25,32.0,A#4,pp,8,144,70,8,,,,, +340,10,1,10649,179,1516.524,,,,,,144,70,0,,,,, +340,11,1,10650,204,1516.524,26,32.0,F6,pp+,9,144,89,9,,,,, +340,11,1,10650,204,1516.646,,,,,,144,89,0,,,,, +340,12,1,10651,230,1516.646,26,32.0,C#5,pp+,9,144,73,9,,,,, +340,12,1,10651,230,1516.768,,,,,,144,73,0,,,,, +340,13,1,10652,256,1516.768,,,,,,176,102,0,,,,, +340,14,1,10653,512,1517.968,,,,,,176,102,0,,,,, +340,2,3,10640,0,1519.168,,,,,,144,39,0,,,,, +340,15,3,10654,768,1519.168,,,,,,176,102,0,,,,, +340,16,0,10655,938,1519.914,,,,,,176,64,0,,,,,^ +340,17,3,10656,938,1519.965,86,8.0,B1,pp,8,144,35,8,,,,, +340,18,3,10657,938,1519.965,128,8.0,D2,pp,8,144,38,8,,,,, +340,19,3,10658,938,1519.965,128,8.0,F2,pp,8,144,41,8,,,,, +340,20,3,10659,938,1519.965,128,8.0,F#2,pp,8,144,42,8,,,,, +340,21,3,10660,938,1519.965,128,8.0,A#2,pp,8,144,46,8,,,,, +340,17,3,10656,938,1520.015,,,,,,144,35,0,,,,, +340,18,3,10657,938,1520.015,,,,,,144,38,0,,,,, +340,19,3,10658,938,1520.015,,,,,,144,41,0,,,,, +340,20,3,10659,938,1520.015,,,,,,144,42,0,,,,, +340,21,3,10660,938,1520.015,,,,,,144,46,0,,,,, +341,4,1,10661,,1520.143,,8.0,A#5,pp,8,144,82,8,,,,g, +341,4,1,10661,,1520.193,,,,,,144,82,0,,,,, +340,22,0,10662,1023,1520.214,,,,,,176,64,127,,,,,V +341,5,1,10663,,1520.218,,8.0,C3,pp+,9,144,48,9,,,,g, +341,5,1,10663,,1520.268,,,,,,144,48,0,,,,, +341,6,1,10664,,1520.293,,8.0,A#6,p,11,144,94,11,,,,g, +341,6,1,10664,,1520.343,,,,,,144,94,0,,,,, +341,7,1,10665,,1520.368,,8.0,C2,p+,12,144,36,12,,,,g, +341,0,0,10666,0,1520.368,,,,,,,,,341,,,, +341,1,1,10667,0,1520.368,,,,,,176,102,0,,,,, +341,2,3,10668,0,1520.368,,,,,,176,102,0,,,,, +341,3,4,10669,0,1520.368,,,,,,176,102,0,,,,, +341,7,1,10665,,1520.418,,,,,,144,36,0,,,,, +341,8,1,10670,,1520.443,,8.0,E4,mp-,13,144,64,13,,,,g, +341,8,1,10670,,1520.493,,,,,,144,64,0,,,,, +341,9,1,10671,,1520.518,,8.0,F3,mp,14,144,53,14,,,,g, +341,9,1,10671,,1520.568,,,,,,144,53,0,,,,, +341,10,1,10672,,1520.593,,8.0,E5,mf-,16,144,76,16,,,,g, +341,10,1,10672,,1520.643,,,,,,144,76,0,,,,, +341,11,1,10673,,1520.668,,8.0,F3,mf,17,144,53,17,,,,g, +341,11,1,10673,,1520.718,,,,,,144,53,0,,,,, +341,12,1,10674,,1520.743,,8.0,E5,mf+,18,144,76,18,,,,g, +341,12,1,10674,,1520.793,,,,,,144,76,0,,,,, +341,13,1,10675,,1520.818,,8.0,F3,f-,19,144,53,19,,,,g, +341,13,1,10675,,1520.868,,,,,,144,53,0,,,,, +341,14,1,10676,,1520.893,,8.0,G#1,f+,21,144,32,21,,,,g, +341,14,1,10676,,1520.943,,,,,,144,32,0,,,,, +341,15,1,10677,128,1520.968,,,,,,176,102,0,,,,, +341,16,4,10678,128,1520.968,128,8.0,C2,ff,22,144,36,22,,,,, +341,17,1,10679,256,1521.568,,,,,,176,102,0,,,,, +341,18,4,10680,256,1521.568,768,2.0,C2,,,,,,,,,, +341,19,1,10681,768,1523.968,,,,,,176,102,0,,,,, +342,0,0,10682,0,1525.168,,,,,,,,,342,,,, +342,1,1,10683,0,1525.168,,,,,,176,102,0,,,,, +342,2,2,10684,0,1525.168,,,,,,176,102,0,,,,, +342,3,3,10685,0,1525.168,1792,1.0,C3,p,11,144,48,11,,,,, +342,4,4,10686,0,1525.168,512,2.0,C2,,,,,,,,,, +342,5,1,10687,64,1525.468,448,4.0,E6,pp,8,144,88,8,,,,, +342,6,2,10688,256,1526.368,,,,,,176,102,0,,,,, +342,7,0,10689,415,1527.113,,,,,,176,64,0,,,,,^ +341,16,4,10678,128,1527.568,,,,,,144,36,0,,,,, +342,5,1,10687,64,1527.568,,,,,,144,88,0,,,,, +342,9,1,10690,512,1527.568,,,,,,176,102,0,,,,, +342,10,2,10691,512,1527.568,256,4.0,A#6,ff,22,144,94,22,,,,, +342,11,4,10692,512,1527.568,128,8.0,F#1,pp,8,144,30,8,,,,, +342,12,4,10693,512,1527.568,128,8.0,C2,pp,8,144,36,8,,,,, +342,8,0,10694,512,1527.568,,,,,,176,64,127,,,,,V +342,12,4,10693,512,1528.168,,,,,,144,36,0,,,,, +342,13,1,10695,640,1528.168,128,8.0,F#5,p,11,144,78,11,,,,, +342,14,4,10696,640,1528.168,128,8.0,F#1,,,,,,,,,, +342,15,4,10697,640,1528.168,128,8.0,B1,pp,8,144,35,8,,,,, +342,16,1,10698,768,1528.768,1024,1.0,F#5,,,,,,,,,, +342,17,2,10699,768,1528.768,256,4.0,A#6,,,,,,,,,, +342,18,4,10700,768,1528.768,896,2.0,F#1,,,,,,,,,, +342,19,4,10701,768,1528.768,512,2.0,B1,,,,,,,,,, +342,20,2,10702,1024,1529.968,192,8.0,A#6,,,,,,,,,, +342,10,2,10691,512,1530.868,,,,,,144,94,0,,,,, +342,21,2,10703,1216,1530.868,64,16.0,F3,ppp,5,144,53,5,,,,, +342,15,4,10697,640,1531.168,,,,,,144,35,0,,,,, +342,22,2,10704,1280,1531.168,384,4.0,F3,,,,,,,,,, +342,23,2,10705,1664,1532.968,128,8.0,F3,ppp,5,144,53,5,,,,, +342,24,4,10706,1664,1532.968,128,8.0,F#1,ppp,5,144,30,5,,,,, +342,25,4,10707,1664,1532.968,128,8.0,B1,ppp,5,144,35,5,,,,, +342,11,4,10692,512,1533.418,,,,,,144,30,0,,,,, +342,21,2,10703,1216,1533.418,,,,,,144,53,0,,,,, +342,26,1,10708,1792,1533.568,,,,,,176,102,0,,,,, +342,27,2,10709,1792,1533.568,128,8.0,F3,,,,,,,,,, +342,28,3,10710,1792,1533.568,128,8.0,B0,pp,8,144,23,8,,,,, +342,29,4,10711,1792,1533.568,128,8.0,F#1,,,,,,,,,, +342,30,4,10712,1792,1533.568,128,8.0,B1,,,,,,,,,, +342,31,0,10713,1840,1533.793,,,,,,176,64,0,,,,,^ +342,3,3,10685,0,1534.018,,,,,,144,48,0,,,,, +342,13,1,10695,640,1534.018,,,,,,144,78,0,,,,, +342,33,1,10714,1920,1534.168,42,32.0,D4,pp,8,144,62,8,,,,, +342,34,2,10715,1920,1534.168,,,,,,176,102,0,,,,, +342,35,3,10716,1920,1534.168,128,8.0,B0,,,,,,,,,, +342,36,4,10717,1920,1534.168,,,,,,176,102,0,,,,, +342,32,0,10718,1920,1534.168,,,,,,176,64,127,,,,,V +342,23,2,10705,1664,1534.168,,,,,,144,53,0,,,,, +342,24,4,10706,1664,1534.168,,,,,,144,30,0,,,,, +342,25,4,10707,1664,1534.168,,,,,,144,35,0,,,,, +342,33,1,10714,1920,1534.365,,,,,,144,62,0,,,,, +342,37,1,10719,1962,1534.365,43,32.0,F5,pp-,7,144,77,7,,,,, +342,37,1,10719,1962,1534.566,,,,,,144,77,0,,,,, +342,38,1,10720,2005,1534.566,28,32.0,A#6,pp-,7,144,94,7,,,,, +342,38,1,10720,2005,1534.697,,,,,,144,94,0,,,,, +342,39,1,10721,2033,1534.697,29,32.0,F5,ppp+,6,144,77,6,,,,, +342,40,2,10722,2048,1534.768,,,,,,176,102,0,,,,, +342,41,3,10723,2048,1534.768,,,,,,176,102,0,,,,, +342,42,4,10724,2048,1534.768,,,,,,176,102,0,,,,, +342,28,3,10710,1792,1534.768,,,,,,144,23,0,,,,, +342,39,1,10721,2033,1534.833,,,,,,144,77,0,,,,, +342,43,1,10725,2062,1534.833,28,32.0,A#6,ppp+,6,144,94,6,,,,, +342,43,1,10725,2062,1534.965,,,,,,144,94,0,,,,, +342,44,1,10726,2090,1534.965,29,32.0,D5,ppp,5,144,74,5,,,,, +342,44,1,10726,2090,1535.1,,,,,,144,74,0,,,,, +342,45,1,10727,2119,1535.1,18,32.0,A#6,ppp,5,144,94,5,,,,, +342,45,1,10727,2119,1535.185,,,,,,144,94,0,,,,, +342,46,1,10728,2137,1535.185,19,32.0,F6,ppp-,4,144,89,4,,,,, +342,46,1,10728,2137,1535.274,,,,,,144,89,0,,,,, +342,47,1,10729,2156,1535.274,20,32.0,A#7,ppp-,4,144,106,4,,,,, +342,47,1,10729,2156,1535.368,,,,,,144,106,0,,,,, +342,48,1,10730,2176,1535.368,,,,,,176,102,0,,,,, +343,0,0,10731,0,1535.968,,,,,,,,,343,,,, +343,1,0,10732,0,1535.968,,,,,,,,,,,58,, +343,2,1,10733,0,1535.968,,,,,,176,102,0,,,,, +343,3,2,10734,0,1535.968,,,,,,176,102,0,,,,, +343,4,3,10735,0,1535.968,,,,,,176,102,0,,,,, +343,5,4,10736,0,1535.968,,,,,,176,102,0,,,,, +343,6,2,10737,768,1539.071,,,,,,176,102,0,,,,, +343,7,4,10738,768,1539.071,,,,,,176,102,0,,,,, +343,8,1,10739,1536,1542.175,,,,,,176,102,0,,,,, +343,9,2,10740,1536,1542.175,,,,,,176,102,0,,,,, +343,10,3,10741,1536,1542.175,,,,,,176,102,0,,,,, +343,11,4,10742,1536,1542.175,,,,,,176,102,0,,,,, +343,12,0,10743,1536,1542.175,,,,,,,,,,6025,,, +343,13,0,10744,1728,1542.8,,,,,,176,64,0,,,,,^ +343,15,1,10745,1728,1542.95,32,32.0,E5,ff,22,144,76,22,,,,, +343,15,1,10745,1728,1543.08,,,,,,144,76,0,,,,, +343,16,1,10746,1760,1543.08,32,32.0,G#1,ff,22,144,32,22,,,,, +343,14,0,10747,1728,1543.1,,,,,,176,64,127,,,,,V +343,16,1,10746,1760,1543.209,,,,,,144,32,0,,,,, +343,17,1,10748,,1543.209,,8.0,B1,mp,14,144,35,14,,,,g, +343,17,1,10748,,1543.259,,,,,,144,35,0,,,,, +343,18,1,10749,,1543.284,,8.0,F#4,mp+,15,144,66,15,,,,g, +343,18,1,10749,,1543.334,,,,,,144,66,0,,,,, +343,19,1,10750,1792,1543.359,512,2.0,E5,f,20,144,76,20,,,,, +343,20,2,10751,1792,1543.359,512,2.0,D4,mf,17,144,62,17,,,,, +343,21,2,10752,1792,1543.359,512,2.0,F#4,mf,17,144,66,17,,,,, +343,22,3,10753,1792,1543.359,512,2.0,G1,f,20,144,31,20,,,,, +343,23,4,10754,1792,1543.359,512,2.0,B1,mp,14,144,35,14,,,,, +344,0,0,10755,0,1545.428,,,,,,,,,344,,,, +344,1,1,10756,0,1545.428,1024,1.0,E5,,,,,,,,,, +344,2,2,10757,0,1545.428,1024,1.0,D4,,,,,,,,,, +344,3,2,10758,0,1545.428,1024,1.0,F#4,,,,,,,,,, +344,4,3,10759,0,1545.428,1024,1.0,G1,,,,,,,,,, +344,5,4,10760,0,1545.428,1024,1.0,B1,,,,,,,,,, +343,19,1,10750,1792,1549.566,,,,,,144,76,0,,,,, +343,20,2,10751,1792,1549.566,,,,,,144,62,0,,,,, +343,21,2,10752,1792,1549.566,,,,,,144,66,0,,,,, +343,22,3,10753,1792,1549.566,,,,,,144,31,0,,,,, +343,23,4,10754,1792,1549.566,,,,,,144,35,0,,,,, +344,6,0,10761,1024,1549.566,,,,,,176,64,0,,,,,^ +344,7,1,10762,1024,1549.566,,,,,,176,102,0,,,,, +344,8,2,10763,1024,1549.566,,,,,,176,102,0,,,,, +344,9,3,10764,1024,1549.566,,,,,,176,102,0,,,,, +344,10,4,10765,1024,1549.566,,,,,,176,102,0,,,,, +344,11,1,10766,1248,1550.471,32,32.0,E5,p,11,144,76,11,,,,, +344,12,3,10767,1248,1550.471,32,32.0,B1,f,20,144,35,20,,,,, +344,13,3,10768,1248,1550.471,32,32.0,D4,f,20,144,62,20,,,,, +344,14,3,10769,1248,1550.471,32,32.0,F#4,f,20,144,66,20,,,,, +344,15,4,10770,1248,1550.471,32,32.0,G#1,p,11,144,32,11,,,,, +344,11,1,10766,1248,1550.6,,,,,,144,76,0,,,,, +344,12,3,10767,1248,1550.6,,,,,,144,35,0,,,,, +344,13,3,10768,1248,1550.6,,,,,,144,62,0,,,,, +344,14,3,10769,1248,1550.6,,,,,,144,66,0,,,,, +344,15,4,10770,1248,1550.6,,,,,,144,32,0,,,,, +344,17,1,10771,1280,1550.6,42,16.0,F#7,fff,24,144,102,23,,,,, +344,18,2,10772,1280,1550.6,,,,,,176,102,0,,,,, +344,19,3,10773,1280,1550.6,,,,,,176,102,0,,,,, +344,20,4,10774,1280,1550.6,,,,,,176,102,0,,,,, +344,16,0,10775,1280,1550.6,,,,,,176,64,127,,,,,V +344,17,1,10771,1280,1550.77,,,,,,144,102,0,,,,, +344,21,1,10776,1322,1550.77,86,8.0,D4,mf,17,144,62,17,,,,, +344,22,1,10777,1322,1550.77,128,8.0,F#4,mf,17,144,66,17,,,,, +344,23,1,10778,1322,1550.77,128,8.0,E5,pp,8,144,76,8,,,,, +344,24,3,10779,1322,1550.77,86,8.0,G#1,mf,17,144,32,17,,,,, +344,25,3,10780,1322,1550.77,128,8.0,B1,mf,17,144,35,17,,,,, +344,26,4,10781,1322,1550.77,86,8.0,D#1,fff,24,144,27,23,,,,, +344,27,0,10782,1344,1550.838,,,,,,176,64,0,,,,,^ +344,21,1,10776,1322,1551.118,,,,,,144,62,0,,,,, +344,22,1,10777,1322,1551.118,,,,,,144,66,0,,,,, +344,24,3,10779,1322,1551.118,,,,,,144,32,0,,,,, +344,25,3,10780,1322,1551.118,,,,,,144,35,0,,,,, +344,29,1,10783,1408,1551.118,128,8.0,D4,p,11,144,62,11,,,,, +344,30,1,10784,1408,1551.118,128,8.0,F#4,p,11,144,66,11,,,,, +344,31,3,10785,1408,1551.118,128,8.0,G#1,mf,17,144,32,17,,,,, +344,32,3,10786,1408,1551.118,128,8.0,B1,mf,17,144,35,17,,,,, +344,33,4,10787,1408,1551.118,128,8.0,D#1,,,,,,,,,, +344,28,0,10788,1408,1551.138,,,,,,176,64,127,,,,,V +344,23,1,10778,1322,1551.287,,,,,,144,76,0,,,,, +344,34,0,10789,1536,1551.485,,,,,,176,64,0,,,,,^ +344,26,4,10781,1322,1551.635,,,,,,144,27,0,,,,, +344,29,1,10783,1408,1551.635,,,,,,144,62,0,,,,, +344,30,1,10784,1408,1551.635,,,,,,144,66,0,,,,, +344,31,3,10785,1408,1551.635,,,,,,144,32,0,,,,, +344,32,3,10786,1408,1551.635,,,,,,144,35,0,,,,, +344,36,1,10790,1536,1551.635,,,,,,176,102,0,,,,, +344,37,2,10791,1536,1551.635,,,,,,176,102,0,,,,, +344,38,3,10792,1536,1551.635,768,2.0,G#1,ppp,5,144,32,5,,,,, +344,39,3,10793,1536,1551.635,512,2.0,B1,ppp,5,144,35,5,,,,, +344,40,4,10794,1536,1551.635,768,2.0,D#1,p,11,144,27,11,,,,, +344,35,0,10795,1536,1551.785,,,,,,176,64,127,,,,,V +344,39,3,10793,1536,1553.704,,,,,,144,35,0,,,,, +344,38,3,10792,1536,1554.738,,,,,,144,32,0,,,,, +344,40,4,10794,1536,1554.738,,,,,,144,27,0,,,,, +345,0,0,10796,0,1554.738,,,,,,,,,345,,,, +345,1,1,10797,0,1554.738,,,,,,176,102,0,,,,, +345,2,2,10798,0,1554.738,,,,,,176,102,0,,,,, +345,3,3,10799,0,1554.738,,,,,,176,102,0,,,,, +345,4,1,10800,85,1555.082,,,,,,176,102,0,,,,, +345,5,0,10801,148,1555.318,,,,,,176,64,0,,,,,^ +345,6,3,10802,192,1555.514,32,32.0,C4,p,11,144,60,11,,,,, +345,8,1,10803,213,1555.599,43,16.0,F#7,pp,8,144,102,8,,,,, +345,7,0,10804,213,1555.618,,,,,,176,64,127,,,,,V +345,9,3,10805,224,1555.644,32,32.0,E4,mp,14,144,64,14,,,,, +345,6,3,10802,192,1555.644,,,,,,144,60,0,,,,, +345,8,1,10803,213,1555.773,,,,,,144,102,0,,,,, +345,9,3,10805,224,1555.773,,,,,,144,64,0,,,,, +345,10,1,10806,256,1555.773,128,8.0,D#1,pp,8,144,27,8,,,,, +345,11,1,10807,256,1555.773,128,8.0,A#3,pp,8,144,58,8,,,,, +345,12,2,10808,256,1555.773,384,4.0,G#1,ppp,5,144,32,5,,,,, +345,13,2,10809,256,1555.773,256,4.0,B1,ppp,5,144,35,5,,,,, +345,14,3,10810,256,1555.773,64,16.0,A1,mf,17,144,33,17,,,,, +345,14,3,10810,256,1556.031,,,,,,144,33,0,,,,, +345,15,3,10811,320,1556.031,192,8.0,A1,p,11,144,33,11,,,,, +345,16,3,10812,320,1556.031,128,8.0,D3,p,11,144,50,11,,,,, +345,10,1,10806,256,1556.29,,,,,,144,27,0,,,,, +345,11,1,10807,256,1556.29,,,,,,144,58,0,,,,, +345,16,3,10812,320,1556.29,,,,,,144,50,0,,,,, +345,17,1,10813,384,1556.29,42,16.0,D3,ff,22,144,50,22,,,,, +345,18,1,10814,426,1556.46,86,8.0,E7,ff,22,144,100,22,,,,, +345,13,2,10809,256,1556.807,,,,,,144,35,0,,,,, +345,18,1,10814,426,1556.807,,,,,,144,100,0,,,,, +345,19,1,10815,512,1556.807,,,,,,176,102,0,,,,, +345,20,3,10816,512,1556.807,128,8.0,A1,,,,,,,,,, +345,21,3,10817,512,1556.807,128,8.0,D3,,,,,,,,,, +345,17,1,10813,384,1557.066,,,,,,144,50,0,,,,, +345,12,2,10808,256,1557.325,,,,,,144,32,0,,,,, +345,15,3,10811,320,1557.325,,,,,,144,33,0,,,,, +345,22,2,10818,640,1557.325,,,,,,176,102,0,,,,, +345,23,3,10819,640,1557.325,21,32.0,A0,ppp,5,144,21,5,,,,, +345,24,3,10820,661,1557.409,21,32.0,A0,,,,,,,,,, +345,25,3,10821,661,1557.409,32,32.0,G#1,ppp+,6,144,32,6,,,,, +345,26,3,10822,682,1557.494,22,32.0,A0,,,,,,,,,, +345,27,3,10823,682,1557.494,32,32.0,G#1,,,,,,,,,, +345,28,3,10824,682,1557.494,32,32.0,D2,ppp+,6,144,38,6,,,,, +345,29,3,10825,704,1557.583,21,32.0,A0,,,,,,,,,, +345,30,3,10826,704,1557.583,32,32.0,G#1,,,,,,,,,, +345,31,3,10827,704,1557.583,32,32.0,D2,,,,,,,,,, +345,32,3,10828,704,1557.583,32,32.0,A2,pp-,7,144,45,7,,,,, +345,33,0,10829,725,1557.605,,,,,,176,64,0,,,,,^ +345,34,3,10830,725,1557.668,43,16.0,A0,,,,,,,,,, +345,35,3,10831,725,1557.668,64,16.0,G#1,,,,,,,,,, +345,36,3,10832,725,1557.668,64,16.0,D2,,,,,,,,,, +345,37,3,10833,725,1557.668,64,16.0,A2,,,,,,,,,, +345,38,3,10834,725,1557.668,64,16.0,C3,pp,8,144,48,8,,,,, +345,40,1,10835,768,1557.842,,,,,,176,102,0,,,,, +345,41,2,10836,768,1557.842,,,,,,176,102,0,,,,, +345,42,3,10837,768,1557.842,128,8.0,A0,,,,,,,,,, +345,43,3,10838,768,1557.842,128,8.0,G#1,,,,,,,,,, +345,44,3,10839,768,1557.842,128,8.0,D2,,,,,,,,,, +345,45,3,10840,768,1557.842,128,8.0,A2,,,,,,,,,, +345,46,3,10841,768,1557.842,128,8.0,C3,,,,,,,,,, +345,39,0,10842,768,1557.905,,,,,,176,64,127,,,,,V +345,47,0,10843,896,1558.209,,,,,,176,64,0,,,,,^ +345,49,3,10844,896,1558.359,21,32.0,A0,pp,8,144,21,8,,,,, +345,23,3,10819,640,1558.359,,,,,,144,21,0,,,,, +345,49,3,10844,896,1558.444,,,,,,144,21,0,,,,, +345,50,3,10845,917,1558.444,21,32.0,G#1,pp+,9,144,32,9,,,,, +345,38,3,10834,725,1558.444,,,,,,144,48,0,,,,, +345,32,3,10828,704,1558.488,,,,,,144,45,0,,,,, +345,48,0,10846,896,1558.509,,,,,,176,64,127,,,,,V +345,50,3,10845,917,1558.529,,,,,,144,32,0,,,,, +345,51,3,10847,938,1558.529,22,32.0,D2,p,11,144,38,11,,,,, +345,28,3,10824,682,1558.529,,,,,,144,38,0,,,,, +345,25,3,10821,661,1558.573,,,,,,144,32,0,,,,, +345,51,3,10847,938,1558.618,,,,,,144,38,0,,,,, +345,52,3,10848,960,1558.618,12,64.0,E3,p+,12,144,52,12,,,,, +345,52,3,10848,960,1558.666,,,,,,144,52,0,,,,, +345,53,3,10849,972,1558.666,13,64.0,G#1,mp-,13,144,32,13,,,,, +345,53,3,10849,972,1558.719,,,,,,144,32,0,,,,, +345,54,3,10850,985,1558.719,13,64.0,E3,mp,14,144,52,14,,,,, +345,54,3,10850,985,1558.771,,,,,,144,52,0,,,,, +345,55,3,10851,998,1558.771,13,64.0,G#1,mp+,15,144,32,15,,,,, +345,55,3,10851,998,1558.824,,,,,,144,32,0,,,,, +345,56,3,10852,1011,1558.824,13,64.0,D2,mf-,16,144,38,16,,,,, +345,56,3,10852,1011,1558.876,,,,,,144,38,0,,,,, +345,57,3,10853,1024,1558.876,32,32.0,A0,mf,17,144,21,17,,,,, +345,57,3,10853,1024,1559.006,,,,,,144,21,0,,,,, +345,58,3,10854,1056,1559.006,32,32.0,D2,mf,17,144,38,17,,,,, +345,58,3,10854,1056,1559.135,,,,,,144,38,0,,,,, +345,59,3,10855,1088,1559.135,21,32.0,E3,mp+,15,144,52,15,,,,, +345,59,3,10855,1088,1559.22,,,,,,144,52,0,,,,, +345,60,3,10856,1109,1559.22,21,32.0,C3,mp-,13,144,48,13,,,,, +345,60,3,10856,1109,1559.305,,,,,,144,48,0,,,,, +345,61,3,10857,1130,1559.305,22,32.0,E3,p,11,144,52,11,,,,, +345,61,3,10857,1130,1559.394,,,,,,144,52,0,,,,, +345,62,3,10858,1152,1559.394,16,64.0,A0,p-,10,144,21,10,,,,, +345,62,3,10858,1152,1559.458,,,,,,144,21,0,,,,, +345,63,3,10859,1168,1559.458,16,64.0,G#1,pp+,9,144,32,9,,,,, +345,63,3,10859,1168,1559.523,,,,,,144,32,0,,,,, +345,64,3,10860,1184,1559.523,16,64.0,D2,pp-,7,144,38,7,,,,, +345,64,3,10860,1184,1559.587,,,,,,144,38,0,,,,, +345,65,3,10861,1200,1559.587,16,64.0,C3,ppp+,6,144,48,6,,,,, +345,65,3,10861,1200,1559.652,,,,,,144,48,0,,,,, +345,66,3,10862,1216,1559.652,64,16.0,E3,ppp,5,144,52,5,,,,, +345,67,0,10863,1216,1559.652,,,,,,,,,,6026,,, +345,68,0,10864,1279,1559.759,,,,,,176,64,0,,,,,^ +345,66,3,10862,1216,1559.911,,,,,,144,52,0,,,,, +346,2,0,10865,0,1559.911,,,,,,,,,346,,,, +346,1,3,10866,0,1559.911,32,32.0,G#3,p,11,144,56,11,,,,, +346,3,1,10867,0,1559.911,32,32.0,D7,pp,8,144,98,8,,,,, +346,4,2,10868,0,1559.911,,,,,,176,102,0,,,,, +346,1,3,10866,0,1560.04,,,,,,144,56,0,,,,, +346,3,1,10867,0,1560.04,,,,,,144,98,0,,,,, +346,5,3,10869,32,1560.04,192,8.0,C4,p,11,144,60,11,,,,, +346,6,1,10870,32,1560.04,32,32.0,F#4,pp-,7,144,66,7,,,,, +346,0,0,10871,0,1560.059,,,,,,176,64,127,,,,,V +346,6,1,10870,32,1560.169,,,,,,144,66,0,,,,, +346,7,1,10872,64,1560.169,21,32.0,B4,pp-,7,144,71,7,,,,, +346,7,1,10872,64,1560.254,,,,,,144,71,0,,,,, +346,8,1,10873,85,1560.254,21,32.0,C5,pp-,7,144,72,7,,,,, +346,8,1,10873,85,1560.339,,,,,,144,72,0,,,,, +346,9,1,10874,106,1560.339,22,32.0,B4,ppp+,6,144,71,6,,,,, +346,9,1,10874,106,1560.428,,,,,,144,71,0,,,,, +346,10,1,10875,128,1560.428,21,32.0,D6,ppp+,6,144,86,6,,,,, +346,10,1,10875,128,1560.513,,,,,,144,86,0,,,,, +346,11,1,10876,149,1560.513,21,32.0,F#4,ppp,5,144,66,5,,,,, +346,11,1,10876,149,1560.598,,,,,,144,66,0,,,,, +346,12,1,10877,170,1560.598,16,32.0,C5,ppp,5,144,72,5,,,,, +346,12,1,10877,170,1560.662,,,,,,144,72,0,,,,, +346,13,1,10878,186,1560.662,17,32.0,B4,ppp,5,144,71,5,,,,, +346,13,1,10878,186,1560.731,,,,,,144,71,0,,,,, +346,14,1,10879,203,1560.731,18,32.0,C5,ppp,5,144,72,5,,,,, +346,14,1,10879,203,1560.804,,,,,,144,72,0,,,,, +346,15,1,10880,221,1560.804,17,32.0,B4,ppp-,4,144,71,4,,,,, +346,5,3,10869,32,1560.816,,,,,,144,60,0,,,,, +346,16,3,10881,224,1560.816,32,32.0,G#3,ppp,5,144,56,5,,,,, +346,15,1,10880,221,1560.872,,,,,,144,71,0,,,,, +346,17,1,10882,238,1560.872,18,32.0,C5,ppp-,4,144,72,4,,,,, +346,16,3,10881,224,1560.945,,,,,,144,56,0,,,,, +346,17,1,10882,238,1560.945,,,,,,144,72,0,,,,, +346,18,1,10883,256,1560.945,,,,,,176,102,0,,,,, +346,19,3,10884,256,1560.945,224,8.0,C4,ppp,5,144,60,5,,,,, +346,20,0,10885,410,1561.568,,,,,,176,64,0,,,,,^ +346,19,3,10884,256,1561.85,,,,,,144,60,0,,,,, +346,23,1,10886,,1561.85,,8.0,F#2,mf,17,144,42,17,,,,g, +346,23,1,10886,,1561.9,,,,,,144,42,0,,,,, +346,24,1,10887,,1561.925,,8.0,C3,mf,17,144,48,17,,,,g, +346,24,1,10887,,1561.975,,,,,,144,48,0,,,,, +346,25,1,10888,,1562.0,,8.0,G#2,mf,17,144,44,17,,,,g, +346,25,1,10888,,1562.05,,,,,,144,44,0,,,,, +346,26,1,10889,,1562.075,,8.0,F5,mf,17,144,77,17,,,,g, +346,26,1,10889,,1562.125,,,,,,144,77,0,,,,, +346,22,3,10890,480,1562.15,32,32.0,F4,mf,17,144,65,17,,,,, +346,21,0,10891,480,1562.15,,,,,,176,64,127,,,,,V +346,22,3,10890,480,1562.28,,,,,,144,65,0,,,,, +346,27,1,10892,512,1562.28,42,16.0,C5,mf,17,144,72,17,,,,, +346,28,3,10893,512,1562.28,,,,,,176,102,0,,,,, +346,27,1,10892,512,1562.449,,,,,,144,72,0,,,,, +346,29,1,10894,554,1562.449,43,16.0,E6,mf,17,144,88,17,,,,, +346,29,1,10894,554,1562.623,,,,,,144,88,0,,,,, +346,30,1,10895,597,1562.623,43,16.0,F#1,mf-,16,144,30,16,,,,, +346,30,1,10895,597,1562.797,,,,,,144,30,0,,,,, +346,31,1,10896,640,1562.797,,,,,,176,102,0,,,,, +346,35,1,10897,,1563.089,,8.0,G#5,pp,8,144,80,8,,,,g, +346,35,1,10897,,1563.139,,,,,,144,80,0,,,,, +346,36,1,10898,,1563.164,,8.0,A4,p+,12,144,69,12,,,,g, +346,36,1,10898,,1563.214,,,,,,144,69,0,,,,, +346,37,1,10899,,1563.239,,8.0,C7,mf,17,144,96,17,,,,g, +346,37,1,10899,,1563.289,,,,,,144,96,0,,,,, +346,32,1,10900,768,1563.314,,,,,,176,102,0,,,,, +346,33,3,10901,768,1563.314,,,,,,176,102,0,,,,, +346,34,0,10902,865,1563.706,,,,,,176,64,0,,,,,^ +346,38,1,10903,,1564.349,,8.0,D4,mp,14,144,62,14,,,,g, +346,38,1,10903,,1564.399,,,,,,144,62,0,,,,, +346,39,1,10904,,1564.424,,8.0,A#2,p,11,144,46,11,,,,g, +346,39,1,10904,,1564.474,,,,,,144,46,0,,,,, +346,40,1,10905,,1564.499,,8.0,D4,pp,8,144,62,8,,,,g, +346,40,1,10905,,1564.549,,,,,,144,62,0,,,,, +346,41,1,10906,1024,1564.574,128,8.0,G#3,mf,17,144,56,17,,,,, +346,42,2,10907,1024,1564.574,256,4.0,F#3,ppp,5,144,54,5,,,,, +346,43,3,10908,,1564.574,,8.0,F3,ppp,5,144,53,5,,,,g, +346,43,3,10908,,1564.624,,,,,,144,53,0,,,,, +346,44,3,10909,1024,1564.649,32,32.0,G#2,p,11,144,44,11,,,,, +346,44,3,10909,1024,1564.778,,,,,,144,44,0,,,,, +346,45,3,10910,1056,1564.778,21,32.0,C3,p,11,144,48,11,,,,, +346,45,3,10910,1056,1564.863,,,,,,144,48,0,,,,, +346,46,3,10911,1077,1564.863,21,32.0,F#1,p-,10,144,30,10,,,,, +346,46,3,10911,1077,1564.948,,,,,,144,30,0,,,,, +346,47,3,10912,1098,1564.948,22,32.0,C3,p-,10,144,48,10,,,,, +346,47,3,10912,1098,1565.037,,,,,,144,48,0,,,,, +346,48,3,10913,1120,1565.037,32,32.0,E5,p-,10,144,76,10,,,,, +346,41,1,10906,1024,1565.091,,,,,,144,56,0,,,,, +346,48,3,10913,1120,1565.166,,,,,,144,76,0,,,,, +346,49,1,10914,1152,1565.166,128,8.0,C6,f,20,144,84,20,,,,, +346,50,3,10915,1152,1565.166,32,32.0,F3,p-,10,144,53,10,,,,, +346,50,3,10915,1152,1565.295,,,,,,144,53,0,,,,, +346,51,3,10916,1184,1565.295,64,16.0,G#2,pp+,9,144,44,9,,,,, +346,51,3,10916,1184,1565.554,,,,,,144,44,0,,,,, +346,52,3,10917,1248,1565.554,32,32.0,F3,pp+,9,144,53,9,,,,, +346,42,2,10907,1024,1565.608,,,,,,144,54,0,,,,, +346,49,1,10914,1152,1565.683,,,,,,144,84,0,,,,, +346,52,3,10917,1248,1565.683,,,,,,144,53,0,,,,, +346,53,1,10918,1280,1565.683,,,,,,176,102,0,,,,, +346,54,2,10919,1280,1565.683,,,,,,176,102,0,,,,, +346,55,3,10920,1280,1565.683,96,16.0,C3,pp,8,144,48,8,,,,, +346,55,3,10920,1280,1566.071,,,,,,144,48,0,,,,, +346,56,3,10921,1376,1566.071,96,16.0,G2,pp-,7,144,43,7,,,,, +346,56,3,10921,1376,1566.459,,,,,,144,43,0,,,,, +346,57,3,10922,1472,1566.459,64,16.0,E4,ppp+,6,144,64,6,,,,, +346,57,3,10922,1472,1566.718,,,,,,144,64,0,,,,, +346,59,1,10923,1536,1566.718,256,4.0,B4,mf,17,144,71,17,,,,, +346,60,2,10924,1536,1566.718,,,,,,176,102,0,,,,, +346,58,1,10925,,1566.718,,8.0,D#4,mf,17,144,63,17,,,,g, +346,61,3,10926,,1566.718,,8.0,G#1,ppp+,6,144,32,6,,,,g, +346,58,1,10925,,1566.768,,,,,,144,63,0,,,,, +346,61,3,10926,,1566.768,,,,,,144,32,0,,,,, +346,62,3,10927,1536,1566.868,16,64.0,F2,ppp,5,144,41,5,,,,, +346,62,3,10927,1536,1566.932,,,,,,144,41,0,,,,, +346,63,3,10928,1552,1566.932,16,64.0,F#1,ppp,5,144,30,5,,,,, +346,63,3,10928,1552,1566.997,,,,,,144,30,0,,,,, +346,64,3,10929,1568,1566.997,96,16.0,C2,ppp,5,144,36,5,,,,, +346,64,3,10929,1568,1567.385,,,,,,144,36,0,,,,, +346,65,3,10930,1664,1567.385,128,8.0,E3,ppp,5,144,52,5,,,,, +346,59,1,10923,1536,1567.752,,,,,,144,71,0,,,,, +346,65,3,10930,1664,1567.902,,,,,,144,52,0,,,,, +346,66,1,10931,1792,1567.902,,,,,,176,102,0,,,,, +346,67,3,10932,1792,1567.902,16,64.0,F#2,p,11,144,42,11,,,,, +346,67,3,10932,1792,1567.967,,,,,,144,42,0,,,,, +346,68,3,10933,1808,1567.967,16,64.0,D3,p-,10,144,50,10,,,,, +346,68,3,10933,1808,1568.031,,,,,,144,50,0,,,,, +346,69,3,10934,1824,1568.031,16,64.0,G4,pp+,9,144,67,9,,,,, +346,69,3,10934,1824,1568.096,,,,,,144,67,0,,,,, +346,70,3,10935,1840,1568.096,16,64.0,A#3,pp,8,144,58,8,,,,, +346,70,3,10935,1840,1568.161,,,,,,144,58,0,,,,, +346,71,3,10936,1856,1568.161,16,64.0,G#3,pp-,7,144,56,7,,,,, +346,71,3,10936,1856,1568.225,,,,,,144,56,0,,,,, +346,72,3,10937,1872,1568.225,24,64.0,D3,ppp+,6,144,50,6,,,,, +346,72,3,10937,1872,1568.322,,,,,,144,50,0,,,,, +346,73,3,10938,1896,1568.322,24,64.0,G4,ppp,5,144,67,5,,,,, +346,73,3,10938,1896,1568.419,,,,,,144,67,0,,,,, +346,74,0,10939,1920,1568.445,,,,,,,,,,,46,, +346,76,1,10940,1920,1568.445,,,,,,176,102,0,,,,, +346,77,3,10941,1920,1568.445,128,8.0,F#1,ppp,5,144,30,5,,,,, +346,78,3,10942,1920,1568.445,128,8.0,G#1,ppp,5,144,32,5,,,,, +346,79,3,10943,1920,1568.445,128,8.0,C2,ppp,5,144,36,5,,,,, +346,80,3,10944,1920,1568.445,128,8.0,F2,ppp,5,144,41,5,,,,, +346,81,3,10945,1920,1568.445,128,8.0,E3,ppp,5,144,52,5,,,,, +346,77,3,10941,1920,1568.495,,,,,,144,30,0,,,,, +346,78,3,10942,1920,1568.495,,,,,,144,32,0,,,,, +346,79,3,10943,1920,1568.495,,,,,,144,36,0,,,,, +346,80,3,10944,1920,1568.495,,,,,,144,41,0,,,,, +346,81,3,10945,1920,1568.495,,,,,,144,52,0,,,,, +346,75,0,10946,1920,1568.745,,,,,,176,64,127,,,,,V +346,1,0,10947,2047,1568.944,,,,,,176,64,0,,,,,^ +347,0,0,10948,0,1569.097,,,,,,,,,347,,,, +347,4,1,10949,0,1569.097,,,,,,176,102,0,,,,, +347,12,3,10950,0,1569.097,,,,,,176,102,0,,,,, +347,13,4,10951,0,1569.097,16,64.0,G#3,p,11,144,56,11,,,,, +347,16,2,10952,0,1569.097,,,,,,176,102,0,,,,, +347,13,4,10951,0,1569.178,,,,,,144,56,0,,,,, +347,14,4,10953,16,1569.178,16,64.0,C4,p,11,144,60,11,,,,, +347,2,0,10954,0,1569.244,,,,,,176,64,127,,,,,V +347,14,4,10953,16,1569.26,,,,,,144,60,0,,,,, +347,15,4,10955,32,1569.26,224,8.0,F4,p,11,144,65,11,,,,, +347,5,1,10956,,1570.401,,8.0,G#5,pp,8,144,80,8,,,,g, +347,5,1,10956,,1570.451,,,,,,144,80,0,,,,, +347,6,1,10957,,1570.476,,8.0,A4,p-,10,144,69,10,,,,g, +347,6,1,10957,,1570.526,,,,,,144,69,0,,,,, +347,15,4,10955,32,1570.551,,,,,,144,65,0,,,,, +347,7,1,10958,,1570.551,,8.0,G#5,p+,12,144,80,12,,,,g, +347,7,1,10958,,1570.601,,,,,,144,80,0,,,,, +347,8,1,10959,,1570.626,,8.0,C7,mp-,13,144,96,13,,,,g, +347,8,1,10959,,1570.676,,,,,,144,96,0,,,,, +347,9,1,10960,,1570.701,,8.0,A4,mp+,15,144,69,15,,,,g, +347,9,1,10960,,1570.751,,,,,,144,69,0,,,,, +347,10,1,10961,,1570.776,,8.0,C7,mf,17,144,96,17,,,,g, +347,10,1,10961,,1570.826,,,,,,144,96,0,,,,, +347,3,2,10962,,1570.851,,8.0,C#3,p,11,144,49,11,,,,g, +347,3,2,10962,,1570.901,,,,,,144,49,0,,,,, +347,11,2,10963,256,1570.926,256,4.0,D6,p,11,144,86,11,,,,, +347,17,1,10964,256,1570.926,192,8.0,D5,p,11,144,74,11,,,,, +347,18,3,10965,256,1570.926,21,32.0,C#4,ff,22,144,61,22,,,,, +347,19,4,10966,256,1570.926,512,2.0,G#3,ff,22,144,56,22,,,,, +347,18,3,10965,256,1571.033,,,,,,144,61,0,,,,, +347,20,3,10967,277,1571.033,21,32.0,G#1,f+,21,144,32,21,,,,, +347,20,3,10967,277,1571.14,,,,,,144,32,0,,,,, +347,21,3,10968,298,1571.14,43,16.0,D#1,f+,21,144,27,21,,,,, +347,22,3,10969,341,1571.359,171,4.0,D#1,,,,,,,,,, +347,17,1,10964,256,1571.904,,,,,,144,74,0,,,,, +347,23,1,10970,448,1571.904,64,16.0,A4,mf-,16,144,69,16,,,,, +347,11,2,10963,256,1572.231,,,,,,144,86,0,,,,, +347,24,1,10971,512,1572.231,256,4.0,A4,,,,,,,,,, +347,25,2,10972,512,1572.231,,,,,,176,102,0,,,,, +347,26,3,10973,512,1572.231,85,8.0,D#1,,,,,,,,,, +347,21,3,10968,298,1572.664,,,,,,144,27,0,,,,, +347,27,3,10974,597,1572.664,21,32.0,B5,p+,12,144,83,12,,,,, +347,27,3,10974,597,1572.771,,,,,,144,83,0,,,,, +347,28,3,10975,618,1572.771,150,8.0,G2,p,11,144,43,11,,,,, +347,19,4,10966,256,1573.535,,,,,,144,56,0,,,,, +348,0,0,10976,0,1573.535,,,,,,,,,348,,,, +348,1,0,10977,0,1573.535,,,,,,176,64,0,,,,,^ +348,2,1,10978,0,1573.535,64,16.0,A4,,,,,,,,,, +348,3,2,10979,0,1573.535,16,64.0,G#3,ppp,5,144,56,5,,,,, +348,4,3,10980,0,1573.535,170,4.0,G2,,,,,,,,,, +348,5,3,10981,0,1573.535,256,4.0,A#2,ppp,5,144,46,5,,,,, +348,6,4,10982,0,1573.535,,,,,,176,102,0,,,,, +348,3,2,10979,0,1573.616,,,,,,144,56,0,,,,, +348,7,2,10983,16,1573.616,16,64.0,C4,ppp,5,144,60,5,,,,, +348,7,2,10983,16,1573.698,,,,,,144,60,0,,,,, +348,8,2,10984,32,1573.698,16,64.0,E5,ppp,5,144,76,5,,,,, +348,8,2,10984,32,1573.779,,,,,,144,76,0,,,,, +348,9,2,10985,48,1573.779,96,16.0,F4,ppp,5,144,65,5,,,,, +347,23,1,10970,448,1573.861,,,,,,144,69,0,,,,, +348,10,1,10986,64,1573.861,,,,,,176,102,0,,,,, +348,11,4,10987,64,1573.861,48,32.0,G3,ppp,5,144,55,5,,,,, +348,9,2,10985,48,1574.106,,,,,,144,65,0,,,,, +348,11,4,10987,64,1574.106,,,,,,144,55,0,,,,, +348,12,4,10988,112,1574.106,16,64.0,F4,ppp+,6,144,65,6,,,,, +348,13,4,10989,128,1574.187,16,64.0,G3,pp,8,144,55,8,,,,, +348,12,4,10988,112,1574.269,,,,,,144,65,0,,,,, +348,13,4,10989,128,1574.269,,,,,,144,55,0,,,,, +348,14,2,10990,144,1574.269,,,,,,176,102,0,,,,, +348,15,4,10991,144,1574.269,16,64.0,F4,pp+,9,144,65,9,,,,, +348,16,4,10992,160,1574.35,32,32.0,F4,,,,,,,,,, +347,28,3,10975,618,1574.401,,,,,,144,43,0,,,,, +348,17,3,10993,170,1574.401,86,8.0,D#2,ff,22,144,39,22,,,,, +348,15,4,10991,144,1574.513,,,,,,144,65,0,,,,, +348,18,2,10994,192,1574.513,,,,,,176,102,0,,,,, +348,19,4,10995,192,1574.513,,,,,,176,102,0,,,,, +348,5,3,10981,0,1574.839,,,,,,144,46,0,,,,, +348,17,3,10993,170,1574.839,,,,,,144,39,0,,,,, +348,21,1,10996,256,1574.839,21,32.0,B4,ff,22,144,71,22,,,,, +348,22,2,10997,256,1574.839,,,,,,176,102,0,,,,, +348,23,3,10998,256,1574.839,,,,,,176,102,0,,,,, +348,24,4,10999,256,1574.839,128,8.0,C3,p,11,144,48,11,,,,, +348,20,0,11000,256,1574.839,,,,,,176,64,127,,,,,V +348,21,1,10996,256,1574.946,,,,,,144,71,0,,,,, +348,25,1,11001,277,1574.946,21,32.0,C#4,f,20,144,61,20,,,,, +348,25,1,11001,277,1575.053,,,,,,144,61,0,,,,, +348,26,1,11002,298,1575.053,14,32.0,G3,f-,19,144,55,19,,,,, +348,26,1,11002,298,1575.125,,,,,,144,55,0,,,,, +348,27,1,11003,312,1575.125,14,32.0,C#4,mf,17,144,61,17,,,,, +348,27,1,11003,312,1575.196,,,,,,144,61,0,,,,, +348,28,1,11004,326,1575.196,15,32.0,G3,mf-,16,144,55,16,,,,, +348,28,1,11004,326,1575.272,,,,,,144,55,0,,,,, +348,29,1,11005,341,1575.272,21,32.0,C#4,mp+,15,144,61,15,,,,, +348,29,1,11005,341,1575.379,,,,,,144,61,0,,,,, +348,30,1,11006,362,1575.379,22,32.0,G3,mp-,13,144,55,13,,,,, +348,24,4,10999,256,1575.491,,,,,,144,48,0,,,,, +348,30,1,11006,362,1575.491,,,,,,144,55,0,,,,, +348,31,4,11007,384,1575.491,128,8.0,B2,pp,8,144,47,8,,,,, +348,32,1,11008,384,1575.491,21,32.0,G#2,p,11,144,44,11,,,,, +348,32,1,11008,384,1575.598,,,,,,144,44,0,,,,, +348,33,1,11009,405,1575.598,14,32.0,D#2,p-,10,144,39,10,,,,, +348,33,1,11009,405,1575.67,,,,,,144,39,0,,,,, +348,34,1,11010,419,1575.67,14,32.0,B5,pp+,9,144,83,9,,,,, +348,34,1,11010,419,1575.741,,,,,,144,83,0,,,,, +348,35,1,11011,433,1575.741,15,32.0,C#5,pp-,7,144,73,7,,,,, +348,35,1,11011,433,1575.817,,,,,,144,73,0,,,,, +348,36,0,11012,448,1575.817,,,,,,176,64,0,,,,,^ +348,37,3,11013,448,1575.817,32,32.0,D5,mp,14,144,74,14,,,,, +348,38,1,11014,448,1575.817,14,32.0,G4,ppp+,6,144,67,6,,,,, +348,38,1,11014,448,1575.889,,,,,,144,67,0,,,,, +348,39,1,11015,462,1575.889,28,16.0,G#3,ppp,5,144,56,5,,,,, +348,37,3,11013,448,1575.981,,,,,,144,74,0,,,,, +348,40,3,11016,480,1575.981,32,32.0,D#2,f,20,144,39,20,,,,, +348,39,1,11015,462,1576.031,,,,,,144,56,0,,,,, +348,41,1,11017,490,1576.031,,,,,,176,102,0,,,,, +348,31,4,11007,384,1576.144,,,,,,144,47,0,,,,, +348,40,3,11016,480,1576.144,,,,,,144,39,0,,,,, +348,43,1,11018,512,1576.144,128,8.0,E5,p,11,144,76,11,,,,, +348,44,2,11019,512,1576.144,,,,,,176,102,0,,,,, +348,45,3,11020,512,1576.144,16,64.0,C#5,mf,17,144,73,17,,,,, +348,46,4,11021,512,1576.144,256,4.0,A#1,ppp,5,144,34,5,,,,, +348,42,0,11022,512,1576.144,,,,,,176,64,127,,,,,V +348,45,3,11020,512,1576.225,,,,,,144,73,0,,,,, +348,47,3,11023,528,1576.225,16,64.0,G2,mf-,16,144,43,16,,,,, +348,47,3,11023,528,1576.307,,,,,,144,43,0,,,,, +348,48,3,11024,544,1576.307,32,32.0,B6,mp,14,144,95,14,,,,, +348,48,3,11024,544,1576.47,,,,,,144,95,0,,,,, +348,49,3,11025,576,1576.47,192,8.0,G#2,p,11,144,44,11,,,,, +348,43,1,11018,512,1576.796,,,,,,144,76,0,,,,, +348,50,1,11026,640,1576.796,25,32.0,E5,ppp,5,144,76,5,,,,, +348,50,1,11026,640,1576.923,,,,,,144,76,0,,,,, +348,51,1,11027,665,1576.923,26,32.0,C#4,ppp+,6,144,61,6,,,,, +348,51,1,11027,665,1577.056,,,,,,144,61,0,,,,, +348,52,1,11028,691,1577.056,13,64.0,G#4,ppp+,6,144,68,6,,,,, +348,52,1,11028,691,1577.122,,,,,,144,68,0,,,,, +348,53,1,11029,704,1577.122,12,64.0,D6,pp-,7,144,86,7,,,,, +348,53,1,11029,704,1577.183,,,,,,144,86,0,,,,, +348,54,1,11030,716,1577.183,13,64.0,G#4,pp-,7,144,68,7,,,,, +348,54,1,11030,716,1577.249,,,,,,144,68,0,,,,, +348,55,1,11031,729,1577.249,13,64.0,D6,pp,8,144,86,8,,,,, +348,55,1,11031,729,1577.315,,,,,,144,86,0,,,,, +348,56,1,11032,742,1577.315,26,32.0,A6,pp,8,144,93,8,,,,, +348,46,4,11021,512,1577.448,,,,,,144,34,0,,,,, +348,49,3,11025,576,1577.448,,,,,,144,44,0,,,,, +348,56,1,11032,742,1577.448,,,,,,144,93,0,,,,, +348,57,1,11033,768,1577.448,128,8.0,A#1,pp,8,144,34,8,,,,, +348,58,1,11034,768,1577.448,128,8.0,G#2,pp,8,144,44,8,,,,, +348,59,3,11035,768,1577.448,85,8.0,A#2,f,20,144,46,20,,,,, +348,60,4,11036,768,1577.448,,,,,,176,102,0,,,,, +348,59,3,11035,768,1577.881,,,,,,144,46,0,,,,, +348,61,3,11037,853,1577.881,56,8.0,A4,mp+,15,144,69,15,,,,, +348,57,1,11033,768,1578.1,,,,,,144,34,0,,,,, +348,58,1,11034,768,1578.1,,,,,,144,44,0,,,,, +348,62,1,11038,896,1578.1,,,,,,176,102,0,,,,, +348,61,3,11037,853,1578.166,,,,,,144,69,0,,,,, +348,63,3,11039,909,1578.166,29,16.0,C#2,p,11,144,37,11,,,,, +348,63,3,11039,909,1578.314,,,,,,144,37,0,,,,, +348,64,3,11040,938,1578.314,33,16.0,A#2,pp+,9,144,46,9,,,,, +348,64,3,11040,938,1578.482,,,,,,144,46,0,,,,, +348,65,3,11041,971,1578.482,18,32.0,A3,pp-,7,144,57,7,,,,, +348,65,3,11041,971,1578.574,,,,,,144,57,0,,,,, +348,66,3,11042,989,1578.574,17,32.0,C#2,ppp+,6,144,37,6,,,,, +348,67,0,11043,1006,1578.594,,,,,,176,64,0,,,,,^ +348,66,3,11042,989,1578.661,,,,,,144,37,0,,,,, +348,68,3,11044,1006,1578.661,18,32.0,F3,ppp,5,144,53,5,,,,, +348,68,3,11044,1006,1578.752,,,,,,144,53,0,,,,, +349,0,0,11045,0,1578.752,,,,,,,,,349,,,, +349,1,1,11046,0,1578.752,,,,,,176,102,0,,,,, +349,2,2,11047,0,1578.752,,,,,,176,102,0,,,,, +349,4,3,11048,,1578.752,,8.0,C#4,f,20,144,61,20,,,,g, +349,4,3,11048,,1578.802,,,,,,144,61,0,,,,, +349,5,3,11049,0,1578.827,64,16.0,D#1,f,20,144,27,20,,,,, +349,3,0,11050,0,1578.894,,,,,,176,64,127,,,,,V +349,5,3,11049,0,1579.153,,,,,,144,27,0,,,,, +349,6,1,11051,64,1579.153,64,16.0,D5,mp,14,144,74,14,,,,, +349,7,3,11052,64,1579.153,16,64.0,B4,p,11,144,71,11,,,,, +349,7,3,11052,64,1579.235,,,,,,144,71,0,,,,, +349,8,3,11053,80,1579.235,16,64.0,G#1,pp+,9,144,32,9,,,,, +349,10,0,11054,112,1579.289,,,,,,176,64,0,,,,,^ +349,8,3,11053,80,1579.316,,,,,,144,32,0,,,,, +349,9,3,11055,96,1579.316,16,64.0,B5,pp-,7,144,83,7,,,,, +349,9,3,11055,96,1579.398,,,,,,144,83,0,,,,, +349,11,3,11056,112,1579.398,16,64.0,G2,ppp,5,144,43,5,,,,, +349,6,1,11051,64,1579.479,,,,,,144,74,0,,,,, +349,11,3,11056,112,1579.479,,,,,,144,43,0,,,,, +349,13,1,11057,128,1579.479,64,16.0,A4,pp,8,144,69,8,,,,, +349,14,3,11058,128,1579.479,,,,,,176,102,0,,,,, +349,12,0,11059,128,1579.589,,,,,,176,64,127,,,,,V +349,13,1,11057,128,1579.806,,,,,,144,69,0,,,,, +349,15,1,11060,192,1579.806,16,64.0,G3,mp-,13,144,55,13,,,,, +349,15,1,11060,192,1579.887,,,,,,144,55,0,,,,, +349,16,1,11061,208,1579.887,16,64.0,C#3,mp,14,144,49,14,,,,, +349,16,1,11061,208,1579.969,,,,,,144,49,0,,,,, +349,17,1,11062,224,1579.969,16,64.0,F4,mf-,16,144,65,16,,,,, +349,17,1,11062,224,1580.05,,,,,,144,65,0,,,,, +349,18,1,11063,240,1580.05,16,64.0,C#2,mf,17,144,37,17,,,,, +349,18,1,11063,240,1580.132,,,,,,144,37,0,,,,, +349,19,1,11064,256,1580.132,102,8.0,D5,f,20,144,74,20,,,,, +349,20,2,11065,256,1580.132,102,8.0,F4,p,11,144,65,11,,,,, +349,21,2,11066,256,1580.132,128,8.0,A4,p,11,144,69,11,,,,, +349,22,3,11067,256,1580.132,102,8.0,D#1,mf,17,144,27,17,,,,, +349,23,3,11068,256,1580.132,128,8.0,G#1,mf,17,144,32,17,,,,, +349,24,3,11069,256,1580.132,128,8.0,C#2,mf,17,144,37,17,,,,, +349,25,0,11070,358,1580.501,,,,,,176,64,0,,,,,^ +349,19,1,11064,256,1580.651,,,,,,144,74,0,,,,, +349,20,2,11065,256,1580.651,,,,,,144,65,0,,,,, +349,21,2,11066,256,1580.651,,,,,,144,69,0,,,,, +349,22,3,11067,256,1580.651,,,,,,144,27,0,,,,, +349,24,3,11069,256,1580.651,,,,,,144,37,0,,,,, +349,27,1,11071,358,1580.651,154,8.0,D5,ppp,5,144,74,5,,,,, +349,28,2,11072,358,1580.651,154,8.0,F4,ppp,5,144,65,5,,,,, +349,29,2,11073,358,1580.651,128,8.0,A4,ppp,5,144,69,5,,,,, +349,30,3,11074,358,1580.651,154,8.0,D#1,ppp,5,144,27,5,,,,, +349,31,3,11075,358,1580.651,128,8.0,C#2,ppp,5,144,37,5,,,,, +349,23,3,11068,256,1580.784,,,,,,144,32,0,,,,, +349,26,0,11076,358,1580.801,,,,,,176,64,127,,,,,V +349,29,2,11073,358,1581.303,,,,,,144,69,0,,,,, +349,31,3,11075,358,1581.303,,,,,,144,37,0,,,,, +349,27,1,11071,358,1581.436,,,,,,144,74,0,,,,, +349,28,2,11072,358,1581.436,,,,,,144,65,0,,,,, +349,30,3,11074,358,1581.436,,,,,,144,27,0,,,,, +349,32,1,11077,,1581.436,,8.0,G6,ppp,5,144,91,5,,,,g, +349,32,1,11077,,1581.486,,,,,,144,91,0,,,,, +349,33,1,11078,,1581.511,,8.0,E7,ppp,5,144,100,5,,,,g, +349,33,1,11078,,1581.561,,,,,,144,100,0,,,,, +349,34,1,11079,,1581.586,,8.0,C#7,ppp,5,144,97,5,,,,g, +349,34,1,11079,,1581.636,,,,,,144,97,0,,,,, +349,35,1,11080,512,1581.661,256,4.0,B5,p,11,144,83,11,,,,, +349,36,1,11081,512,1581.661,256,4.0,G#6,p,11,144,92,11,,,,, +349,37,2,11082,512,1581.661,,,,,,176,102,0,,,,, +349,38,3,11083,,1581.661,,8.0,D#3,ppp,5,144,51,5,,,,g, +349,38,3,11083,,1581.711,,,,,,144,51,0,,,,, +349,39,3,11084,,1581.736,,8.0,E4,p,11,144,64,11,,,,g, +349,40,3,11085,,1581.736,,8.0,C#5,p,11,144,73,11,,,,g, +349,39,3,11084,,1581.786,,,,,,144,64,0,,,,, +349,40,3,11085,,1581.786,,,,,,144,73,0,,,,, +349,41,3,11086,512,1581.886,256,4.0,A3,p,11,144,57,11,,,,, +349,42,2,11087,640,1582.538,25,32.0,E5,ppp,5,144,76,5,,,,, +349,42,2,11087,640,1582.666,,,,,,144,76,0,,,,, +349,43,2,11088,665,1582.666,26,32.0,C3,ppp+,6,144,48,6,,,,, +349,43,2,11088,665,1582.798,,,,,,144,48,0,,,,, +349,44,2,11089,691,1582.798,13,64.0,G#4,pp,8,144,68,8,,,,, +349,44,2,11089,691,1582.864,,,,,,144,68,0,,,,, +349,45,2,11090,704,1582.864,12,64.0,D6,pp+,9,144,86,9,,,,, +349,45,2,11090,704,1582.925,,,,,,144,86,0,,,,, +349,46,2,11091,716,1582.925,13,64.0,G#4,pp+,9,144,68,9,,,,, +349,35,1,11080,512,1582.965,,,,,,144,83,0,,,,, +349,36,1,11081,512,1582.965,,,,,,144,92,0,,,,, +349,46,2,11091,716,1582.992,,,,,,144,68,0,,,,, +349,47,2,11092,729,1582.992,13,64.0,D6,p-,10,144,86,10,,,,, +349,47,2,11092,729,1583.058,,,,,,144,86,0,,,,, +349,48,2,11093,742,1583.058,26,32.0,A7,p,11,144,105,11,,,,, +349,41,3,11086,512,1583.19,,,,,,144,57,0,,,,, +349,48,2,11093,742,1583.19,,,,,,144,105,0,,,,, +349,49,1,11094,768,1583.19,,,,,,176,102,0,,,,, +349,50,2,11095,768,1583.19,,,,,,176,102,0,,,,, +349,51,3,11096,768,1583.19,,,,,,176,102,0,,,,, +349,52,3,11097,810,1583.404,43,16.0,A#1,ppp,5,144,34,5,,,,, +349,52,3,11097,810,1583.623,,,,,,144,34,0,,,,, +349,53,3,11098,853,1583.623,43,16.0,D4,ppp,5,144,62,5,,,,, +349,53,3,11098,853,1583.842,,,,,,144,62,0,,,,, +349,54,3,11099,896,1583.842,16,32.0,C3,ppp,5,144,48,5,,,,, +349,54,3,11099,896,1583.924,,,,,,144,48,0,,,,, +349,55,3,11100,912,1583.924,17,32.0,F#2,ppp,5,144,42,5,,,,, +349,55,3,11100,912,1584.011,,,,,,144,42,0,,,,, +349,56,3,11101,929,1584.011,18,32.0,B2,ppp,5,144,47,5,,,,, +349,56,3,11101,929,1584.102,,,,,,144,47,0,,,,, +349,57,3,11102,947,1584.102,17,32.0,C3,ppp,5,144,48,5,,,,, +349,57,3,11102,947,1584.189,,,,,,144,48,0,,,,, +349,58,3,11103,964,1584.189,17,32.0,B2,ppp,5,144,47,5,,,,, +349,59,0,11104,981,1584.235,,,,,,176,64,0,,,,,^ +349,63,1,11105,,1584.27,,8.0,G6,ppp,5,144,91,5,,,,g, +349,58,3,11103,964,1584.276,,,,,,144,47,0,,,,, +349,60,3,11106,981,1584.276,43,16.0,F#2,ppp,5,144,42,5,,,,, +349,63,1,11105,,1584.32,,,,,,144,91,0,,,,, +349,64,1,11107,,1584.345,,8.0,E7,ppp,5,144,100,5,,,,g, +349,64,1,11107,,1584.395,,,,,,144,100,0,,,,, +349,65,1,11108,,1584.42,,8.0,C#7,ppp,5,144,97,5,,,,g, +349,65,1,11108,,1584.47,,,,,,144,97,0,,,,, +349,60,3,11106,981,1584.495,,,,,,144,42,0,,,,, +349,61,3,11109,1024,1584.495,85,8.0,A3,pp,8,144,57,8,,,,, +349,66,1,11110,1024,1584.495,128,8.0,G#6,ppp,5,144,92,5,,,,, +349,67,2,11111,1024,1584.495,64,16.0,B5,mp,14,144,83,14,,,,, +349,62,0,11112,1024,1584.535,,,,,,176,64,127,,,,,V +349,67,2,11111,1024,1584.821,,,,,,144,83,0,,,,, +349,68,2,11113,1088,1584.821,32,32.0,G4,p-,10,144,67,10,,,,, +349,69,2,11114,1088,1584.821,32,32.0,B5,p-,10,144,83,10,,,,, +349,61,3,11109,1024,1584.928,,,,,,144,57,0,,,,, +349,70,3,11115,1109,1584.928,85,8.0,A3,pp,8,144,57,8,,,,, +349,71,3,11116,1109,1584.928,128,8.0,F4,pp,8,144,65,8,,,,, +349,68,2,11113,1088,1584.984,,,,,,144,67,0,,,,, +349,69,2,11114,1088,1584.984,,,,,,144,83,0,,,,, +349,72,2,11117,1120,1584.984,32,32.0,G#3,pp,8,144,56,8,,,,, +349,66,1,11110,1024,1585.147,,,,,,144,92,0,,,,, +349,72,2,11117,1120,1585.147,,,,,,144,56,0,,,,, +349,73,1,11118,1152,1585.147,128,8.0,C#7,ppp,5,144,97,5,,,,, +349,74,2,11119,1152,1585.147,,,,,,176,102,0,,,,, +349,70,3,11115,1109,1585.361,,,,,,144,57,0,,,,, +349,75,3,11120,1194,1585.361,28,16.0,A3,pp,8,144,57,8,,,,, +349,71,3,11116,1109,1585.503,,,,,,144,65,0,,,,, +349,75,3,11120,1194,1585.503,,,,,,144,57,0,,,,, +349,76,3,11121,1222,1585.503,28,16.0,F4,pp,8,144,65,8,,,,, +349,76,3,11121,1222,1585.646,,,,,,144,65,0,,,,, +349,77,3,11122,1250,1585.646,30,16.0,E4,mf,17,144,64,17,,,,, +349,78,0,11123,1279,1585.646,,,,,,176,64,0,,,,,^ +349,73,1,11118,1152,1585.799,,,,,,144,97,0,,,,, +349,77,3,11122,1250,1585.799,,,,,,144,64,0,,,,, +350,0,0,11124,0,1585.799,,,,,,,,,350,,,, +350,2,1,11125,0,1585.799,102,8.0,E5,ppp,5,144,76,5,,,,, +350,3,3,11126,0,1585.799,,,,,,176,102,0,,,,, +350,1,0,11127,0,1585.946,,,,,,176,64,127,,,,,V +350,2,1,11125,0,1586.319,,,,,,144,76,0,,,,, +350,4,1,11128,102,1586.319,26,32.0,G#4,pp-,7,144,68,7,,,,, +350,4,1,11128,102,1586.451,,,,,,144,68,0,,,,, +350,5,1,11129,128,1586.451,12,64.0,D6,pp,8,144,86,8,,,,, +350,5,1,11129,128,1586.512,,,,,,144,86,0,,,,, +350,6,1,11130,140,1586.512,13,64.0,G#4,pp,8,144,68,8,,,,, +350,7,0,11131,153,1586.52,,,,,,176,64,0,,,,,^ +350,6,1,11130,140,1586.579,,,,,,144,68,0,,,,, +350,8,1,11132,153,1586.579,103,8.0,A6,pp,8,144,93,8,,,,, +350,9,0,11133,153,1586.579,,,,,,,,,,6027,,, +350,10,0,11134,189,1586.82,,,,,,176,64,127,,,,,V +350,8,1,11132,153,1587.103,,,,,,144,93,0,,,,, +350,11,1,11135,,1587.103,,8.0,D6,mf,17,144,86,17,,,,g, +350,11,1,11135,,1587.153,,,,,,144,86,0,,,,, +350,12,1,11136,,1587.178,,8.0,C#3,mf,17,144,49,17,,,,g, +350,12,1,11136,,1587.228,,,,,,144,49,0,,,,, +350,13,1,11137,256,1587.253,512,2.0,A5,f,20,144,81,20,,,,, +350,14,3,11138,256,1587.253,64,16.0,D5,ppp,5,144,74,5,,,,, +350,14,3,11138,256,1587.579,,,,,,144,74,0,,,,, +350,15,3,11139,320,1587.579,21,32.0,F#3,ppp,5,144,54,5,,,,, +350,15,3,11139,320,1587.686,,,,,,144,54,0,,,,, +350,16,3,11140,341,1587.686,21,32.0,B3,ppp,5,144,59,5,,,,, +350,16,3,11140,341,1587.793,,,,,,144,59,0,,,,, +350,17,3,11141,362,1587.793,22,32.0,C4,ppp,5,144,60,5,,,,, +350,17,3,11141,362,1587.906,,,,,,144,60,0,,,,, +350,18,3,11142,384,1587.906,21,32.0,B3,ppp,5,144,59,5,,,,, +350,18,3,11142,384,1588.013,,,,,,144,59,0,,,,, +350,19,3,11143,405,1588.013,21,32.0,F#3,ppp,5,144,54,5,,,,, +350,19,3,11143,405,1588.12,,,,,,144,54,0,,,,, +350,20,3,11144,426,1588.12,22,32.0,B3,ppp,5,144,59,5,,,,, +350,20,3,11144,426,1588.232,,,,,,144,59,0,,,,, +350,21,3,11145,448,1588.232,21,32.0,A#2,ppp,5,144,46,5,,,,, +350,21,3,11145,448,1588.339,,,,,,144,46,0,,,,, +350,22,3,11146,469,1588.339,21,32.0,C4,ppp,5,144,60,5,,,,, +350,23,0,11147,490,1588.352,,,,,,176,64,0,,,,,^ +350,22,3,11146,469,1588.446,,,,,,144,60,0,,,,, +350,24,3,11148,490,1588.446,22,32.0,B3,ppp,5,144,59,5,,,,, +350,24,3,11148,490,1588.558,,,,,,144,59,0,,,,, +350,26,3,11149,512,1588.558,56,16.0,A#1,p,11,144,34,11,,,,, +350,25,0,11150,512,1588.652,,,,,,176,64,127,,,,,V +350,26,3,11149,512,1588.843,,,,,,144,34,0,,,,, +350,27,3,11151,568,1588.843,57,16.0,D4,p,11,144,62,11,,,,, +350,27,3,11151,568,1589.133,,,,,,144,62,0,,,,, +350,28,3,11152,625,1589.133,57,16.0,F#2,p,11,144,42,11,,,,, +350,28,3,11152,625,1589.424,,,,,,144,42,0,,,,, +350,29,3,11153,682,1589.424,16,64.0,C3,pp,8,144,48,8,,,,, +350,29,3,11153,682,1589.505,,,,,,144,48,0,,,,, +350,30,3,11154,698,1589.505,17,64.0,A#2,pp-,7,144,46,7,,,,, +350,30,3,11154,698,1589.592,,,,,,144,46,0,,,,, +350,31,3,11155,715,1589.592,17,64.0,C3,pp-,7,144,48,7,,,,, +350,31,3,11155,715,1589.679,,,,,,144,48,0,,,,, +350,32,3,11156,732,1589.679,17,64.0,A#2,ppp+,6,144,46,6,,,,, +350,32,3,11156,732,1589.765,,,,,,144,46,0,,,,, +350,33,3,11157,749,1589.765,19,64.0,C3,ppp,5,144,48,5,,,,, +350,34,0,11158,768,1589.819,,,,,,176,64,0,,,,,^ +350,13,1,11137,256,1589.862,,,,,,144,81,0,,,,, +350,33,3,11157,749,1589.862,,,,,,144,48,0,,,,, +350,35,1,11159,768,1589.862,,,,,,176,102,0,,,,, +350,36,3,11160,768,1589.862,42,16.0,D3,ppp-,4,144,50,4,,,,, +350,38,3,11161,810,1590.076,43,16.0,A#0,pp,8,144,22,8,,,,, +350,37,0,11162,810,1590.119,,,,,,176,64,127,,,,,V +350,36,3,11160,768,1590.295,,,,,,144,50,0,,,,, +350,38,3,11161,810,1590.295,,,,,,144,22,0,,,,, +350,39,3,11163,853,1590.295,21,32.0,D3,pp-,7,144,50,7,,,,, +350,39,3,11163,853,1590.402,,,,,,144,50,0,,,,, +350,40,3,11164,874,1590.402,64,16.0,F#1,pp-,7,144,30,7,,,,, +350,40,3,11164,874,1590.728,,,,,,144,30,0,,,,, +350,41,3,11165,938,1590.728,22,32.0,B2,ppp+,6,144,47,6,,,,, +350,41,3,11165,938,1590.84,,,,,,144,47,0,,,,, +350,42,3,11166,960,1590.84,21,32.0,C3,ppp,5,144,48,5,,,,, +350,42,3,11166,960,1590.947,,,,,,144,48,0,,,,, +350,43,3,11167,981,1590.947,21,32.0,B2,ppp,5,144,47,5,,,,, +350,43,3,11167,981,1591.054,,,,,,144,47,0,,,,, +350,44,3,11168,1002,1591.054,22,32.0,A#0,ppp,5,144,22,5,,,,, +350,45,3,11169,1024,1591.166,21,32.0,A#0,,,,,,,,,, +350,44,3,11168,1002,1591.273,,,,,,144,22,0,,,,, +350,46,3,11170,1045,1591.273,21,32.0,C3,ppp-,4,144,48,4,,,,, +350,46,3,11170,1045,1591.38,,,,,,144,48,0,,,,, +350,47,3,11171,1066,1591.38,43,16.0,A#0,ppp-,4,144,22,4,,,,, +350,47,3,11171,1066,1591.599,,,,,,144,22,0,,,,, +350,48,3,11172,1109,1591.599,43,16.0,D2,pppp+,3,144,38,3,,,,, +350,49,0,11173,1131,1591.712,,,,,,176,64,0,,,,,^ +350,48,3,11172,1109,1591.819,,,,,,144,38,0,,,,, +350,50,1,11174,1152,1591.819,64,16.0,A#5,mf,17,144,82,17,,,,, +350,51,3,11175,1152,1591.819,128,8.0,F#1,pppp,2,144,30,2,,,,, +350,50,1,11174,1152,1592.145,,,,,,144,82,0,,,,, +350,52,1,11176,1216,1592.145,64,16.0,F4,mf+,18,144,65,18,,,,, +350,53,1,11177,1216,1592.145,64,16.0,A#5,mf+,18,144,82,18,,,,, +350,54,2,11178,,1592.471,,8.0,A5,mf+,18,144,81,18,,,,g, +350,54,2,11178,,1592.521,,,,,,144,81,0,,,,, +351,0,0,11179,0,1592.546,,,,,,,,,351,,,, +351,1,1,11180,0,1592.546,448,4.0,G3,f,20,144,55,20,,,,, +351,2,1,11181,0,1592.546,256,4.0,F4,,,,,,,,,, +351,3,1,11182,0,1592.546,256,4.0,A#5,,,,,,,,,, +351,4,2,11183,0,1592.546,32,32.0,A5,f,20,144,81,20,,,,, +351,5,3,11184,0,1592.546,,,,,,176,102,0,,,,, +351,6,4,11185,0,1592.546,,,,,,176,102,0,,,,, +350,51,3,11175,1152,1592.696,,,,,,144,30,0,,,,, +351,7,2,11186,32,1592.709,224,8.0,F5,f,20,144,77,20,,,,, +351,8,2,11187,32,1592.709,128,8.0,A5,,,,,,,,,, +351,9,3,11188,76,1592.933,26,32.0,C2,ppp,5,144,36,5,,,,, +351,9,3,11188,76,1593.065,,,,,,144,36,0,,,,, +351,10,3,11189,102,1593.065,26,32.0,E3,ppp,5,144,52,5,,,,, +351,11,0,11190,102,1593.065,,,,,,176,64,127,,,,,V +351,10,3,11189,102,1593.198,,,,,,144,52,0,,,,, +351,12,3,11191,128,1593.198,16,32.0,A#3,ppp,5,144,58,5,,,,, +351,12,3,11191,128,1593.279,,,,,,144,58,0,,,,, +351,13,3,11192,144,1593.279,18,32.0,E3,ppp,5,144,52,5,,,,, +351,13,3,11192,144,1593.371,,,,,,144,52,0,,,,, +351,14,3,11193,162,1593.371,17,32.0,A#3,ppp,5,144,58,5,,,,, +351,14,3,11193,162,1593.458,,,,,,144,58,0,,,,, +351,15,3,11194,179,1593.458,25,32.0,C2,ppp,5,144,36,5,,,,, +351,15,3,11194,179,1593.585,,,,,,144,36,0,,,,, +351,16,3,11195,204,1593.585,26,32.0,A#3,ppp+,6,144,58,6,,,,, +351,16,3,11195,204,1593.718,,,,,,144,58,0,,,,, +351,17,3,11196,230,1593.718,26,32.0,G#1,ppp+,6,144,32,6,,,,, +351,17,3,11196,230,1593.85,,,,,,144,32,0,,,,, +351,18,3,11197,256,1593.85,25,32.0,F2,pp-,7,144,41,7,,,,, +351,19,2,11198,256,1593.85,192,8.0,F5,,,,,,,,,, +351,20,2,11199,256,1593.85,128,8.0,A5,,,,,,,,,, +351,21,4,11200,256,1593.85,,,,,,176,102,0,,,,, +351,18,3,11197,256,1593.977,,,,,,144,41,0,,,,, +351,22,3,11201,281,1593.977,16,32.0,E3,pp-,7,144,52,7,,,,, +351,22,3,11201,281,1594.059,,,,,,144,52,0,,,,, +351,23,3,11202,297,1594.059,18,32.0,G#1,pp,8,144,32,8,,,,, +350,52,1,11176,1216,1594.075,,,,,,144,65,0,,,,, +350,53,1,11177,1216,1594.075,,,,,,144,82,0,,,,, +351,4,2,11183,0,1594.088,,,,,,144,81,0,,,,, +351,23,3,11202,297,1594.151,,,,,,144,32,0,,,,, +351,24,3,11203,315,1594.151,17,32.0,F2,pp,8,144,41,8,,,,, +351,25,3,11204,332,1594.237,26,32.0,F2,,,,,,,,,, +351,24,3,11203,315,1594.37,,,,,,144,41,0,,,,, +351,31,0,11205,358,1594.37,,,,,,176,64,0,,,,,^ +351,26,3,11206,358,1594.37,26,32.0,G#1,f,20,144,32,20,,,,, +351,27,3,11207,358,1594.37,32,32.0,C2,f,20,144,36,20,,,,, +351,28,3,11208,358,1594.37,32,32.0,F2,f,20,144,41,20,,,,, +351,29,3,11209,358,1594.37,32,32.0,E3,f,20,144,52,20,,,,, +351,30,3,11210,358,1594.37,32,32.0,A#3,f,20,144,58,20,,,,, +351,26,3,11206,358,1594.502,,,,,,144,32,0,,,,, +351,32,3,11211,384,1594.502,,,,,,176,102,0,,,,, +351,33,4,11212,384,1594.502,21,32.0,F#1,ppp,5,144,30,5,,,,, +351,27,3,11207,358,1594.533,,,,,,144,36,0,,,,, +351,28,3,11208,358,1594.533,,,,,,144,41,0,,,,, +351,29,3,11209,358,1594.533,,,,,,144,52,0,,,,, +351,30,3,11210,358,1594.533,,,,,,144,58,0,,,,, +351,33,4,11212,384,1594.609,,,,,,144,30,0,,,,, +351,34,4,11213,405,1594.609,21,32.0,C2,ppp,5,144,36,5,,,,, +351,34,4,11213,405,1594.716,,,,,,144,36,0,,,,, +351,35,4,11214,426,1594.716,22,32.0,B1,p,11,144,35,11,,,,, +351,7,2,11186,32,1594.828,,,,,,144,77,0,,,,, +351,35,4,11214,426,1594.828,,,,,,144,35,0,,,,, +351,36,1,11215,448,1594.828,,,,,,176,102,0,,,,, +351,37,2,11216,448,1594.828,,,,,,176,102,0,,,,, +351,38,4,11217,448,1594.828,21,32.0,C2,p,11,144,36,11,,,,, +351,1,1,11180,0,1594.903,,,,,,144,55,0,,,,, +351,39,4,11218,469,1594.935,21,32.0,B1,p,11,144,35,11,,,,, +351,39,4,11218,469,1595.042,,,,,,144,35,0,,,,, +351,40,4,11219,490,1595.042,22,32.0,A#0,p,11,144,22,11,,,,, +351,38,4,11217,448,1595.085,,,,,,144,36,0,,,,, +351,44,1,11220,512,1595.154,,,,,,176,102,0,,,,, +351,45,2,11221,512,1595.154,,,,,,176,102,0,,,,, +351,42,1,11222,,1595.154,,8.0,A#4,p,11,144,70,11,,,,g, +351,42,1,11222,,1595.204,,,,,,144,70,0,,,,, +351,43,1,11223,,1595.229,,8.0,F4,p,11,144,65,11,,,,g, +351,43,1,11223,,1595.279,,,,,,144,65,0,,,,, +351,46,3,11224,512,1595.304,28,32.0,B1,p,11,144,35,11,,,,, +351,47,4,11225,512,1595.304,768,2.0,A#0,,,,,,,,,, +351,41,0,11226,512,1595.304,,,,,,176,64,127,,,,,V +351,46,3,11224,512,1595.447,,,,,,144,35,0,,,,, +351,48,3,11227,540,1595.447,28,32.0,D3,p,11,144,50,11,,,,, +351,48,3,11227,540,1595.59,,,,,,144,50,0,,,,, +351,49,3,11228,568,1595.59,29,32.0,F#3,p+,12,144,54,12,,,,, +351,49,3,11228,568,1595.738,,,,,,144,54,0,,,,, +351,50,3,11229,597,1595.738,16,64.0,B1,mp,14,144,35,14,,,,, +351,50,3,11229,597,1595.819,,,,,,144,35,0,,,,, +351,51,3,11230,613,1595.819,17,64.0,D3,mp+,15,144,50,15,,,,, +351,51,3,11230,613,1595.906,,,,,,144,50,0,,,,, +351,52,3,11231,630,1595.906,17,64.0,F3,mf-,16,144,53,16,,,,, +351,52,3,11231,630,1595.992,,,,,,144,53,0,,,,, +351,53,3,11232,647,1595.992,17,64.0,F#3,mf-,16,144,54,16,,,,, +351,53,3,11232,647,1596.079,,,,,,144,54,0,,,,, +351,54,3,11233,664,1596.079,18,64.0,F3,mf,17,144,53,17,,,,, +351,54,3,11233,664,1596.171,,,,,,144,53,0,,,,, +351,57,3,11234,,1596.171,,8.0,F4,f,20,144,65,20,,,,g, +351,57,3,11234,,1596.221,,,,,,144,65,0,,,,, +351,55,3,11235,682,1596.246,29,32.0,A#3,f,20,144,58,20,,,,, +351,56,1,11236,704,1596.358,32,32.0,D6,f,20,144,86,20,,,,, +351,58,3,11237,711,1596.393,18,32.0,F3,f,20,144,53,20,,,,, +351,59,3,11238,711,1596.393,32,32.0,C#4,f,20,144,61,20,,,,, +351,55,3,11235,682,1596.393,,,,,,144,58,0,,,,, +351,58,3,11237,711,1596.485,,,,,,144,53,0,,,,, +351,60,3,11239,729,1596.485,19,32.0,A#3,mp,14,144,58,14,,,,, +351,56,1,11236,704,1596.521,,,,,,144,86,0,,,,, +351,61,1,11240,736,1596.521,16,64.0,A5,p,11,144,81,11,,,,, +351,59,3,11238,711,1596.556,,,,,,144,61,0,,,,, +351,62,3,11241,748,1596.582,20,32.0,F3,pp,8,144,53,8,,,,, +351,60,3,11239,729,1596.582,,,,,,144,58,0,,,,, +351,63,1,11242,752,1596.602,16,64.0,C#3,ppp-,4,144,49,4,,,,, +351,61,1,11240,736,1596.602,,,,,,144,81,0,,,,, +351,62,3,11241,748,1596.684,,,,,,144,53,0,,,,, +351,63,1,11242,752,1596.684,,,,,,144,49,0,,,,, +351,64,3,11243,768,1596.684,21,32.0,A#4,pp,8,144,70,8,,,,, +351,65,3,11244,768,1596.684,32,32.0,A#5,pp,8,144,82,8,,,,, +351,66,0,11245,768,1596.684,,,,,,,,,,,44,, +351,67,1,11246,768,1596.684,32,32.0,G4,mp+,15,144,67,15,,,,, +351,64,3,11243,768,1596.791,,,,,,144,70,0,,,,, +351,68,3,11247,789,1596.796,21,32.0,F2,pp,8,144,41,8,,,,, +351,65,3,11244,768,1596.847,,,,,,144,82,0,,,,, +351,67,1,11246,768,1596.854,,,,,,144,67,0,,,,, +351,69,1,11248,800,1596.854,224,8.0,F5,f,20,144,77,20,,,,, +351,68,3,11247,789,1596.908,,,,,,144,41,0,,,,, +351,70,3,11249,810,1596.908,22,32.0,C2,pp-,7,144,36,7,,,,, +351,70,3,11249,810,1597.025,,,,,,144,36,0,,,,, +351,71,3,11250,832,1597.025,21,32.0,A#4,ppp+,6,144,70,6,,,,, +351,71,3,11250,832,1597.137,,,,,,144,70,0,,,,, +351,72,3,11251,853,1597.137,21,32.0,F2,ppp+,6,144,41,6,,,,, +351,72,3,11251,853,1597.248,,,,,,144,41,0,,,,, +351,73,3,11252,874,1597.248,22,32.0,C2,ppp,5,144,36,5,,,,, +351,73,3,11252,874,1597.366,,,,,,144,36,0,,,,, +351,74,3,11253,896,1597.366,32,32.0,A#3,ppp-,4,144,58,4,,,,, +351,74,3,11253,896,1597.536,,,,,,144,58,0,,,,, +351,75,3,11254,928,1597.536,32,32.0,F2,pppp+,3,144,41,3,,,,, +351,75,3,11254,928,1597.707,,,,,,144,41,0,,,,, +351,76,3,11255,960,1597.707,64,16.0,C2,pppp,2,144,36,2,,,,, +351,76,3,11255,960,1598.047,,,,,,144,36,0,,,,, +351,77,1,11256,1024,1598.047,,,,,,176,102,0,,,,, +351,78,3,11257,1024,1598.047,,,,,,176,102,0,,,,, +351,69,1,11248,800,1598.047,,,,,,144,77,0,,,,, +352,0,0,11258,0,1599.411,,,,,,,,,352,,,, +352,1,1,11259,0,1599.411,,,,,,176,102,0,,,,, +352,2,3,11260,0,1599.411,,,,,,176,102,0,,,,, +352,3,4,11261,0,1599.411,1024,1.0,A#0,,,,,,,,,, +352,4,3,11262,768,1603.502,256,4.0,A3,pp,8,144,57,8,,,,, +352,5,0,11263,1024,1604.866,,,,,,176,64,0,,,,,^ +352,6,3,11264,1024,1604.866,256,4.0,A3,,,,,,,,,, +352,7,4,11265,1024,1604.866,256,4.0,A#0,,,,,,,,,, +353,0,0,11266,0,1606.229,,,,,,,,,353,,,, +353,1,0,11267,0,1606.229,,,,,,,,,,6028,,, +353,3,1,11268,,1606.229,,8.0,G#3,p,11,144,56,11,,,,g, +352,4,3,11262,768,1606.229,,,,,,144,57,0,,,,, +353,3,1,11268,,1606.279,,,,,,144,56,0,,,,, +353,4,1,11269,,1606.304,,8.0,C6,mp,14,144,84,14,,,,g, +353,4,1,11269,,1606.354,,,,,,144,84,0,,,,, +353,5,1,11270,0,1606.379,85,8.0,C#7,mf,17,144,97,17,,,,, +353,6,3,11271,0,1606.379,64,16.0,F2,ppp,5,144,41,5,,,,, +353,2,0,11272,0,1606.379,,,,,,176,64,127,,,,,V +351,40,4,11219,490,1606.411,,,,,,144,22,0,,,,, +353,6,3,11271,0,1606.72,,,,,,144,41,0,,,,, +353,7,3,11273,64,1606.72,32,32.0,C2,ppp-,4,144,36,4,,,,, +353,8,1,11274,85,1606.832,21,32.0,D5,mp,14,144,74,14,,,,, +353,5,1,11270,0,1606.832,,,,,,144,97,0,,,,, +353,7,3,11273,64,1606.891,,,,,,144,36,0,,,,, +353,9,3,11275,96,1606.891,32,32.0,F2,ppp-,4,144,41,4,,,,, +353,8,1,11274,85,1606.944,,,,,,144,74,0,,,,, +353,10,1,11276,106,1606.944,22,32.0,E6,p,11,144,88,11,,,,, +353,9,3,11275,96,1607.061,,,,,,144,41,0,,,,, +353,10,1,11276,106,1607.061,,,,,,144,88,0,,,,, +353,11,1,11277,128,1607.061,32,32.0,D4,p,11,144,62,11,,,,, +353,12,3,11278,128,1607.061,128,8.0,E3,ppp-,4,144,52,4,,,,, +353,11,1,11277,128,1607.232,,,,,,144,62,0,,,,, +353,13,1,11279,160,1607.232,32,32.0,G#2,p-,10,144,44,10,,,,, +353,14,1,11280,192,1607.402,32,32.0,C6,pp,8,144,84,8,,,,, +353,13,1,11279,160,1607.477,,,,,,144,44,0,,,,, +353,14,1,11280,192,1607.572,,,,,,144,84,0,,,,, +353,15,1,11281,224,1607.572,32,32.0,E6,ppp,5,144,88,5,,,,, +353,15,1,11281,224,1607.743,,,,,,144,88,0,,,,, +353,16,1,11282,256,1607.743,,,,,,176,102,0,,,,, +353,17,3,11283,256,1607.743,256,4.0,A1,pppp,2,144,33,2,,,,, +353,12,3,11278,128,1607.818,,,,,,144,52,0,,,,, +353,18,0,11284,339,1608.185,,,,,,176,64,0,,,,,^ +353,19,0,11285,407,1608.547,,,,,,176,64,127,,,,,V +353,20,1,11286,,1608.957,,8.0,G#1,ppp,5,144,32,5,,,,g, +353,20,1,11286,,1609.007,,,,,,144,32,0,,,,, +353,21,1,11287,,1609.032,,8.0,C#6,ppp,5,144,85,5,,,,g, +353,21,1,11287,,1609.082,,,,,,144,85,0,,,,, +353,17,3,11283,256,1609.107,,,,,,144,33,0,,,,, +353,22,1,11288,512,1609.107,256,4.0,C5,ppp,5,144,72,5,,,,, +353,23,3,11289,512,1609.107,,,,,,176,102,0,,,,, +353,24,1,11290,768,1610.47,85,16.0,E5,p-,10,144,76,10,,,,, +353,22,1,11288,512,1610.92,,,,,,144,72,0,,,,, +353,24,1,11290,768,1610.923,,,,,,144,76,0,,,,, +353,25,1,11291,853,1610.923,28,32.0,C5,p,11,144,72,11,,,,, +353,25,1,11291,853,1611.072,,,,,,144,72,0,,,,, +353,26,1,11292,881,1611.072,29,32.0,E5,p+,12,144,76,12,,,,, +353,26,1,11292,881,1611.227,,,,,,144,76,0,,,,, +353,27,1,11293,910,1611.227,57,16.0,D3,p+,12,144,50,12,,,,, +353,27,1,11293,910,1611.53,,,,,,144,50,0,,,,, +353,28,1,11294,967,1611.53,28,32.0,C#6,mp-,13,144,85,13,,,,, +353,28,1,11294,967,1611.679,,,,,,144,85,0,,,,, +353,29,1,11295,995,1611.679,29,32.0,D3,mp,14,144,50,14,,,,, +353,30,0,11296,1024,1611.684,,,,,,176,64,0,,,,,^ +353,29,1,11295,995,1611.834,,,,,,144,50,0,,,,, +353,32,1,11297,1024,1611.834,,,,,,176,102,0,,,,, +353,33,3,11298,1024,1611.834,28,32.0,G#2,mp,14,144,44,14,,,,, +353,33,3,11298,1024,1611.983,,,,,,144,44,0,,,,, +353,34,3,11299,1052,1611.983,28,32.0,C#5,mp,14,144,73,14,,,,, +353,31,0,11300,1024,1611.984,,,,,,176,64,127,,,,,V +353,34,3,11299,1052,1612.132,,,,,,144,73,0,,,,, +353,35,3,11301,1080,1612.132,114,8.0,C4,mp+,15,144,60,15,,,,, +353,35,3,11301,1080,1612.739,,,,,,144,60,0,,,,, +353,36,3,11302,1194,1612.739,57,16.0,E4,mf+,18,144,64,18,,,,, +353,36,3,11302,1194,1613.043,,,,,,144,64,0,,,,, +353,37,3,11303,1251,1613.043,29,32.0,D3,f,20,144,50,20,,,,, +353,38,0,11304,1279,1613.045,,,,,,176,64,0,,,,,^ +353,37,3,11303,1251,1613.197,,,,,,144,50,0,,,,, +354,0,0,11305,0,1613.197,,,,,,,,,354,,,, +354,1,0,11306,0,1613.197,,,,,,,,,,6029,,, +354,3,1,11307,0,1613.197,256,4.0,C4,p,11,144,60,11,,,,, +354,4,1,11308,0,1613.197,256,4.0,E4,p,11,144,64,11,,,,, +354,5,1,11309,0,1613.197,256,4.0,C#5,p,11,144,73,11,,,,, +354,6,2,11310,0,1613.197,,,,,,176,102,0,,,,, +354,7,3,11311,0,1613.197,170,4.0,D#1,f,20,144,27,20,,,,, +354,8,4,11312,0,1613.197,256,4.0,G#1,p,11,144,32,11,,,,, +354,9,4,11313,0,1613.197,256,4.0,D2,p,11,144,38,11,,,,, +354,2,0,11314,0,1613.345,,,,,,176,64,127,,,,,V +354,10,2,11315,128,1613.879,128,8.0,G#3,ff,22,144,56,22,,,,, +354,7,3,11311,0,1614.103,,,,,,144,27,0,,,,, +354,11,3,11316,170,1614.103,22,32.0,A#2,f+,21,144,46,21,,,,, +354,11,3,11316,170,1614.22,,,,,,144,46,0,,,,, +354,12,3,11317,192,1614.22,21,32.0,C#2,ff,22,144,37,22,,,,, +354,12,3,11317,192,1614.332,,,,,,144,37,0,,,,, +354,13,3,11318,213,1614.332,21,32.0,D#1,ff+,23,144,27,23,,,,, +354,13,3,11318,213,1614.444,,,,,,144,27,0,,,,, +354,14,0,11319,234,1614.444,,,,,,176,64,0,,,,,^ +354,15,3,11320,234,1614.444,22,32.0,A#2,fff,24,144,46,23,,,,, +354,3,1,11307,0,1614.561,,,,,,144,60,0,,,,, +354,4,1,11308,0,1614.561,,,,,,144,64,0,,,,, +354,5,1,11309,0,1614.561,,,,,,144,73,0,,,,, +354,8,4,11312,0,1614.561,,,,,,144,32,0,,,,, +354,9,4,11313,0,1614.561,,,,,,144,38,0,,,,, +354,15,3,11320,234,1614.561,,,,,,144,46,0,,,,, +354,16,1,11321,256,1614.561,64,16.0,C4,fff,24,144,60,23,,,,, +354,17,1,11322,256,1614.561,64,16.0,E4,fff,24,144,64,23,,,,, +354,18,1,11323,256,1614.561,64,16.0,C#5,fff,24,144,73,23,,,,, +354,19,2,11324,256,1614.561,,,,,,176,102,0,,,,, +354,20,3,11325,256,1614.561,,,,,,176,102,0,,,,, +354,21,4,11326,256,1614.561,64,16.0,G#1,fff,24,144,32,23,,,,, +354,22,4,11327,256,1614.561,64,16.0,C#2,fff,24,144,37,23,,,,, +354,10,2,11315,128,1614.561,,,,,,144,56,0,,,,, +354,24,2,11328,298,1614.785,86,8.0,G#3,mf,17,144,56,17,,,,, +354,25,3,11329,298,1614.785,22,32.0,A#2,p,11,144,46,11,,,,, +354,23,0,11330,298,1614.785,,,,,,176,64,127,,,,,V +354,16,1,11321,256,1614.902,,,,,,144,60,0,,,,, +354,17,1,11322,256,1614.902,,,,,,144,64,0,,,,, +354,18,1,11323,256,1614.902,,,,,,144,73,0,,,,, +354,21,4,11326,256,1614.902,,,,,,144,32,0,,,,, +354,22,4,11327,256,1614.902,,,,,,144,37,0,,,,, +354,25,3,11329,298,1614.902,,,,,,144,46,0,,,,, +354,26,1,11331,320,1614.902,,,,,,176,102,0,,,,, +354,27,3,11332,320,1614.902,21,32.0,C#2,p-,10,144,37,10,,,,, +354,28,4,11333,320,1614.902,,,,,,176,102,0,,,,, +354,27,3,11332,320,1615.014,,,,,,144,37,0,,,,, +354,29,3,11334,341,1615.014,21,32.0,D#1,pp,8,144,27,8,,,,, +354,29,3,11334,341,1615.126,,,,,,144,27,0,,,,, +354,30,3,11335,362,1615.126,22,32.0,A#2,pp-,7,144,46,7,,,,, +354,30,3,11335,362,1615.243,,,,,,144,46,0,,,,, +354,31,2,11336,384,1615.243,128,8.0,G#3,,,,,,,,,, +354,32,3,11337,384,1615.243,,,,,,176,102,0,,,,, +354,33,1,11338,512,1615.925,,,,,,176,102,0,,,,, +354,34,2,11339,512,1615.925,256,4.0,G#3,,,,,,,,,, +354,35,3,11340,512,1615.925,,,,,,176,102,0,,,,, +354,36,4,11341,512,1615.925,,,,,,176,102,0,,,,, +354,37,1,11342,768,1617.288,,,,,,176,102,0,,,,, +354,38,2,11343,768,1617.288,1024,1.0,G#3,,,,,,,,,, +354,39,3,11344,768,1617.288,,,,,,176,102,0,,,,, +354,40,4,11345,768,1617.288,,,,,,176,102,0,,,,, +354,41,0,11346,1791,1622.59,,,,,,176,64,0,,,,,^ +355,0,0,11347,0,1622.743,,,,,,,,,355,,,, +355,2,1,11348,0,1622.743,,,,,,176,102,0,,,,, +355,3,2,11349,0,1622.743,384,4.0,G#3,,,,,,,,,, +355,4,3,11350,0,1622.743,170,4.0,F#4,f,20,144,66,20,,,,, +355,1,0,11351,0,1622.89,,,,,,176,64,127,,,,,V +355,4,3,11350,0,1623.648,,,,,,144,66,0,,,,, +355,5,3,11352,170,1623.648,342,2.0,B0,ff,22,144,23,22,,,,, +355,6,3,11353,170,1623.648,512,2.0,F#4,ff,22,144,66,22,,,,, +355,7,1,11354,256,1624.107,,,,,,176,102,0,,,,, +355,8,2,11355,384,1624.788,128,8.0,G#3,p,11,144,56,11,,,,, +355,9,2,11356,384,1624.788,128,8.0,C5,p,11,144,72,11,,,,, +354,24,2,11328,298,1625.238,,,,,,144,56,0,,,,, +355,5,3,11352,170,1625.47,,,,,,144,23,0,,,,, +355,6,3,11353,170,1625.47,,,,,,144,66,0,,,,, +355,10,1,11357,512,1625.47,,,,,,176,102,0,,,,, +355,11,2,11358,512,1625.47,512,2.0,G#3,,,,,,,,,, +355,12,2,11359,512,1625.47,512,2.0,C5,,,,,,,,,, +355,13,3,11360,512,1625.47,512,2.0,B0,fff,24,144,23,23,,,,, +355,14,3,11361,512,1625.47,512,2.0,D4,fff,24,144,62,23,,,,, +355,15,3,11362,512,1625.47,512,2.0,F#4,fff,24,144,66,23,,,,, +355,16,1,11363,682,1626.376,342,2.0,F3,pp,8,144,53,8,,,,, +355,8,2,11355,384,1628.197,,,,,,144,56,0,,,,, +355,9,2,11356,384,1628.197,,,,,,144,72,0,,,,, +355,16,1,11363,682,1628.197,,,,,,144,53,0,,,,, +356,0,0,11364,0,1628.197,,,,,,,,,356,,,, +356,1,1,11365,0,1628.197,,,,,,176,102,0,,,,, +356,2,2,11366,0,1628.197,192,8.0,F6,mp,14,144,89,14,,,,, +356,3,3,11367,0,1628.197,128,8.0,B0,,,,,,,,,, +356,4,3,11368,0,1628.197,128,8.0,D4,,,,,,,,,, +356,5,3,11369,0,1628.197,128,8.0,F#4,,,,,,,,,, +356,6,4,11370,0,1628.197,170,4.0,F3,ppp,5,144,53,5,,,,, +356,10,0,11371,149,1628.852,,,,,,176,64,0,,,,,^ +355,13,3,11360,512,1628.879,,,,,,144,23,0,,,,, +355,14,3,11361,512,1628.879,,,,,,144,62,0,,,,, +355,15,3,11362,512,1628.879,,,,,,144,66,0,,,,, +356,7,1,11372,128,1628.879,21,32.0,D4,fff,24,144,62,23,,,,, +356,8,1,11373,128,1628.879,32,32.0,F#4,fff,24,144,66,23,,,,, +356,9,3,11374,128,1628.879,,,,,,176,102,0,,,,, +356,7,1,11372,128,1628.991,,,,,,144,62,0,,,,, +356,11,1,11375,149,1628.991,21,32.0,F4,fff,24,144,65,23,,,,, +356,8,1,11373,128,1629.05,,,,,,144,66,0,,,,, +356,13,0,11376,166,1629.082,,,,,,176,64,0,,,,,^ +356,6,4,11370,0,1629.103,,,,,,144,53,0,,,,, +356,11,1,11375,149,1629.103,,,,,,144,65,0,,,,, +356,15,1,11377,,1629.103,,8.0,B2,ff,22,144,47,22,,,,g, +356,12,0,11378,153,1629.152,,,,,,176,64,127,,,,,V +356,15,1,11377,,1629.153,,,,,,144,47,0,,,,, +356,16,1,11379,,1629.178,,8.0,D3,f-,19,144,50,19,,,,g, +356,2,2,11366,0,1629.22,,,,,,144,89,0,,,,, +356,16,1,11379,,1629.228,,,,,,144,50,0,,,,, +356,17,1,11380,,1629.253,,8.0,F#3,mf-,16,144,54,16,,,,g, +356,17,1,11380,,1629.303,,,,,,144,54,0,,,,, +356,18,1,11381,,1629.328,,8.0,F3,mp,14,144,53,14,,,,g, +356,18,1,11381,,1629.378,,,,,,144,53,0,,,,, +356,19,1,11382,,1629.403,,8.0,A#4,p,11,144,70,11,,,,g, +356,19,1,11382,,1629.453,,,,,,144,70,0,,,,, +356,20,1,11383,170,1629.478,86,8.0,F#2,p-,10,144,42,10,,,,, +356,21,4,11384,170,1629.478,22,32.0,F3,mf,17,144,53,17,,,,, +356,14,0,11385,170,1629.478,,,,,,176,64,127,,,,,V +356,21,4,11384,170,1629.595,,,,,,144,53,0,,,,, +356,22,2,11386,192,1629.595,32,32.0,F6,mp,14,144,89,14,,,,, +356,23,4,11387,192,1629.595,21,32.0,G2,pp,8,144,43,8,,,,, +356,23,4,11387,192,1629.707,,,,,,144,43,0,,,,, +356,24,4,11388,213,1629.707,21,32.0,F3,pp-,7,144,53,7,,,,, +356,22,2,11386,192,1629.766,,,,,,144,89,0,,,,, +356,25,2,11389,224,1629.766,32,32.0,E5,mp+,15,144,76,15,,,,, +356,24,4,11388,213,1629.819,,,,,,144,53,0,,,,, +356,26,4,11390,234,1629.819,22,32.0,G2,ppp,5,144,43,5,,,,, +356,20,1,11383,170,1629.936,,,,,,144,42,0,,,,, +356,25,2,11389,224,1629.936,,,,,,144,76,0,,,,, +356,26,4,11390,234,1629.936,,,,,,144,43,0,,,,, +356,27,1,11391,256,1629.936,,,,,,176,102,0,,,,, +356,28,2,11392,256,1629.936,32,32.0,E5,mf-,16,144,76,16,,,,, +356,29,3,11393,256,1629.936,,,,,,176,102,0,,,,, +356,30,4,11394,256,1629.936,,,,,,176,102,0,,,,, +356,28,2,11392,256,1630.107,,,,,,144,76,0,,,,, +356,31,2,11395,288,1630.107,32,32.0,A#4,mf-,16,144,70,16,,,,, +356,31,2,11395,288,1630.277,,,,,,144,70,0,,,,, +356,32,2,11396,320,1630.277,21,32.0,C#5,mf,17,144,73,17,,,,, +356,32,2,11396,320,1630.389,,,,,,144,73,0,,,,, +356,33,2,11397,341,1630.389,21,32.0,A#4,mf,17,144,70,17,,,,, +356,34,4,11398,341,1630.389,171,4.0,G#2,ppp-,4,144,44,4,,,,, +356,33,2,11397,341,1630.501,,,,,,144,70,0,,,,, +356,35,2,11399,362,1630.501,22,32.0,C#5,mf+,18,144,73,18,,,,, +356,35,2,11399,362,1630.618,,,,,,144,73,0,,,,, +356,36,2,11400,384,1630.618,21,32.0,E5,mf+,18,144,76,18,,,,, +356,37,3,11401,384,1630.618,128,8.0,A2,mf,17,144,45,17,,,,, +356,38,3,11402,384,1630.618,128,8.0,G#3,mf,17,144,56,17,,,,, +356,39,3,11403,384,1630.618,128,8.0,C5,mf,17,144,72,17,,,,, +356,36,2,11400,384,1630.73,,,,,,144,76,0,,,,, +356,40,2,11404,405,1630.73,21,32.0,C#5,f-,19,144,73,19,,,,, +356,40,2,11404,405,1630.842,,,,,,144,73,0,,,,, +356,41,2,11405,426,1630.842,22,32.0,A#3,f-,19,144,58,19,,,,, +356,41,2,11405,426,1630.959,,,,,,144,58,0,,,,, +356,42,2,11406,448,1630.959,64,16.0,C#5,f,20,144,73,20,,,,, +356,43,0,11407,512,1631.15,,,,,,176,64,0,,,,,^ +356,45,1,11408,512,1631.3,,,,,,176,102,0,,,,, +356,46,2,11409,512,1631.3,192,8.0,C#5,,,,,,,,,, +356,47,3,11410,512,1631.3,384,4.0,A2,,,,,,,,,, +356,48,3,11411,512,1631.3,256,4.0,G#3,,,,,,,,,, +356,49,3,11412,512,1631.3,256,4.0,C5,,,,,,,,,, +356,50,4,11413,512,1631.3,21,32.0,F#2,mp,14,144,42,14,,,,, +356,34,4,11398,341,1631.3,,,,,,144,44,0,,,,, +356,50,4,11413,512,1631.412,,,,,,144,42,0,,,,, +356,51,4,11414,533,1631.412,64,16.0,B1,p+,12,144,35,12,,,,, +356,44,0,11415,512,1631.45,,,,,,176,64,127,,,,,V +356,51,4,11414,533,1631.752,,,,,,144,35,0,,,,, +356,52,4,11416,597,1631.752,14,32.0,F#2,pp-,7,144,42,7,,,,, +356,52,4,11416,597,1631.827,,,,,,144,42,0,,,,, +356,53,4,11417,611,1631.827,14,32.0,B0,ppp+,6,144,23,6,,,,, +356,53,4,11417,611,1631.902,,,,,,144,23,0,,,,, +356,54,4,11418,625,1631.902,15,32.0,F2,ppp,5,144,41,5,,,,, +356,55,4,11419,640,1631.982,128,8.0,F2,,,,,,,,,, +356,56,2,11420,704,1632.322,21,32.0,F7,p,11,144,101,11,,,,, +356,42,2,11406,448,1632.322,,,,,,144,73,0,,,,, +356,56,2,11420,704,1632.434,,,,,,144,101,0,,,,, +356,57,2,11421,725,1632.434,21,32.0,E5,mp-,13,144,76,13,,,,, +356,57,2,11421,725,1632.546,,,,,,144,76,0,,,,, +356,58,2,11422,746,1632.546,22,32.0,C#5,mp+,15,144,73,15,,,,, +356,58,2,11422,746,1632.663,,,,,,144,73,0,,,,, +356,59,2,11423,768,1632.663,21,32.0,E5,mf-,16,144,76,16,,,,, +356,60,4,11424,768,1632.663,,,,,,176,102,0,,,,, +356,54,4,11418,625,1632.663,,,,,,144,41,0,,,,, +356,38,3,11402,384,1632.663,,,,,,144,56,0,,,,, +356,39,3,11403,384,1632.663,,,,,,144,72,0,,,,, +356,59,2,11423,768,1632.775,,,,,,144,76,0,,,,, +356,61,2,11425,789,1632.775,21,32.0,A#3,mf+,18,144,58,18,,,,, +356,61,2,11425,789,1632.887,,,,,,144,58,0,,,,, +356,62,2,11426,810,1632.887,22,32.0,C#4,f,20,144,61,20,,,,, +356,62,2,11426,810,1633.004,,,,,,144,61,0,,,,, +356,63,0,11427,832,1633.004,,,,,,176,64,0,,,,,^ +356,64,2,11428,832,1633.004,,,,,,176,102,0,,,,, +356,66,2,11429,896,1633.345,64,16.0,D4,ff,22,144,62,22,,,,, +356,67,2,11430,896,1633.345,64,16.0,C#5,ff,22,144,73,22,,,,, +356,68,3,11431,896,1633.345,64,16.0,A2,ff,22,144,45,22,,,,, +356,69,3,11432,896,1633.345,64,16.0,G#3,ff,22,144,56,22,,,,, +356,70,4,11433,896,1633.345,,,,,,176,102,0,,,,, +356,65,0,11434,896,1633.345,,,,,,176,64,127,,,,,V +356,37,3,11401,384,1633.345,,,,,,144,45,0,,,,, +356,66,2,11429,896,1633.686,,,,,,144,62,0,,,,, +356,67,2,11430,896,1633.686,,,,,,144,73,0,,,,, +356,68,3,11431,896,1633.686,,,,,,144,45,0,,,,, +356,69,3,11432,896,1633.686,,,,,,144,56,0,,,,, +356,71,2,11435,960,1633.686,64,16.0,D4,ff,22,144,62,22,,,,, +356,72,2,11436,960,1633.686,64,16.0,C#5,ff,22,144,73,22,,,,, +356,73,2,11437,960,1633.686,64,16.0,E5,ff,22,144,76,22,,,,, +356,74,3,11438,960,1633.686,64,16.0,A2,ff,22,144,45,22,,,,, +356,75,3,11439,960,1633.686,64,16.0,G#3,ff,22,144,56,22,,,,, +356,71,2,11435,960,1634.027,,,,,,144,62,0,,,,, +356,72,2,11436,960,1634.027,,,,,,144,73,0,,,,, +356,73,2,11437,960,1634.027,,,,,,144,76,0,,,,, +356,74,3,11438,960,1634.027,,,,,,144,45,0,,,,, +356,75,3,11439,960,1634.027,,,,,,144,56,0,,,,, +357,2,0,11440,0,1634.027,,,,,,,,,357,,,, +357,5,2,11441,,1634.027,,8.0,A#3,p,11,144,58,11,,,,g, +357,5,2,11441,,1634.077,,,,,,144,58,0,,,,, +357,6,2,11442,,1634.102,,8.0,E6,p+,12,144,88,12,,,,g, +357,6,2,11442,,1634.152,,,,,,144,88,0,,,,, +357,7,2,11443,,1634.177,,8.0,F7,mp-,13,144,101,13,,,,g, +357,7,2,11443,,1634.227,,,,,,144,101,0,,,,, +357,8,2,11444,,1634.252,,8.0,E6,mp-,13,144,88,13,,,,g, +357,8,2,11444,,1634.302,,,,,,144,88,0,,,,, +357,0,3,11445,0,1634.327,21,32.0,G#4,ff,22,144,68,22,,,,, +357,3,1,11446,0,1634.327,32,32.0,C#6,ff,22,144,85,22,,,,, +357,0,3,11445,0,1634.439,,,,,,144,68,0,,,,, +357,1,3,11447,21,1634.439,21,32.0,A3,ff,22,144,57,22,,,,, +357,3,1,11446,0,1634.497,,,,,,144,85,0,,,,, +357,4,1,11448,32,1634.497,32,32.0,A#4,ff,22,144,70,22,,,,, +357,1,3,11447,21,1634.551,,,,,,144,57,0,,,,, +357,10,3,11449,42,1634.551,14,32.0,C6,f+,21,144,84,21,,,,, +357,10,3,11449,42,1634.625,,,,,,144,84,0,,,,, +357,11,3,11450,56,1634.625,14,32.0,G#4,mf+,18,144,68,18,,,,, +357,4,1,11448,32,1634.668,,,,,,144,70,0,,,,, +357,12,1,11451,64,1634.668,,,,,,176,102,0,,,,, +357,11,3,11450,56,1634.7,,,,,,144,68,0,,,,, +357,13,3,11452,70,1634.7,15,32.0,C6,mp+,15,144,84,15,,,,, +357,13,3,11452,70,1634.78,,,,,,144,84,0,,,,, +357,14,3,11453,85,1634.78,21,32.0,E6,p+,12,144,88,12,,,,, +357,15,0,11454,106,1634.792,,,,,,176,64,0,,,,,^ +357,14,3,11453,85,1634.892,,,,,,144,88,0,,,,, +357,16,3,11455,106,1634.892,11,64.0,D5,pp,8,144,74,8,,,,, +357,16,3,11455,106,1634.95,,,,,,144,74,0,,,,, +357,17,3,11456,117,1634.95,11,64.0,E6,pp,8,144,88,8,,,,, +357,18,0,11457,117,1634.95,,,,,,,,,,6030,,, +357,17,3,11456,117,1635.009,,,,,,144,88,0,,,,, +357,9,2,11458,,1635.009,,8.0,F7,f+,21,144,101,21,,,,g, +357,9,2,11458,,1635.059,,,,,,144,101,0,,,,, +357,20,3,11459,,1635.084,,8.0,A1,f,20,144,33,20,,,,g, +357,19,0,11460,125,1635.092,,,,,,176,64,127,,,,,V +357,20,3,11459,,1635.134,,,,,,144,33,0,,,,, +357,21,3,11461,128,1635.159,128,8.0,G#2,f,20,144,44,20,,,,, +357,22,1,11462,256,1635.841,,,,,,176,102,0,,,,, +357,23,3,11463,256,1635.841,128,8.0,C4,mf-,16,144,60,16,,,,, +357,21,3,11461,128,1635.991,,,,,,144,44,0,,,,, +357,24,3,11464,384,1636.522,85,8.0,C4,,,,,,,,,, +357,23,3,11463,256,1636.975,,,,,,144,60,0,,,,, +357,25,3,11465,469,1636.975,43,16.0,A1,pp+,9,144,33,9,,,,, +357,25,3,11465,469,1637.204,,,,,,144,33,0,,,,, +357,26,1,11466,512,1637.204,,,,,,176,102,0,,,,, +357,27,3,11467,512,1637.204,21,32.0,G#2,pp,8,144,44,8,,,,, +357,27,3,11467,512,1637.316,,,,,,144,44,0,,,,, +357,28,3,11468,533,1637.316,21,32.0,C4,pp-,7,144,60,7,,,,, +357,28,3,11468,533,1637.428,,,,,,144,60,0,,,,, +357,29,3,11469,554,1637.428,22,32.0,A0,pp-,7,144,21,7,,,,, +357,29,3,11469,554,1637.545,,,,,,144,21,0,,,,, +357,30,3,11470,576,1637.545,21,32.0,G#1,ppp+,6,144,32,6,,,,, +357,30,3,11470,576,1637.657,,,,,,144,32,0,,,,, +357,31,3,11471,597,1637.657,11,64.0,C3,ppp,5,144,48,5,,,,, +357,31,3,11471,597,1637.716,,,,,,144,48,0,,,,, +357,32,3,11472,608,1637.716,32,32.0,A0,ppp,5,144,21,5,,,,, +357,33,3,11473,640,1637.886,384,4.0,A0,,,,,,,,,, +358,0,0,11474,0,1639.932,,,,,,,,,358,,,, +358,1,1,11475,0,1639.932,,,,,,176,102,0,,,,, +358,2,3,11476,0,1639.932,512,2.0,A0,,,,,,,,,, +357,32,3,11472,608,1642.659,,,,,,144,21,0,,,,, +358,3,1,11477,512,1642.659,,,,,,176,102,0,,,,, +358,4,3,11478,512,1642.659,,,,,,176,102,0,,,,, +358,5,3,11479,554,1642.883,22,32.0,C3,mf,17,144,48,17,,,,, +358,5,3,11479,554,1643.0,,,,,,144,48,0,,,,, +358,6,3,11480,576,1643.0,21,32.0,D2,mf-,16,144,38,16,,,,, +358,6,3,11480,576,1643.112,,,,,,144,38,0,,,,, +358,7,3,11481,597,1643.112,85,8.0,E3,mf-,16,144,52,16,,,,, +358,8,1,11482,640,1643.341,,,,,,176,102,0,,,,, +358,9,3,11483,682,1643.564,,,,,,176,102,0,,,,, +358,7,3,11481,597,1643.564,,,,,,144,52,0,,,,, +358,10,1,11484,704,1643.682,21,32.0,G#6,mp-,13,144,92,13,,,,, +358,10,1,11484,704,1643.793,,,,,,144,92,0,,,,, +358,11,1,11485,725,1643.793,21,32.0,A5,p+,12,144,81,12,,,,, +358,11,1,11485,725,1643.905,,,,,,144,81,0,,,,, +358,12,1,11486,746,1643.905,22,32.0,D7,p+,12,144,98,12,,,,, +358,12,1,11486,746,1644.022,,,,,,144,98,0,,,,, +358,13,1,11487,768,1644.022,21,32.0,C8,p,11,144,108,11,,,,, +358,14,3,11488,768,1644.022,,,,,,176,102,0,,,,, +358,13,1,11487,768,1644.134,,,,,,144,108,0,,,,, +358,15,1,11489,789,1644.134,32,32.0,G#5,p,11,144,80,11,,,,, +358,15,1,11489,789,1644.305,,,,,,144,80,0,,,,, +358,16,1,11490,821,1644.305,32,32.0,C7,p-,10,144,96,10,,,,, +358,16,1,11490,821,1644.475,,,,,,144,96,0,,,,, +358,17,1,11491,853,1644.475,21,32.0,G#5,pp+,9,144,80,9,,,,, +358,17,1,11491,853,1644.587,,,,,,144,80,0,,,,, +358,18,1,11492,874,1644.587,22,32.0,A4,pp,8,144,69,8,,,,, +358,18,1,11492,874,1644.704,,,,,,144,69,0,,,,, +358,19,1,11493,896,1644.704,21,32.0,D6,pp,8,144,86,8,,,,, +358,19,1,11493,896,1644.816,,,,,,144,86,0,,,,, +358,20,1,11494,917,1644.816,21,32.0,C7,pp-,7,144,96,7,,,,, +358,20,1,11494,917,1644.928,,,,,,144,96,0,,,,, +358,21,1,11495,938,1644.928,22,32.0,E7,ppp+,6,144,100,6,,,,, +358,21,1,11495,938,1645.045,,,,,,144,100,0,,,,, +358,22,1,11496,960,1645.045,32,32.0,D6,ppp+,6,144,86,6,,,,, +358,22,1,11496,960,1645.216,,,,,,144,86,0,,,,, +358,23,1,11497,992,1645.216,32,32.0,E7,ppp,5,144,100,5,,,,, +358,24,0,11498,1023,1645.381,,,,,,176,64,0,,,,,^ +358,23,1,11497,992,1645.386,,,,,,144,100,0,,,,, +359,1,0,11499,0,1645.386,,,,,,,,,359,,,, +359,0,3,11500,0,1645.386,,,,,,176,102,0,,,,, +359,2,0,11501,0,1645.386,,,,,,,,,,6031,,, +359,3,1,11502,0,1645.386,,,,,,176,102,0,,,,, +359,5,1,11503,85,1645.839,43,16.0,D2,mf,17,144,38,17,,,,, +359,4,0,11504,85,1645.839,,,,,,176,64,127,,,,,V +359,5,1,11503,85,1646.068,,,,,,144,38,0,,,,, +359,6,3,11505,128,1646.068,128,8.0,G#2,pp,8,144,44,8,,,,, +359,7,1,11506,128,1646.068,42,16.0,A#3,mp,14,144,58,14,,,,, +359,7,1,11506,128,1646.292,,,,,,144,58,0,,,,, +359,8,1,11507,170,1646.292,28,16.0,F3,p+,12,144,53,12,,,,, +359,8,1,11507,170,1646.441,,,,,,144,53,0,,,,, +359,9,1,11508,198,1646.441,28,16.0,D3,p-,10,144,50,10,,,,, +359,9,1,11508,198,1646.59,,,,,,144,50,0,,,,, +359,10,1,11509,226,1646.59,30,16.0,A#3,pp,8,144,58,8,,,,, +359,10,1,11509,226,1646.75,,,,,,144,58,0,,,,, +359,11,1,11510,256,1646.75,,,,,,176,102,0,,,,, +359,12,3,11511,256,1646.75,768,2.0,G#2,,,,,,,,,, +359,13,1,11512,,1647.432,,8.0,E4,pp,8,144,64,8,,,,g, +359,13,1,11512,,1647.482,,,,,,144,64,0,,,,, +359,14,1,11513,384,1647.507,76,16.0,A1,pp+,9,144,33,9,,,,, +359,14,1,11513,384,1647.911,,,,,,144,33,0,,,,, +359,15,1,11514,460,1647.911,26,32.0,F4,mp,14,144,65,14,,,,, +359,15,1,11514,460,1648.05,,,,,,144,65,0,,,,, +359,16,1,11515,486,1648.05,26,32.0,E3,mf-,16,144,52,16,,,,, +359,16,1,11515,486,1648.188,,,,,,144,52,0,,,,, +359,17,1,11516,512,1648.188,38,32.0,A2,mf,17,144,45,17,,,,, +359,17,1,11516,512,1648.391,,,,,,144,45,0,,,,, +359,18,1,11517,550,1648.391,26,32.0,F5,f,20,144,77,20,,,,, +359,18,1,11517,550,1648.529,,,,,,144,77,0,,,,, +359,19,1,11518,576,1648.529,38,32.0,A#2,f,20,144,46,20,,,,, +359,19,1,11518,576,1648.732,,,,,,144,46,0,,,,, +359,20,1,11519,614,1648.732,26,32.0,C#3,f,20,144,49,20,,,,, +359,20,1,11519,614,1648.87,,,,,,144,49,0,,,,, +359,21,1,11520,640,1648.87,25,32.0,A#2,mf,17,144,46,17,,,,, +359,21,1,11520,640,1649.003,,,,,,144,46,0,,,,, +359,22,1,11521,665,1649.003,13,64.0,E4,mp,14,144,64,14,,,,, +359,22,1,11521,665,1649.073,,,,,,144,64,0,,,,, +359,23,1,11522,678,1649.073,13,64.0,F4,mp-,13,144,65,13,,,,, +359,23,1,11522,678,1649.142,,,,,,144,65,0,,,,, +359,24,1,11523,691,1649.142,25,32.0,E4,p+,12,144,64,12,,,,, +359,24,1,11523,691,1649.275,,,,,,144,64,0,,,,, +359,25,1,11524,716,1649.275,16,32.0,A#2,pp+,9,144,46,9,,,,, +359,25,1,11524,716,1649.36,,,,,,144,46,0,,,,, +359,26,1,11525,732,1649.36,18,32.0,C#4,pp-,7,144,61,7,,,,, +359,26,1,11525,732,1649.456,,,,,,144,61,0,,,,, +359,27,1,11526,750,1649.456,18,32.0,A#2,ppp,5,144,46,5,,,,, +359,27,1,11526,750,1649.552,,,,,,144,46,0,,,,, +359,28,1,11527,768,1649.552,,,,,,176,102,0,,,,, +360,0,0,11528,0,1650.916,,,,,,,,,360,,,, +360,1,0,11529,0,1650.916,,,,,,176,64,0,,,,,^ +360,2,1,11530,0,1650.916,,,,,,176,102,0,,,,, +360,3,3,11531,0,1650.916,256,4.0,G#2,,,,,,,,,, +360,5,1,11532,256,1652.279,38,32.0,G#1,pp,8,144,32,8,,,,, +360,6,3,11533,256,1652.279,256,4.0,G#2,,,,,,,,,, +360,4,0,11534,256,1652.279,,,,,,176,64,127,,,,,V +360,5,1,11532,256,1652.482,,,,,,144,32,0,,,,, +360,7,1,11535,294,1652.482,38,32.0,C5,p-,10,144,72,10,,,,, +360,7,1,11535,294,1652.684,,,,,,144,72,0,,,,, +360,8,1,11536,332,1652.684,26,32.0,D3,p+,12,144,50,12,,,,, +360,8,1,11536,332,1652.823,,,,,,144,50,0,,,,, +360,9,1,11537,358,1652.823,26,32.0,G#2,mp,14,144,44,14,,,,, +360,9,1,11537,358,1652.961,,,,,,144,44,0,,,,, +360,10,1,11538,384,1652.961,25,32.0,C4,mf-,16,144,60,16,,,,, +360,10,1,11538,384,1653.094,,,,,,144,60,0,,,,, +360,11,1,11539,409,1653.094,26,32.0,D3,mf,17,144,50,17,,,,, +360,11,1,11539,409,1653.233,,,,,,144,50,0,,,,, +360,12,1,11540,435,1653.233,25,32.0,C5,f-,19,144,72,19,,,,, +360,12,1,11540,435,1653.366,,,,,,144,72,0,,,,, +360,13,1,11541,460,1653.366,39,32.0,E5,f,20,144,76,20,,,,, +359,6,3,11505,128,1653.568,,,,,,144,44,0,,,,, +360,13,1,11541,460,1653.574,,,,,,144,76,0,,,,, +360,14,1,11542,499,1653.574,13,64.0,D3,mf-,16,144,50,16,,,,, +360,15,1,11543,512,1653.643,25,32.0,D3,,,,,,,,,, +360,16,3,11544,512,1653.643,,,,,,176,102,0,,,,, +360,14,1,11542,499,1653.776,,,,,,144,50,0,,,,, +360,17,1,11545,537,1653.776,26,32.0,E5,p,11,144,76,11,,,,, +360,18,0,11546,540,1653.792,,,,,,176,64,0,,,,,^ +360,19,3,11547,540,1653.792,,,,,,176,102,0,,,,, +360,17,1,11545,537,1653.915,,,,,,144,76,0,,,,, +360,20,1,11548,563,1653.915,,,,,,176,102,0,,,,, +360,21,3,11549,583,1654.021,42,32.0,A0,ppp,5,144,21,5,,,,, +360,21,3,11549,583,1654.245,,,,,,144,21,0,,,,, +360,22,3,11550,625,1654.245,43,32.0,E1,ppp+,6,144,28,6,,,,, +360,23,1,11551,640,1654.325,128,8.0,C4,p,11,144,60,11,,,,, +360,22,3,11550,625,1654.474,,,,,,144,28,0,,,,, +360,24,3,11552,668,1654.474,43,32.0,A#0,ppp+,6,144,22,6,,,,, +360,24,3,11552,668,1654.703,,,,,,144,22,0,,,,, +360,25,3,11553,711,1654.703,28,32.0,F1,pp-,7,144,29,7,,,,, +360,25,3,11553,711,1654.852,,,,,,144,29,0,,,,, +360,26,3,11554,739,1654.852,29,32.0,E1,pp-,7,144,28,7,,,,, +360,23,1,11551,640,1655.007,,,,,,144,60,0,,,,, +360,26,3,11554,739,1655.007,,,,,,144,28,0,,,,, +360,27,3,11555,768,1655.007,42,32.0,A#0,pp,8,144,22,8,,,,, +360,28,1,11556,768,1655.007,64,16.0,A1,pp,8,144,33,8,,,,, +360,27,3,11555,768,1655.23,,,,,,144,22,0,,,,, +360,30,3,11557,810,1655.23,43,32.0,F1,pp,8,144,29,8,,,,, +360,29,0,11558,810,1655.23,,,,,,176,64,127,,,,,V +360,28,1,11556,768,1655.347,,,,,,144,33,0,,,,, +360,31,1,11559,832,1655.347,21,32.0,E4,ppp,5,144,64,5,,,,, +360,30,3,11557,810,1655.459,,,,,,144,29,0,,,,, +360,31,1,11559,832,1655.459,,,,,,144,64,0,,,,, +360,32,3,11560,853,1655.459,43,32.0,C#1,pp+,9,144,25,9,,,,, +360,33,1,11561,853,1655.459,21,32.0,D3,ppp-,4,144,50,4,,,,, +360,33,1,11561,853,1655.571,,,,,,144,50,0,,,,, +360,34,1,11562,874,1655.571,22,32.0,E4,pppp,2,144,64,2,,,,, +360,32,3,11560,853,1655.688,,,,,,144,25,0,,,,, +360,34,1,11562,874,1655.688,,,,,,144,64,0,,,,, +360,35,3,11563,896,1655.688,28,32.0,A0,p-,10,144,21,10,,,,, +360,36,1,11564,896,1655.688,,,,,,176,102,0,,,,, +360,35,3,11563,896,1655.837,,,,,,144,21,0,,,,, +360,37,3,11565,924,1655.837,28,32.0,F1,p-,10,144,29,10,,,,, +360,37,3,11565,924,1655.987,,,,,,144,29,0,,,,, +360,38,3,11566,952,1655.987,43,32.0,E1,p-,10,144,28,10,,,,, +360,38,3,11566,952,1656.216,,,,,,144,28,0,,,,, +360,39,3,11567,995,1656.216,29,32.0,A#0,p,11,144,22,11,,,,, +360,39,3,11567,995,1656.37,,,,,,144,22,0,,,,, +361,0,0,11568,0,1656.37,,,,,,,,,361,,,, +361,1,1,11569,0,1656.37,,,,,,176,102,0,,,,, +361,2,3,11570,0,1656.37,28,32.0,F1,mp,14,144,29,14,,,,, +361,2,3,11570,0,1656.519,,,,,,144,29,0,,,,, +361,3,3,11571,28,1656.519,28,32.0,C#1,mf-,16,144,25,16,,,,, +361,3,3,11571,28,1656.668,,,,,,144,25,0,,,,, +361,4,3,11572,56,1656.668,29,32.0,A#0,mf,17,144,22,17,,,,, +361,4,3,11572,56,1656.823,,,,,,144,22,0,,,,, +361,5,3,11573,85,1656.823,18,32.0,F1,f-,19,144,29,19,,,,, +361,5,3,11573,85,1656.919,,,,,,144,29,0,,,,, +361,6,3,11574,103,1656.919,19,32.0,E1,f,20,144,28,20,,,,, +361,6,3,11574,103,1657.02,,,,,,144,28,0,,,,, +361,7,3,11575,122,1657.02,20,32.0,C#1,f+,21,144,25,21,,,,, +361,7,3,11575,122,1657.127,,,,,,144,25,0,,,,, +361,8,3,11576,142,1657.127,18,32.0,A#0,ff,22,144,22,22,,,,, +361,8,3,11576,142,1657.222,,,,,,144,22,0,,,,, +361,9,3,11577,160,1657.222,39,16.0,A0,ff,22,144,21,22,,,,, +361,9,3,11577,160,1657.43,,,,,,144,21,0,,,,, +361,10,3,11578,199,1657.43,28,32.0,A1,f-,19,144,33,19,,,,, +361,10,3,11578,199,1657.579,,,,,,144,33,0,,,,, +361,11,3,11579,227,1657.579,29,32.0,E3,mf-,16,144,52,16,,,,, +361,11,3,11579,227,1657.734,,,,,,144,52,0,,,,, +361,12,3,11580,256,1657.734,28,32.0,A#2,mp,14,144,46,14,,,,, +361,12,3,11580,256,1657.883,,,,,,144,46,0,,,,, +361,13,3,11581,284,1657.883,18,32.0,F5,p,11,144,77,11,,,,, +361,13,3,11581,284,1657.979,,,,,,144,77,0,,,,, +361,14,3,11582,302,1657.979,19,32.0,E4,p-,10,144,64,10,,,,, +361,14,3,11582,302,1658.08,,,,,,144,64,0,,,,, +361,15,0,11583,321,1658.08,,,,,,176,64,0,,,,,^ +361,16,3,11584,321,1658.08,20,32.0,C#4,pp,8,144,61,8,,,,, +361,16,3,11584,321,1658.187,,,,,,144,61,0,,,,, +361,17,3,11585,341,1658.187,,,,,,176,102,0,,,,, +361,18,0,11586,341,1658.187,,,,,,,,,,6032,,, +361,20,1,11587,384,1658.416,64,16.0,A0,pp,8,144,21,8,,,,, +361,19,0,11588,384,1658.416,,,,,,176,64,127,,,,,V +361,21,1,11589,448,1658.757,64,16.0,D2,pp,8,144,38,8,,,,, +361,21,1,11589,448,1659.097,,,,,,144,38,0,,,,, +361,22,1,11590,512,1659.097,,,,,,176,102,0,,,,, +361,23,3,11591,512,1659.097,,,,,,176,102,0,,,,, +361,20,1,11587,384,1659.132,,,,,,144,21,0,,,,, +361,24,1,11592,768,1660.461,,,,,,176,102,0,,,,, +361,25,3,11593,768,1660.461,32,32.0,G#1,mf,17,144,32,17,,,,, +361,25,3,11593,768,1660.632,,,,,,144,32,0,,,,, +361,26,3,11594,800,1660.632,32,32.0,C3,f-,19,144,48,19,,,,, +361,26,3,11594,800,1660.802,,,,,,144,48,0,,,,, +361,27,3,11595,832,1660.802,21,32.0,G#1,f,20,144,32,20,,,,, +361,27,3,11595,832,1660.914,,,,,,144,32,0,,,,, +361,28,3,11596,853,1660.914,21,32.0,C3,ff,22,144,48,22,,,,, +361,28,3,11596,853,1661.026,,,,,,144,48,0,,,,, +361,29,3,11597,874,1661.026,22,32.0,E3,ff+,23,144,52,23,,,,, +361,29,3,11597,874,1661.143,,,,,,144,52,0,,,,, +361,30,3,11598,896,1661.143,14,64.0,G#1,fff,24,144,32,23,,,,, +361,30,3,11598,896,1661.217,,,,,,144,32,0,,,,, +361,31,3,11599,910,1661.217,14,64.0,A0,fff,24,144,21,23,,,,, +361,31,3,11599,910,1661.292,,,,,,144,21,0,,,,, +361,32,3,11600,924,1661.292,14,64.0,D2,ff,22,144,38,22,,,,, +361,32,3,11600,924,1661.367,,,,,,144,38,0,,,,, +361,33,3,11601,938,1661.367,43,32.0,G#1,f,20,144,32,20,,,,, +361,33,3,11601,938,1661.596,,,,,,144,32,0,,,,, +361,34,3,11602,981,1661.596,14,64.0,C3,mp-,13,144,48,13,,,,, +361,34,3,11602,981,1661.67,,,,,,144,48,0,,,,, +361,35,3,11603,995,1661.67,29,32.0,E3,p,11,144,52,11,,,,, +362,0,0,11604,0,1661.825,,,,,,,,,362,,,, +362,1,1,11605,0,1661.825,,,,,,176,102,0,,,,, +362,2,2,11606,0,1661.825,,,,,,176,102,0,,,,, +362,3,3,11607,0,1661.825,384,4.0,E3,,,,,,,,,, +362,4,4,11608,0,1661.825,,,,,,176,102,0,,,,, +362,5,0,11609,384,1663.87,,,,,,176,64,0,,,,,^ +362,6,3,11610,384,1663.87,128,8.0,E3,,,,,,,,,, +362,11,4,11611,,1664.552,,8.0,D5,pp,8,144,74,8,,,,g, +362,11,4,11611,,1664.602,,,,,,144,74,0,,,,, +362,8,1,11612,512,1664.627,56,16.0,C#7,ppp,5,144,97,5,,,,, +362,9,2,11613,512,1664.627,21,32.0,E5,ppp,5,144,76,5,,,,, +362,10,3,11614,512,1664.627,512,2.0,E3,,,,,,,,,, +362,12,4,11615,512,1664.627,512,2.0,E4,pp,8,144,64,8,,,,, +362,7,0,11616,512,1664.627,,,,,,176,64,127,,,,,V +362,9,2,11613,512,1664.739,,,,,,144,76,0,,,,, +362,13,2,11617,533,1664.739,21,32.0,F#4,ppp+,6,144,66,6,,,,, +362,13,2,11617,533,1664.851,,,,,,144,66,0,,,,, +362,14,2,11618,554,1664.851,22,32.0,B5,pp-,7,144,83,7,,,,, +362,15,1,11619,568,1664.925,57,16.0,F#5,pp,8,144,78,8,,,,, +362,8,1,11612,512,1664.925,,,,,,144,97,0,,,,, +362,14,2,11618,554,1664.968,,,,,,144,83,0,,,,, +362,16,2,11620,576,1664.968,21,32.0,D6,pp,8,144,86,8,,,,, +362,16,2,11620,576,1665.08,,,,,,144,86,0,,,,, +362,17,2,11621,597,1665.08,21,32.0,B5,p-,10,144,83,10,,,,, +362,17,2,11621,597,1665.192,,,,,,144,83,0,,,,, +362,18,2,11622,618,1665.192,22,32.0,A#3,p,11,144,58,11,,,,, +362,15,1,11619,568,1665.229,,,,,,144,78,0,,,,, +362,19,1,11623,625,1665.229,57,16.0,C#7,p,11,144,97,11,,,,, +362,18,2,11622,618,1665.309,,,,,,144,58,0,,,,, +362,20,2,11624,640,1665.309,128,8.0,B5,p+,12,144,83,12,,,,, +362,21,1,11625,682,1665.533,86,16.0,F#5,mp,14,144,78,14,,,,, +362,19,1,11623,625,1665.533,,,,,,144,97,0,,,,, +362,22,1,11626,768,1665.991,85,8.0,F#5,,,,,,,,,, +362,23,2,11627,768,1665.991,,,,,,176,102,0,,,,, +362,20,2,11624,640,1665.991,,,,,,144,83,0,,,,, +362,21,1,11625,682,1666.443,,,,,,144,78,0,,,,, +362,24,1,11628,853,1666.443,171,4.0,B7,ppp,5,144,107,5,,,,, +362,24,1,11628,853,1667.354,,,,,,144,107,0,,,,, +363,0,0,11629,0,1667.354,,,,,,,,,363,,,, +363,1,1,11630,0,1667.354,85,8.0,A5,ppp,5,144,81,5,,,,, +363,2,3,11631,0,1667.354,,,,,,176,102,0,,,,, +363,3,4,11632,0,1667.354,,,,,,176,102,0,,,,, +362,12,4,11615,512,1667.354,,,,,,144,64,0,,,,, +361,35,3,11603,995,1667.729,,,,,,144,52,0,,,,, +363,1,1,11630,0,1667.807,,,,,,144,81,0,,,,, +363,4,1,11633,85,1667.807,171,4.0,F6,ppp,5,144,89,5,,,,, +363,5,1,11634,256,1668.718,256,4.0,F6,,,,,,,,,, +363,4,1,11633,85,1670.082,,,,,,144,89,0,,,,, +363,6,1,11635,512,1670.082,16,64.0,C8,ppp,5,144,108,5,,,,, +363,7,3,11636,512,1670.082,51,16.0,F7,ppp,5,144,101,5,,,,, +363,8,4,11637,512,1670.082,384,4.0,G3,f,20,144,55,20,,,,, +363,9,4,11638,512,1670.082,256,4.0,C#4,pp,8,144,61,8,,,,, +363,10,4,11639,512,1670.082,256,4.0,B4,pp,8,144,71,8,,,,, +363,6,1,11635,512,1670.167,,,,,,144,108,0,,,,, +363,11,1,11640,528,1670.167,16,64.0,F#7,ppp,5,144,102,5,,,,, +363,11,1,11640,528,1670.252,,,,,,144,102,0,,,,, +363,12,1,11641,544,1670.252,16,64.0,D#7,ppp,5,144,99,5,,,,, +363,12,1,11641,544,1670.337,,,,,,144,99,0,,,,, +363,13,1,11642,560,1670.337,16,64.0,F#7,ppp,5,144,102,5,,,,, +363,14,3,11643,563,1670.353,25,32.0,C#6,ppp,5,144,85,5,,,,, +363,7,3,11636,512,1670.353,,,,,,144,101,0,,,,, +363,13,1,11642,560,1670.422,,,,,,144,102,0,,,,, +363,15,1,11644,576,1670.422,48,32.0,B7,ppp,5,144,107,5,,,,, +363,14,3,11643,563,1670.486,,,,,,144,85,0,,,,, +363,16,3,11645,588,1670.486,26,32.0,A5,ppp,5,144,81,5,,,,, +363,16,3,11645,588,1670.625,,,,,,144,81,0,,,,, +363,17,3,11646,614,1670.625,16,32.0,D6,ppp,5,144,86,5,,,,, +363,15,1,11644,576,1670.678,,,,,,144,107,0,,,,, +363,18,1,11647,624,1670.678,16,64.0,G7,ppp,5,144,103,5,,,,, +363,17,3,11646,614,1670.71,,,,,,144,86,0,,,,, +363,19,3,11648,630,1670.71,18,32.0,C#6,ppp,5,144,85,5,,,,, +363,18,1,11647,624,1670.763,,,,,,144,103,0,,,,, +363,20,1,11649,640,1670.763,,,,,,176,102,0,,,,, +363,19,3,11648,630,1670.806,,,,,,144,85,0,,,,, +363,21,3,11650,648,1670.806,17,32.0,A4,ppp,5,144,69,5,,,,, +363,21,3,11650,648,1670.897,,,,,,144,69,0,,,,, +363,22,3,11651,665,1670.897,26,32.0,D6,ppp,5,144,86,5,,,,, +363,22,3,11651,665,1671.035,,,,,,144,86,0,,,,, +363,23,3,11652,691,1671.035,77,16.0,G#7,ppp,5,144,104,5,,,,, +363,9,4,11638,512,1671.445,,,,,,144,61,0,,,,, +363,10,4,11639,512,1671.445,,,,,,144,71,0,,,,, +363,23,3,11652,691,1671.445,,,,,,144,104,0,,,,, +363,24,1,11653,768,1671.445,,,,,,176,102,0,,,,, +363,25,3,11654,768,1671.445,,,,,,176,102,0,,,,, +363,8,4,11637,512,1672.127,,,,,,144,55,0,,,,, +363,26,3,11655,896,1672.127,51,16.0,G#1,p,11,144,32,11,,,,, +363,27,4,11656,896,1672.127,128,8.0,B4,ppp,5,144,71,5,,,,, +363,26,3,11655,896,1672.399,,,,,,144,32,0,,,,, +363,28,3,11657,947,1672.399,25,32.0,G2,pp,8,144,43,8,,,,, +363,28,3,11657,947,1672.532,,,,,,144,43,0,,,,, +363,29,3,11658,972,1672.532,52,16.0,G#1,ppp,5,144,32,5,,,,, +363,30,0,11659,984,1672.55,,,,,,176,64,0,,,,,^ +363,27,4,11656,896,1672.809,,,,,,144,71,0,,,,, +363,29,3,11658,972,1672.809,,,,,,144,32,0,,,,, +364,0,0,11660,0,1672.809,,,,,,,,,364,,,, +364,1,1,11661,0,1672.809,,,,,,176,102,0,,,,, +364,2,3,11662,0,1672.809,,,,,,176,102,0,,,,, +364,3,4,11663,,1672.809,,8.0,C#3,pppp,2,144,49,2,,,,g, +363,31,0,11664,1023,1672.85,,,,,,176,64,127,,,,,V +364,3,4,11663,,1672.859,,,,,,144,49,0,,,,, +364,4,4,11665,0,1672.884,256,4.0,F1,pppp,2,144,29,2,,,,, +364,4,4,11665,0,1674.247,,,,,,144,29,0,,,,, +364,5,1,11666,256,1674.247,,,,,,176,102,0,,,,, +364,6,3,11667,256,1674.247,,,,,,176,102,0,,,,, +364,7,4,11668,256,1674.247,,,,,,176,102,0,,,,, +364,8,3,11669,307,1674.519,51,16.0,F4,ppp,5,144,65,5,,,,, +364,9,1,11670,341,1674.7,64,16.0,B6,ppp,5,144,95,5,,,,, +364,8,3,11669,307,1674.791,,,,,,144,65,0,,,,, +364,10,3,11671,358,1674.791,26,32.0,D4,ppp,5,144,62,5,,,,, +364,10,3,11671,358,1674.929,,,,,,144,62,0,,,,, +364,11,3,11672,384,1674.929,25,32.0,C#4,ppp,5,144,61,5,,,,, +364,9,1,11670,341,1675.041,,,,,,144,95,0,,,,, +364,12,1,11673,405,1675.041,21,32.0,A4,ppp,5,144,69,5,,,,, +364,11,3,11672,384,1675.062,,,,,,144,61,0,,,,, +364,13,3,11674,409,1675.062,34,16.0,A3,ppp,5,144,57,5,,,,, +364,12,1,11673,405,1675.153,,,,,,144,69,0,,,,, +364,14,1,11675,426,1675.153,14,32.0,F5,ppp+,6,144,77,6,,,,, +364,14,1,11675,426,1675.228,,,,,,144,77,0,,,,, +364,15,1,11676,440,1675.228,14,32.0,C#6,ppp+,6,144,85,6,,,,, +364,16,3,11677,443,1675.244,34,16.0,D4,ppp,5,144,62,5,,,,, +364,13,3,11674,409,1675.244,,,,,,144,57,0,,,,, +364,15,1,11676,440,1675.302,,,,,,144,85,0,,,,, +364,17,1,11678,454,1675.302,14,32.0,F5,pp-,7,144,77,7,,,,, +364,17,1,11678,454,1675.377,,,,,,144,77,0,,,,, +364,18,1,11679,468,1675.377,14,32.0,C#6,pp-,7,144,85,7,,,,, +364,19,3,11680,477,1675.425,35,16.0,G#4,ppp,5,144,68,5,,,,, +364,16,3,11677,443,1675.425,,,,,,144,62,0,,,,, +364,18,1,11679,468,1675.451,,,,,,144,85,0,,,,, +364,20,1,11681,482,1675.451,30,16.0,F#4,pp,8,144,66,8,,,,, +364,21,0,11682,494,1675.515,,,,,,176,64,0,,,,,^ +364,19,3,11680,477,1675.611,,,,,,144,68,0,,,,, +364,20,1,11681,482,1675.611,,,,,,144,66,0,,,,, +364,22,3,11683,512,1675.611,76,16.0,G#3,p,11,144,56,11,,,,, +364,26,1,11684,,1675.611,,8.0,B5,pp,8,144,83,8,,,,g, +364,26,1,11684,,1675.661,,,,,,144,83,0,,,,, +364,23,1,11685,512,1675.686,256,4.0,C#5,f,20,144,73,20,,,,, +364,24,1,11686,512,1675.686,256,4.0,D6,f,20,144,86,20,,,,, +364,25,4,11687,512,1675.686,,,,,,176,102,0,,,,, +364,22,3,11683,512,1676.016,,,,,,144,56,0,,,,, +364,27,3,11688,588,1676.091,52,16.0,A5,mp,14,144,81,14,,,,, +364,27,3,11688,588,1676.368,,,,,,144,81,0,,,,, +364,28,3,11689,640,1676.368,128,8.0,E5,mf,17,144,76,17,,,,, +364,29,0,11690,640,1676.368,,,,,,,,,,6033,,, +364,23,1,11685,512,1677.05,,,,,,144,73,0,,,,, +364,24,1,11686,512,1677.05,,,,,,144,86,0,,,,, +364,28,3,11689,640,1677.05,,,,,,144,76,0,,,,, +364,30,0,11691,768,1677.157,,,,,,,,,,,38,, +364,32,1,11692,768,1677.157,,,,,,176,102,0,,,,, +364,33,3,11693,768,1677.157,,,,,,176,102,0,,,,, +364,34,4,11694,768,1677.157,256,4.0,D#1,ppp,5,144,27,5,,,,, +364,35,4,11695,768,1677.157,256,4.0,E3,f,20,144,52,20,,,,, +364,36,4,11696,768,1677.157,256,4.0,F#3,mp,14,144,54,14,,,,, +364,31,0,11697,768,1677.157,,,,,,176,64,127,,,,,V +365,4,0,11698,0,1678.736,,,,,,,,,365,,,, +365,0,3,11699,0,1678.736,,,,,,176,102,0,,,,, +365,1,4,11700,0,1678.736,768,2.0,D#1,,,,,,,,,, +365,2,4,11701,0,1678.736,512,2.0,E3,,,,,,,,,, +365,3,4,11702,0,1678.736,512,2.0,F#3,,,,,,,,,, +365,5,1,11703,0,1678.736,25,32.0,F6,pppp,2,144,89,2,,,,, +365,5,1,11703,0,1678.891,,,,,,144,89,0,,,,, +365,6,1,11704,25,1678.891,16,32.0,C#4,pppp,2,144,61,2,,,,, +365,6,1,11704,25,1678.989,,,,,,144,61,0,,,,, +365,7,1,11705,41,1678.989,18,32.0,D5,pppp,2,144,74,2,,,,, +365,7,1,11705,41,1679.1,,,,,,144,74,0,,,,, +365,8,1,11706,59,1679.1,17,32.0,C#5,pppp,2,144,73,2,,,,, +365,9,1,11707,76,1679.205,8,64.0,C#5,,,,,,,,,, +365,8,1,11706,59,1679.254,,,,,,144,73,0,,,,, +365,10,1,11708,84,1679.254,8,64.0,A3,pppp,2,144,57,2,,,,, +365,11,1,11709,92,1679.304,18,32.0,A3,,,,,,,,,, +365,10,1,11708,84,1679.415,,,,,,144,57,0,,,,, +365,12,1,11710,110,1679.415,18,32.0,D6,pppp,2,144,86,2,,,,, +365,12,1,11710,110,1679.526,,,,,,144,86,0,,,,, +365,13,3,11711,128,1679.526,16,64.0,D#5,pppp,2,144,75,2,,,,, +365,14,1,11712,128,1679.526,16,32.0,F6,pppp,2,144,89,2,,,,, +365,13,3,11711,128,1679.624,,,,,,144,75,0,,,,, +365,14,1,11712,128,1679.624,,,,,,144,89,0,,,,, +365,15,3,11713,144,1679.624,16,64.0,B5,pppp,2,144,83,2,,,,, +365,16,1,11714,144,1679.624,18,32.0,D6,pppp,2,144,86,2,,,,, +365,15,3,11713,144,1679.723,,,,,,144,83,0,,,,, +365,17,3,11715,160,1679.723,16,64.0,C6,pppp,2,144,84,2,,,,, +365,16,1,11714,144,1679.735,,,,,,144,86,0,,,,, +365,18,1,11716,162,1679.735,17,32.0,G#6,pppp,2,144,92,2,,,,, +365,17,3,11715,160,1679.822,,,,,,144,84,0,,,,, +365,19,3,11717,176,1679.822,16,64.0,B5,pppp,2,144,83,2,,,,, +365,18,1,11716,162,1679.84,,,,,,144,92,0,,,,, +365,20,1,11718,179,1679.84,25,32.0,C#6,pppp,2,144,85,2,,,,, +365,19,3,11717,176,1679.921,,,,,,144,83,0,,,,, +365,21,3,11719,192,1679.921,48,32.0,G5,pppp,2,144,79,2,,,,, +365,20,1,11718,179,1679.995,,,,,,144,85,0,,,,, +365,22,1,11720,204,1679.995,16,32.0,A5,pppp,2,144,81,2,,,,, +365,22,1,11720,204,1680.093,,,,,,144,81,0,,,,, +365,23,1,11721,220,1680.093,18,32.0,D6,pppp,2,144,86,2,,,,, +365,23,1,11721,220,1680.204,,,,,,144,86,0,,,,, +365,24,1,11722,238,1680.204,18,32.0,G#6,pppp,2,144,92,2,,,,, +365,21,3,11719,192,1680.217,,,,,,144,79,0,,,,, +365,25,3,11723,240,1680.217,16,64.0,F#5,pppp,2,144,78,2,,,,, +365,24,1,11722,238,1680.315,,,,,,144,92,0,,,,, +365,25,3,11723,240,1680.315,,,,,,144,78,0,,,,, +365,26,1,11724,256,1680.315,,,,,,176,102,0,,,,, +365,27,3,11725,256,1680.315,,,,,,176,102,0,,,,, +365,28,1,11726,512,1681.894,,,,,,176,102,0,,,,, +365,29,3,11727,512,1681.894,32,32.0,D#6,pppp,2,144,87,2,,,,, +364,35,4,11695,768,1681.894,,,,,,144,52,0,,,,, +364,36,4,11696,768,1681.894,,,,,,144,54,0,,,,, +365,30,1,11728,528,1681.993,18,32.0,D7,pppp,2,144,98,2,,,,, +365,31,3,11729,544,1682.092,32,32.0,B6,pppp,2,144,95,2,,,,, +365,29,3,11727,512,1682.092,,,,,,144,87,0,,,,, +365,30,1,11728,528,1682.104,,,,,,144,98,0,,,,, +365,32,1,11730,546,1682.104,17,32.0,F7,pppp,2,144,101,2,,,,, +365,32,1,11730,546,1682.209,,,,,,144,101,0,,,,, +365,33,1,11731,563,1682.209,16,32.0,D7,pppp,2,144,98,2,,,,, +365,31,3,11729,544,1682.289,,,,,,144,95,0,,,,, +365,34,3,11732,576,1682.289,21,32.0,C7,pppp,2,144,96,2,,,,, +365,33,1,11731,563,1682.307,,,,,,144,98,0,,,,, +365,35,1,11733,579,1682.307,18,32.0,F7,pppp,2,144,101,2,,,,, +365,34,3,11732,576,1682.418,,,,,,144,96,0,,,,, +365,35,1,11733,579,1682.418,,,,,,144,101,0,,,,, +365,36,1,11734,597,1682.418,17,32.0,D7,pppp,2,144,98,2,,,,, +365,37,3,11735,597,1682.418,21,32.0,B6,pppp,2,144,95,2,,,,, +365,36,1,11734,597,1682.523,,,,,,144,98,0,,,,, +365,38,1,11736,614,1682.523,26,32.0,G#7,pppp,2,144,104,2,,,,, +365,37,3,11735,597,1682.548,,,,,,144,95,0,,,,, +365,39,3,11737,618,1682.548,22,32.0,C7,pppp,2,144,96,2,,,,, +365,38,1,11736,614,1682.684,,,,,,144,104,0,,,,, +365,39,3,11737,618,1682.684,,,,,,144,96,0,,,,, +365,40,1,11738,640,1682.684,16,32.0,C#7,pppp,2,144,97,2,,,,, +365,41,3,11739,640,1682.684,21,32.0,B6,pppp,2,144,95,2,,,,, +365,40,1,11738,640,1682.782,,,,,,144,97,0,,,,, +365,42,1,11740,656,1682.782,18,32.0,G#7,pppp,2,144,104,2,,,,, +365,43,3,11741,661,1682.813,21,32.0,C7,pppp,2,144,96,2,,,,, +365,41,3,11739,640,1682.813,,,,,,144,95,0,,,,, +365,42,1,11740,656,1682.893,,,,,,144,104,0,,,,, +365,44,1,11742,674,1682.893,17,32.0,C#7,pppp,2,144,97,2,,,,, +365,43,3,11741,661,1682.943,,,,,,144,96,0,,,,, +365,45,3,11743,682,1682.943,22,32.0,B6,pppp,2,144,95,2,,,,, +365,46,1,11744,691,1682.998,8,64.0,C#7,,,,,,,,,, +365,44,1,11742,674,1683.048,,,,,,144,97,0,,,,, +365,47,1,11745,699,1683.048,8,64.0,A6,pppp,2,144,93,2,,,,, +365,48,3,11746,704,1683.078,32,32.0,G6,pppp,2,144,91,2,,,,, +365,45,3,11743,682,1683.078,,,,,,144,95,0,,,,, +365,49,1,11747,707,1683.097,18,32.0,A6,,,,,,,,,, +365,47,1,11745,699,1683.208,,,,,,144,93,0,,,,, +365,50,1,11748,725,1683.208,17,32.0,D7,pppp,2,144,98,2,,,,, +365,48,3,11746,704,1683.276,,,,,,144,91,0,,,,, +365,51,3,11749,736,1683.276,32,32.0,F#5,pppp,2,144,78,2,,,,, +365,50,1,11748,725,1683.313,,,,,,144,98,0,,,,, +365,52,1,11750,742,1683.313,26,32.0,G#7,pppp,2,144,104,2,,,,, +365,52,1,11750,742,1683.473,,,,,,144,104,0,,,,, +365,53,1,11751,768,1683.473,16,32.0,D7,pppp,2,144,98,2,,,,, +365,54,3,11752,768,1683.473,21,32.0,F#6,pppp,2,144,90,2,,,,, +365,55,4,11753,768,1683.473,,,,,,176,102,0,,,,, +365,51,3,11749,736,1683.473,,,,,,144,78,0,,,,, +364,34,4,11694,768,1683.473,,,,,,144,27,0,,,,, +365,53,1,11751,768,1683.572,,,,,,144,98,0,,,,, +365,56,1,11754,784,1683.572,35,16.0,C#7,pppp,2,144,97,2,,,,, +365,57,3,11755,789,1683.603,21,32.0,D#6,pppp,2,144,87,2,,,,, +365,54,3,11752,768,1683.603,,,,,,144,90,0,,,,, +365,57,3,11755,789,1683.732,,,,,,144,87,0,,,,, +365,58,3,11756,810,1683.732,22,32.0,F#6,pppp,2,144,90,2,,,,, +365,56,1,11754,784,1683.788,,,,,,144,97,0,,,,, +365,59,1,11757,819,1683.788,16,32.0,G#7,pppp,2,144,104,2,,,,, +365,58,3,11756,810,1683.868,,,,,,144,90,0,,,,, +365,60,3,11758,832,1683.868,,,,,,176,102,0,,,,, +365,59,1,11757,819,1683.886,,,,,,144,104,0,,,,, +365,61,1,11759,835,1683.886,35,16.0,A6,pppp,2,144,93,2,,,,, +365,61,1,11759,835,1684.102,,,,,,144,93,0,,,,, +365,62,1,11760,870,1684.102,,,,,,176,102,0,,,,, +365,63,0,11761,1023,1684.899,,,,,,176,64,0,,,,,^ +366,0,0,11762,0,1685.052,,,,,,,,,366,,,, +366,2,1,11763,0,1685.052,,,,,,176,102,0,,,,, +366,3,3,11764,0,1685.052,21,32.0,D6,pppp,2,144,86,2,,,,, +366,4,4,11765,0,1685.052,,,,,,176,102,0,,,,, +366,3,3,11764,0,1685.182,,,,,,144,86,0,,,,, +366,5,3,11766,21,1685.182,21,32.0,F6,pppp,2,144,89,2,,,,, +366,1,0,11767,0,1685.199,,,,,,176,64,127,,,,,V +366,6,1,11768,25,1685.206,26,32.0,D#7,pppp,2,144,99,2,,,,, +366,5,3,11766,21,1685.311,,,,,,144,89,0,,,,, +366,7,3,11769,42,1685.311,14,32.0,D6,pppp,2,144,86,2,,,,, +366,6,1,11768,25,1685.367,,,,,,144,99,0,,,,, +366,8,1,11770,51,1685.367,25,32.0,B7,pppp,2,144,107,2,,,,, +366,9,3,11771,56,1685.397,14,32.0,F6,pppp,2,144,89,2,,,,, +366,7,3,11769,42,1685.397,,,,,,144,86,0,,,,, +366,9,3,11771,56,1685.484,,,,,,144,89,0,,,,, +366,10,3,11772,70,1685.484,15,32.0,D6,pppp,2,144,86,2,,,,, +366,8,1,11770,51,1685.521,,,,,,144,107,0,,,,, +366,11,1,11773,76,1685.521,26,32.0,C8,pppp,2,144,108,2,,,,, +366,10,3,11772,70,1685.576,,,,,,144,86,0,,,,, +366,12,3,11774,85,1685.576,21,32.0,F6,pppp,2,144,89,2,,,,, +366,11,1,11773,76,1685.681,,,,,,144,108,0,,,,, +366,13,1,11775,102,1685.681,16,32.0,B7,pppp,2,144,107,2,,,,, +366,12,3,11774,85,1685.706,,,,,,144,89,0,,,,, +366,14,3,11776,106,1685.706,22,32.0,G#6,pppp,2,144,92,2,,,,, +366,13,1,11775,102,1685.78,,,,,,144,107,0,,,,, +366,15,1,11777,118,1685.78,18,32.0,C8,pppp,2,144,108,2,,,,, +366,14,3,11776,106,1685.842,,,,,,144,92,0,,,,, +366,16,3,11778,128,1685.842,21,32.0,C#6,pppp,2,144,85,2,,,,, +366,15,1,11777,118,1685.891,,,,,,144,108,0,,,,, +366,17,1,11779,136,1685.891,17,32.0,B7,pppp,2,144,107,2,,,,, +366,16,3,11778,128,1685.971,,,,,,144,85,0,,,,, +366,18,3,11780,149,1685.971,14,32.0,G#6,pppp,2,144,92,2,,,,, +366,17,1,11779,136,1685.996,,,,,,144,107,0,,,,, +366,19,1,11781,153,1685.996,16,32.0,C8,pppp,2,144,108,2,,,,, +366,18,3,11780,149,1686.057,,,,,,144,92,0,,,,, +366,20,3,11782,163,1686.057,14,32.0,C#6,pppp,2,144,85,2,,,,, +366,19,1,11781,153,1686.094,,,,,,144,108,0,,,,, +366,21,1,11783,169,1686.094,18,32.0,B7,pppp,2,144,107,2,,,,, +366,22,3,11784,177,1686.144,15,32.0,G#6,pppp,2,144,92,2,,,,, +366,20,3,11782,163,1686.144,,,,,,144,85,0,,,,, +366,21,1,11783,169,1686.205,,,,,,144,107,0,,,,, +366,23,1,11785,187,1686.205,17,32.0,C8,pppp,2,144,108,2,,,,, +366,24,3,11786,192,1686.236,21,32.0,G#6,,,,,,,,,, +366,23,1,11785,187,1686.31,,,,,,144,108,0,,,,, +366,25,1,11787,204,1686.31,16,32.0,B7,pppp,2,144,107,2,,,,, +366,22,3,11784,177,1686.366,,,,,,144,92,0,,,,, +366,26,3,11788,213,1686.366,43,16.0,C#5,pppp,2,144,73,2,,,,, +366,25,1,11787,204,1686.409,,,,,,144,107,0,,,,, +366,27,1,11789,220,1686.409,26,32.0,G7,pppp,2,144,103,2,,,,, +366,27,1,11789,220,1686.569,,,,,,144,103,0,,,,, +366,28,1,11790,246,1686.569,10,64.0,F#7,pppp,2,144,102,2,,,,, +366,26,3,11788,213,1686.631,,,,,,144,73,0,,,,, +366,29,1,11791,256,1686.631,16,32.0,F#7,,,,,,,,,, +366,30,3,11792,256,1686.631,14,32.0,A4,pppp,2,144,69,2,,,,, +366,30,3,11792,256,1686.717,,,,,,144,69,0,,,,, +366,31,3,11793,270,1686.717,14,32.0,F7,pppp,2,144,101,2,,,,, +366,28,1,11790,246,1686.73,,,,,,144,102,0,,,,, +366,32,1,11794,272,1686.73,18,32.0,B7,pppp,2,144,107,2,,,,, +366,31,3,11793,270,1686.804,,,,,,144,101,0,,,,, +366,33,3,11795,284,1686.804,14,32.0,D7,pppp,2,144,98,2,,,,, +366,32,1,11794,272,1686.841,,,,,,144,107,0,,,,, +366,34,1,11796,290,1686.841,17,32.0,G7,pppp,2,144,103,2,,,,, +366,35,3,11797,298,1686.89,22,32.0,F7,pppp,2,144,101,2,,,,, +366,33,3,11795,284,1686.89,,,,,,144,98,0,,,,, +366,36,1,11798,307,1686.946,8,64.0,G7,,,,,,,,,, +366,34,1,11796,290,1686.995,,,,,,144,103,0,,,,, +366,37,1,11799,315,1686.995,8,64.0,F#6,pppp,2,144,90,2,,,,, +366,38,3,11800,320,1687.026,21,32.0,G#7,pppp,2,144,104,2,,,,, +366,35,3,11797,298,1687.026,,,,,,144,101,0,,,,, +366,39,1,11801,323,1687.044,18,32.0,F#6,,,,,,,,,, +366,37,1,11799,315,1687.155,,,,,,144,90,0,,,,, +366,38,3,11800,320,1687.155,,,,,,144,104,0,,,,, +366,40,1,11802,341,1687.155,17,32.0,D#6,pppp,2,144,87,2,,,,, +366,41,3,11803,341,1687.155,14,32.0,C#6,pppp,2,144,85,2,,,,, +366,41,3,11803,341,1687.242,,,,,,144,85,0,,,,, +366,42,3,11804,355,1687.242,14,32.0,G#7,pppp,2,144,104,2,,,,, +366,40,1,11802,341,1687.26,,,,,,144,87,0,,,,, +366,43,1,11805,358,1687.26,26,32.0,B6,pppp,2,144,95,2,,,,, +366,42,3,11804,355,1687.328,,,,,,144,104,0,,,,, +366,44,3,11806,369,1687.328,15,32.0,C#7,pppp,2,144,97,2,,,,, +366,43,1,11805,358,1687.421,,,,,,144,95,0,,,,, +366,44,3,11806,369,1687.421,,,,,,144,97,0,,,,, +366,45,1,11807,384,1687.421,25,32.0,G6,pppp,2,144,91,2,,,,, +366,46,3,11808,384,1687.421,,,,,,176,102,0,,,,, +366,45,1,11807,384,1687.575,,,,,,144,91,0,,,,, +366,47,0,11809,409,1687.575,,,,,,176,64,0,,,,,^ +366,48,1,11810,409,1687.575,,,,,,176,102,0,,,,, +366,49,0,11811,409,1687.575,,,,,,,,,,6034,,, +366,51,1,11812,512,1688.21,16,32.0,D#6,ppp,5,144,87,5,,,,, +366,52,4,11813,512,1688.21,256,4.0,E3,p,11,144,52,11,,,,, +366,53,4,11814,512,1688.21,256,4.0,F#3,ppp,5,144,54,5,,,,, +366,54,4,11815,512,1688.21,256,4.0,D6,f,20,144,86,20,,,,, +366,55,3,11816,512,1688.21,,,,,,176,102,0,,,,, +366,50,0,11817,512,1688.21,,,,,,176,64,127,,,,,V +366,51,1,11812,512,1688.309,,,,,,144,87,0,,,,, +366,56,1,11818,528,1688.309,18,32.0,F#6,ppp,5,144,90,5,,,,, +366,56,1,11818,528,1688.42,,,,,,144,90,0,,,,, +366,57,1,11819,546,1688.42,17,32.0,B6,ppp,5,144,95,5,,,,, +366,58,1,11820,563,1688.525,13,64.0,B6,,,,,,,,,, +366,57,1,11819,546,1688.605,,,,,,144,95,0,,,,, +366,59,1,11821,576,1688.605,12,64.0,C7,ppp,5,144,96,5,,,,, +366,60,3,11822,576,1688.605,21,32.0,C#6,ppp,5,144,85,5,,,,, +366,61,1,11823,588,1688.679,8,64.0,C7,,,,,,,,,, +366,59,1,11821,576,1688.728,,,,,,144,96,0,,,,, +366,62,1,11824,596,1688.728,8,64.0,G6,ppp,5,144,91,5,,,,, +366,60,3,11822,576,1688.734,,,,,,144,85,0,,,,, +366,63,3,11825,597,1688.734,21,32.0,G#6,ppp,5,144,92,5,,,,, +366,64,1,11826,604,1688.777,18,32.0,G6,,,,,,,,,, +366,63,3,11825,597,1688.864,,,,,,144,92,0,,,,, +366,65,3,11827,618,1688.864,22,32.0,C#6,ppp,5,144,85,5,,,,, +366,62,1,11824,596,1688.888,,,,,,144,91,0,,,,, +366,66,1,11828,622,1688.888,18,32.0,F#6,ppp,5,144,90,5,,,,, +366,65,3,11827,618,1688.999,,,,,,144,85,0,,,,, +366,66,1,11828,622,1688.999,,,,,,144,90,0,,,,, +366,67,1,11829,640,1688.999,16,32.0,C7,ppp,5,144,96,5,,,,, +366,68,3,11830,640,1688.999,42,16.0,A4,ppp,5,144,69,5,,,,, +366,67,1,11829,640,1689.098,,,,,,144,96,0,,,,, +366,69,1,11831,656,1689.098,18,32.0,D#6,ppp,5,144,87,5,,,,, +366,69,1,11831,656,1689.209,,,,,,144,87,0,,,,, +366,70,1,11832,674,1689.209,17,32.0,C7,ppp,5,144,96,5,,,,, +366,71,3,11833,682,1689.259,22,32.0,F6,ppp,5,144,89,5,,,,, +366,68,3,11830,640,1689.259,,,,,,144,69,0,,,,, +366,70,1,11832,674,1689.314,,,,,,144,96,0,,,,, +366,72,1,11834,691,1689.314,25,32.0,G6,ppp,5,144,91,5,,,,, +366,71,3,11833,682,1689.394,,,,,,144,89,0,,,,, +366,73,3,11835,704,1689.394,21,32.0,D5,ppp,5,144,74,5,,,,, +366,72,1,11834,691,1689.468,,,,,,144,91,0,,,,, +366,74,1,11836,716,1689.468,16,32.0,F#6,ppp,5,144,90,5,,,,, +366,73,3,11835,704,1689.524,,,,,,144,74,0,,,,, +366,75,3,11837,725,1689.524,21,32.0,F6,ppp,5,144,89,5,,,,, +366,74,1,11836,716,1689.567,,,,,,144,90,0,,,,, +366,76,1,11838,732,1689.567,18,32.0,C7,ppp,5,144,96,5,,,,, +366,75,3,11837,725,1689.653,,,,,,144,89,0,,,,, +366,77,3,11839,746,1689.653,22,32.0,D5,ppp,5,144,74,5,,,,, +366,76,1,11838,732,1689.678,,,,,,144,96,0,,,,, +366,78,1,11840,750,1689.678,18,32.0,D#6,ppp,5,144,87,5,,,,, +366,52,4,11813,512,1689.789,,,,,,144,52,0,,,,, +366,53,4,11814,512,1689.789,,,,,,144,54,0,,,,, +366,54,4,11815,512,1689.789,,,,,,144,86,0,,,,, +366,77,3,11839,746,1689.789,,,,,,144,74,0,,,,, +366,79,1,11841,768,1689.789,102,8.0,D#6,,,,,,,,,, +366,80,3,11842,768,1689.789,,,,,,176,102,0,,,,, +366,81,4,11843,768,1689.789,256,4.0,C4,ppp,5,144,60,5,,,,, +366,78,1,11840,750,1690.418,,,,,,144,87,0,,,,, +366,82,1,11844,870,1690.418,16,32.0,D#5,ppp,5,144,75,5,,,,, +366,82,1,11844,870,1690.517,,,,,,144,75,0,,,,, +366,83,1,11845,886,1690.517,18,32.0,B6,ppp,5,144,95,5,,,,, +366,84,3,11846,896,1690.578,,,,,,176,102,0,,,,, +366,83,1,11845,886,1690.628,,,,,,144,95,0,,,,, +366,85,1,11847,904,1690.628,17,32.0,C8,ppp,5,144,108,5,,,,, +366,85,1,11847,904,1690.733,,,,,,144,108,0,,,,, +366,86,1,11848,921,1690.733,16,32.0,B6,ppp,5,144,95,5,,,,, +366,87,3,11849,928,1690.776,16,64.0,D7,ppp,5,144,98,5,,,,, +366,86,1,11848,921,1690.831,,,,,,144,95,0,,,,, +366,88,1,11850,937,1690.831,18,32.0,C8,ppp,5,144,108,5,,,,, +366,87,3,11849,928,1690.874,,,,,,144,98,0,,,,, +366,89,3,11851,944,1690.874,16,64.0,F7,ppp,5,144,101,5,,,,, +366,88,1,11850,937,1690.942,,,,,,144,108,0,,,,, +366,90,1,11852,955,1690.942,17,32.0,B6,ppp,5,144,95,5,,,,, +366,89,3,11851,944,1690.973,,,,,,144,101,0,,,,, +366,91,3,11853,960,1690.973,16,64.0,D7,ppp,5,144,98,5,,,,, +366,90,1,11852,955,1691.047,,,,,,144,95,0,,,,, +366,92,1,11854,972,1691.047,26,32.0,G6,ppp,5,144,91,5,,,,, +366,91,3,11853,960,1691.072,,,,,,144,98,0,,,,, +366,93,3,11855,976,1691.072,16,64.0,F7,ppp,5,144,101,5,,,,, +366,93,3,11855,976,1691.171,,,,,,144,101,0,,,,, +366,94,3,11856,992,1691.171,16,64.0,D7,ppp,5,144,98,5,,,,, +366,92,1,11854,972,1691.208,,,,,,144,91,0,,,,, +366,95,1,11857,998,1691.208,26,32.0,C7,ppp,5,144,96,5,,,,, +366,94,3,11856,992,1691.269,,,,,,144,98,0,,,,, +366,96,3,11858,1008,1691.269,16,64.0,G#7,ppp,5,144,104,5,,,,, +366,96,3,11858,1008,1691.368,,,,,,144,104,0,,,,, +367,0,0,11859,0,1691.368,,,,,,,,,367,,,, +367,1,1,11860,0,1691.368,102,8.0,C7,,,,,,,,,, +367,2,3,11861,0,1691.368,,,,,,176,102,0,,,,, +367,3,4,11862,0,1691.368,,,,,,176,102,0,,,,, +366,81,4,11843,768,1691.368,,,,,,144,60,0,,,,, +367,4,3,11863,64,1691.763,96,16.0,C#6,ppp,5,144,85,5,,,,, +367,5,1,11864,102,1691.997,26,32.0,G5,ppp,5,144,79,5,,,,, +366,95,1,11857,998,1691.997,,,,,,144,96,0,,,,, +367,5,1,11864,102,1692.157,,,,,,144,79,0,,,,, +367,6,1,11865,128,1692.157,25,32.0,F#4,ppp,5,144,66,5,,,,, +367,6,1,11865,128,1692.312,,,,,,144,66,0,,,,, +367,7,1,11866,153,1692.312,16,32.0,B5,ppp,5,144,83,5,,,,, +367,8,3,11867,160,1692.355,96,16.0,A4,ppp,5,144,69,5,,,,, +367,4,3,11863,64,1692.355,,,,,,144,85,0,,,,, +367,7,1,11866,153,1692.41,,,,,,144,83,0,,,,, +367,9,1,11868,169,1692.41,18,32.0,G5,ppp,5,144,79,5,,,,, +367,9,1,11868,169,1692.521,,,,,,144,79,0,,,,, +367,10,1,11869,187,1692.521,17,32.0,F#5,ppp,5,144,78,5,,,,, +367,10,1,11869,187,1692.626,,,,,,144,78,0,,,,, +367,11,1,11870,204,1692.626,16,32.0,B5,ppp,5,144,83,5,,,,, +367,11,1,11870,204,1692.725,,,,,,144,83,0,,,,, +367,12,1,11871,220,1692.725,18,32.0,C7,ppp,5,144,96,5,,,,, +367,12,1,11871,220,1692.836,,,,,,144,96,0,,,,, +367,13,1,11872,238,1692.836,18,32.0,B5,ppp,5,144,83,5,,,,, +367,13,1,11872,238,1692.947,,,,,,144,83,0,,,,, +367,14,1,11873,256,1692.947,16,32.0,G5,ppp,5,144,79,5,,,,, +367,15,3,11874,256,1692.947,128,8.0,C#5,ppp,5,144,73,5,,,,, +367,16,4,11875,256,1692.947,,,,,,176,102,0,,,,, +367,8,3,11867,160,1692.947,,,,,,144,69,0,,,,, +367,14,1,11873,256,1693.046,,,,,,144,79,0,,,,, +367,17,1,11876,272,1693.046,18,32.0,F#4,ppp,5,144,66,5,,,,, +367,17,1,11876,272,1693.157,,,,,,144,66,0,,,,, +367,18,1,11877,290,1693.157,17,32.0,G5,ppp,5,144,79,5,,,,, +367,18,1,11877,290,1693.261,,,,,,144,79,0,,,,, +367,19,1,11878,307,1693.261,25,32.0,F#4,ppp,5,144,66,5,,,,, +367,19,1,11878,307,1693.416,,,,,,144,66,0,,,,, +367,20,1,11879,332,1693.416,16,32.0,D#4,ppp,5,144,63,5,,,,, +367,20,1,11879,332,1693.514,,,,,,144,63,0,,,,, +367,21,1,11880,348,1693.514,18,32.0,B4,ppp,5,144,71,5,,,,, +367,21,1,11880,348,1693.625,,,,,,144,71,0,,,,, +367,22,1,11881,366,1693.625,18,32.0,C6,ppp,5,144,84,5,,,,, +367,22,1,11881,366,1693.736,,,,,,144,84,0,,,,, +367,23,1,11882,384,1693.736,25,32.0,G4,ppp,5,144,67,5,,,,, +367,24,3,11883,384,1693.736,64,16.0,A4,ppp,5,144,69,5,,,,, +367,25,4,11884,384,1693.736,42,16.0,F#3,pp,8,144,54,8,,,,, +367,15,3,11874,256,1693.736,,,,,,144,73,0,,,,, +367,23,1,11882,384,1693.891,,,,,,144,67,0,,,,, +367,26,1,11885,409,1693.891,103,8.0,F#4,ppp,5,144,66,5,,,,, +367,27,4,11886,426,1693.995,43,16.0,A3,pp+,9,144,57,9,,,,, +367,25,4,11884,384,1693.995,,,,,,144,54,0,,,,, +367,24,3,11883,384,1694.131,,,,,,144,69,0,,,,, +367,28,3,11887,448,1694.131,64,16.0,A2,ff,22,144,45,22,,,,, +367,29,4,11888,469,1694.261,43,16.0,F4,p,11,144,65,11,,,,, +367,27,4,11886,426,1694.336,,,,,,144,57,0,,,,, +367,30,0,11889,512,1694.376,,,,,,176,64,0,,,,,^ +367,29,4,11888,469,1694.526,,,,,,144,65,0,,,,, +367,32,1,11890,512,1694.526,,,,,,176,102,0,,,,, +367,33,3,11891,512,1694.526,256,4.0,A2,,,,,,,,,, +367,34,4,11892,512,1694.526,21,32.0,C4,ppp,5,144,60,5,,,,, +367,26,1,11885,409,1694.601,,,,,,144,66,0,,,,, +367,35,4,11893,533,1694.655,64,16.0,C4,,,,,,,,,, +367,36,4,11894,533,1694.655,64,16.0,E5,ppp,5,144,76,5,,,,, +367,31,0,11895,512,1694.676,,,,,,176,64,127,,,,,V +367,37,4,11896,597,1695.05,43,16.0,C4,,,,,,,,,, +367,38,4,11897,597,1695.05,64,16.0,E5,,,,,,,,,, +367,39,4,11898,640,1695.315,384,4.0,C4,,,,,,,,,, +367,40,4,11899,640,1695.315,256,4.0,E5,,,,,,,,,, +367,41,1,11900,768,1696.105,28,32.0,C7,pppp,2,144,96,2,,,,, +367,42,3,11901,768,1696.105,,,,,,176,102,0,,,,, +367,28,3,11887,448,1696.18,,,,,,144,45,0,,,,, +367,41,1,11900,768,1696.277,,,,,,144,96,0,,,,, +367,43,1,11902,796,1696.277,43,32.0,D#6,pppp,2,144,87,2,,,,, +367,44,3,11903,819,1696.419,,,,,,176,102,0,,,,, +367,45,3,11904,835,1696.518,18,32.0,D6,pppp,2,144,86,2,,,,, +367,43,1,11902,796,1696.543,,,,,,144,87,0,,,,, +367,46,1,11905,839,1696.543,42,32.0,B6,pppp,2,144,95,2,,,,, +367,45,3,11904,835,1696.629,,,,,,144,86,0,,,,, +367,47,3,11906,853,1696.629,17,32.0,F6,pppp,2,144,89,2,,,,, +367,47,3,11906,853,1696.734,,,,,,144,89,0,,,,, +367,48,3,11907,870,1696.734,16,32.0,D6,pppp,2,144,86,2,,,,, +367,46,1,11905,839,1696.802,,,,,,144,95,0,,,,, +367,49,1,11908,881,1696.802,29,32.0,C7,pppp,2,144,96,2,,,,, +367,48,3,11907,870,1696.833,,,,,,144,86,0,,,,, +367,50,3,11909,886,1696.833,18,32.0,G#6,pppp,2,144,92,2,,,,, +367,50,3,11909,886,1696.944,,,,,,144,92,0,,,,, +367,51,3,11910,904,1696.944,17,32.0,C#6,pppp,2,144,85,2,,,,, +367,52,1,11911,910,1696.981,28,32.0,G6,pppp,2,144,91,2,,,,, +367,49,1,11908,881,1696.981,,,,,,144,96,0,,,,, +367,36,4,11894,533,1697.024,,,,,,144,76,0,,,,, +367,51,3,11910,904,1697.048,,,,,,144,85,0,,,,, +367,53,3,11912,921,1697.048,26,32.0,G#6,pppp,2,144,92,2,,,,, +367,52,1,11911,910,1697.153,,,,,,144,91,0,,,,, +367,54,1,11913,938,1697.153,29,32.0,F#6,pppp,2,144,90,2,,,,, +367,53,3,11912,921,1697.209,,,,,,144,92,0,,,,, +367,55,3,11914,947,1697.209,25,32.0,C#6,pppp,2,144,85,2,,,,, +367,54,1,11913,938,1697.332,,,,,,144,90,0,,,,, +367,56,1,11915,967,1697.332,28,32.0,G6,pppp,2,144,91,2,,,,, +367,55,3,11914,947,1697.363,,,,,,144,85,0,,,,, +367,57,3,11916,972,1697.363,52,16.0,A5,pppp,2,144,81,2,,,,, +367,56,1,11915,967,1697.505,,,,,,144,91,0,,,,, +367,58,1,11917,995,1697.505,29,32.0,F#6,pppp,2,144,90,2,,,,, +367,59,0,11918,1023,1697.606,,,,,,176,64,0,,,,,^ +367,34,4,11892,512,1697.684,,,,,,144,60,0,,,,, +367,57,3,11916,972,1697.684,,,,,,144,81,0,,,,, +367,58,1,11917,995,1697.684,,,,,,144,90,0,,,,, +368,0,0,11919,0,1697.684,,,,,,,,,368,,,, +368,1,0,11920,0,1697.684,,,,,,,,,,6035,,, +368,2,0,11921,0,1697.684,,,,,,,,,,,44,, +368,4,1,11922,,1697.684,,8.0,D6,ff,22,144,86,22,,,,g, +368,8,3,11923,,1697.684,,8.0,G#3,ppp,5,144,56,5,,,,g, +368,4,1,11922,,1697.734,,,,,,144,86,0,,,,, +368,8,3,11923,,1697.734,,,,,,144,56,0,,,,, +368,5,1,11924,0,1697.834,512,2.0,A5,ff,22,144,81,22,,,,, +368,6,1,11925,0,1697.834,512,2.0,D6,ff,22,144,86,22,,,,, +368,7,2,11926,0,1697.834,153,8.0,C#6,ppp,5,144,85,5,,,,, +368,9,3,11927,0,1697.834,25,32.0,G#3,,,,,,,,,, +368,3,0,11928,0,1697.906,,,,,,176,64,127,,,,,V +368,10,3,11929,25,1697.967,26,32.0,D4,ppp+,6,144,62,6,,,,, +368,10,3,11929,25,1698.105,,,,,,144,62,0,,,,, +368,11,3,11930,51,1698.105,25,32.0,G#3,pp-,7,144,56,7,,,,, +368,11,3,11930,51,1698.239,,,,,,144,56,0,,,,, +368,12,3,11931,76,1698.239,52,16.0,D4,pp,8,144,62,8,,,,, +368,12,3,11931,76,1698.515,,,,,,144,62,0,,,,, +368,13,3,11932,128,1698.515,51,16.0,G#3,pp+,9,144,56,9,,,,, +368,7,2,11926,0,1698.649,,,,,,144,85,0,,,,, +368,14,2,11933,153,1698.649,103,8.0,C#6,pp,8,144,85,8,,,,, +368,15,3,11934,179,1698.787,25,32.0,D4,p-,10,144,62,10,,,,, +368,13,3,11932,128,1698.787,,,,,,144,56,0,,,,, +368,15,3,11934,179,1698.92,,,,,,144,62,0,,,,, +368,16,3,11935,204,1698.92,26,32.0,G#3,p,11,144,56,11,,,,, +368,16,3,11935,204,1699.059,,,,,,144,56,0,,,,, +368,17,3,11936,230,1699.059,26,32.0,D4,p,11,144,62,11,,,,, +368,18,2,11937,256,1699.197,128,8.0,C#6,,,,,,,,,, +368,19,3,11938,256,1699.197,179,8.0,D4,,,,,,,,,, +368,20,2,11939,384,1699.879,128,8.0,C#6,p,11,144,85,11,,,,, +368,14,2,11933,153,1699.879,,,,,,144,85,0,,,,, +368,17,3,11936,230,1700.151,,,,,,144,62,0,,,,, +368,21,3,11940,435,1700.151,25,32.0,G#3,mf,17,144,56,17,,,,, +368,21,3,11940,435,1700.284,,,,,,144,56,0,,,,, +368,22,3,11941,460,1700.284,52,16.0,D4,mf,17,144,62,17,,,,, +368,20,2,11939,384,1700.561,,,,,,144,85,0,,,,, +368,22,3,11941,460,1700.561,,,,,,144,62,0,,,,, +368,23,1,11942,512,1700.561,,,,,,176,102,0,,,,, +368,24,2,11943,512,1700.561,25,32.0,C5,mf+,18,144,72,18,,,,, +368,25,3,11944,512,1700.561,,,,,,176,102,0,,,,, +368,5,1,11924,0,1700.561,,,,,,144,81,0,,,,, +368,6,1,11925,0,1700.561,,,,,,144,86,0,,,,, +368,24,2,11943,512,1700.694,,,,,,144,72,0,,,,, +368,26,2,11945,537,1700.694,51,16.0,E5,f-,19,144,76,19,,,,, +368,26,2,11945,537,1700.966,,,,,,144,76,0,,,,, +368,27,2,11946,588,1700.966,13,64.0,C#6,f,20,144,85,20,,,,, +368,27,2,11946,588,1701.035,,,,,,144,85,0,,,,, +368,28,2,11947,601,1701.035,13,64.0,G#2,f+,21,144,44,21,,,,, +368,28,2,11947,601,1701.104,,,,,,144,44,0,,,,, +368,29,2,11948,614,1701.104,13,64.0,D3,f+,21,144,50,21,,,,, +368,29,2,11948,614,1701.174,,,,,,144,50,0,,,,, +368,30,2,11949,627,1701.174,13,64.0,C5,f+,21,144,72,21,,,,, +368,30,2,11949,627,1701.243,,,,,,144,72,0,,,,, +368,31,2,11950,640,1701.243,76,16.0,E5,ff,22,144,76,22,,,,, +368,32,1,11951,704,1701.584,64,16.0,F7,f,20,144,101,20,,,,, +368,31,2,11950,640,1701.648,,,,,,144,76,0,,,,, +368,33,2,11952,716,1701.648,,,,,,176,102,0,,,,, +368,34,3,11953,736,1701.754,32,32.0,E3,fff,24,144,52,23,,,,, +368,34,3,11953,736,1701.925,,,,,,144,52,0,,,,, +368,35,1,11954,768,1701.925,224,8.0,F7,,,,,,,,,, +368,36,2,11955,768,1701.925,,,,,,176,102,0,,,,, +368,37,3,11956,768,1701.925,32,32.0,A#1,fff,24,144,34,23,,,,, +368,38,3,11957,768,1701.925,32,32.0,E3,fff,24,144,52,23,,,,, +368,37,3,11956,768,1702.095,,,,,,144,34,0,,,,, +368,38,3,11957,768,1702.095,,,,,,144,52,0,,,,, +368,39,3,11958,800,1702.095,96,16.0,A#1,fff,24,144,34,23,,,,, +368,40,3,11959,800,1702.095,64,16.0,F#2,fff,24,144,42,23,,,,, +368,40,3,11959,800,1702.436,,,,,,144,42,0,,,,, +368,41,3,11960,896,1702.606,128,8.0,F#2,f+,21,144,42,21,,,,, +368,39,3,11958,800,1702.681,,,,,,144,34,0,,,,, +368,43,0,11961,1011,1703.069,,,,,,176,64,0,,,,,^ +368,42,1,11962,992,1703.118,32,32.0,F7,f,20,144,101,20,,,,, +368,32,1,11951,704,1703.193,,,,,,144,101,0,,,,, +368,41,3,11960,896,1703.288,,,,,,144,42,0,,,,, +368,42,1,11962,992,1703.288,,,,,,144,101,0,,,,, +369,1,0,11963,0,1703.288,,,,,,,,,369,,,, +369,0,3,11964,0,1703.288,,,,,,176,102,0,,,,, +369,2,1,11965,0,1703.288,512,2.0,E5,ff,22,144,76,22,,,,, +369,3,1,11966,0,1703.288,512,2.0,F7,ff,22,144,101,22,,,,, +369,4,2,11967,0,1703.288,56,16.0,E6,ppp,5,144,88,5,,,,, +368,43,0,11968,1011,1703.369,,,,,,176,64,127,,,,,V +369,4,2,11967,0,1703.587,,,,,,144,88,0,,,,, +369,5,2,11969,56,1703.587,114,8.0,G#4,ppp,5,144,68,5,,,,, +369,5,2,11969,56,1704.194,,,,,,144,68,0,,,,, +369,6,2,11970,170,1704.194,,,,,,176,102,0,,,,, +369,7,2,11971,199,1704.348,28,32.0,C#6,ppp,5,144,85,5,,,,, +369,7,2,11971,199,1704.497,,,,,,144,85,0,,,,, +369,8,2,11972,227,1704.497,29,32.0,G5,ppp,5,144,79,5,,,,, +369,8,2,11972,227,1704.652,,,,,,144,79,0,,,,, +369,9,3,11973,256,1704.652,448,4.0,D#1,pp,8,144,27,8,,,,, +369,10,2,11974,256,1704.652,28,32.0,C#6,ppp,5,144,85,5,,,,, +369,10,2,11974,256,1704.801,,,,,,144,85,0,,,,, +369,11,2,11975,284,1704.801,28,32.0,G5,ppp,5,144,79,5,,,,, +369,11,2,11975,284,1704.95,,,,,,144,79,0,,,,, +369,12,2,11976,312,1704.95,29,32.0,C#6,ppp,5,144,85,5,,,,, +369,12,2,11976,312,1705.105,,,,,,144,85,0,,,,, +369,13,2,11977,341,1705.105,85,16.0,E6,ppp,5,144,88,5,,,,, +369,14,2,11978,426,1705.557,29,32.0,G4,ppp,5,144,67,5,,,,, +369,13,2,11977,341,1705.632,,,,,,144,88,0,,,,, +369,14,2,11978,426,1705.712,,,,,,144,67,0,,,,, +369,15,2,11979,455,1705.712,57,16.0,E6,ppp,5,144,88,5,,,,, +369,15,2,11979,455,1706.015,,,,,,144,88,0,,,,, +369,16,1,11980,512,1706.015,,,,,,176,102,0,,,,, +369,17,2,11981,512,1706.015,28,32.0,C#6,ppp,5,144,85,5,,,,, +369,2,1,11965,0,1706.09,,,,,,144,76,0,,,,, +369,3,1,11966,0,1706.09,,,,,,144,101,0,,,,, +369,17,2,11981,512,1706.165,,,,,,144,85,0,,,,, +369,18,2,11982,540,1706.165,28,32.0,G4,ppp,5,144,67,5,,,,, +369,18,2,11982,540,1706.314,,,,,,144,67,0,,,,, +369,19,2,11983,568,1706.314,29,32.0,E6,ppp,5,144,88,5,,,,, +369,19,2,11983,568,1706.468,,,,,,144,88,0,,,,, +369,20,2,11984,597,1706.468,85,16.0,C5,ppp,5,144,72,5,,,,, +369,21,1,11985,640,1706.697,128,8.0,C#5,f,20,144,73,20,,,,, +369,22,2,11986,682,1706.921,29,32.0,G4,ppp,5,144,67,5,,,,, +369,20,2,11984,597,1706.921,,,,,,144,72,0,,,,, +369,23,3,11987,704,1707.038,64,16.0,A#2,p,11,144,46,11,,,,, +369,21,1,11985,640,1707.076,,,,,,144,73,0,,,,, +369,22,2,11986,682,1707.076,,,,,,144,67,0,,,,, +369,24,2,11988,711,1707.076,28,32.0,C#5,ppp,5,144,73,5,,,,, +369,9,3,11973,256,1707.113,,,,,,144,27,0,,,,, +369,25,2,11989,739,1707.225,29,32.0,G4,ppp,5,144,67,5,,,,, +369,25,2,11989,739,1707.379,,,,,,144,67,0,,,,, +369,26,1,11990,768,1707.379,192,8.0,C#5,,,,,,,,,, +369,27,2,11991,768,1707.379,170,8.0,E5,ppp,5,144,76,5,,,,, +369,28,3,11992,768,1707.379,64,16.0,A#2,,,,,,,,,, +369,23,3,11987,704,1707.72,,,,,,144,46,0,,,,, +369,29,3,11993,832,1707.72,25,32.0,A4,p,11,144,69,11,,,,, +369,29,3,11993,832,1707.853,,,,,,144,69,0,,,,, +369,30,3,11994,857,1707.853,26,32.0,F2,p-,10,144,41,10,,,,, +369,30,3,11994,857,1707.992,,,,,,144,41,0,,,,, +369,31,3,11995,883,1707.992,25,32.0,A5,pp,8,144,81,8,,,,, +369,31,3,11995,883,1708.125,,,,,,144,81,0,,,,, +369,32,3,11996,908,1708.125,26,32.0,F2,pp-,7,144,41,7,,,,, +369,32,3,11996,908,1708.263,,,,,,144,41,0,,,,, +369,33,3,11997,934,1708.263,26,32.0,C#2,ppp,5,144,37,5,,,,, +369,34,2,11998,938,1708.285,57,16.0,G4,ppp,5,144,67,5,,,,, +369,27,2,11991,768,1708.285,,,,,,144,76,0,,,,, +369,35,1,11999,960,1708.402,64,16.0,A#3,ppp,5,144,58,5,,,,, +369,36,3,12000,960,1708.402,64,16.0,C#2,,,,,,,,,, +369,24,2,11988,711,1708.402,,,,,,144,73,0,,,,, +369,34,2,11998,938,1708.588,,,,,,144,67,0,,,,, +369,37,2,12001,995,1708.588,29,32.0,E6,p,11,144,88,11,,,,, +370,0,0,12002,0,1708.743,,,,,,,,,370,,,, +370,1,1,12003,0,1708.743,256,4.0,A#3,,,,,,,,,, +370,2,2,12004,0,1708.743,56,16.0,E6,,,,,,,,,, +370,3,3,12005,0,1708.743,256,4.0,C#2,,,,,,,,,, +370,4,4,12006,0,1708.743,,,,,,176,102,0,,,,, +369,37,2,12001,995,1709.041,,,,,,144,88,0,,,,, +370,5,2,12007,56,1709.041,29,32.0,G3,ppp,5,144,55,5,,,,, +370,5,2,12007,56,1709.196,,,,,,144,55,0,,,,, +370,6,2,12008,85,1709.196,28,32.0,E5,ppp,5,144,76,5,,,,, +370,6,2,12008,85,1709.345,,,,,,144,76,0,,,,, +370,7,2,12009,113,1709.345,86,16.0,C4,ppp,5,144,60,5,,,,, +370,7,2,12009,113,1709.803,,,,,,144,60,0,,,,, +370,8,2,12010,199,1709.803,28,32.0,G#3,ppp,5,144,56,5,,,,, +370,8,2,12010,199,1709.952,,,,,,144,56,0,,,,, +370,9,2,12011,227,1709.952,29,32.0,C4,ppp,5,144,60,5,,,,, +370,10,0,12012,256,1710.031,,,,,,176,64,0,,,,,^ +369,33,3,11997,934,1710.106,,,,,,144,37,0,,,,, +369,35,1,11999,960,1710.106,,,,,,144,58,0,,,,, +370,9,2,12011,227,1710.106,,,,,,144,60,0,,,,, +370,11,1,12013,256,1710.106,28,32.0,G#3,ppp,5,144,56,5,,,,, +370,12,2,12014,256,1710.106,,,,,,176,102,0,,,,, +370,13,3,12015,,1710.106,,8.0,E2,f,20,144,40,20,,,,g, +370,13,3,12015,,1710.156,,,,,,144,40,0,,,,, +370,14,3,12016,,1710.181,,8.0,A#1,f,20,144,34,20,,,,g, +370,14,3,12016,,1710.231,,,,,,144,34,0,,,,, +370,11,1,12013,256,1710.256,,,,,,144,56,0,,,,, +370,15,3,12017,256,1710.256,21,32.0,A1,f,20,144,33,20,,,,, +370,16,4,12018,256,1710.256,,,,,,176,102,0,,,,, +370,10,0,12019,256,1710.331,,,,,,176,64,127,,,,,V +370,15,3,12017,256,1710.368,,,,,,144,33,0,,,,, +370,17,3,12020,277,1710.368,21,32.0,F2,mp,14,144,41,14,,,,, +370,18,1,12021,284,1710.406,28,32.0,C4,ppp+,6,144,60,6,,,,, +370,17,3,12020,277,1710.48,,,,,,144,41,0,,,,, +370,19,3,12022,298,1710.48,22,32.0,E2,p,11,144,40,11,,,,, +370,20,1,12023,312,1710.555,29,32.0,G#3,ppp+,6,144,56,6,,,,, +370,18,1,12021,284,1710.555,,,,,,144,60,0,,,,, +370,19,3,12022,298,1710.597,,,,,,144,40,0,,,,, +370,21,3,12024,320,1710.597,21,32.0,A#1,p-,10,144,34,10,,,,, +370,20,1,12023,312,1710.709,,,,,,144,56,0,,,,, +370,21,3,12024,320,1710.709,,,,,,144,34,0,,,,, +370,22,1,12025,341,1710.709,16,64.0,G2,pp-,7,144,43,7,,,,, +370,23,3,12026,341,1710.709,21,32.0,A1,pp,8,144,33,8,,,,, +370,22,1,12025,341,1710.794,,,,,,144,43,0,,,,, +370,24,1,12027,357,1710.794,17,64.0,C#5,pp-,7,144,73,7,,,,, +370,23,3,12026,341,1710.821,,,,,,144,33,0,,,,, +370,25,3,12028,362,1710.821,22,32.0,F2,pp-,7,144,41,7,,,,, +370,24,1,12027,357,1710.885,,,,,,144,73,0,,,,, +370,26,1,12029,374,1710.885,17,64.0,E6,pp-,7,144,88,7,,,,, +370,25,3,12028,362,1710.938,,,,,,144,41,0,,,,, +370,27,3,12030,384,1710.938,128,8.0,C#2,ppp,5,144,37,5,,,,, +370,26,1,12029,374,1710.976,,,,,,144,88,0,,,,, +370,28,1,12031,391,1710.976,17,64.0,C5,pp,8,144,72,8,,,,, +370,28,1,12031,391,1711.066,,,,,,144,72,0,,,,, +370,29,1,12032,408,1711.066,18,64.0,G#4,pp,8,144,68,8,,,,, +370,29,1,12032,408,1711.162,,,,,,144,68,0,,,,, +370,30,1,12033,426,1711.162,57,16.0,C5,pp,8,144,72,8,,,,, +370,30,1,12033,426,1711.466,,,,,,144,72,0,,,,, +370,31,1,12034,483,1711.466,29,32.0,G#3,pp+,9,144,56,9,,,,, +370,32,0,12035,483,1711.466,,,,,,,,,,6036,,, +370,27,3,12030,384,1711.62,,,,,,144,37,0,,,,, +370,31,1,12034,483,1711.62,,,,,,144,56,0,,,,, +370,33,1,12036,512,1711.62,28,32.0,G2,p-,10,144,43,10,,,,, +370,34,2,12037,512,1711.62,,,,,,176,102,0,,,,, +370,35,3,12038,512,1711.62,,,,,,176,102,0,,,,, +370,33,1,12036,512,1711.769,,,,,,144,43,0,,,,, +370,36,1,12039,540,1711.769,28,32.0,G#3,p-,10,144,56,10,,,,, +370,36,1,12039,540,1711.918,,,,,,144,56,0,,,,, +370,37,1,12040,568,1711.918,29,32.0,C#5,p,11,144,73,11,,,,, +370,37,1,12040,568,1712.073,,,,,,144,73,0,,,,, +370,38,1,12041,597,1712.073,57,16.0,E6,p,11,144,88,11,,,,, +370,38,1,12041,597,1712.376,,,,,,144,88,0,,,,, +370,39,1,12042,654,1712.376,,,,,,176,102,0,,,,, +370,40,0,12043,689,1712.413,,,,,,176,64,0,,,,,^ +370,40,0,12044,689,1712.713,,,,,,176,64,127,,,,,V +370,41,1,12045,,1712.984,,8.0,E4,f,20,144,64,20,,,,g, +370,41,1,12045,,1713.034,,,,,,144,64,0,,,,, +370,42,1,12046,768,1713.059,128,8.0,B4,f,20,144,71,20,,,,, +370,45,3,12047,,1713.059,,8.0,F#2,p,11,144,42,11,,,,g, +370,45,3,12047,,1713.109,,,,,,144,42,0,,,,, +370,46,3,12048,,1713.134,,8.0,B5,p,11,144,83,11,,,,g, +370,46,3,12048,,1713.184,,,,,,144,83,0,,,,, +370,47,3,12049,,1713.209,,8.0,D6,f,20,144,86,20,,,,g, +370,47,3,12049,,1713.259,,,,,,144,86,0,,,,, +370,48,3,12050,,1713.284,,8.0,A#1,p,11,144,34,11,,,,g, +370,48,3,12050,,1713.334,,,,,,144,34,0,,,,, +370,42,1,12046,768,1713.359,,,,,,144,71,0,,,,, +370,43,3,12051,,1713.359,,8.0,B4,p,11,144,71,11,,,,g, +370,44,3,12052,,1713.434,,8.0,E3,p,11,144,52,11,,,,g, +370,44,3,12052,,1713.484,,,,,,144,52,0,,,,, +370,49,3,12053,768,1713.509,170,8.0,C4,ppp,5,144,60,5,,,,, +370,43,3,12051,,1713.74,,,,,,144,71,0,,,,, +370,50,1,12054,,1714.19,,8.0,F#6,ppp,5,144,90,5,,,,g, +370,50,1,12054,,1714.24,,,,,,144,90,0,,,,, +370,51,1,12055,,1714.265,,8.0,G#5,ppp,5,144,80,5,,,,g, +370,51,1,12055,,1714.315,,,,,,144,80,0,,,,, +370,52,1,12056,,1714.34,,8.0,D7,ppp,5,144,98,5,,,,g, +370,52,1,12056,,1714.39,,,,,,144,98,0,,,,, +370,49,3,12053,768,1714.414,,,,,,144,60,0,,,,, +370,53,1,12057,,1714.415,,8.0,D#6,ppp,5,144,87,5,,,,g, +370,53,1,12057,,1714.465,,,,,,144,87,0,,,,, +370,54,1,12058,,1714.49,,8.0,A#7,ppp,5,144,106,5,,,,g, +370,54,1,12058,,1714.54,,,,,,144,106,0,,,,, +370,55,1,12059,896,1714.565,36,32.0,B4,mp,14,144,71,14,,,,, +370,55,1,12059,896,1714.757,,,,,,144,71,0,,,,, +370,56,1,12060,932,1714.757,37,32.0,D5,p+,12,144,74,12,,,,, +370,57,3,12061,938,1714.789,16,64.0,E5,ppp,5,144,76,5,,,,, +370,57,3,12061,938,1714.874,,,,,,144,76,0,,,,, +370,58,3,12062,954,1714.874,17,64.0,C4,ppp,5,144,60,5,,,,, +370,56,1,12060,932,1714.954,,,,,,144,74,0,,,,, +370,59,1,12063,969,1714.954,18,64.0,E4,p-,10,144,64,10,,,,, +370,58,3,12062,954,1714.965,,,,,,144,60,0,,,,, +370,60,3,12064,971,1714.965,17,64.0,G#3,ppp,5,144,56,5,,,,, +370,59,1,12063,969,1715.05,,,,,,144,64,0,,,,, +370,61,1,12065,987,1715.05,18,64.0,B4,pp+,9,144,71,9,,,,, +370,60,3,12064,971,1715.056,,,,,,144,56,0,,,,, +370,62,3,12066,988,1715.056,17,64.0,C4,ppp,5,144,60,5,,,,, +370,61,1,12065,987,1715.146,,,,,,144,71,0,,,,, +370,62,3,12066,988,1715.146,,,,,,144,60,0,,,,, +370,63,1,12067,1005,1715.146,19,64.0,D5,pp,8,144,74,8,,,,, +370,64,3,12068,1005,1715.146,19,64.0,G#3,ppp,5,144,56,5,,,,, +371,5,0,12069,16,1715.183,,,,,,176,64,0,,,,,^ +370,63,1,12067,1005,1715.247,,,,,,144,74,0,,,,, +370,64,3,12068,1005,1715.247,,,,,,144,56,0,,,,, +371,0,0,12070,0,1715.247,,,,,,,,,371,,,, +371,1,1,12071,0,1715.247,28,32.0,C#5,ppp,5,144,73,5,,,,, +371,2,2,12072,0,1715.247,,,,,,176,102,0,,,,, +371,3,3,12073,0,1715.247,,,,,,176,102,0,,,,, +371,4,4,12074,0,1715.247,,,,,,176,102,0,,,,, +371,1,1,12071,0,1715.396,,,,,,144,73,0,,,,, +371,6,1,12075,28,1715.396,28,32.0,G4,ppp+,6,144,67,6,,,,, +371,7,4,12076,36,1715.439,37,32.0,F#3,pp,8,144,54,8,,,,, +371,5,0,12077,16,1715.483,,,,,,176,64,127,,,,,V +371,6,1,12075,28,1715.546,,,,,,144,67,0,,,,, +371,8,1,12078,56,1715.546,29,32.0,C#6,ppp+,6,144,85,6,,,,, +371,7,4,12076,36,1715.636,,,,,,144,54,0,,,,, +371,9,4,12079,73,1715.636,36,32.0,A#2,pp-,7,144,46,7,,,,, +371,8,1,12078,56,1715.7,,,,,,144,85,0,,,,, +371,10,1,12080,85,1715.7,57,16.0,E6,pp-,7,144,88,7,,,,, +371,9,4,12079,73,1715.828,,,,,,144,46,0,,,,, +371,11,4,12081,109,1715.828,37,32.0,F#3,ppp,5,144,54,5,,,,, +371,10,1,12080,85,1716.004,,,,,,144,88,0,,,,, +371,12,1,12082,142,1716.004,28,32.0,C5,pp,8,144,72,8,,,,, +371,11,4,12081,109,1716.025,,,,,,144,54,0,,,,, +371,13,4,12083,146,1716.025,110,16.0,A#2,ppp-,4,144,46,4,,,,, +371,12,1,12082,142,1716.153,,,,,,144,72,0,,,,, +371,14,1,12084,170,1716.153,16,64.0,C#6,pp+,9,144,85,9,,,,, +371,14,1,12084,170,1716.238,,,,,,144,85,0,,,,, +371,15,1,12085,186,1716.238,17,64.0,G4,pp+,9,144,67,9,,,,, +371,15,1,12085,186,1716.329,,,,,,144,67,0,,,,, +371,16,1,12086,203,1716.329,17,64.0,E7,p-,10,144,100,10,,,,, +371,16,1,12086,203,1716.419,,,,,,144,100,0,,,,, +371,17,1,12087,220,1716.419,17,64.0,C6,p-,10,144,84,10,,,,, +371,17,1,12087,220,1716.51,,,,,,144,84,0,,,,, +371,18,1,12088,237,1716.51,19,64.0,G#4,p,11,144,68,11,,,,, +371,13,4,12083,146,1716.611,,,,,,144,46,0,,,,, +371,18,1,12088,237,1716.611,,,,,,144,68,0,,,,, +371,19,1,12089,256,1716.611,28,32.0,C#5,p,11,144,73,11,,,,, +371,20,3,12090,256,1716.611,,,,,,176,102,0,,,,, +371,21,4,12091,256,1716.611,,,,,,176,102,0,,,,, +371,19,1,12089,256,1716.76,,,,,,144,73,0,,,,, +371,22,1,12092,284,1716.76,28,32.0,G2,p+,12,144,43,12,,,,, +371,22,1,12092,284,1716.909,,,,,,144,43,0,,,,, +371,23,1,12093,312,1716.909,29,32.0,E6,mp-,13,144,88,13,,,,, +371,23,1,12093,312,1717.064,,,,,,144,88,0,,,,, +371,24,1,12094,341,1717.064,16,64.0,G1,mp-,13,144,31,13,,,,, +371,24,1,12094,341,1717.149,,,,,,144,31,0,,,,, +371,25,1,12095,357,1717.149,17,64.0,C#5,mp,14,144,73,14,,,,, +371,25,1,12095,357,1717.239,,,,,,144,73,0,,,,, +371,26,1,12096,374,1717.239,52,32.0,E5,mp,14,144,76,14,,,,, +371,27,3,12097,384,1717.293,18,64.0,E1,ff,22,144,28,22,,,,, +371,28,4,12098,384,1717.293,,,,,,176,102,0,,,,, +371,27,3,12097,384,1717.389,,,,,,144,28,0,,,,, +371,29,3,12099,402,1717.389,18,64.0,A#0,f-,19,144,22,19,,,,, +371,29,3,12099,402,1717.485,,,,,,144,22,0,,,,, +371,30,3,12100,420,1717.485,18,64.0,A0,mf-,16,144,21,16,,,,, +371,26,1,12096,374,1717.516,,,,,,144,76,0,,,,, +371,31,1,12101,426,1717.516,16,64.0,C2,mp,14,144,36,14,,,,, +371,30,3,12100,420,1717.58,,,,,,144,21,0,,,,, +371,32,3,12102,438,1717.58,19,64.0,F1,mp,14,144,29,14,,,,, +371,31,1,12101,426,1717.602,,,,,,144,36,0,,,,, +371,33,1,12103,442,1717.602,17,64.0,E2,mp,14,144,40,14,,,,, +371,34,3,12104,457,1717.682,18,64.0,C#1,p,11,144,25,11,,,,, +371,32,3,12102,438,1717.682,,,,,,144,29,0,,,,, +371,33,1,12103,442,1717.692,,,,,,144,40,0,,,,, +371,35,1,12105,459,1717.692,17,64.0,G#1,mp,14,144,32,14,,,,, +371,34,3,12104,457,1717.777,,,,,,144,25,0,,,,, +371,36,3,12106,475,1717.777,18,64.0,F1,pp,8,144,29,8,,,,, +371,35,1,12105,459,1717.783,,,,,,144,32,0,,,,, +371,37,1,12107,476,1717.783,17,64.0,C2,mp,14,144,36,14,,,,, +371,40,0,12108,498,1717.787,,,,,,176,64,0,,,,,^ +371,36,3,12106,475,1717.873,,,,,,144,29,0,,,,, +371,37,1,12107,476,1717.873,,,,,,144,36,0,,,,, +371,38,1,12109,493,1717.873,19,64.0,G#1,mp,14,144,32,14,,,,, +371,39,3,12110,493,1717.873,19,64.0,C#1,ppp,5,144,25,5,,,,, +371,41,1,12111,512,1717.975,,,,,,176,102,0,,,,, +371,43,2,12112,512,1717.975,256,4.0,C6,ff,22,144,84,22,,,,, +371,44,3,12113,512,1717.975,,,,,,176,102,0,,,,, +371,45,4,12114,512,1717.975,256,4.0,F5,ff,22,144,77,22,,,,, +371,38,1,12109,493,1717.975,,,,,,144,32,0,,,,, +371,39,3,12110,493,1717.975,,,,,,144,25,0,,,,, +371,42,0,12115,512,1718.087,,,,,,176,64,127,,,,,V +371,46,3,12116,,1718.656,,8.0,D#4,pp,8,144,63,8,,,,g, +371,46,3,12116,,1718.706,,,,,,144,63,0,,,,, +371,47,3,12117,,1718.731,,8.0,C5,pp+,9,144,72,9,,,,g, +371,47,3,12117,,1718.781,,,,,,144,72,0,,,,, +371,48,3,12118,640,1718.806,384,4.0,F#4,p,11,144,66,11,,,,, +371,43,2,12112,512,1719.338,,,,,,144,84,0,,,,, +371,45,4,12114,512,1719.338,,,,,,144,77,0,,,,, +371,49,1,12119,768,1719.488,,,,,,176,102,0,,,,, +371,57,2,12120,768,1719.488,51,16.0,C6,ff,22,144,84,22,,,,, +371,58,4,12121,768,1719.488,32,32.0,F5,ff,22,144,77,22,,,,, +371,58,4,12121,768,1719.659,,,,,,144,77,0,,,,, +371,59,4,12122,800,1719.659,32,32.0,F5,ff,22,144,77,22,,,,, +371,57,2,12120,768,1719.76,,,,,,144,84,0,,,,, +371,50,2,12123,,1719.76,,8.0,F#6,ppp,5,144,90,5,,,,g, +371,50,2,12123,,1719.81,,,,,,144,90,0,,,,, +371,59,4,12122,800,1719.829,,,,,,144,77,0,,,,, +371,51,2,12124,,1719.835,,8.0,G#5,ppp,5,144,80,5,,,,g, +371,51,2,12124,,1719.885,,,,,,144,80,0,,,,, +371,52,2,12125,,1719.91,,8.0,D7,ppp,5,144,98,5,,,,g, +371,52,2,12125,,1719.96,,,,,,144,98,0,,,,, +371,53,2,12126,,1719.985,,8.0,F#6,ppp,5,144,90,5,,,,g, +371,53,2,12126,,1720.035,,,,,,144,90,0,,,,, +371,54,2,12127,,1720.06,,8.0,D7,ppp,5,144,98,5,,,,g, +371,54,2,12127,,1720.11,,,,,,144,98,0,,,,, +371,55,2,12128,,1720.135,,8.0,D#6,ppp,5,144,87,5,,,,g, +371,55,2,12128,,1720.185,,,,,,144,87,0,,,,, +371,56,2,12129,,1720.21,,8.0,A#7,ppp,5,144,106,5,,,,g, +371,56,2,12129,,1720.26,,,,,,144,106,0,,,,, +371,60,2,12130,819,1720.285,153,8.0,C6,ff,22,144,84,22,,,,, +371,61,4,12131,832,1720.354,,,,,,176,102,0,,,,, +371,62,1,12132,853,1720.466,16,32.0,C#6,p,11,144,85,11,,,,, +371,62,1,12132,853,1720.551,,,,,,144,85,0,,,,, +371,63,1,12133,869,1720.551,17,32.0,G3,p,11,144,55,11,,,,, +371,63,1,12133,869,1720.642,,,,,,144,55,0,,,,, +371,64,1,12134,886,1720.642,18,32.0,E6,p,11,144,88,11,,,,, +371,64,1,12134,886,1720.738,,,,,,144,88,0,,,,, +371,65,1,12135,904,1720.738,17,32.0,G2,p,11,144,43,11,,,,, +371,65,1,12135,904,1720.828,,,,,,144,43,0,,,,, +371,66,1,12136,921,1720.828,17,32.0,C#2,p,11,144,37,11,,,,, +371,48,3,12118,640,1720.852,,,,,,144,66,0,,,,, +371,66,1,12136,921,1720.919,,,,,,144,37,0,,,,, +371,67,1,12137,938,1720.919,16,32.0,E7,p,11,144,100,11,,,,, +371,67,1,12137,938,1721.004,,,,,,144,100,0,,,,, +371,68,1,12138,954,1721.004,17,32.0,C3,p,11,144,48,11,,,,, +371,68,1,12138,954,1721.095,,,,,,144,48,0,,,,, +371,69,1,12139,971,1721.095,18,32.0,G#2,p,11,144,44,11,,,,, +371,60,2,12130,819,1721.1,,,,,,144,84,0,,,,, +371,70,2,12140,972,1721.1,52,16.0,C6,mp,14,144,84,14,,,,, +371,69,1,12139,971,1721.19,,,,,,144,44,0,,,,, +371,71,1,12141,989,1721.19,17,32.0,C4,p,11,144,60,11,,,,, +371,73,0,12142,1023,1721.224,,,,,,176,64,0,,,,,^ +371,71,1,12141,989,1721.281,,,,,,144,60,0,,,,, +371,72,1,12143,1006,1721.281,18,32.0,A2,p,11,144,45,11,,,,, +371,70,2,12140,972,1721.377,,,,,,144,84,0,,,,, +371,72,1,12143,1006,1721.377,,,,,,144,45,0,,,,, +372,3,0,12144,0,1721.377,,,,,,,,,372,,,, +372,1,3,12145,0,1721.377,,,,,,176,102,0,,,,, +372,2,4,12146,0,1721.377,768,2.0,G1,ff,22,144,31,22,,,,, +372,4,1,12147,0,1721.377,73,16.0,G#5,mp,14,144,80,14,,,,, +372,5,1,12148,0,1721.377,64,16.0,B5,mp,14,144,83,14,,,,, +372,6,2,12149,0,1721.377,25,32.0,C6,ff,22,144,84,22,,,,, +372,6,2,12149,0,1721.51,,,,,,144,84,0,,,,, +372,7,2,12150,25,1721.51,77,16.0,C6,f,20,144,84,20,,,,, +372,0,0,12151,0,1721.524,,,,,,176,64,127,,,,,V +372,5,1,12148,0,1721.718,,,,,,144,83,0,,,,, +372,4,1,12147,0,1721.766,,,,,,144,80,0,,,,, +372,8,1,12152,73,1721.766,36,32.0,G#5,mf+,18,144,80,18,,,,, +372,9,1,12153,73,1721.766,32,32.0,B5,mf+,18,144,83,18,,,,, +372,7,2,12150,25,1721.92,,,,,,144,84,0,,,,, +372,10,2,12154,102,1721.92,,,,,,176,102,0,,,,, +372,9,1,12153,73,1721.936,,,,,,144,83,0,,,,, +372,8,1,12152,73,1721.957,,,,,,144,80,0,,,,, +372,11,1,12155,109,1721.957,147,8.0,F5,ff,22,144,77,22,,,,, +372,12,1,12156,109,1721.957,128,8.0,B5,ff,22,144,83,22,,,,, +372,13,1,12157,109,1721.957,128,8.0,C6,ff,22,144,84,22,,,,, +372,14,1,12158,109,1721.957,128,8.0,E6,ff,22,144,88,22,,,,, +372,12,1,12156,109,1722.639,,,,,,144,83,0,,,,, +372,13,1,12157,109,1722.639,,,,,,144,84,0,,,,, +372,14,1,12158,109,1722.639,,,,,,144,88,0,,,,, +372,11,1,12155,109,1722.74,,,,,,144,77,0,,,,, +372,15,3,12159,256,1722.74,512,2.0,F3,ff,22,144,53,22,,,,, +372,16,1,12160,256,1722.74,256,4.0,F5,mf,17,144,77,17,,,,, +372,17,1,12161,256,1722.74,256,4.0,B5,mf,17,144,83,17,,,,, +372,18,1,12162,256,1722.74,256,4.0,E6,mf,17,144,88,17,,,,, +372,19,2,12163,256,1722.74,,,,,,176,102,0,,,,, +372,20,1,12164,512,1724.104,36,32.0,F5,,,,,,,,,, +372,21,1,12165,512,1724.104,32,32.0,B5,,,,,,,,,, +372,22,1,12166,512,1724.104,32,32.0,E6,,,,,,,,,, +372,23,2,12167,512,1724.104,,,,,,176,102,0,,,,, +372,17,1,12161,256,1724.275,,,,,,144,83,0,,,,, +372,18,1,12162,256,1724.275,,,,,,144,88,0,,,,, +372,24,1,12168,548,1724.296,73,16.0,G2,p,11,144,43,11,,,,, +372,16,1,12160,256,1724.296,,,,,,144,77,0,,,,, +372,25,2,12169,614,1724.647,38,32.0,B3,ppp,5,144,59,5,,,,, +372,24,1,12168,548,1724.685,,,,,,144,43,0,,,,, +372,26,1,12170,621,1724.685,110,16.0,G#1,p-,10,144,32,10,,,,, +372,25,2,12169,614,1724.85,,,,,,144,59,0,,,,, +372,27,2,12171,652,1724.85,39,32.0,E3,ppp,5,144,52,5,,,,, +372,27,2,12171,652,1725.058,,,,,,144,52,0,,,,, +372,28,2,12172,691,1725.058,25,32.0,B3,ppp,5,144,59,5,,,,, +372,28,2,12172,691,1725.191,,,,,,144,59,0,,,,, +372,29,2,12173,716,1725.191,16,32.0,D4,ppp,5,144,62,5,,,,, +372,30,1,12174,731,1725.271,37,32.0,G2,pp,8,144,43,8,,,,, +372,26,1,12170,621,1725.271,,,,,,144,32,0,,,,, +372,29,2,12173,716,1725.276,,,,,,144,62,0,,,,, +372,31,2,12175,732,1725.276,18,32.0,E3,ppp,5,144,52,5,,,,, +372,31,2,12175,732,1725.372,,,,,,144,52,0,,,,, +372,32,2,12176,750,1725.372,18,32.0,D4,ppp,5,144,62,5,,,,, +372,32,2,12176,750,1725.468,,,,,,144,62,0,,,,, +372,33,1,12177,768,1725.468,36,32.0,G2,,,,,,,,,, +372,34,2,12178,768,1725.468,102,8.0,A#1,ppp,5,144,34,5,,,,, +372,35,3,12179,768,1725.468,,,,,,176,102,0,,,,, +372,36,4,12180,768,1725.468,,,,,,176,102,0,,,,, +372,2,4,12146,0,1725.468,,,,,,144,31,0,,,,, +372,15,3,12159,256,1725.468,,,,,,144,53,0,,,,, +372,30,1,12174,731,1725.66,,,,,,144,43,0,,,,, +372,37,1,12181,804,1725.66,110,16.0,G#1,pp,8,144,32,8,,,,, +372,34,2,12178,768,1726.011,,,,,,144,34,0,,,,, +372,38,2,12182,870,1726.011,26,32.0,A#1,ppp,5,144,34,5,,,,, +372,38,2,12182,870,1726.15,,,,,,144,34,0,,,,, +372,39,2,12183,896,1726.15,25,32.0,F#2,ppp,5,144,42,5,,,,, +372,37,1,12181,804,1726.245,,,,,,144,32,0,,,,, +372,40,1,12184,914,1726.245,36,32.0,B5,ppp,5,144,83,5,,,,, +372,41,3,12185,914,1726.245,110,16.0,G#5,ppp,5,144,80,5,,,,, +372,39,2,12183,896,1726.283,,,,,,144,42,0,,,,, +372,42,2,12186,921,1726.283,,,,,,176,102,0,,,,, +372,40,1,12184,914,1726.437,,,,,,144,83,0,,,,, +372,43,1,12187,950,1726.437,37,32.0,G2,ppp+,6,144,43,6,,,,, +372,43,1,12187,950,1726.634,,,,,,144,43,0,,,,, +372,44,1,12188,987,1726.634,37,32.0,G#1,ppp,5,144,32,5,,,,, +372,45,0,12189,1023,1726.826,,,,,,176,64,0,,,,,^ +372,44,1,12188,987,1726.831,,,,,,144,32,0,,,,, +373,0,0,12190,0,1726.831,,,,,,,,,373,,,, +373,1,1,12191,0,1726.831,,,,,,176,102,0,,,,, +373,2,2,12192,0,1726.831,,,,,,176,102,0,,,,, +373,3,3,12193,0,1726.831,170,8.0,G#5,,,,,,,,,, +372,41,3,12185,914,1727.737,,,,,,144,80,0,,,,, +373,4,3,12194,170,1727.737,57,16.0,G#5,ppp,5,144,80,5,,,,, +373,4,3,12194,170,1728.041,,,,,,144,80,0,,,,, +373,6,3,12195,227,1728.041,29,32.0,A6,ppp,5,144,93,5,,,,, +373,5,0,12196,227,1728.041,,,,,,176,64,127,,,,,V +373,6,3,12195,227,1728.195,,,,,,144,93,0,,,,, +373,7,1,12197,256,1728.195,56,16.0,F4,ppp,5,144,65,5,,,,, +373,8,2,12198,256,1728.195,,,,,,176,102,0,,,,, +373,9,3,12199,256,1728.195,,,,,,176,102,0,,,,, +373,7,1,12197,256,1728.493,,,,,,144,65,0,,,,, +373,10,1,12200,312,1728.493,29,32.0,A#3,ppp,5,144,58,5,,,,, +373,,,12201,341,1728.498,,,,,,176,64,0,,,,,^ +373,10,1,12200,312,1728.648,,,,,,144,58,0,,,,, +373,11,1,12202,341,1728.648,43,32.0,F5,ppp,5,144,77,5,,,,, +373,12,0,12203,341,1728.798,,,,,,176,64,127,,,,,V +373,11,1,12202,341,1728.877,,,,,,144,77,0,,,,, +373,13,1,12204,384,1728.877,42,32.0,C4,ppp,5,144,60,5,,,,, +373,14,0,12205,384,1728.877,,,,,,,,,,6037,,, +373,13,1,12204,384,1729.101,,,,,,144,60,0,,,,, +373,15,1,12206,426,1729.101,29,32.0,A#4,ppp,5,144,70,5,,,,, +373,16,1,12207,455,1729.255,28,32.0,C4,ppp+,6,144,60,6,,,,, +373,15,1,12206,426,1729.404,,,,,,144,70,0,,,,, +373,16,1,12207,455,1729.404,,,,,,144,60,0,,,,, +373,17,1,12208,483,1729.404,29,32.0,A#4,ppp+,6,144,70,6,,,,, +373,17,1,12208,483,1729.559,,,,,,144,70,0,,,,, +373,18,1,12209,512,1729.559,25,32.0,C4,ppp+,6,144,60,6,,,,, +373,19,2,12210,512,1729.559,,,,,,176,102,0,,,,, +373,18,1,12209,512,1729.692,,,,,,144,60,0,,,,, +373,20,1,12211,537,1729.692,26,32.0,A#4,ppp+,6,144,70,6,,,,, +373,20,1,12211,537,1729.83,,,,,,144,70,0,,,,, +373,21,1,12212,563,1729.83,25,32.0,G#5,pp-,7,144,80,7,,,,, +373,21,1,12212,563,1729.964,,,,,,144,80,0,,,,, +373,22,1,12213,588,1729.964,103,8.0,E6,pp-,7,144,88,7,,,,, +373,22,1,12213,588,1730.512,,,,,,144,88,0,,,,, +373,23,1,12214,691,1730.512,25,32.0,G#5,pp,8,144,80,8,,,,, +373,23,1,12214,691,1730.645,,,,,,144,80,0,,,,, +373,24,1,12215,716,1730.645,52,16.0,E6,pp,8,144,88,8,,,,, +373,25,2,12216,736,1730.752,32,32.0,F3,mf,17,144,53,17,,,,, +373,25,2,12216,736,1730.922,,,,,,144,53,0,,,,, +373,26,1,12217,768,1730.922,,,,,,176,102,0,,,,, +373,27,2,12218,768,1730.922,256,4.0,G#6,mf,17,144,92,17,,,,, +373,28,3,12219,768,1730.922,32,32.0,F5,ff,22,144,77,22,,,,, +373,24,1,12215,716,1730.922,,,,,,144,88,0,,,,, +373,28,3,12219,768,1731.093,,,,,,144,77,0,,,,, +373,29,3,12220,800,1731.093,96,16.0,D4,ff,22,144,62,22,,,,, +373,30,3,12221,800,1731.093,64,16.0,F5,ff,22,144,77,22,,,,, +373,31,1,12222,896,1731.604,32,32.0,G#5,pp,8,144,80,8,,,,, +373,32,3,12223,896,1731.604,64,16.0,D4,,,,,,,,,, +373,33,3,12224,896,1731.604,64,16.0,F5,,,,,,,,,, +373,30,3,12221,800,1731.775,,,,,,144,77,0,,,,, +373,31,1,12222,896,1731.775,,,,,,144,80,0,,,,, +373,34,1,12225,928,1731.775,96,16.0,E6,pp,8,144,88,8,,,,, +373,29,3,12220,800,1731.945,,,,,,144,62,0,,,,, +373,35,3,12226,960,1731.945,64,16.0,D6,f,20,144,86,20,,,,, +373,27,2,12218,768,1732.286,,,,,,144,92,0,,,,, +373,35,3,12226,960,1732.286,,,,,,144,86,0,,,,, +374,0,0,12227,0,1732.286,,,,,,,,,374,,,, +374,1,1,12228,0,1732.286,,,,,,176,102,0,,,,, +374,2,2,12229,0,1732.286,512,2.0,G#6,mp,14,144,92,14,,,,, +374,3,3,12230,0,1732.286,64,16.0,F5,f,20,144,77,20,,,,, +374,4,3,12231,0,1732.286,64,16.0,D6,f,20,144,86,20,,,,, +374,5,4,12232,0,1732.286,,,,,,176,102,0,,,,, +373,34,1,12225,928,1732.286,,,,,,144,88,0,,,,, +374,3,3,12230,0,1732.627,,,,,,144,77,0,,,,, +374,4,3,12231,0,1732.627,,,,,,144,86,0,,,,, +374,6,1,12233,64,1732.627,192,8.0,D4,p,11,144,62,11,,,,, +374,7,3,12234,64,1732.627,192,8.0,C#1,mp,14,144,25,14,,,,, +374,8,1,12235,256,1733.65,256,4.0,D4,,,,,,,,,, +374,9,3,12236,256,1733.65,192,8.0,C#1,,,,,,,,,, +374,10,4,12237,256,1733.65,,,,,,176,102,0,,,,, +374,7,3,12234,64,1734.672,,,,,,144,25,0,,,,, +374,11,3,12238,448,1734.672,64,16.0,F5,pp+,9,144,77,9,,,,, +374,11,3,12238,448,1735.013,,,,,,144,77,0,,,,, +374,12,0,12239,512,1735.013,,,,,,176,64,0,,,,,^ +374,13,1,12240,512,1735.013,,,,,,176,102,0,,,,, +374,14,2,12241,512,1735.013,,,,,,176,102,0,,,,, +374,15,3,12242,512,1735.013,96,16.0,E1,pp,8,144,28,8,,,,, +374,16,4,12243,512,1735.013,64,16.0,C#1,pp,8,144,25,8,,,,, +374,2,2,12229,0,1735.013,,,,,,144,92,0,,,,, +374,6,1,12233,64,1735.013,,,,,,144,62,0,,,,, +374,22,2,12244,,1735.327,,8.0,C4,ppp,5,144,60,5,,,,g, +374,16,4,12243,512,1735.354,,,,,,144,25,0,,,,, +374,18,4,12245,576,1735.354,,,,,,176,102,0,,,,, +374,17,0,12246,576,1735.354,,,,,,176,64,127,,,,,V +374,22,2,12244,,1735.377,,,,,,144,60,0,,,,, +374,23,2,12247,,1735.402,,8.0,F6,ppp,5,144,89,5,,,,g, +374,23,2,12247,,1735.452,,,,,,144,89,0,,,,, +374,24,2,12248,,1735.477,,8.0,G#6,ppp,5,144,92,5,,,,g, +374,19,3,12249,608,1735.525,96,16.0,B2,ppp,5,144,47,5,,,,, +374,15,3,12242,512,1735.525,,,,,,144,28,0,,,,, +374,24,2,12248,,1735.527,,,,,,144,92,0,,,,, +374,25,2,12250,,1735.552,,8.0,F6,ppp,5,144,89,5,,,,g, +374,25,2,12250,,1735.602,,,,,,144,89,0,,,,, +374,26,2,12251,,1735.627,,8.0,A#5,ppp+,6,144,82,6,,,,g, +374,26,2,12251,,1735.677,,,,,,144,82,0,,,,, +374,27,2,12252,,1735.702,,8.0,C4,ppp+,6,144,60,6,,,,g, +374,27,2,12252,,1735.752,,,,,,144,60,0,,,,, +374,28,2,12253,,1735.777,,8.0,F6,ppp+,6,144,89,6,,,,g, +374,28,2,12253,,1735.827,,,,,,144,89,0,,,,, +374,29,2,12254,,1735.852,,8.0,G#6,pp-,7,144,92,7,,,,g, +374,29,2,12254,,1735.902,,,,,,144,92,0,,,,, +374,30,2,12255,,1735.927,,8.0,A#5,pp-,7,144,82,7,,,,g, +374,30,2,12255,,1735.977,,,,,,144,82,0,,,,, +374,31,2,12256,,1736.002,,8.0,G#6,pp,8,144,92,8,,,,g, +374,19,3,12249,608,1736.036,,,,,,144,47,0,,,,, +374,20,3,12257,704,1736.036,64,16.0,G#5,ff,22,144,80,22,,,,, +374,31,2,12256,,1736.052,,,,,,144,92,0,,,,, +374,32,2,12258,,1736.077,,8.0,E7,pp,8,144,100,8,,,,g, +374,32,2,12258,,1736.127,,,,,,144,100,0,,,,, +374,33,2,12259,,1736.152,,8.0,A#5,pp+,9,144,82,9,,,,g, +374,33,2,12259,,1736.202,,,,,,144,82,0,,,,, +374,34,2,12260,,1736.227,,8.0,E7,pp+,9,144,100,9,,,,g, +374,34,2,12260,,1736.277,,,,,,144,100,0,,,,, +374,37,4,12261,,1736.302,,8.0,F5,pp+,9,144,77,9,,,,g, +374,37,4,12261,,1736.352,,,,,,144,77,0,,,,, +374,20,3,12257,704,1736.377,,,,,,144,80,0,,,,, +374,21,1,12262,768,1736.377,,,,,,176,102,0,,,,, +374,35,2,12263,768,1736.377,,,,,,176,102,0,,,,, +374,36,3,12264,768,1736.377,32,32.0,E2,mf,17,144,40,17,,,,, +374,38,4,12265,768,1736.377,256,4.0,C3,pp,8,144,48,8,,,,, +374,36,3,12264,768,1736.547,,,,,,144,40,0,,,,, +374,39,3,12266,800,1736.547,32,32.0,G#5,mp,14,144,80,14,,,,, +374,39,3,12266,800,1736.718,,,,,,144,80,0,,,,, +374,40,3,12267,832,1736.718,64,16.0,E2,p,11,144,40,11,,,,, +374,40,3,12267,832,1737.059,,,,,,144,40,0,,,,, +374,41,3,12268,896,1737.059,73,16.0,G#5,pp,8,144,80,8,,,,, +374,43,0,12269,969,1737.298,,,,,,176,64,0,,,,,^ +374,42,1,12270,960,1737.4,64,16.0,C#3,ppp,5,144,49,5,,,,, +374,44,3,12271,969,1737.448,36,32.0,E2,f,20,144,40,20,,,,, +374,41,3,12268,896,1737.448,,,,,,144,80,0,,,,, +374,43,0,12272,969,1737.598,,,,,,176,64,127,,,,,V +374,44,3,12271,969,1737.639,,,,,,144,40,0,,,,, +374,45,3,12273,1005,1737.639,19,64.0,C5,pp,8,144,72,8,,,,, +374,42,1,12270,960,1737.74,,,,,,144,49,0,,,,, +374,45,3,12273,1005,1737.74,,,,,,144,72,0,,,,, +375,0,0,12274,0,1737.74,,,,,,,,,375,,,, +375,1,1,12275,0,1737.74,,,,,,176,102,0,,,,, +375,2,2,12276,0,1737.74,,,,,,176,102,0,,,,, +375,3,3,12277,0,1737.74,36,32.0,B2,f,20,144,47,20,,,,, +375,4,4,12278,0,1737.74,,,,,,176,102,0,,,,, +374,38,4,12265,768,1737.74,,,,,,144,48,0,,,,, +375,3,3,12277,0,1737.932,,,,,,144,47,0,,,,, +375,5,3,12279,36,1737.932,37,32.0,C5,f,20,144,72,20,,,,, +375,5,3,12279,36,1738.129,,,,,,144,72,0,,,,, +375,6,3,12280,73,1738.129,18,64.0,B2,pp,8,144,47,8,,,,, +375,6,3,12280,73,1738.225,,,,,,144,47,0,,,,, +375,7,3,12281,91,1738.225,37,32.0,F3,mf,17,144,53,17,,,,, +375,7,3,12281,91,1738.422,,,,,,144,53,0,,,,, +375,8,3,12282,128,1738.422,21,32.0,G#5,fff,24,144,80,23,,,,, +375,8,3,12282,128,1738.534,,,,,,144,80,0,,,,, +375,9,3,12283,149,1738.534,21,32.0,E2,f-,19,144,40,19,,,,, +375,9,3,12283,149,1738.646,,,,,,144,40,0,,,,, +375,10,3,12284,170,1738.646,22,32.0,C5,mp,14,144,72,14,,,,, +375,10,3,12284,170,1738.763,,,,,,144,72,0,,,,, +375,11,3,12285,192,1738.763,21,32.0,B2,pp,8,144,47,8,,,,, +375,13,0,12286,224,1738.869,,,,,,176,64,0,,,,,^ +375,11,3,12285,192,1738.875,,,,,,144,47,0,,,,, +375,12,3,12287,213,1738.875,43,16.0,F3,pp,8,144,53,8,,,,, +375,14,2,12288,224,1738.934,16,64.0,G5,pp,8,144,79,8,,,,, +375,14,2,12288,224,1739.019,,,,,,144,79,0,,,,, +375,15,2,12289,240,1739.019,16,64.0,A1,pp,8,144,33,8,,,,, +375,12,3,12287,213,1739.104,,,,,,144,53,0,,,,, +375,15,2,12289,240,1739.104,,,,,,144,33,0,,,,, +375,16,3,12290,256,1739.104,25,32.0,D4,pp,8,144,62,8,,,,, +375,17,0,12291,256,1739.104,,,,,,,,,,6038,,, +375,19,1,12292,256,1739.104,,,,,,176,102,0,,,,, +375,20,2,12293,256,1739.104,,,,,,176,102,0,,,,, +375,21,4,12294,256,1739.104,,,,,,176,102,0,,,,, +375,18,0,12295,256,1739.169,,,,,,176,64,127,,,,,V +375,16,3,12290,256,1739.237,,,,,,144,62,0,,,,, +375,22,3,12296,281,1739.237,26,32.0,F4,p-,10,144,65,10,,,,, +375,22,3,12296,281,1739.376,,,,,,144,65,0,,,,, +375,23,3,12297,307,1739.376,25,32.0,D4,p+,12,144,62,12,,,,, +375,23,3,12297,307,1739.509,,,,,,144,62,0,,,,, +375,24,3,12298,332,1739.509,52,16.0,C#3,mp,14,144,49,14,,,,, +375,24,3,12298,332,1739.786,,,,,,144,49,0,,,,, +375,25,3,12299,384,1739.786,25,32.0,A2,mf+,18,144,45,18,,,,, +375,25,3,12299,384,1739.919,,,,,,144,45,0,,,,, +375,26,3,12300,409,1739.919,26,32.0,G#5,f,20,144,80,20,,,,, +375,26,3,12300,409,1740.058,,,,,,144,80,0,,,,, +375,27,3,12301,435,1740.058,25,32.0,A2,ff,22,144,45,22,,,,, +375,27,3,12301,435,1740.191,,,,,,144,45,0,,,,, +375,28,3,12302,460,1740.191,16,32.0,F4,fff,24,144,65,23,,,,, +375,31,0,12303,502,1740.264,,,,,,176,64,0,,,,,^ +375,28,3,12302,460,1740.276,,,,,,144,65,0,,,,, +375,29,3,12304,476,1740.276,18,32.0,C#4,fff,24,144,61,23,,,,, +375,29,3,12304,476,1740.372,,,,,,144,61,0,,,,, +375,30,3,12305,494,1740.372,18,32.0,D4,fff,24,144,62,23,,,,, +375,30,3,12305,494,1740.468,,,,,,144,62,0,,,,, +375,32,3,12306,,1740.468,,8.0,C4,ppp,5,144,60,5,,,,g, +375,32,3,12306,,1740.518,,,,,,144,60,0,,,,, +375,33,3,12307,,1740.543,,8.0,A5,ppp,5,144,81,5,,,,g, +375,37,4,12308,,1740.543,,8.0,G#3,f,20,144,56,20,,,,g, +375,31,0,12309,502,1740.564,,,,,,176,64,127,,,,,V +375,33,3,12307,,1740.593,,,,,,144,81,0,,,,, +375,37,4,12308,,1740.593,,,,,,144,56,0,,,,, +375,34,3,12310,512,1740.618,256,4.0,C3,f,20,144,48,20,,,,, +375,35,3,12311,512,1740.618,256,4.0,D#5,pp,8,144,75,8,,,,, +375,36,3,12312,512,1740.618,256,4.0,A5,pp,8,144,81,8,,,,, +375,38,4,12313,512,1740.618,32,32.0,G#4,fff,24,144,68,23,,,,, +375,39,1,12314,512,1740.618,,,,,,176,102,0,,,,, +375,40,2,12315,512,1740.618,,,,,,176,102,0,,,,, +375,38,4,12313,512,1740.788,,,,,,144,68,0,,,,, +375,41,4,12316,544,1740.788,32,32.0,A3,fff,24,144,57,23,,,,, +375,41,4,12316,544,1740.959,,,,,,144,57,0,,,,, +375,42,4,12317,576,1740.959,192,8.0,F4,fff,24,144,65,23,,,,, +375,43,1,12318,614,1741.161,26,32.0,D7,pppp,2,144,98,2,,,,, +375,43,1,12318,614,1741.3,,,,,,144,98,0,,,,, +375,44,1,12319,640,1741.3,16,32.0,D#6,pppp,2,144,87,2,,,,, +375,44,1,12319,640,1741.385,,,,,,144,87,0,,,,, +375,45,1,12320,656,1741.385,18,32.0,F#6,pppp,2,144,90,2,,,,, +375,45,1,12320,656,1741.481,,,,,,144,90,0,,,,, +375,46,1,12321,674,1741.481,17,32.0,D#6,pppp,2,144,87,2,,,,, +375,46,1,12321,674,1741.571,,,,,,144,87,0,,,,, +375,47,1,12322,691,1741.571,25,32.0,F#6,pppp,2,144,90,2,,,,, +375,47,1,12322,691,1741.704,,,,,,144,90,0,,,,, +375,48,1,12323,716,1741.704,26,32.0,A#7,pppp,2,144,106,2,,,,, +375,49,1,12324,742,1741.843,26,32.0,G#5,pppp,2,144,80,2,,,,, +375,49,1,12324,742,1741.981,,,,,,144,80,0,,,,, +375,50,1,12325,768,1741.981,25,32.0,D#6,pppp,2,144,87,2,,,,, +375,51,3,12326,768,1741.981,128,8.0,G#6,ff,22,144,92,22,,,,, +375,52,4,12327,768,1741.981,,,,,,176,102,0,,,,, +375,48,1,12323,716,1741.993,,,,,,144,106,0,,,,, +375,50,1,12325,768,1742.115,,,,,,144,87,0,,,,, +375,53,1,12328,793,1742.115,26,32.0,F#6,pppp,2,144,90,2,,,,, +375,34,3,12310,512,1742.131,,,,,,144,48,0,,,,, +375,35,3,12311,512,1742.131,,,,,,144,75,0,,,,, +375,36,3,12312,512,1742.131,,,,,,144,81,0,,,,, +375,42,4,12317,576,1742.131,,,,,,144,65,0,,,,, +375,53,1,12328,793,1742.253,,,,,,144,90,0,,,,, +375,54,1,12329,819,1742.253,25,32.0,A#7,pppp,2,144,106,2,,,,, +375,54,1,12329,819,1742.386,,,,,,144,106,0,,,,, +375,55,1,12330,844,1742.386,26,32.0,G#5,pppp,2,144,80,2,,,,, +375,55,1,12330,844,1742.525,,,,,,144,80,0,,,,, +375,56,1,12331,870,1742.525,16,32.0,D7,pppp,2,144,98,2,,,,, +375,56,1,12331,870,1742.61,,,,,,144,98,0,,,,, +375,57,1,12332,886,1742.61,18,32.0,F#6,pppp,2,144,90,2,,,,, +375,51,3,12326,768,1742.663,,,,,,144,92,0,,,,, +375,58,3,12333,896,1742.663,32,32.0,G#6,f,20,144,92,20,,,,, +375,57,1,12332,886,1742.706,,,,,,144,90,0,,,,, +375,59,1,12334,904,1742.706,17,32.0,D#5,pppp,2,144,75,2,,,,, +375,59,1,12334,904,1742.796,,,,,,144,75,0,,,,, +375,60,1,12335,921,1742.796,16,32.0,F#5,pppp,2,144,78,2,,,,, +375,58,3,12333,896,1742.834,,,,,,144,92,0,,,,, +375,61,3,12336,928,1742.834,32,32.0,E7,f-,19,144,100,19,,,,, +375,60,1,12335,921,1742.882,,,,,,144,78,0,,,,, +375,62,1,12337,937,1742.882,18,32.0,D#5,pppp,2,144,75,2,,,,, +375,62,1,12337,937,1742.977,,,,,,144,75,0,,,,, +375,63,1,12338,955,1742.977,17,32.0,G#4,pppp,2,144,68,2,,,,, +375,61,3,12336,928,1743.004,,,,,,144,100,0,,,,, +375,64,3,12339,960,1743.004,32,32.0,A#5,mf,17,144,82,17,,,,, +375,63,1,12338,955,1743.068,,,,,,144,68,0,,,,, +375,65,1,12340,972,1743.068,26,32.0,D6,pppp,2,144,86,2,,,,, +375,64,3,12339,960,1743.175,,,,,,144,82,0,,,,, +375,66,3,12341,992,1743.175,32,32.0,G#6,mf-,16,144,92,16,,,,, +375,68,0,12342,1023,1743.19,,,,,,176,64,0,,,,,^ +375,65,1,12340,972,1743.207,,,,,,144,86,0,,,,, +375,67,1,12343,998,1743.207,26,32.0,D#5,pppp,2,144,75,2,,,,, +376,4,4,12344,-3,1743.329,,,,,,176,102,0,,,,, +375,66,3,12341,992,1743.345,,,,,,144,92,0,,,,, +375,67,1,12343,998,1743.345,,,,,,144,75,0,,,,, +376,0,0,12345,0,1743.345,,,,,,,,,376,,,, +376,1,1,12346,0,1743.345,25,32.0,F#5,pppp,2,144,78,2,,,,, +376,2,2,12347,0,1743.345,,,,,,176,102,0,,,,, +376,3,3,12348,0,1743.345,64,16.0,E7,mp,14,144,100,14,,,,, +376,1,1,12346,0,1743.478,,,,,,144,78,0,,,,, +376,5,1,12349,25,1743.478,26,32.0,A#7,pppp,2,144,106,2,,,,, +375,68,0,12350,1023,1743.49,,,,,,176,64,127,,,,,V +376,5,1,12349,25,1743.617,,,,,,144,106,0,,,,, +376,6,1,12351,51,1743.617,25,32.0,G#4,pppp,2,144,68,2,,,,, +376,3,3,12348,0,1743.686,,,,,,144,100,0,,,,, +376,7,3,12352,64,1743.686,,,,,,176,102,0,,,,, +376,6,1,12351,51,1743.75,,,,,,144,68,0,,,,, +376,8,1,12353,76,1743.75,16,32.0,D7,pppp,2,144,98,2,,,,, +376,8,1,12353,76,1743.835,,,,,,144,98,0,,,,, +376,9,1,12354,92,1743.835,18,32.0,D#5,pppp,2,144,75,2,,,,, +376,9,1,12354,92,1743.931,,,,,,144,75,0,,,,, +376,10,1,12355,110,1743.931,18,32.0,F#6,pppp,2,144,90,2,,,,, +376,10,1,12355,110,1744.027,,,,,,144,90,0,,,,, +376,11,1,12356,128,1744.027,16,32.0,D#5,pppp,2,144,75,2,,,,, +376,11,1,12356,128,1744.112,,,,,,144,75,0,,,,, +376,12,1,12357,144,1744.112,18,32.0,G#3,pppp,2,144,56,2,,,,, +376,12,1,12357,144,1744.208,,,,,,144,56,0,,,,, +376,13,1,12358,162,1744.208,17,32.0,A#7,pppp,2,144,106,2,,,,, +376,13,1,12358,162,1744.299,,,,,,144,106,0,,,,, +376,14,1,12359,179,1744.299,77,16.0,G#3,pppp,2,144,56,2,,,,, +376,15,3,12360,192,1744.368,21,32.0,D3,fff,24,144,50,23,,,,, +376,15,3,12360,192,1744.48,,,,,,144,50,0,,,,, +376,16,3,12361,213,1744.48,21,32.0,C#2,ff+,23,144,37,23,,,,, +376,16,3,12361,213,1744.591,,,,,,144,37,0,,,,, +376,17,3,12362,234,1744.591,22,32.0,A1,f+,21,144,33,21,,,,, +376,20,4,12363,253,1744.693,256,4.0,G#1,f,20,144,32,20,,,,, +376,14,1,12359,179,1744.709,,,,,,144,56,0,,,,, +376,18,1,12364,256,1744.709,,,,,,176,102,0,,,,, +376,19,3,12365,256,1744.709,21,32.0,G#3,f,20,144,56,20,,,,, +376,17,3,12362,234,1744.784,,,,,,144,33,0,,,,, +376,21,3,12366,277,1744.821,21,32.0,A1,mf+,18,144,33,18,,,,, +376,19,3,12365,256,1744.932,,,,,,144,56,0,,,,, +376,21,3,12366,277,1744.932,,,,,,144,33,0,,,,, +376,22,3,12367,298,1744.932,22,32.0,G#3,mf,17,144,56,17,,,,, +376,23,3,12368,320,1745.05,21,32.0,D3,mp+,15,144,50,15,,,,, +376,23,3,12368,320,1745.161,,,,,,144,50,0,,,,, +376,24,3,12369,341,1745.161,43,16.0,C#2,mp,14,144,37,14,,,,, +376,22,3,12367,298,1745.271,,,,,,144,56,0,,,,, +376,24,3,12369,341,1745.39,,,,,,144,37,0,,,,, +376,25,3,12370,384,1745.39,21,32.0,A1,p,11,144,33,11,,,,, +376,25,3,12370,384,1745.502,,,,,,144,33,0,,,,, +376,26,3,12371,405,1745.502,21,32.0,G#3,pp+,9,144,56,9,,,,, +376,26,3,12371,405,1745.614,,,,,,144,56,0,,,,, +376,27,3,12372,426,1745.614,22,32.0,A1,pp,8,144,33,8,,,,, +376,27,3,12372,426,1745.731,,,,,,144,33,0,,,,, +376,28,0,12373,448,1745.731,,,,,,176,64,0,,,,,^ +376,29,3,12374,448,1745.731,42,16.0,G#3,pp,8,144,56,8,,,,, +376,30,3,12375,490,1745.955,,,,,,176,102,0,,,,, +376,31,0,12376,490,1745.955,,,,,,,,,,6039,,, +376,35,3,12377,,1746.056,,8.0,D2,mf,17,144,38,17,,,,g, +376,35,3,12377,,1746.106,,,,,,144,38,0,,,,, +376,36,3,12378,,1746.131,,8.0,F2,mf,17,144,41,17,,,,g, +376,36,3,12378,,1746.181,,,,,,144,41,0,,,,, +376,37,3,12379,,1746.206,,8.0,D2,mf,17,144,38,17,,,,g, +376,37,3,12379,,1746.256,,,,,,144,38,0,,,,, +376,38,3,12380,509,1746.281,102,8.0,C#1,mf,17,144,25,17,,,,, +376,39,4,12381,509,1746.281,,,,,,176,102,0,,,,, +376,33,1,12382,512,1746.297,,,,,,176,102,0,,,,, +376,34,2,12383,512,1746.297,,,,,,176,102,0,,,,, +376,32,0,12384,512,1746.297,,,,,,176,64,127,,,,,V +376,29,3,12374,448,1746.33,,,,,,144,56,0,,,,, +376,40,2,12385,597,1746.75,21,32.0,D4,mp,14,144,62,14,,,,, +376,38,3,12380,509,1746.825,,,,,,144,25,0,,,,, +376,41,3,12386,611,1746.825,77,16.0,G#2,p,11,144,44,11,,,,, +376,40,2,12385,597,1746.862,,,,,,144,62,0,,,,, +376,42,2,12387,618,1746.862,22,32.0,A#4,p+,12,144,70,12,,,,, +376,20,4,12363,253,1746.881,,,,,,144,32,0,,,,, +376,42,2,12387,618,1746.979,,,,,,144,70,0,,,,, +376,43,2,12388,640,1746.979,21,32.0,D4,p-,10,144,62,10,,,,, +376,43,2,12388,640,1747.091,,,,,,144,62,0,,,,, +376,44,2,12389,661,1747.091,21,32.0,F#4,pp+,9,144,66,9,,,,, +376,44,2,12389,661,1747.203,,,,,,144,66,0,,,,, +376,45,1,12390,682,1747.203,86,8.0,G#4,pp-,7,144,68,7,,,,, +376,46,2,12391,682,1747.203,22,32.0,D4,pp-,7,144,62,7,,,,, +376,41,3,12386,611,1747.235,,,,,,144,44,0,,,,, +376,47,3,12392,688,1747.235,25,32.0,A0,pp,8,144,21,8,,,,, +376,46,2,12391,682,1747.32,,,,,,144,62,0,,,,, +376,48,0,12393,704,1747.32,,,,,,176,64,0,,,,,^ +376,49,2,12394,704,1747.32,64,16.0,F4,ppp,5,144,65,5,,,,, +376,47,3,12392,688,1747.368,,,,,,144,21,0,,,,, +376,50,3,12395,713,1747.368,52,16.0,F1,ppp,5,144,29,5,,,,, +376,51,3,12396,765,1747.645,51,16.0,F1,,,,,,,,,, +376,45,1,12390,682,1747.661,,,,,,144,68,0,,,,, +376,49,2,12394,704,1747.661,,,,,,144,65,0,,,,, +376,52,1,12397,768,1747.661,,,,,,176,102,0,,,,, +376,53,2,12398,768,1747.661,128,8.0,C2,ppp,5,144,36,5,,,,, +376,50,3,12395,713,1747.917,,,,,,144,29,0,,,,, +376,54,3,12399,816,1747.917,,,,,,176,102,0,,,,, +376,55,3,12400,841,1748.05,26,32.0,D1,ppp-,4,144,26,4,,,,, +376,55,3,12400,841,1748.188,,,,,,144,26,0,,,,, +376,56,3,12401,867,1748.188,26,32.0,F1,ppp-,4,144,29,4,,,,, +376,56,3,12401,867,1748.327,,,,,,144,29,0,,,,, +376,58,3,12402,893,1748.327,51,16.0,D1,ppp-,4,144,26,4,,,,, +376,57,2,12403,896,1748.343,128,8.0,G#5,ppp,5,144,80,5,,,,, +376,53,2,12398,768,1748.343,,,,,,144,36,0,,,,, +376,59,3,12404,944,1748.598,25,32.0,F1,ppp-,4,144,29,4,,,,, +376,58,3,12402,893,1748.598,,,,,,144,26,0,,,,, +376,59,3,12404,944,1748.732,,,,,,144,29,0,,,,, +376,60,3,12405,969,1748.732,26,32.0,D1,ppp-,4,144,26,4,,,,, +376,60,3,12405,969,1748.87,,,,,,144,26,0,,,,, +376,61,3,12406,995,1748.87,26,32.0,G#1,ppp-,4,144,32,4,,,,, +376,61,3,12406,995,1749.009,,,,,,144,32,0,,,,, +377,0,0,12407,0,1749.025,,,,,,,,,377,,,, +377,1,1,12408,0,1749.025,,,,,,176,102,0,,,,, +377,2,2,12409,0,1749.025,,,,,,176,102,0,,,,, +377,3,3,12410,0,1749.025,25,32.0,D1,pppp+,3,144,26,3,,,,, +376,57,2,12403,896,1749.025,,,,,,144,80,0,,,,, +377,3,3,12410,0,1749.158,,,,,,144,26,0,,,,, +377,4,3,12411,25,1749.158,26,32.0,C#1,pppp+,3,144,25,3,,,,, +377,4,3,12411,25,1749.296,,,,,,144,25,0,,,,, +377,5,3,12412,51,1749.296,25,32.0,D1,pppp+,3,144,26,3,,,,, +377,5,3,12412,51,1749.429,,,,,,144,26,0,,,,, +377,6,3,12413,76,1749.429,26,32.0,G#1,pppp+,3,144,32,3,,,,, +377,6,3,12413,76,1749.568,,,,,,144,32,0,,,,, +377,7,3,12414,102,1749.568,26,32.0,C#1,pppp+,3,144,25,3,,,,, +377,7,3,12414,102,1749.706,,,,,,144,25,0,,,,, +377,8,3,12415,128,1749.706,76,16.0,A0,pppp+,3,144,21,3,,,,, +377,8,3,12415,128,1750.111,,,,,,144,21,0,,,,, +377,9,3,12416,204,1750.111,52,16.0,F1,pppp,2,144,29,2,,,,, +377,10,2,12417,256,1750.388,128,8.0,C5,pppp,2,144,72,2,,,,, +377,11,3,12418,256,1750.388,25,32.0,F1,,,,,,,,,, +377,9,3,12416,204,1750.521,,,,,,144,29,0,,,,, +377,12,3,12419,281,1750.521,51,16.0,D1,pppp,2,144,26,2,,,,, +377,13,3,12420,332,1750.793,26,32.0,G#1,pppp,2,144,32,2,,,,, +377,13,3,12420,332,1750.932,,,,,,144,32,0,,,,, +377,14,3,12421,358,1750.932,51,16.0,C#1,pppp,2,144,25,2,,,,, +377,12,3,12419,281,1750.943,,,,,,144,26,0,,,,, +377,15,2,12422,384,1751.07,,,,,,176,102,0,,,,, +377,16,3,12423,409,1751.203,26,32.0,D1,pppp-,1,144,26,1,,,,, +377,14,3,12421,358,1751.203,,,,,,144,25,0,,,,, +377,10,2,12417,256,1751.22,,,,,,144,72,0,,,,, +377,16,3,12423,409,1751.342,,,,,,144,26,0,,,,, +377,17,3,12424,435,1751.342,25,32.0,G#1,pppp-,1,144,32,1,,,,, +377,17,3,12424,435,1751.475,,,,,,144,32,0,,,,, +377,18,3,12425,460,1751.475,26,32.0,C#1,pppp-,1,144,25,1,,,,, +377,18,3,12425,460,1751.613,,,,,,144,25,0,,,,, +377,19,3,12426,486,1751.613,26,32.0,A0,pppp-,1,144,21,1,,,,, +377,20,0,12427,512,1751.722,,,,,,,,,,,56,, +377,21,2,12428,512,1751.722,,,,,,176,102,0,,,,, +377,22,3,12429,512,1751.722,,,,,,176,102,0,,,,, +377,19,3,12426,486,1752.277,,,,,,144,21,0,,,,, +377,23,3,12430,768,1752.794,,,,,,176,102,0,,,,, +378,0,0,12431,0,1753.865,,,,,,,,,378,,,, +378,1,0,12432,0,1753.865,,,,,,,,,,6040,,, +378,3,1,12433,0,1753.865,768,2.0,F4,pp,8,144,65,8,,,,, +378,4,1,12434,0,1753.865,512,2.0,C5,pp,8,144,72,8,,,,, +378,5,2,12435,0,1753.865,,,,,,176,102,0,,,,, +378,6,3,12436,0,1753.865,768,2.0,C3,pp,8,144,48,8,,,,, +378,7,3,12437,0,1753.865,512,2.0,G#3,pp,8,144,56,8,,,,, +378,2,0,12438,0,1753.865,,,,,,176,64,127,,,,,V +378,4,1,12434,0,1756.008,,,,,,144,72,0,,,,, +378,7,3,12437,0,1756.008,,,,,,144,56,0,,,,, +378,8,2,12439,512,1756.008,,,,,,176,102,0,,,,, +378,9,0,12440,707,1756.802,,,,,,176,64,0,,,,,^ +378,3,1,12433,0,1757.079,,,,,,144,65,0,,,,, +378,6,3,12436,0,1757.079,,,,,,144,48,0,,,,, +378,11,1,12441,768,1757.079,256,4.0,C#6,mp,14,144,85,14,,,,, +378,12,2,12442,768,1757.079,256,4.0,C5,pp,8,144,72,8,,,,, +378,13,3,12443,768,1757.079,256,4.0,C3,pp,8,144,48,8,,,,, +378,14,3,12444,768,1757.079,256,4.0,G#3,pp,8,144,56,8,,,,, +378,10,0,12445,768,1757.102,,,,,,176,64,127,,,,,V +378,11,1,12441,768,1758.151,,,,,,144,85,0,,,,, +378,12,2,12442,768,1758.151,,,,,,144,72,0,,,,, +378,13,3,12443,768,1758.151,,,,,,144,48,0,,,,, +378,14,3,12444,768,1758.151,,,,,,144,56,0,,,,, +379,0,0,12446,0,1758.151,,,,,,,,,379,,,, +379,1,0,12447,0,1758.151,,,,,,176,64,0,,,,,^ +379,2,1,12448,0,1758.151,85,8.0,C3,mp,14,144,48,14,,,,, +379,3,1,12449,0,1758.151,128,8.0,G#3,mp,14,144,56,14,,,,, +379,4,3,12450,,1758.151,,8.0,F2,mp,14,144,41,14,,,,g, +379,4,3,12450,,1758.201,,,,,,144,41,0,,,,, +379,5,3,12451,0,1758.226,128,8.0,E1,mp,14,144,28,14,,,,, +379,6,3,12452,0,1758.226,128,8.0,F2,mp,14,144,41,14,,,,, +379,2,1,12448,0,1758.506,,,,,,144,48,0,,,,, +379,7,1,12453,,1758.581,,8.0,C#5,p,11,144,73,11,,,,g, +379,7,1,12453,,1758.631,,,,,,144,73,0,,,,, +379,8,1,12454,85,1758.656,171,4.0,B5,p,11,144,83,11,,,,, +379,3,1,12449,0,1758.686,,,,,,144,56,0,,,,, +379,5,3,12451,0,1758.761,,,,,,144,28,0,,,,, +379,6,3,12452,0,1758.761,,,,,,144,41,0,,,,, +379,9,3,12455,128,1758.836,42,32.0,C5,pp,8,144,72,8,,,,, +379,9,3,12455,128,1759.012,,,,,,144,72,0,,,,, +379,10,3,12456,170,1759.012,29,32.0,D#3,pp+,9,144,51,9,,,,, +379,11,0,12457,183,1759.067,,,,,,176,64,127,,,,,V +379,10,3,12456,170,1759.134,,,,,,144,51,0,,,,, +379,12,3,12458,199,1759.134,28,32.0,B3,p-,10,144,59,10,,,,, +379,13,3,12459,199,1759.134,32,32.0,C5,p-,10,144,72,10,,,,, +379,12,3,12458,199,1759.251,,,,,,144,59,0,,,,, +379,14,3,12460,227,1759.251,29,32.0,F#3,p,11,144,54,11,,,,, +379,13,3,12459,199,1759.268,,,,,,144,72,0,,,,, +379,8,1,12454,85,1759.372,,,,,,144,83,0,,,,, +379,14,3,12460,227,1759.372,,,,,,144,54,0,,,,, +379,15,1,12461,256,1759.372,,,,,,176,102,0,,,,, +379,16,3,12462,256,1759.372,48,32.0,D#2,p+,12,144,39,12,,,,, +379,17,3,12463,256,1759.372,32,32.0,F#2,p+,12,144,42,12,,,,, +379,17,3,12463,256,1759.506,,,,,,144,42,0,,,,, +379,16,3,12462,256,1759.573,,,,,,144,39,0,,,,, +379,18,3,12464,304,1759.573,48,32.0,F#3,mp-,13,144,54,13,,,,, +379,18,3,12464,304,1759.774,,,,,,144,54,0,,,,, +379,19,3,12465,352,1759.774,32,32.0,B4,mp,14,144,71,14,,,,, +379,19,3,12465,352,1759.908,,,,,,144,71,0,,,,, +379,20,3,12466,384,1759.908,28,32.0,F#1,mp+,15,144,30,15,,,,, +379,21,3,12467,384,1759.908,32,32.0,B3,mp+,15,144,59,15,,,,, +379,22,3,12468,384,1759.908,32,32.0,C5,mp+,15,144,72,15,,,,, +379,20,3,12466,384,1760.025,,,,,,144,30,0,,,,, +379,23,3,12469,412,1760.025,28,32.0,G3,mf-,16,144,55,16,,,,, +379,21,3,12467,384,1760.042,,,,,,144,59,0,,,,, +379,22,3,12468,384,1760.042,,,,,,144,72,0,,,,, +379,23,3,12469,412,1760.142,,,,,,144,55,0,,,,, +379,24,3,12470,440,1760.142,43,32.0,B3,mf,17,144,59,17,,,,, +379,24,3,12470,440,1760.322,,,,,,144,59,0,,,,, +379,25,0,12471,483,1760.322,,,,,,176,64,0,,,,,^ +379,26,3,12472,483,1760.322,29,32.0,D#1,mf,17,144,27,17,,,,, +379,27,3,12473,483,1760.322,32,32.0,F#1,mf,17,144,30,17,,,,, +379,28,3,12474,483,1760.322,32,32.0,G3,mf,17,144,55,17,,,,, +379,26,3,12472,483,1760.444,,,,,,144,27,0,,,,, +379,29,1,12475,512,1760.444,,,,,,176,102,0,,,,, +379,30,3,12476,,1760.444,,8.0,D#2,p,11,144,39,11,,,,g, +379,27,3,12473,483,1760.456,,,,,,144,30,0,,,,, +379,28,3,12474,483,1760.456,,,,,,144,55,0,,,,, +379,30,3,12476,,1760.494,,,,,,144,39,0,,,,, +379,31,3,12477,,1760.519,,8.0,C3,p,11,144,48,11,,,,g, +379,31,3,12477,,1760.569,,,,,,144,48,0,,,,, +379,32,3,12478,512,1760.594,256,4.0,D#2,p,11,144,39,11,,,,, +379,33,3,12479,512,1760.594,256,4.0,B2,p,11,144,47,11,,,,, +379,34,3,12480,512,1760.594,256,4.0,C3,p,11,144,48,11,,,,, +379,35,1,12481,640,1761.129,42,32.0,B5,p,11,144,83,11,,,,, +379,35,1,12481,640,1761.305,,,,,,144,83,0,,,,, +379,36,1,12482,682,1761.305,29,32.0,A3,p-,10,144,57,10,,,,, +379,36,1,12482,682,1761.426,,,,,,144,57,0,,,,, +379,37,1,12483,711,1761.426,28,32.0,F#3,pp+,9,144,54,9,,,,, +379,37,1,12483,711,1761.544,,,,,,144,54,0,,,,, +379,38,1,12484,739,1761.544,29,32.0,F#3,pp,8,144,54,8,,,,, +379,39,1,12485,739,1761.544,32,32.0,A3,pp,8,144,57,8,,,,, +379,40,1,12486,739,1761.544,32,32.0,F4,pp,8,144,65,8,,,,, +379,41,1,12487,739,1761.544,32,32.0,C#5,pp,8,144,73,8,,,,, +379,34,3,12480,512,1761.665,,,,,,144,48,0,,,,, +379,38,1,12484,739,1761.665,,,,,,144,54,0,,,,, +379,42,1,12488,768,1761.665,,,,,,176,102,0,,,,, +379,43,3,12489,768,1761.665,51,16.0,E1,f,20,144,28,20,,,,, +379,44,3,12490,768,1761.665,64,16.0,F2,f,20,144,41,20,,,,, +379,45,3,12491,768,1761.665,64,16.0,C3,f,20,144,48,20,,,,, +379,46,3,12492,768,1761.665,64,16.0,G#3,f,20,144,56,20,,,,, +379,32,3,12478,512,1761.665,,,,,,144,39,0,,,,, +379,33,3,12479,512,1761.665,,,,,,144,47,0,,,,, +379,39,1,12485,739,1761.678,,,,,,144,57,0,,,,, +379,40,1,12486,739,1761.678,,,,,,144,65,0,,,,, +379,41,1,12487,739,1761.678,,,,,,144,73,0,,,,, +379,43,3,12489,768,1761.878,,,,,,144,28,0,,,,, +379,44,3,12490,768,1761.878,,,,,,144,41,0,,,,, +379,45,3,12491,768,1761.878,,,,,,144,48,0,,,,, +379,46,3,12492,768,1761.878,,,,,,144,56,0,,,,, +379,47,3,12493,819,1761.878,77,16.0,E1,ff,22,144,28,22,,,,, +379,48,3,12494,819,1761.878,64,16.0,B1,ff,22,144,35,22,,,,, +379,49,3,12495,819,1761.878,64,16.0,F2,ff,22,144,41,22,,,,, +379,50,3,12496,819,1761.878,64,16.0,C3,ff,22,144,48,22,,,,, +379,51,3,12497,819,1761.878,64,16.0,G#3,ff,22,144,56,22,,,,, +379,53,1,12498,,1762.126,,8.0,C4,mp,14,144,60,14,,,,g, +379,48,3,12494,819,1762.146,,,,,,144,35,0,,,,, +379,49,3,12495,819,1762.146,,,,,,144,41,0,,,,, +379,50,3,12496,819,1762.146,,,,,,144,48,0,,,,, +379,51,3,12497,819,1762.146,,,,,,144,56,0,,,,, +379,53,1,12498,,1762.176,,,,,,144,60,0,,,,, +379,47,3,12493,819,1762.201,,,,,,144,28,0,,,,, +379,54,1,12499,896,1762.201,42,32.0,G#4,mp-,13,144,68,13,,,,, +379,55,3,12500,896,1762.201,,,,,,176,102,0,,,,, +379,52,0,12501,896,1762.201,,,,,,176,64,127,,,,,V +379,54,1,12499,896,1762.377,,,,,,144,68,0,,,,, +379,56,1,12502,938,1762.377,29,32.0,E2,p,11,144,40,11,,,,, +379,61,0,12503,995,1762.488,,,,,,176,64,0,,,,,^ +379,56,1,12502,938,1762.498,,,,,,144,40,0,,,,, +379,57,1,12504,967,1762.498,28,32.0,F3,pp+,9,144,53,9,,,,, +379,58,1,12505,967,1762.498,32,32.0,C4,pp+,9,144,60,9,,,,, +379,59,1,12506,967,1762.498,32,32.0,G#4,pp+,9,144,68,9,,,,, +379,60,0,12507,967,1762.498,,,,,,,,,,6041,,, +379,57,1,12504,967,1762.615,,,,,,144,53,0,,,,, +379,62,1,12508,995,1762.615,29,32.0,E2,pp,8,144,40,8,,,,, +379,63,1,12509,995,1762.615,32,32.0,B2,pp,8,144,47,8,,,,, +379,58,1,12505,967,1762.632,,,,,,144,60,0,,,,, +379,59,1,12506,967,1762.632,,,,,,144,68,0,,,,, +379,62,1,12508,995,1762.736,,,,,,144,40,0,,,,, +379,65,0,12510,1024,1762.736,,,,,,176,64,0,,,,,^ +379,66,1,12511,1024,1762.736,,,,,,176,102,0,,,,, +379,67,3,12512,,1762.736,,8.0,C#3,p,11,144,49,11,,,,g, +379,63,1,12509,995,1762.749,,,,,,144,47,0,,,,, +379,67,3,12512,,1762.786,,,,,,144,49,0,,,,, +379,64,0,12513,1006,1762.788,,,,,,176,64,127,,,,,V +379,68,3,12514,,1762.811,,8.0,D#1,mp-,13,144,27,13,,,,g, +379,68,3,12514,,1762.861,,,,,,144,27,0,,,,, +379,69,3,12515,,1762.886,,8.0,G#1,mp+,15,144,32,15,,,,g, +379,69,3,12515,,1762.936,,,,,,144,32,0,,,,, +379,70,3,12516,1024,1762.961,85,8.0,D#1,mf,17,144,27,17,,,,, +379,71,3,12517,1024,1762.961,128,8.0,G#1,mf,17,144,32,17,,,,, +379,72,3,12518,1024,1762.961,128,8.0,C#4,mf,17,144,61,17,,,,, +379,73,3,12519,1024,1762.961,128,8.0,B4,mf,17,144,71,17,,,,, +379,70,3,12516,1024,1763.317,,,,,,144,27,0,,,,, +379,74,3,12520,1109,1763.317,128,8.0,G2,mp,14,144,43,14,,,,, +379,71,3,12517,1024,1763.497,,,,,,144,32,0,,,,, +379,72,3,12518,1024,1763.497,,,,,,144,61,0,,,,, +379,73,3,12519,1024,1763.497,,,,,,144,71,0,,,,, +379,75,0,12521,1161,1763.535,,,,,,176,64,127,,,,,V +379,74,3,12520,1109,1763.853,,,,,,144,43,0,,,,, +379,76,3,12522,1237,1763.853,43,16.0,D#1,ppp,5,144,27,5,,,,, +379,77,3,12523,1237,1763.853,64,16.0,G#1,ppp,5,144,32,5,,,,, +379,78,3,12524,1237,1763.853,64,16.0,C#4,ppp,5,144,61,5,,,,, +379,79,3,12525,1237,1763.853,64,16.0,B4,ppp,5,144,71,5,,,,, +379,76,3,12522,1237,1764.033,,,,,,144,27,0,,,,, +380,0,0,12526,0,1764.033,,,,,,,,,380,,,, +380,1,1,12527,0,1764.033,,,,,,176,102,0,,,,, +380,2,3,12528,0,1764.033,,,,,,176,102,0,,,,, +379,77,3,12523,1237,1764.121,,,,,,144,32,0,,,,, +379,78,3,12524,1237,1764.121,,,,,,144,61,0,,,,, +379,79,3,12525,1237,1764.121,,,,,,144,71,0,,,,, +380,3,1,12529,85,1764.389,171,4.0,F#3,mp,14,144,54,14,,,,, +380,4,1,12530,85,1764.389,256,4.0,A3,mp,14,144,57,14,,,,, +380,5,1,12531,85,1764.389,256,4.0,F4,mp,14,144,65,14,,,,, +380,6,1,12532,85,1764.389,256,4.0,C#5,mp,14,144,73,14,,,,, +380,7,1,12533,85,1764.389,256,4.0,B5,mp,14,144,83,14,,,,, +380,9,1,12534,,1764.954,,8.0,B6,p,11,144,95,11,,,,g, +380,9,1,12534,,1765.004,,,,,,144,95,0,,,,, +380,6,1,12532,85,1765.029,,,,,,144,73,0,,,,, +380,10,1,12535,,1765.029,,8.0,C#5,p,11,144,73,11,,,,g, +380,3,1,12529,85,1765.104,,,,,,144,54,0,,,,, +380,4,1,12530,85,1765.104,,,,,,144,57,0,,,,, +380,8,0,12536,256,1765.104,,,,,,176,64,0,,,,,^ +380,11,1,12537,256,1765.104,256,4.0,C#6,f,20,144,85,20,,,,, +380,12,1,12538,256,1765.104,256,4.0,E7,f,20,144,100,20,,,,, +380,13,3,12539,256,1765.104,128,8.0,A3,p,11,144,57,11,,,,, +380,5,1,12531,85,1765.46,,,,,,144,65,0,,,,, +380,7,1,12533,85,1765.46,,,,,,144,83,0,,,,, +380,10,1,12535,,1765.46,,,,,,144,73,0,,,,, +380,13,3,12539,256,1765.64,,,,,,144,57,0,,,,, +380,15,3,12540,384,1765.64,128,8.0,G#1,f,20,144,32,20,,,,, +380,14,0,12541,384,1765.64,,,,,,176,64,127,,,,,V +380,16,0,12542,512,1766.026,,,,,,176,64,0,,,,,^ +380,15,3,12540,384,1766.176,,,,,,144,32,0,,,,, +380,18,1,12543,512,1766.176,,,,,,176,102,0,,,,, +380,19,3,12544,512,1766.176,42,32.0,G#1,pp,8,144,32,8,,,,, +380,11,1,12537,256,1766.176,,,,,,144,85,0,,,,, +380,12,1,12538,256,1766.176,,,,,,144,100,0,,,,, +380,17,0,12545,512,1766.326,,,,,,176,64,127,,,,,V +380,19,3,12544,512,1766.352,,,,,,144,32,0,,,,, +380,20,3,12546,554,1766.352,29,32.0,C5,pp+,9,144,72,9,,,,, +380,20,3,12546,554,1766.473,,,,,,144,72,0,,,,, +380,21,3,12547,583,1766.473,28,32.0,C#6,p-,10,144,85,10,,,,, +380,21,3,12547,583,1766.59,,,,,,144,85,0,,,,, +380,22,3,12548,611,1766.59,29,32.0,E5,p,11,144,76,11,,,,, +380,22,3,12548,611,1766.711,,,,,,144,76,0,,,,, +380,23,3,12549,640,1766.711,32,32.0,G#2,p+,12,144,44,12,,,,, +380,24,3,12550,640,1766.711,32,32.0,D3,p+,12,144,50,12,,,,, +380,25,3,12551,640,1766.711,32,32.0,C5,p+,12,144,72,12,,,,, +380,23,3,12549,640,1766.845,,,,,,144,44,0,,,,, +380,24,3,12550,640,1766.845,,,,,,144,50,0,,,,, +380,25,3,12551,640,1766.845,,,,,,144,72,0,,,,, +380,26,3,12552,672,1766.845,32,32.0,C#6,mp,14,144,85,14,,,,, +380,26,3,12552,672,1766.979,,,,,,144,85,0,,,,, +380,27,3,12553,704,1766.979,32,32.0,E5,mp+,15,144,76,15,,,,, +380,27,3,12553,704,1767.113,,,,,,144,76,0,,,,, +380,28,3,12554,736,1767.113,32,32.0,D4,mf-,16,144,62,16,,,,, +380,29,3,12555,736,1767.113,32,32.0,C#6,mf-,16,144,85,16,,,,, +380,28,3,12554,736,1767.247,,,,,,144,62,0,,,,, +380,29,3,12555,736,1767.247,,,,,,144,85,0,,,,, +380,30,1,12556,768,1767.247,85,8.0,C#7,mf,17,144,97,17,,,,, +380,31,3,12557,768,1767.247,,,,,,176,102,0,,,,, +380,32,3,12558,810,1767.423,43,16.0,D3,mf,17,144,50,17,,,,, +380,30,1,12556,768,1767.603,,,,,,144,97,0,,,,, +380,32,3,12558,810,1767.603,,,,,,144,50,0,,,,, +380,33,0,12559,853,1767.603,,,,,,176,64,0,,,,,^ +380,34,1,12560,853,1767.603,43,16.0,C#7,mf,17,144,97,17,,,,, +380,35,3,12561,853,1767.603,43,16.0,G#2,mf,17,144,44,17,,,,, +380,36,3,12562,853,1767.603,64,16.0,D3,mf,17,144,50,17,,,,, +380,34,1,12560,853,1767.783,,,,,,144,97,0,,,,, +380,35,3,12561,853,1767.783,,,,,,144,44,0,,,,, +380,37,1,12563,896,1767.783,,,,,,176,102,0,,,,, +380,38,3,12564,896,1767.783,,,,,,176,102,0,,,,, +380,36,3,12562,853,1767.871,,,,,,144,50,0,,,,, +380,40,1,12565,938,1767.959,43,16.0,D#4,pp,8,144,63,8,,,,, +380,39,0,12566,938,1767.959,,,,,,176,64,127,,,,,V +380,40,1,12565,938,1768.139,,,,,,144,63,0,,,,, +380,41,1,12567,981,1768.139,43,16.0,G#3,pp,8,144,56,8,,,,, +380,41,1,12567,981,1768.319,,,,,,144,56,0,,,,, +380,42,1,12568,1024,1768.319,,,,,,176,102,0,,,,, +380,43,3,12569,1024,1768.319,64,16.0,C2,pp,8,144,36,8,,,,, +380,43,3,12569,1024,1768.586,,,,,,144,36,0,,,,, +380,44,3,12570,1088,1768.586,64,16.0,D#4,pp,8,144,63,8,,,,, +380,44,3,12570,1088,1768.854,,,,,,144,63,0,,,,, +380,45,3,12571,1152,1768.854,96,16.0,G#2,pp,8,144,44,8,,,,, +380,45,3,12571,1152,1769.256,,,,,,144,44,0,,,,, +380,46,3,12572,1248,1769.256,32,32.0,D#2,pp,8,144,39,8,,,,, +380,47,3,12573,1248,1769.256,32,32.0,B2,pp,8,144,47,8,,,,, +380,48,3,12574,1248,1769.256,32,32.0,C3,pp,8,144,48,8,,,,, +380,49,0,12575,1279,1769.386,,,,,,176,64,0,,,,,^ +381,0,0,12576,0,1769.39,,,,,,,,,381,,,, +381,1,1,12577,0,1769.39,,,,,,176,102,0,,,,, +381,2,3,12578,0,1769.39,32,32.0,F#2,p+,12,144,42,12,,,,, +380,46,3,12572,1248,1769.39,,,,,,144,39,0,,,,, +380,47,3,12573,1248,1769.39,,,,,,144,47,0,,,,, +380,48,3,12574,1248,1769.39,,,,,,144,48,0,,,,, +381,2,3,12578,0,1769.524,,,,,,144,42,0,,,,, +381,3,3,12579,32,1769.524,32,32.0,G2,mf-,16,144,43,16,,,,, +381,3,3,12579,32,1769.658,,,,,,144,43,0,,,,, +381,4,1,12580,64,1769.658,64,16.0,B2,f,20,144,47,20,,,,, +381,5,1,12581,64,1769.658,64,16.0,C4,f,20,144,60,20,,,,, +381,6,3,12582,64,1769.658,64,16.0,D#1,f,20,144,27,20,,,,, +381,7,3,12583,64,1769.658,64,16.0,F#1,f,20,144,30,20,,,,, +381,4,1,12580,64,1769.926,,,,,,144,47,0,,,,, +381,5,1,12581,64,1769.926,,,,,,144,60,0,,,,, +381,6,3,12582,64,1769.926,,,,,,144,27,0,,,,, +381,7,3,12583,64,1769.926,,,,,,144,30,0,,,,, +381,8,1,12584,128,1769.926,,,,,,176,102,0,,,,, +381,9,3,12585,128,1769.926,,,,,,176,102,0,,,,, +381,10,0,12586,128,1769.926,,,,,,,,,,6042,,, +381,11,1,12587,160,1770.06,96,16.0,B2,pp,8,144,47,8,,,,, +381,12,1,12588,160,1770.06,64,16.0,C4,pp,8,144,60,8,,,,, +381,13,3,12589,160,1770.06,96,16.0,D#1,pp,8,144,27,8,,,,, +381,14,3,12590,160,1770.06,64,16.0,F#1,pp,8,144,30,8,,,,, +381,12,1,12588,160,1770.328,,,,,,144,60,0,,,,, +381,14,3,12590,160,1770.328,,,,,,144,30,0,,,,, +381,11,1,12587,160,1770.461,,,,,,144,47,0,,,,, +381,13,3,12589,160,1770.461,,,,,,144,27,0,,,,, +381,15,1,12591,256,1770.461,,,,,,176,102,0,,,,, +381,16,3,12592,256,1770.461,25,32.0,F2,pp,8,144,41,8,,,,, +381,16,3,12592,256,1770.566,,,,,,144,41,0,,,,, +381,17,3,12593,281,1770.566,26,32.0,C#2,pp,8,144,37,8,,,,, +381,17,3,12593,281,1770.675,,,,,,144,37,0,,,,, +381,18,3,12594,307,1770.675,25,32.0,D2,pp,8,144,38,8,,,,, +381,18,3,12594,307,1770.78,,,,,,144,38,0,,,,, +381,19,3,12595,332,1770.78,26,32.0,C#2,pp,8,144,37,8,,,,, +381,19,3,12595,332,1770.888,,,,,,144,37,0,,,,, +381,20,3,12596,358,1770.888,26,32.0,D2,pp,8,144,38,8,,,,, +381,20,3,12596,358,1770.997,,,,,,144,38,0,,,,, +381,21,3,12597,384,1770.997,25,32.0,C#2,pp,8,144,37,8,,,,, +381,21,3,12597,384,1771.102,,,,,,144,37,0,,,,, +381,22,3,12598,409,1771.102,39,32.0,F2,pp,8,144,41,8,,,,, +381,23,1,12599,426,1771.173,43,16.0,C#5,p,11,144,73,11,,,,, +381,24,1,12600,426,1771.173,64,16.0,A5,p,11,144,81,11,,,,, +381,26,3,12601,448,1771.265,38,32.0,D2,pp,8,144,38,8,,,,, +381,25,0,12602,448,1771.265,,,,,,176,64,127,,,,,V +381,22,3,12598,409,1771.265,,,,,,144,41,0,,,,, +381,23,1,12599,426,1771.353,,,,,,144,73,0,,,,, +381,27,1,12603,469,1771.353,43,16.0,F4,p+,12,144,65,12,,,,, +381,26,3,12601,448,1771.424,,,,,,144,38,0,,,,, +381,28,3,12604,486,1771.424,26,32.0,C#2,pp,8,144,37,8,,,,, +381,24,1,12600,426,1771.441,,,,,,144,81,0,,,,, +381,27,1,12603,469,1771.533,,,,,,144,65,0,,,,, +381,28,3,12604,486,1771.533,,,,,,144,37,0,,,,, +381,29,1,12605,512,1771.533,170,4.0,F4,mp,14,144,65,14,,,,, +381,30,1,12606,512,1771.533,256,4.0,C#5,mp,14,144,73,14,,,,, +381,31,3,12607,512,1771.533,25,32.0,A1,pp,8,144,33,8,,,,, +381,32,3,12608,512,1771.533,32,32.0,F2,pp,8,144,41,8,,,,, +381,31,3,12607,512,1771.638,,,,,,144,33,0,,,,, +381,33,3,12609,537,1771.638,39,32.0,G#2,pp,8,144,44,8,,,,, +381,32,3,12608,512,1771.667,,,,,,144,41,0,,,,, +381,33,3,12609,537,1771.801,,,,,,144,44,0,,,,, +381,34,3,12610,576,1771.801,25,32.0,A1,pp,8,144,33,8,,,,, +381,35,3,12611,576,1771.801,32,32.0,C#2,pp,8,144,37,8,,,,, +381,36,3,12612,576,1771.801,32,32.0,D2,pp,8,144,38,8,,,,, +381,34,3,12610,576,1771.905,,,,,,144,33,0,,,,, +381,37,3,12613,601,1771.905,26,32.0,G#2,pp,8,144,44,8,,,,, +381,35,3,12611,576,1771.935,,,,,,144,37,0,,,,, +381,36,3,12612,576,1771.935,,,,,,144,38,0,,,,, +381,37,3,12613,601,1772.014,,,,,,144,44,0,,,,, +381,38,3,12614,627,1772.014,38,32.0,D2,pp,8,144,38,8,,,,, +381,38,3,12614,627,1772.173,,,,,,144,38,0,,,,, +381,39,3,12615,665,1772.173,39,32.0,A1,pp,8,144,33,8,,,,, +381,40,3,12616,665,1772.173,32,32.0,C#2,pp,8,144,37,8,,,,, +381,41,3,12617,665,1772.173,32,32.0,F2,pp,8,144,41,8,,,,, +381,29,1,12605,512,1772.244,,,,,,144,65,0,,,,, +381,42,0,12618,682,1772.244,,,,,,176,64,0,,,,,^ +381,43,1,12619,682,1772.244,,,,,,176,102,0,,,,, +381,40,3,12616,665,1772.307,,,,,,144,37,0,,,,, +381,41,3,12617,665,1772.307,,,,,,144,41,0,,,,, +381,44,3,12620,704,1772.336,38,32.0,G#2,pp,8,144,44,8,,,,, +381,39,3,12615,665,1772.336,,,,,,144,33,0,,,,, +381,44,3,12620,704,1772.496,,,,,,144,44,0,,,,, +381,45,3,12621,742,1772.496,26,32.0,A1,pp,8,144,33,8,,,,, +381,30,1,12606,512,1772.604,,,,,,144,73,0,,,,, +381,45,3,12621,742,1772.604,,,,,,144,33,0,,,,, +381,46,1,12622,768,1772.604,42,16.0,D#4,mp,14,144,63,14,,,,, +381,47,3,12623,768,1772.604,42,16.0,C2,pp,8,144,36,8,,,,, +381,46,1,12622,768,1772.78,,,,,,144,63,0,,,,, +381,47,3,12623,768,1772.78,,,,,,144,36,0,,,,, +381,48,1,12624,810,1772.78,,,,,,176,102,0,,,,, +381,49,3,12625,810,1772.78,86,8.0,C2,pp,8,144,36,8,,,,, +381,50,3,12626,810,1772.78,128,8.0,G#2,pp,8,144,44,8,,,,, +381,52,1,12627,853,1772.96,43,16.0,E6,mp,14,144,88,14,,,,, +381,51,0,12628,853,1772.96,,,,,,176,64,127,,,,,V +381,52,1,12627,853,1773.14,,,,,,144,88,0,,,,, +381,53,1,12629,896,1773.14,42,16.0,A5,mp,14,144,81,14,,,,, +381,54,3,12630,896,1773.14,42,16.0,G#3,pp+,9,144,56,9,,,,, +381,55,3,12631,896,1773.14,64,16.0,D#4,pp+,9,144,63,9,,,,, +381,49,3,12625,810,1773.29,,,,,,144,36,0,,,,, +381,53,1,12629,896,1773.316,,,,,,144,81,0,,,,, +381,54,3,12630,896,1773.316,,,,,,144,56,0,,,,, +381,56,1,12632,938,1773.316,,,,,,176,102,0,,,,, +381,57,3,12633,938,1773.316,,,,,,176,102,0,,,,, +381,55,3,12631,896,1773.408,,,,,,144,63,0,,,,, +381,50,3,12626,810,1773.466,,,,,,144,44,0,,,,, +381,58,1,12634,1024,1773.676,85,8.0,G2,mp,14,144,43,14,,,,, +381,59,1,12635,1024,1773.676,128,8.0,B2,mp,14,144,47,14,,,,, +381,60,3,12636,1024,1773.676,85,8.0,D#1,p,11,144,27,11,,,,, +381,61,3,12637,1024,1773.676,128,8.0,F#1,p,11,144,30,11,,,,, +381,62,0,12638,1109,1773.896,,,,,,176,64,0,,,,,^ +381,58,1,12634,1024,1774.031,,,,,,144,43,0,,,,, +381,60,3,12636,1024,1774.031,,,,,,144,27,0,,,,, +381,63,1,12639,1109,1774.031,43,16.0,C#7,ff,22,144,97,22,,,,, +381,64,3,12640,1109,1774.031,,,,,,176,102,0,,,,, +381,66,3,12641,1130,1774.119,22,32.0,D#4,pp,8,144,63,8,,,,, +381,65,0,12642,1116,1774.196,,,,,,176,64,127,,,,,V +381,59,1,12635,1024,1774.211,,,,,,144,47,0,,,,, +381,61,3,12637,1024,1774.211,,,,,,144,30,0,,,,, +381,63,1,12639,1109,1774.211,,,,,,144,97,0,,,,, +381,66,3,12641,1130,1774.211,,,,,,144,63,0,,,,, +381,67,1,12643,1152,1774.211,21,32.0,B5,pp,8,144,83,8,,,,, +381,68,3,12644,1152,1774.211,,,,,,176,102,0,,,,, +381,67,1,12643,1152,1774.299,,,,,,144,83,0,,,,, +381,69,1,12645,1173,1774.299,43,16.0,C7,pp+,9,144,96,9,,,,, +381,70,3,12646,1194,1774.387,22,32.0,F#4,p-,10,144,66,10,,,,, +381,69,1,12645,1173,1774.479,,,,,,144,96,0,,,,, +381,70,3,12646,1194,1774.479,,,,,,144,66,0,,,,, +381,71,1,12647,1216,1774.479,64,16.0,C7,p,11,144,96,11,,,,, +381,72,3,12648,1216,1774.479,,,,,,176,102,0,,,,, +381,73,3,12649,1248,1774.613,32,32.0,D#4,p+,12,144,63,12,,,,, +381,71,1,12647,1216,1774.747,,,,,,144,96,0,,,,, +381,73,3,12649,1248,1774.747,,,,,,144,63,0,,,,, +382,0,0,12650,0,1774.747,,,,,,,,,382,,,, +382,1,1,12651,0,1774.747,,,,,,176,102,0,,,,, +382,2,3,12652,0,1774.747,32,32.0,F#4,p+,12,144,66,12,,,,, +382,2,3,12652,0,1774.881,,,,,,144,66,0,,,,, +382,3,3,12653,32,1774.881,32,32.0,B5,p+,12,144,83,12,,,,, +382,3,3,12653,32,1775.015,,,,,,144,83,0,,,,, +382,4,3,12654,64,1775.015,21,32.0,C7,p+,12,144,96,12,,,,, +382,4,3,12654,64,1775.103,,,,,,144,96,0,,,,, +382,5,1,12655,85,1775.103,85,8.0,C#7,ff,22,144,97,22,,,,, +382,6,3,12656,85,1775.103,21,32.0,F#4,p+,12,144,66,12,,,,, +382,6,3,12656,85,1775.191,,,,,,144,66,0,,,,, +382,7,3,12657,106,1775.191,22,32.0,G5,p+,12,144,79,12,,,,, +382,7,3,12657,106,1775.283,,,,,,144,79,0,,,,, +382,8,3,12658,128,1775.283,,,,,,176,102,0,,,,, +382,5,1,12655,85,1775.459,,,,,,144,97,0,,,,, +382,9,0,12659,170,1775.459,,,,,,176,64,0,,,,,^ +382,10,1,12660,170,1775.459,86,8.0,C#7,ff,22,144,97,22,,,,, +382,11,3,12661,170,1775.459,86,8.0,D3,ff,22,144,50,22,,,,, +382,10,1,12660,170,1775.819,,,,,,144,97,0,,,,, +382,11,3,12661,170,1775.819,,,,,,144,50,0,,,,, +382,12,1,12662,256,1775.819,42,16.0,C#3,f,20,144,49,20,,,,, +382,13,1,12663,256,1775.819,64,16.0,B3,f,20,144,59,20,,,,, +382,14,3,12664,256,1775.819,42,16.0,D#1,f,20,144,27,20,,,,, +382,15,3,12665,256,1775.819,64,16.0,G#1,f,20,144,32,20,,,,, +382,12,1,12662,256,1775.994,,,,,,144,49,0,,,,, +382,14,3,12664,256,1775.994,,,,,,144,27,0,,,,, +382,16,1,12666,298,1775.994,128,8.0,G2,mf,17,144,43,17,,,,, +382,17,3,12667,298,1775.994,,,,,,176,102,0,,,,, +382,18,0,12668,298,1775.994,,,,,,,,,,6043,,, +382,13,1,12663,256,1776.086,,,,,,144,59,0,,,,, +382,15,3,12665,256,1776.086,,,,,,144,32,0,,,,, +382,16,1,12666,298,1776.53,,,,,,144,43,0,,,,, +382,20,1,12669,426,1776.53,86,8.0,G2,pp,8,144,43,8,,,,, +382,21,1,12670,426,1776.53,128,8.0,C#3,pp,8,144,49,8,,,,, +382,22,3,12671,426,1776.53,86,8.0,D#1,pp,8,144,27,8,,,,, +382,23,3,12672,426,1776.53,128,8.0,G#1,pp,8,144,32,8,,,,, +382,19,0,12673,426,1776.53,,,,,,176,64,127,,,,,V +382,20,1,12669,426,1776.89,,,,,,144,43,0,,,,, +382,22,3,12671,426,1776.89,,,,,,144,27,0,,,,, +382,24,1,12674,512,1776.89,,,,,,176,102,0,,,,, +382,25,3,12675,512,1776.89,,,,,,176,102,0,,,,, +382,21,1,12670,426,1777.066,,,,,,144,49,0,,,,, +382,23,3,12672,426,1777.066,,,,,,144,32,0,,,,, +382,26,1,12676,576,1777.158,32,32.0,G#5,p,11,144,80,11,,,,, +382,26,1,12676,576,1777.292,,,,,,144,80,0,,,,, +382,27,1,12677,608,1777.292,32,32.0,C5,p,11,144,72,11,,,,, +382,27,1,12677,608,1777.426,,,,,,144,72,0,,,,, +382,28,1,12678,640,1777.426,,,,,,176,102,0,,,,, +382,29,3,12679,640,1777.426,64,16.0,E2,p,11,144,40,11,,,,, +382,29,3,12679,640,1777.694,,,,,,144,40,0,,,,, +382,30,3,12680,704,1777.694,32,32.0,B2,p,11,144,47,11,,,,, +382,30,3,12680,704,1777.828,,,,,,144,47,0,,,,, +382,31,3,12681,736,1777.828,32,32.0,F3,p,11,144,53,11,,,,, +382,31,3,12681,736,1777.961,,,,,,144,53,0,,,,, +382,32,1,12682,768,1777.961,28,32.0,G#5,p,11,144,80,11,,,,, +382,33,1,12683,768,1777.961,32,32.0,C6,mf,17,144,84,17,,,,, +382,34,3,12684,,1777.961,,8.0,D#3,pp,8,144,51,8,,,,g, +382,34,3,12684,,1778.011,,,,,,144,51,0,,,,, +382,35,3,12685,,1778.036,,8.0,C2,pp,8,144,36,8,,,,g, +382,32,1,12682,768,1778.079,,,,,,144,80,0,,,,, +382,35,3,12685,,1778.086,,,,,,144,36,0,,,,, +382,33,1,12683,768,1778.095,,,,,,144,84,0,,,,, +382,36,3,12686,,1778.111,,8.0,D#3,pp,8,144,51,8,,,,g, +382,36,3,12686,,1778.161,,,,,,144,51,0,,,,, +382,37,3,12687,,1778.186,,8.0,A3,pp,8,144,57,8,,,,g, +382,37,3,12687,,1778.236,,,,,,144,57,0,,,,, +382,38,3,12688,768,1778.261,64,16.0,C2,p,11,144,36,11,,,,, +382,39,3,12689,768,1778.261,64,16.0,G#2,pp,8,144,44,8,,,,, +382,40,1,12690,796,1778.379,43,32.0,C5,p,11,144,72,11,,,,, +382,38,3,12688,768,1778.529,,,,,,144,36,0,,,,, +382,39,3,12689,768,1778.529,,,,,,144,44,0,,,,, +382,41,3,12691,832,1778.529,,,,,,176,102,0,,,,, +382,40,1,12690,796,1778.559,,,,,,144,72,0,,,,, +382,42,1,12692,839,1778.559,28,32.0,E2,p+,12,144,40,12,,,,, +382,43,1,12693,839,1778.559,32,32.0,B2,p+,12,144,47,12,,,,, +382,44,1,12694,839,1778.559,32,32.0,F4,p+,12,144,65,12,,,,, +382,42,1,12692,839,1778.676,,,,,,144,40,0,,,,, +382,45,1,12695,867,1778.676,29,32.0,C5,mp-,13,144,72,13,,,,, +382,43,1,12693,839,1778.693,,,,,,144,47,0,,,,, +382,44,1,12694,839,1778.693,,,,,,144,65,0,,,,, +382,46,1,12696,896,1778.797,,,,,,176,102,0,,,,, +382,47,3,12697,896,1778.797,28,32.0,F3,mp-,13,144,53,13,,,,, +382,47,3,12697,896,1778.914,,,,,,144,53,0,,,,, +382,48,3,12698,924,1778.914,28,32.0,G#5,mp,14,144,80,14,,,,, +382,45,1,12695,867,1779.022,,,,,,144,72,0,,,,, +382,48,3,12698,924,1779.032,,,,,,144,80,0,,,,, +382,49,3,12699,952,1779.032,43,32.0,E1,mp,14,144,28,14,,,,, +382,49,3,12699,952,1779.212,,,,,,144,28,0,,,,, +382,50,3,12700,995,1779.212,29,32.0,B2,mp+,15,144,47,15,,,,, +382,51,1,12701,1024,1779.333,,,,,,176,102,0,,,,, +382,52,3,12702,1024,1779.333,32,32.0,B2,,,,,,,,,, +382,50,3,12700,995,1779.467,,,,,,144,47,0,,,,, +382,53,1,12703,1056,1779.467,32,32.0,C5,p,11,144,72,11,,,,, +382,54,1,12704,1056,1779.467,32,32.0,G#5,p,11,144,80,11,,,,, +382,55,3,12705,1056,1779.467,32,32.0,E2,p,11,144,40,11,,,,, +382,56,3,12706,1056,1779.467,32,32.0,B2,p,11,144,47,11,,,,, +382,57,3,12707,1056,1779.467,32,32.0,F3,p,11,144,53,11,,,,, +382,53,1,12703,1056,1779.601,,,,,,144,72,0,,,,, +382,54,1,12704,1056,1779.601,,,,,,144,80,0,,,,, +382,55,3,12705,1056,1779.601,,,,,,144,40,0,,,,, +382,56,3,12706,1056,1779.601,,,,,,144,47,0,,,,, +382,57,3,12707,1056,1779.601,,,,,,144,53,0,,,,, +382,58,1,12708,1088,1779.601,64,16.0,G#4,p,11,144,68,11,,,,, +382,59,3,12709,1088,1779.601,,,,,,176,102,0,,,,, +382,58,1,12708,1088,1779.869,,,,,,144,68,0,,,,, +382,60,1,12710,1152,1779.869,32,32.0,F3,mf,17,144,53,17,,,,, +382,61,1,12711,1152,1779.869,32,32.0,G#3,mf,17,144,56,17,,,,, +382,62,3,12712,1152,1779.869,32,32.0,C2,mf,17,144,36,17,,,,, +382,63,3,12713,1152,1779.869,32,32.0,A#2,mf,17,144,46,17,,,,, +382,60,1,12710,1152,1780.003,,,,,,144,53,0,,,,, +382,61,1,12711,1152,1780.003,,,,,,144,56,0,,,,, +382,62,3,12712,1152,1780.003,,,,,,144,36,0,,,,, +382,63,3,12713,1152,1780.003,,,,,,144,46,0,,,,, +382,64,1,12714,1184,1780.003,96,16.0,E5,pp,8,144,76,8,,,,, +382,65,3,12715,1184,1780.003,,,,,,176,102,0,,,,, +382,64,1,12714,1184,1780.404,,,,,,144,76,0,,,,, +383,0,0,12716,0,1780.404,,,,,,,,,383,,,, +383,1,0,12717,0,1780.404,,,,,,,,,,6044,,, +383,2,1,12718,0,1780.404,85,8.0,C#6,f,20,144,85,20,,,,, +383,3,1,12719,0,1780.404,128,8.0,E7,f,20,144,100,20,,,,, +383,4,3,12720,0,1780.404,64,16.0,G1,f,20,144,31,20,,,,, +383,5,3,12721,0,1780.404,64,16.0,G#2,f,20,144,44,20,,,,, +383,4,3,12720,0,1780.672,,,,,,144,31,0,,,,, +383,5,3,12721,0,1780.672,,,,,,144,44,0,,,,, +383,6,3,12722,64,1780.672,21,32.0,C4,mp,14,144,60,14,,,,, +383,2,1,12718,0,1780.76,,,,,,144,85,0,,,,, +383,6,3,12722,64,1780.76,,,,,,144,60,0,,,,, +383,7,1,12723,85,1780.76,171,4.0,C#7,pp,8,144,97,8,,,,, +383,8,3,12724,85,1780.76,43,16.0,D3,pp,8,144,50,8,,,,, +383,3,1,12719,0,1780.94,,,,,,144,100,0,,,,, +383,9,3,12725,128,1780.94,128,8.0,D3,,,,,,,,,, +383,7,1,12723,85,1781.476,,,,,,144,97,0,,,,, +383,8,3,12724,85,1781.476,,,,,,144,50,0,,,,, +383,10,1,12726,256,1781.476,,,,,,176,102,0,,,,, +383,11,3,12727,256,1781.476,,,,,,176,102,0,,,,, +383,12,3,12728,288,1781.61,32,32.0,G#4,p,11,144,68,11,,,,, +383,12,3,12728,288,1781.744,,,,,,144,68,0,,,,, +383,13,3,12729,320,1781.744,64,16.0,E1,p,11,144,28,11,,,,, +383,13,3,12729,320,1782.011,,,,,,144,28,0,,,,, +383,14,1,12730,384,1782.011,32,32.0,D#3,mp,14,144,51,14,,,,, +383,15,1,12731,384,1782.011,32,32.0,A3,mp,14,144,57,14,,,,, +383,16,3,12732,384,1782.011,32,32.0,C2,mp,14,144,36,14,,,,, +383,17,3,12733,384,1782.011,32,32.0,G#2,mp,14,144,44,14,,,,, +383,14,1,12730,384,1782.145,,,,,,144,51,0,,,,, +383,15,1,12731,384,1782.145,,,,,,144,57,0,,,,, +383,16,3,12732,384,1782.145,,,,,,144,36,0,,,,, +383,17,3,12733,384,1782.145,,,,,,144,44,0,,,,, +383,18,1,12734,416,1782.145,96,16.0,E5,mp,14,144,76,14,,,,, +383,19,3,12735,416,1782.145,,,,,,176,102,0,,,,, +383,20,3,12736,448,1782.279,,,,,,176,102,0,,,,, +383,18,1,12734,416,1782.547,,,,,,144,76,0,,,,, +383,21,1,12737,512,1782.547,512,2.0,C6,mp,14,144,84,14,,,,, +383,22,3,12738,512,1782.547,25,32.0,F2,pp,8,144,41,8,,,,, +383,22,3,12738,512,1782.652,,,,,,144,41,0,,,,, +383,23,3,12739,537,1782.652,26,32.0,C#2,pp,8,144,37,8,,,,, +383,23,3,12739,537,1782.761,,,,,,144,37,0,,,,, +383,24,3,12740,563,1782.761,25,32.0,D2,pp,8,144,38,8,,,,, +383,24,3,12740,563,1782.865,,,,,,144,38,0,,,,, +383,25,3,12741,588,1782.865,26,32.0,C#2,pp,8,144,37,8,,,,, +383,25,3,12741,588,1782.974,,,,,,144,37,0,,,,, +383,26,3,12742,614,1782.974,26,32.0,D2,pp,8,144,38,8,,,,, +383,26,3,12742,614,1783.083,,,,,,144,38,0,,,,, +383,27,3,12743,640,1783.083,25,32.0,C#2,pp,8,144,37,8,,,,, +383,27,3,12743,640,1783.188,,,,,,144,37,0,,,,, +383,28,3,12744,665,1783.188,39,32.0,F2,pp,8,144,41,8,,,,, +383,28,3,12744,665,1783.351,,,,,,144,41,0,,,,, +383,29,3,12745,704,1783.351,38,32.0,D2,pp,8,144,38,8,,,,, +383,29,3,12745,704,1783.51,,,,,,144,38,0,,,,, +383,30,3,12746,742,1783.51,26,32.0,C#2,pp,8,144,37,8,,,,, +383,30,3,12746,742,1783.619,,,,,,144,37,0,,,,, +383,31,3,12747,768,1783.619,25,32.0,A1,pp,8,144,33,8,,,,, +383,32,3,12748,768,1783.619,32,32.0,F2,pp,8,144,41,8,,,,, +383,33,0,12749,772,1783.635,,,,,,176,64,0,,,,,^ +383,31,3,12747,768,1783.723,,,,,,144,33,0,,,,, +383,34,3,12750,793,1783.723,39,32.0,G#2,pp,8,144,44,8,,,,, +383,32,3,12748,768,1783.753,,,,,,144,41,0,,,,, +383,34,3,12750,793,1783.886,,,,,,144,44,0,,,,, +383,35,3,12751,832,1783.886,25,32.0,A1,pp,8,144,33,8,,,,, +383,36,3,12752,832,1783.886,32,32.0,C#2,pp,8,144,37,8,,,,, +383,37,3,12753,832,1783.886,32,32.0,D2,pp,8,144,38,8,,,,, +383,35,3,12751,832,1783.991,,,,,,144,33,0,,,,, +383,38,3,12754,857,1783.991,26,32.0,G#2,pp,8,144,44,8,,,,, +383,36,3,12752,832,1784.02,,,,,,144,37,0,,,,, +383,37,3,12753,832,1784.02,,,,,,144,38,0,,,,, +383,38,3,12754,857,1784.1,,,,,,144,44,0,,,,, +383,39,3,12755,883,1784.1,38,32.0,D2,pp,8,144,38,8,,,,, +383,39,3,12755,883,1784.259,,,,,,144,38,0,,,,, +383,40,3,12756,921,1784.259,39,32.0,A1,pp,8,144,33,8,,,,, +383,41,3,12757,921,1784.259,32,32.0,C#2,pp,8,144,37,8,,,,, +383,42,3,12758,921,1784.259,32,32.0,F2,pp,8,144,41,8,,,,, +383,41,3,12757,921,1784.393,,,,,,144,37,0,,,,, +383,42,3,12758,921,1784.393,,,,,,144,41,0,,,,, +383,40,3,12756,921,1784.422,,,,,,144,33,0,,,,, +383,43,3,12759,960,1784.422,38,32.0,G#2,pp,8,144,44,8,,,,, +383,43,3,12759,960,1784.581,,,,,,144,44,0,,,,, +383,44,3,12760,998,1784.581,26,32.0,A1,pp,8,144,33,8,,,,, +383,45,0,12761,998,1784.581,,,,,,,,,,6045,,, +383,21,1,12737,512,1784.69,,,,,,144,84,0,,,,, +383,44,3,12760,998,1784.69,,,,,,144,33,0,,,,, +383,46,1,12762,1024,1784.69,,,,,,176,102,0,,,,, +383,47,3,12763,1024,1784.69,64,16.0,D#1,mf,17,144,27,17,,,,, +383,48,3,12764,1024,1784.69,64,16.0,G#1,mf,17,144,32,17,,,,, +383,49,3,12765,1024,1784.69,64,16.0,C#2,mf,17,144,37,17,,,,, +383,50,3,12766,1024,1784.69,64,16.0,G3,mf,17,144,55,17,,,,, +383,51,3,12767,1024,1784.69,64,16.0,B3,mf,17,144,59,17,,,,, +383,47,3,12763,1024,1784.74,,,,,,144,27,0,,,,, +383,48,3,12764,1024,1784.74,,,,,,144,32,0,,,,, +383,49,3,12765,1024,1784.74,,,,,,144,37,0,,,,, +383,50,3,12766,1024,1784.74,,,,,,144,55,0,,,,, +383,51,3,12767,1024,1784.74,,,,,,144,59,0,,,,, +383,52,3,12768,1088,1784.958,192,8.0,D#2,pp,8,144,39,8,,,,, +383,53,0,12769,1140,1785.176,,,,,,176,64,127,,,,,V +383,52,3,12768,1088,1785.761,,,,,,144,39,0,,,,, +384,0,0,12770,0,1785.761,,,,,,,,,384,,,, +384,1,1,12771,0,1785.761,,,,,,176,102,0,,,,, +384,2,3,12772,0,1785.761,,,,,,176,102,0,,,,, +384,3,1,12773,128,1786.297,85,8.0,C6,p,11,144,84,11,,,,, +384,4,3,12774,128,1786.297,85,8.0,D#3,pp,8,144,51,8,,,,, +384,3,1,12773,128,1786.653,,,,,,144,84,0,,,,, +384,4,3,12774,128,1786.653,,,,,,144,51,0,,,,, +384,5,1,12775,213,1786.653,,,,,,176,102,0,,,,, +384,6,3,12776,213,1786.653,43,16.0,C2,pp,8,144,36,8,,,,, +384,7,1,12777,234,1786.741,22,32.0,F4,p,11,144,65,11,,,,, +384,6,3,12776,213,1786.833,,,,,,144,36,0,,,,, +384,7,1,12777,234,1786.833,,,,,,144,65,0,,,,, +384,8,1,12778,256,1786.833,21,32.0,G#4,mp-,13,144,68,13,,,,, +384,9,3,12779,256,1786.833,,,,,,176,102,0,,,,, +384,11,0,12780,298,1786.905,,,,,,176,64,0,,,,,^ +384,8,1,12778,256,1786.921,,,,,,144,68,0,,,,, +384,10,1,12781,277,1786.921,21,32.0,E5,mp+,15,144,76,15,,,,, +384,10,1,12781,277,1787.009,,,,,,144,76,0,,,,, +384,12,1,12782,298,1787.009,22,32.0,F4,mf,17,144,65,17,,,,, +384,13,1,12783,298,1787.009,32,32.0,G#4,mf,17,144,68,17,,,,, +384,14,3,12784,298,1787.009,22,32.0,C2,mf,17,144,36,17,,,,, +384,15,3,12785,298,1787.009,32,32.0,A#2,mf,17,144,46,17,,,,, +384,12,1,12782,298,1787.059,,,,,,144,65,0,,,,, +384,13,1,12783,298,1787.059,,,,,,144,68,0,,,,, +384,14,3,12784,298,1787.059,,,,,,144,36,0,,,,, +384,15,3,12785,298,1787.059,,,,,,144,46,0,,,,, +384,17,1,12786,320,1787.101,,,,,,176,102,0,,,,, +384,18,3,12787,320,1787.101,21,32.0,C3,mp,14,144,48,14,,,,, +384,18,3,12787,320,1787.189,,,,,,144,48,0,,,,, +384,19,3,12788,341,1787.189,21,32.0,F2,p+,12,144,41,12,,,,, +384,16,0,12789,320,1787.205,,,,,,176,64,127,,,,,V +384,19,3,12788,341,1787.277,,,,,,144,41,0,,,,, +384,20,3,12790,362,1787.277,22,32.0,B1,p,11,144,35,11,,,,, +384,20,3,12790,362,1787.369,,,,,,144,35,0,,,,, +384,21,1,12791,384,1787.369,21,32.0,G2,p,11,144,43,11,,,,, +384,22,3,12792,384,1787.369,,,,,,176,102,0,,,,, +384,21,1,12791,384,1787.456,,,,,,144,43,0,,,,, +384,23,1,12793,405,1787.456,21,32.0,E6,p,11,144,88,11,,,,, +384,23,1,12793,405,1787.544,,,,,,144,88,0,,,,, +384,24,1,12794,426,1787.544,22,32.0,C#6,p,11,144,85,11,,,,, +384,24,1,12794,426,1787.636,,,,,,144,85,0,,,,, +384,25,1,12795,448,1787.636,21,32.0,E6,p-,10,144,88,10,,,,, +384,25,1,12795,448,1787.724,,,,,,144,88,0,,,,, +384,26,1,12796,469,1787.724,21,32.0,C#5,p-,10,144,73,10,,,,, +384,26,1,12796,469,1787.812,,,,,,144,73,0,,,,, +384,27,1,12797,490,1787.812,22,32.0,E5,p-,10,144,76,10,,,,, +384,27,1,12797,490,1787.904,,,,,,144,76,0,,,,, +384,28,1,12798,512,1787.904,32,32.0,G3,p-,10,144,55,10,,,,, +384,29,3,12799,512,1787.904,256,4.0,C3,mf,17,144,48,17,,,,, +384,28,1,12798,512,1788.038,,,,,,144,55,0,,,,, +384,30,1,12800,544,1788.038,32,32.0,C#4,pp+,9,144,61,9,,,,, +384,30,1,12800,544,1788.172,,,,,,144,61,0,,,,, +384,31,1,12801,576,1788.172,21,32.0,E5,pp+,9,144,76,9,,,,, +384,31,1,12801,576,1788.26,,,,,,144,76,0,,,,, +384,32,1,12802,597,1788.26,21,32.0,C#4,pp+,9,144,61,9,,,,, +384,32,1,12802,597,1788.348,,,,,,144,61,0,,,,, +384,33,1,12803,618,1788.348,22,32.0,C4,pp,8,144,60,8,,,,, +384,33,1,12803,618,1788.44,,,,,,144,60,0,,,,, +384,34,1,12804,640,1788.44,32,32.0,G2,pp,8,144,43,8,,,,, +384,35,1,12805,640,1788.44,32,32.0,G#3,pp,8,144,56,8,,,,, +384,34,1,12804,640,1788.574,,,,,,144,43,0,,,,, +384,35,1,12805,640,1788.574,,,,,,144,56,0,,,,, +384,36,1,12806,672,1788.574,32,32.0,C4,pp,8,144,60,8,,,,, +384,36,1,12806,672,1788.708,,,,,,144,60,0,,,,, +384,37,1,12807,704,1788.708,32,32.0,G#2,pp-,7,144,44,7,,,,, +384,37,1,12807,704,1788.842,,,,,,144,44,0,,,,, +384,38,1,12808,736,1788.842,32,32.0,C5,pp-,7,144,72,7,,,,, +384,39,1,12809,736,1788.842,32,32.0,E5,pp-,7,144,76,7,,,,, +384,29,3,12799,512,1788.976,,,,,,144,48,0,,,,, +384,38,1,12808,736,1788.976,,,,,,144,72,0,,,,, +384,39,1,12809,736,1788.976,,,,,,144,76,0,,,,, +384,40,1,12810,768,1788.976,,,,,,176,102,0,,,,, +384,41,3,12811,768,1788.976,32,32.0,G1,pp-,7,144,31,7,,,,, +384,41,3,12811,768,1789.11,,,,,,144,31,0,,,,, +384,42,3,12812,800,1789.11,32,32.0,C#4,ppp+,6,144,61,6,,,,, +384,42,3,12812,800,1789.244,,,,,,144,61,0,,,,, +384,43,3,12813,832,1789.244,21,32.0,G#2,ppp+,6,144,44,6,,,,, +384,44,3,12814,832,1789.244,32,32.0,E5,ppp+,6,144,76,6,,,,, +384,43,3,12813,832,1789.331,,,,,,144,44,0,,,,, +384,45,3,12815,853,1789.331,21,32.0,C3,ppp+,6,144,48,6,,,,, +384,44,3,12814,832,1789.378,,,,,,144,76,0,,,,, +384,45,3,12815,853,1789.419,,,,,,144,48,0,,,,, +384,46,3,12816,874,1789.419,22,32.0,G#2,ppp,5,144,44,5,,,,, +384,47,3,12817,896,1789.511,10,64.0,G#2,,,,,,,,,, +384,48,3,12818,906,1789.553,22,32.0,C3,ppp,5,144,48,5,,,,, +384,46,3,12816,874,1789.553,,,,,,144,44,0,,,,, +384,48,3,12818,906,1789.645,,,,,,144,48,0,,,,, +384,49,3,12819,928,1789.645,32,32.0,C#3,ppp,5,144,49,5,,,,, +384,50,0,12820,960,1789.763,,,,,,176,64,0,,,,,^ +384,49,3,12819,928,1789.779,,,,,,144,49,0,,,,, +384,51,3,12821,960,1789.779,32,32.0,G#2,ppp,5,144,44,5,,,,, +384,52,3,12822,960,1789.779,32,32.0,C3,ppp,5,144,48,5,,,,, +384,53,3,12823,960,1789.779,32,32.0,E4,ppp,5,144,64,5,,,,, +384,51,3,12821,960,1789.913,,,,,,144,44,0,,,,, +384,52,3,12822,960,1789.913,,,,,,144,48,0,,,,, +384,53,3,12823,960,1789.913,,,,,,144,64,0,,,,, +384,54,3,12824,992,1789.913,32,32.0,G1,ppp,5,144,31,5,,,,, +384,55,3,12825,992,1789.913,32,32.0,G#1,ppp,5,144,32,5,,,,, +384,56,0,12826,992,1789.913,,,,,,,,,,6046,,, +384,54,3,12824,992,1790.047,,,,,,144,31,0,,,,, +384,55,3,12825,992,1790.047,,,,,,144,32,0,,,,, +384,58,1,12827,1024,1790.047,64,16.0,C5,pp,8,144,72,8,,,,, +384,59,3,12828,1024,1790.047,42,16.0,C2,ppp,5,144,36,5,,,,, +384,60,3,12829,1024,1790.047,64,16.0,C#3,ppp,5,144,49,5,,,,, +384,61,3,12830,1024,1790.047,64,16.0,E4,ppp,5,144,64,5,,,,, +384,57,0,12831,1024,1790.063,,,,,,176,64,127,,,,,V +384,59,3,12828,1024,1790.223,,,,,,144,36,0,,,,, +384,62,3,12832,1066,1790.223,,,,,,176,102,0,,,,, +384,58,1,12827,1024,1790.315,,,,,,144,72,0,,,,, +384,60,3,12829,1024,1790.315,,,,,,144,49,0,,,,, +384,61,3,12830,1024,1790.315,,,,,,144,64,0,,,,, +384,63,1,12833,1088,1790.315,64,16.0,G#5,pp,8,144,80,8,,,,, +384,64,3,12834,1109,1790.403,43,16.0,C#4,ppp,5,144,61,5,,,,, +384,63,1,12833,1088,1790.583,,,,,,144,80,0,,,,, +384,64,3,12834,1109,1790.583,,,,,,144,61,0,,,,, +384,65,1,12835,1152,1790.583,,,,,,176,102,0,,,,, +384,66,3,12836,1152,1790.583,64,16.0,G2,ppp,5,144,43,5,,,,, +384,66,3,12836,1152,1790.851,,,,,,144,43,0,,,,, +384,67,3,12837,1216,1790.851,64,16.0,C#4,ppp,5,144,61,5,,,,, +385,0,0,12838,0,1791.119,,,,,,,,,385,,,, +385,1,1,12839,0,1791.119,,,,,,176,102,0,,,,, +385,2,2,12840,0,1791.119,256,4.0,E5,ppp,5,144,76,5,,,,, +385,3,3,12841,0,1791.119,,,,,,176,102,0,,,,, +384,67,3,12837,1216,1791.194,,,,,,144,61,0,,,,, +385,4,1,12842,,1792.04,,8.0,E6,pp,8,144,88,8,,,,g, +385,4,1,12842,,1792.09,,,,,,144,88,0,,,,, +385,5,1,12843,,1792.115,,8.0,F#3,pp,8,144,54,8,,,,g, +385,5,1,12843,,1792.165,,,,,,144,54,0,,,,, +385,6,1,12844,256,1792.19,25,32.0,B3,pp,8,144,59,8,,,,, +385,7,2,12845,256,1792.19,256,4.0,D6,pp,8,144,86,8,,,,, +385,8,3,12846,256,1792.19,170,4.0,C3,p,11,144,48,11,,,,, +385,2,2,12840,0,1792.265,,,,,,144,76,0,,,,, +385,6,1,12844,256,1792.295,,,,,,144,59,0,,,,, +385,9,1,12847,281,1792.295,39,32.0,E7,pp,8,144,100,8,,,,, +385,9,1,12847,281,1792.458,,,,,,144,100,0,,,,, +385,10,1,12848,320,1792.458,38,32.0,B3,pp,8,144,59,8,,,,, +385,10,1,12848,320,1792.617,,,,,,144,59,0,,,,, +385,11,1,12849,358,1792.617,102,8.0,A#4,pp,8,144,70,8,,,,, +385,8,3,12846,256,1792.902,,,,,,144,48,0,,,,, +385,12,3,12850,426,1792.902,86,8.0,D#4,p,11,144,63,11,,,,, +385,11,1,12849,358,1793.044,,,,,,144,70,0,,,,, +385,13,1,12851,460,1793.044,52,16.0,D4,pp,8,144,62,8,,,,, +385,7,2,12845,256,1793.261,,,,,,144,86,0,,,,, +385,14,1,12852,512,1793.261,,,,,,176,102,0,,,,, +385,15,2,12853,512,1793.261,64,16.0,D6,pp,8,144,86,8,,,,, +385,16,3,12854,512,1793.261,85,8.0,D#4,,,,,,,,,, +385,13,1,12851,460,1793.411,,,,,,144,62,0,,,,, +385,15,2,12853,512,1793.529,,,,,,144,86,0,,,,, +385,17,2,12855,576,1793.529,64,16.0,F#5,pp,8,144,78,8,,,,, +385,18,3,12856,597,1793.617,43,16.0,G#3,p,11,144,56,11,,,,, +385,12,3,12850,426,1793.767,,,,,,144,63,0,,,,, +385,17,2,12855,576,1793.797,,,,,,144,78,0,,,,, +385,18,3,12856,597,1793.797,,,,,,144,56,0,,,,, +385,19,2,12857,640,1793.797,,,,,,176,102,0,,,,, +385,20,3,12858,640,1793.797,21,32.0,G#2,pp,8,144,44,8,,,,, +385,20,3,12858,640,1793.885,,,,,,144,44,0,,,,, +385,21,3,12859,661,1793.885,21,32.0,D#3,pp,8,144,51,8,,,,, +385,21,3,12859,661,1793.973,,,,,,144,51,0,,,,, +385,22,2,12860,682,1793.973,22,32.0,A5,p,11,144,81,11,,,,, +385,23,3,12861,682,1793.973,22,32.0,G#2,pp,8,144,44,8,,,,, +385,22,2,12860,682,1794.065,,,,,,144,81,0,,,,, +385,23,3,12861,682,1794.065,,,,,,144,44,0,,,,, +385,24,2,12862,704,1794.065,32,32.0,E7,p,11,144,100,11,,,,, +385,25,3,12863,704,1794.065,32,32.0,D#3,pp,8,144,51,8,,,,, +385,24,2,12862,704,1794.199,,,,,,144,100,0,,,,, +385,25,3,12863,704,1794.199,,,,,,144,51,0,,,,, +385,26,2,12864,736,1794.199,32,32.0,A6,p,11,144,93,11,,,,, +385,27,3,12865,736,1794.199,32,32.0,G#2,pp,8,144,44,8,,,,, +385,26,2,12864,736,1794.333,,,,,,144,93,0,,,,, +385,27,3,12865,736,1794.333,,,,,,144,44,0,,,,, +385,28,1,12866,768,1794.333,,,,,,176,102,0,,,,, +385,29,2,12867,768,1794.333,512,2.0,A#6,pp,8,144,94,8,,,,, +385,30,3,12868,768,1794.333,51,16.0,B2,pp,8,144,47,8,,,,, +385,30,3,12868,768,1794.546,,,,,,144,47,0,,,,, +385,31,3,12869,819,1794.546,25,32.0,A#3,pp,8,144,58,8,,,,, +385,31,3,12869,819,1794.651,,,,,,144,58,0,,,,, +385,32,3,12870,844,1794.651,26,32.0,E5,pp,8,144,76,8,,,,, +385,32,3,12870,844,1794.76,,,,,,144,76,0,,,,, +385,33,3,12871,870,1794.76,26,32.0,D3,pp,8,144,50,8,,,,, +385,33,3,12871,870,1794.869,,,,,,144,50,0,,,,, +385,34,3,12872,896,1794.869,76,16.0,F#2,pp,8,144,42,8,,,,, +385,35,0,12873,896,1794.869,,,,,,,,,,6047,,, +385,36,0,12874,972,1795.118,,,,,,176,64,0,,,,,^ +385,34,3,12872,896,1795.187,,,,,,144,42,0,,,,, +385,37,3,12875,972,1795.187,52,16.0,F#2,mp,14,144,42,14,,,,, +385,38,3,12876,972,1795.187,64,16.0,B2,mp,14,144,47,14,,,,, +385,39,3,12877,972,1795.187,64,16.0,D3,mp,14,144,50,14,,,,, +385,40,3,12878,972,1795.187,64,16.0,A#3,mp,14,144,58,14,,,,, +385,37,3,12875,972,1795.404,,,,,,144,42,0,,,,, +385,42,3,12879,,1795.404,,8.0,D#3,p,11,144,51,11,,,,g, +385,41,0,12880,1011,1795.418,,,,,,176,64,127,,,,,V +385,42,3,12879,,1795.454,,,,,,144,51,0,,,,, +385,43,3,12881,,1795.479,,8.0,C2,p,11,144,36,11,,,,g, +385,43,3,12881,,1795.529,,,,,,144,36,0,,,,, +385,44,3,12882,1024,1795.554,56,16.0,G#2,p,11,144,44,11,,,,, +385,38,3,12876,972,1795.68,,,,,,144,47,0,,,,, +385,39,3,12877,972,1795.68,,,,,,144,50,0,,,,, +385,40,3,12878,972,1795.68,,,,,,144,58,0,,,,, +385,45,3,12883,1080,1795.789,57,16.0,A4,p,11,144,69,11,,,,, +385,44,3,12882,1024,1796.014,,,,,,144,44,0,,,,, +385,45,3,12883,1080,1796.027,,,,,,144,69,0,,,,, +385,46,3,12884,1137,1796.027,86,16.0,E6,p,11,144,88,11,,,,, +385,46,3,12884,1137,1796.387,,,,,,144,88,0,,,,, +385,47,3,12885,1223,1796.387,57,16.0,A4,p,11,144,69,11,,,,, +385,47,3,12885,1223,1796.626,,,,,,144,69,0,,,,, +386,0,0,12886,0,1796.626,,,,,,,,,386,,,, +386,1,1,12887,,1796.626,,8.0,F#4,p,11,144,66,11,,,,g, +386,1,1,12887,,1796.676,,,,,,144,66,0,,,,, +385,29,2,12867,768,1796.701,,,,,,144,94,0,,,,, +386,2,1,12888,,1796.701,,8.0,C5,p,11,144,72,11,,,,g, +386,2,1,12888,,1796.751,,,,,,144,72,0,,,,, +386,3,1,12889,,1796.776,,8.0,G5,p,11,144,79,11,,,,g, +386,3,1,12889,,1796.826,,,,,,144,79,0,,,,, +386,4,1,12890,0,1796.851,128,8.0,E5,p,11,144,76,11,,,,, +386,5,1,12891,0,1796.851,128,8.0,A#5,p,11,144,82,11,,,,, +386,6,3,12892,,1796.851,,8.0,B3,mp,14,144,59,14,,,,g, +386,6,3,12892,,1796.901,,,,,,144,59,0,,,,, +386,4,1,12890,0,1796.926,,,,,,144,76,0,,,,, +386,7,3,12893,,1796.926,,8.0,E5,mp,14,144,76,14,,,,g, +386,8,3,12894,,1797.001,,8.0,B3,mp+,15,144,59,15,,,,g, +386,8,3,12894,,1797.051,,,,,,144,59,0,,,,, +386,9,3,12895,,1797.076,,8.0,F#3,mp+,15,144,54,15,,,,g, +386,9,3,12895,,1797.126,,,,,,144,54,0,,,,, +386,10,3,12896,0,1797.151,96,16.0,A#4,mp+,15,144,70,15,,,,, +386,5,1,12891,0,1797.386,,,,,,144,82,0,,,,, +386,7,3,12893,,1797.386,,,,,,144,76,0,,,,, +386,10,3,12896,0,1797.553,,,,,,144,70,0,,,,, +386,11,3,12897,96,1797.553,96,16.0,D4,mf,17,144,62,17,,,,, +386,12,3,12898,96,1797.553,64,16.0,A#4,mf,17,144,70,17,,,,, +386,13,1,12899,128,1797.686,128,8.0,D7,p,11,144,98,11,,,,, +386,12,3,12898,96,1797.82,,,,,,144,70,0,,,,, +386,11,3,12897,96,1797.954,,,,,,144,62,0,,,,, +386,14,3,12900,192,1797.954,64,16.0,F#3,mf+,18,144,54,18,,,,, +386,15,3,12901,192,1797.954,64,16.0,D4,mf+,18,144,62,18,,,,, +386,16,0,12902,215,1798.051,,,,,,176,64,0,,,,,^ +386,13,1,12899,128,1798.222,,,,,,144,98,0,,,,, +386,14,3,12900,192,1798.222,,,,,,144,54,0,,,,, +386,15,3,12901,192,1798.222,,,,,,144,62,0,,,,, +386,17,1,12903,256,1798.222,,,,,,176,102,0,,,,, +386,18,3,12904,256,1798.222,,,,,,176,102,0,,,,, +386,20,1,12905,288,1798.356,32,32.0,C5,f,20,144,72,20,,,,, +386,21,1,12906,288,1798.356,32,32.0,G#5,f,20,144,80,20,,,,, +386,19,0,12907,288,1798.356,,,,,,176,64,127,,,,,V +386,20,1,12905,288,1798.49,,,,,,144,72,0,,,,, +386,21,1,12906,288,1798.49,,,,,,144,80,0,,,,, +386,22,1,12908,320,1798.49,32,32.0,E2,f,20,144,40,20,,,,, +386,22,1,12908,320,1798.624,,,,,,144,40,0,,,,, +386,23,1,12909,352,1798.624,32,32.0,B2,f,20,144,47,20,,,,, +386,27,0,12910,405,1798.74,,,,,,176,64,0,,,,,^ +386,23,1,12909,352,1798.758,,,,,,144,47,0,,,,, +386,24,1,12911,384,1798.758,21,32.0,F3,f,20,144,53,20,,,,, +386,25,1,12912,384,1798.758,32,32.0,C5,f,20,144,72,20,,,,, +386,26,1,12913,384,1798.758,32,32.0,G#5,f,20,144,80,20,,,,, +386,24,1,12911,384,1798.846,,,,,,144,53,0,,,,, +386,28,1,12914,405,1798.846,21,32.0,G#4,f-,19,144,68,19,,,,, +386,25,1,12912,384,1798.892,,,,,,144,72,0,,,,, +386,26,1,12913,384,1798.892,,,,,,144,80,0,,,,, +386,28,1,12914,405,1798.934,,,,,,144,68,0,,,,, +386,30,1,12915,426,1798.934,22,32.0,C4,mf,17,144,60,17,,,,, +386,30,1,12915,426,1799.026,,,,,,144,60,0,,,,, +386,31,1,12916,448,1799.026,,,,,,176,102,0,,,,, +386,32,3,12917,448,1799.026,21,32.0,E1,mf,17,144,28,17,,,,, +386,29,0,12918,426,1799.04,,,,,,176,64,127,,,,,V +386,32,3,12917,448,1799.114,,,,,,144,28,0,,,,, +386,33,1,12919,469,1799.114,43,16.0,C4,mp,14,144,60,14,,,,, +386,34,1,12920,469,1799.114,64,16.0,G#4,mp,14,144,68,14,,,,, +386,35,3,12921,469,1799.114,21,32.0,E1,mf,17,144,28,17,,,,, +386,36,3,12922,469,1799.114,32,32.0,F2,mf,17,144,41,17,,,,, +386,35,3,12921,469,1799.202,,,,,,144,28,0,,,,, +386,37,3,12923,490,1799.202,22,32.0,B1,mf,17,144,35,17,,,,, +386,36,3,12922,469,1799.248,,,,,,144,41,0,,,,, +386,33,1,12919,469,1799.294,,,,,,144,60,0,,,,, +386,37,3,12923,490,1799.294,,,,,,144,35,0,,,,, +386,38,1,12924,,1799.294,,8.0,C3,p,11,144,48,11,,,,g, +386,38,1,12924,,1799.344,,,,,,144,48,0,,,,, +386,39,1,12925,,1799.369,,8.0,G#3,p,11,144,56,11,,,,g, +386,34,1,12920,469,1799.381,,,,,,144,68,0,,,,, +386,39,1,12925,,1799.419,,,,,,144,56,0,,,,, +386,40,1,12926,,1799.444,,8.0,F2,p,11,144,41,11,,,,g, +386,40,1,12926,,1799.494,,,,,,144,41,0,,,,, +386,41,1,12927,512,1799.519,42,16.0,C3,p,11,144,48,11,,,,, +386,42,1,12928,512,1799.519,64,16.0,G#3,p,11,144,56,11,,,,, +386,43,3,12929,512,1799.519,64,16.0,E1,p,11,144,28,11,,,,, +386,44,3,12930,512,1799.519,64,16.0,F2,p,11,144,41,11,,,,, +386,41,1,12927,512,1799.694,,,,,,144,48,0,,,,, +386,45,1,12931,554,1799.694,,,,,,176,102,0,,,,, +386,42,1,12928,512,1799.786,,,,,,144,56,0,,,,, +386,43,3,12929,512,1799.786,,,,,,144,28,0,,,,, +386,44,3,12930,512,1799.786,,,,,,144,41,0,,,,, +386,46,3,12932,576,1799.786,64,16.0,B1,p,11,144,35,11,,,,, +386,47,1,12933,597,1799.874,43,16.0,A#2,p,11,144,46,11,,,,, +386,46,3,12932,576,1800.054,,,,,,144,35,0,,,,, +386,47,1,12933,597,1800.054,,,,,,144,46,0,,,,, +386,48,1,12934,640,1800.054,128,8.0,G#6,p,11,144,92,11,,,,, +386,49,3,12935,640,1800.054,,,,,,176,102,0,,,,, +386,48,1,12934,640,1800.59,,,,,,144,92,0,,,,, +386,50,1,12936,768,1800.59,42,16.0,C#5,p,11,144,73,11,,,,, +386,51,1,12937,768,1800.59,64,16.0,A5,p,11,144,81,11,,,,, +386,52,3,12938,768,1800.59,,,,,,176,102,0,,,,, +386,50,1,12936,768,1800.766,,,,,,144,73,0,,,,, +386,53,1,12939,810,1800.766,43,16.0,F4,mp-,13,144,65,13,,,,, +386,54,1,12940,810,1800.766,64,16.0,C#5,mp-,13,144,73,13,,,,, +386,51,1,12937,768,1800.858,,,,,,144,81,0,,,,, +386,53,1,12939,810,1800.946,,,,,,144,65,0,,,,, +386,54,1,12940,810,1800.946,,,,,,144,73,0,,,,, +386,55,1,12941,853,1800.946,85,8.0,F4,mp+,15,144,65,15,,,,, +386,56,1,12942,853,1800.946,128,8.0,C#5,mp+,15,144,73,15,,,,, +386,57,3,12943,896,1801.126,42,16.0,A#2,mp,14,144,46,14,,,,, +386,55,1,12941,853,1801.302,,,,,,144,65,0,,,,, +386,57,3,12943,896,1801.302,,,,,,144,46,0,,,,, +386,58,1,12944,938,1801.302,,,,,,176,102,0,,,,, +386,59,3,12945,938,1801.302,86,8.0,E2,mf,17,144,40,17,,,,, +386,56,1,12942,853,1801.481,,,,,,144,73,0,,,,, +386,60,1,12946,1002,1801.569,22,32.0,D#3,mf,17,144,51,17,,,,, +386,61,1,12947,1002,1801.569,32,32.0,C6,mf,17,144,84,17,,,,, +386,59,3,12945,938,1801.661,,,,,,144,40,0,,,,, +386,60,1,12946,1002,1801.661,,,,,,144,51,0,,,,, +386,61,1,12947,1002,1801.661,,,,,,144,84,0,,,,, +386,62,1,12948,1024,1801.661,32,32.0,B4,mf+,18,144,71,18,,,,, +386,63,1,12949,1024,1801.661,32,32.0,C6,mf+,18,144,84,18,,,,, +386,64,3,12950,1024,1801.661,64,16.0,D#2,mf,17,144,39,17,,,,, +386,62,1,12948,1024,1801.795,,,,,,144,71,0,,,,, +386,63,1,12949,1024,1801.795,,,,,,144,84,0,,,,, +386,65,1,12951,1056,1801.795,,,,,,176,102,0,,,,, +386,64,3,12950,1024,1801.929,,,,,,144,39,0,,,,, +386,66,1,12952,1088,1801.929,,,,,,176,102,0,,,,, +386,67,3,12953,1088,1801.929,,,,,,176,102,0,,,,, +386,68,1,12954,1152,1802.197,,,,,,176,102,0,,,,, +386,69,3,12955,1152,1802.197,51,16.0,E3,pp,8,144,52,8,,,,, +386,69,3,12955,1152,1802.411,,,,,,144,52,0,,,,, +386,70,3,12956,1203,1802.411,77,16.0,B3,pp,8,144,59,8,,,,, +386,70,3,12956,1203,1802.733,,,,,,144,59,0,,,,, +387,0,0,12957,0,1802.733,,,,,,,,,387,,,, +387,1,1,12958,0,1802.733,153,8.0,C6,ppp,5,144,84,5,,,,, +387,2,1,12959,0,1802.733,128,8.0,G#6,ppp,5,144,92,5,,,,, +387,3,3,12960,0,1802.733,153,8.0,E3,ppp,5,144,52,5,,,,, +387,4,3,12961,0,1802.733,128,8.0,B3,ppp,5,144,59,5,,,,, +387,2,1,12959,0,1803.269,,,,,,144,92,0,,,,, +387,4,3,12961,0,1803.269,,,,,,144,59,0,,,,, +387,1,1,12958,0,1803.373,,,,,,144,84,0,,,,, +387,3,3,12960,0,1803.373,,,,,,144,52,0,,,,, +387,5,1,12962,153,1803.373,103,8.0,C6,ppp,5,144,84,5,,,,, +387,6,1,12963,153,1803.373,128,8.0,G#6,ppp,5,144,92,5,,,,, +387,7,3,12964,153,1803.373,103,8.0,E3,ppp,5,144,52,5,,,,, +387,8,3,12965,153,1803.373,128,8.0,B3,ppp,5,144,59,5,,,,, +387,9,3,12966,153,1803.373,128,8.0,F4,ppp,5,144,65,5,,,,, +387,10,1,12967,256,1803.804,256,4.0,C6,,,,,,,,,, +387,11,1,12968,256,1803.804,256,4.0,G#6,,,,,,,,,, +387,12,3,12969,256,1803.804,256,4.0,E3,,,,,,,,,, +387,13,3,12970,256,1803.804,256,4.0,B3,,,,,,,,,, +387,14,3,12971,256,1803.804,256,4.0,F4,,,,,,,,,, +387,15,0,12972,256,1803.804,,,,,,,,,,6047,,, +387,16,0,12973,512,1804.726,,,,,,176,64,0,,,,,^ +387,5,1,12962,153,1804.876,,,,,,144,84,0,,,,, +387,7,3,12964,153,1804.876,,,,,,144,52,0,,,,, +387,18,1,12974,512,1804.876,21,32.0,D#2,f,20,144,39,20,,,,, +387,19,1,12975,512,1804.876,32,32.0,B4,f,20,144,71,20,,,,, +387,20,1,12976,512,1804.876,32,32.0,C6,f,20,144,84,20,,,,, +387,21,3,12977,512,1804.876,,,,,,176,102,0,,,,, +387,18,1,12974,512,1804.964,,,,,,144,39,0,,,,, +387,22,1,12978,533,1804.964,21,32.0,G4,f,20,144,67,20,,,,, +387,6,1,12963,153,1804.98,,,,,,144,92,0,,,,, +387,8,3,12965,153,1804.98,,,,,,144,59,0,,,,, +387,9,3,12966,153,1804.98,,,,,,144,65,0,,,,, +387,19,1,12975,512,1805.01,,,,,,144,71,0,,,,, +387,20,1,12976,512,1805.01,,,,,,144,84,0,,,,, +387,17,0,12979,512,1805.026,,,,,,176,64,127,,,,,V +387,22,1,12978,533,1805.052,,,,,,144,67,0,,,,, +387,23,1,12980,554,1805.052,43,16.0,F#3,f,20,144,54,20,,,,, +387,24,0,12981,597,1805.171,,,,,,176,64,0,,,,,^ +387,23,1,12980,554,1805.231,,,,,,144,54,0,,,,, +387,25,1,12982,597,1805.231,,,,,,176,102,0,,,,, +387,26,0,12983,640,1805.411,,,,,,,,,,,56,, +387,28,1,12984,640,1805.411,64,16.0,E5,ppp,5,144,76,5,,,,, +387,29,3,12985,640,1805.411,,,,,,176,102,0,,,,, +387,27,0,12986,640,1805.471,,,,,,176,64,127,,,,,V +387,28,1,12984,640,1805.679,,,,,,144,76,0,,,,, +387,30,1,12987,704,1805.679,42,16.0,G#3,pp,8,144,56,8,,,,, +387,30,1,12987,704,1805.855,,,,,,144,56,0,,,,, +387,31,1,12988,746,1805.855,22,32.0,C7,pp+,9,144,96,9,,,,, +387,31,1,12988,746,1805.947,,,,,,144,96,0,,,,, +387,32,1,12989,768,1805.947,21,32.0,A2,p-,10,144,45,10,,,,, +387,33,3,12990,768,1805.947,,,,,,176,102,0,,,,, +387,32,1,12989,768,1806.035,,,,,,144,45,0,,,,, +387,34,1,12991,789,1806.035,21,32.0,C7,p,11,144,96,11,,,,, +387,34,1,12991,789,1806.123,,,,,,144,96,0,,,,, +387,35,1,12992,810,1806.123,22,32.0,A2,p+,12,144,45,12,,,,, +387,35,1,12992,810,1806.215,,,,,,144,45,0,,,,, +387,36,1,12993,832,1806.215,32,32.0,E5,mp-,13,144,76,13,,,,, +387,36,1,12993,832,1806.349,,,,,,144,76,0,,,,, +387,37,1,12994,864,1806.349,32,32.0,G#3,mp,14,144,56,14,,,,, +387,37,1,12994,864,1806.483,,,,,,144,56,0,,,,, +387,38,1,12995,896,1806.483,21,32.0,A2,mf-,16,144,45,16,,,,, +387,38,1,12995,896,1806.571,,,,,,144,45,0,,,,, +387,39,1,12996,917,1806.571,21,32.0,D6,mf-,16,144,86,16,,,,, +387,39,1,12996,917,1806.659,,,,,,144,86,0,,,,, +387,40,1,12997,938,1806.659,32,32.0,C7,mf,17,144,96,17,,,,, +387,40,1,12997,938,1806.793,,,,,,144,96,0,,,,, +387,41,1,12998,970,1806.793,32,32.0,D6,f-,19,144,86,19,,,,, +387,42,0,12999,970,1806.793,,,,,,,,,,6048,,, +387,41,1,12998,970,1806.927,,,,,,144,86,0,,,,, +387,43,0,13000,1002,1806.927,,,,,,176,64,0,,,,,^ +387,44,1,13001,1002,1806.927,22,32.0,A2,f,20,144,45,20,,,,, +387,45,1,13002,1002,1806.927,32,32.0,G#3,f,20,144,56,20,,,,, +387,46,1,13003,1002,1806.927,32,32.0,D6,f,20,144,86,20,,,,, +387,47,1,13004,1002,1806.927,32,32.0,C7,f,20,144,96,20,,,,, +387,44,1,13001,1002,1807.019,,,,,,144,45,0,,,,, +387,48,1,13005,1024,1807.019,,,,,,176,102,0,,,,, +387,49,3,13006,1024,1807.019,,,,,,176,102,0,,,,, +387,45,1,13002,1002,1807.06,,,,,,144,56,0,,,,, +387,46,1,13003,1002,1807.06,,,,,,144,86,0,,,,, +387,47,1,13004,1002,1807.06,,,,,,144,96,0,,,,, +387,51,3,13007,1088,1807.286,64,16.0,D#2,pp,8,144,39,8,,,,, +387,50,0,13008,1088,1807.286,,,,,,176,64,127,,,,,V +387,51,3,13007,1088,1807.554,,,,,,144,39,0,,,,, +387,52,1,13009,1152,1807.554,64,16.0,B5,pp,8,144,83,8,,,,, +387,53,3,13010,1152,1807.554,64,16.0,D#2,pp,8,144,39,8,,,,, +387,52,1,13009,1152,1807.822,,,,,,144,83,0,,,,, +387,53,3,13010,1152,1807.822,,,,,,144,39,0,,,,, +387,54,1,13011,1216,1807.822,64,16.0,B5,pp,8,144,83,8,,,,, +387,55,3,13012,1216,1807.822,64,16.0,G3,pp,8,144,55,8,,,,, +387,54,1,13011,1216,1808.09,,,,,,144,83,0,,,,, +387,55,3,13012,1216,1808.09,,,,,,144,55,0,,,,, +388,0,0,13013,0,1808.09,,,,,,,,,388,,,, +388,1,1,13014,0,1808.09,28,32.0,D#4,f,20,144,63,20,,,,, +388,2,3,13015,0,1808.09,,,,,,176,102,0,,,,, +388,1,1,13014,0,1808.207,,,,,,144,63,0,,,,, +388,3,1,13016,28,1808.207,28,32.0,C8,f-,19,144,108,19,,,,, +388,3,1,13016,28,1808.324,,,,,,144,108,0,,,,, +388,4,1,13017,56,1808.324,29,32.0,D#5,f-,19,144,75,19,,,,, +388,4,1,13017,56,1808.446,,,,,,144,75,0,,,,, +388,5,1,13018,85,1808.446,43,32.0,C7,mf+,18,144,96,18,,,,, +388,5,1,13018,85,1808.626,,,,,,144,96,0,,,,, +388,6,1,13019,128,1808.626,36,32.0,D#3,mf,17,144,51,17,,,,, +388,6,1,13019,128,1808.776,,,,,,144,51,0,,,,, +388,7,1,13020,164,1808.776,37,32.0,C7,mf-,16,144,96,16,,,,, +388,7,1,13020,164,1808.931,,,,,,144,96,0,,,,, +388,8,1,13021,201,1808.931,36,32.0,B6,mp+,15,144,95,15,,,,, +388,8,1,13021,201,1809.082,,,,,,144,95,0,,,,, +388,9,1,13022,237,1809.082,37,32.0,D#3,mp,14,144,51,14,,,,, +388,10,1,13023,237,1809.082,32,32.0,F#4,mp,14,144,66,14,,,,, +388,10,1,13023,237,1809.216,,,,,,144,66,0,,,,, +388,9,1,13022,237,1809.237,,,,,,144,51,0,,,,, +388,11,1,13024,274,1809.237,55,32.0,C7,mp-,13,144,96,13,,,,, +388,11,1,13024,274,1809.467,,,,,,144,96,0,,,,, +388,12,1,13025,329,1809.467,55,32.0,D#4,p+,12,144,63,12,,,,, +388,12,1,13025,329,1809.697,,,,,,144,63,0,,,,, +388,13,1,13026,384,1809.697,42,32.0,F#5,p-,10,144,78,10,,,,, +388,14,1,13027,384,1809.697,32,32.0,C6,p-,10,144,84,10,,,,, +388,14,1,13027,384,1809.831,,,,,,144,84,0,,,,, +388,13,1,13026,384,1809.873,,,,,,144,78,0,,,,, +388,15,1,13028,426,1809.873,29,32.0,B5,pp+,9,144,83,9,,,,, +388,15,1,13028,426,1809.994,,,,,,144,83,0,,,,, +388,16,1,13029,455,1809.994,28,32.0,D#2,pp+,9,144,39,9,,,,, +388,16,1,13029,455,1810.112,,,,,,144,39,0,,,,, +388,17,1,13030,483,1810.112,29,32.0,G4,pp,8,144,67,8,,,,, +388,17,1,13030,483,1810.233,,,,,,144,67,0,,,,, +388,18,1,13031,512,1810.233,56,16.0,G5,pp,8,144,79,8,,,,, +388,19,3,13032,512,1810.233,42,16.0,B4,ppp,5,144,71,5,,,,, +388,19,3,13032,512,1810.409,,,,,,144,71,0,,,,, +388,20,3,13033,554,1810.409,22,32.0,G3,ppp,5,144,55,5,,,,, +388,18,1,13031,512,1810.467,,,,,,144,79,0,,,,, +388,21,1,13034,568,1810.467,57,16.0,A#5,pp+,9,144,82,9,,,,, +388,20,3,13033,554,1810.501,,,,,,144,55,0,,,,, +388,22,3,13035,576,1810.501,96,16.0,E6,pp,8,144,88,8,,,,, +388,21,1,13034,568,1810.706,,,,,,144,82,0,,,,, +388,23,1,13036,625,1810.706,86,16.0,F#4,pp+,9,144,66,9,,,,, +388,22,3,13035,576,1810.903,,,,,,144,88,0,,,,, +388,24,3,13037,672,1810.903,96,16.0,E6,pp+,9,144,88,9,,,,, +388,23,1,13036,625,1811.066,,,,,,144,66,0,,,,, +388,25,1,13038,711,1811.066,57,16.0,A#5,p-,10,144,82,10,,,,, +388,24,3,13037,672,1811.304,,,,,,144,88,0,,,,, +388,25,1,13038,711,1811.304,,,,,,144,82,0,,,,, +388,26,1,13039,768,1811.304,96,16.0,G5,p,11,144,79,11,,,,, +388,27,1,13040,768,1811.304,64,16.0,E6,p,11,144,88,11,,,,, +388,28,3,13041,768,1811.304,192,8.0,B2,p,11,144,47,11,,,,, +388,29,1,13042,864,1811.706,96,16.0,F#4,p+,12,144,66,12,,,,, +388,30,1,13043,864,1811.706,64,16.0,A#4,p+,12,144,70,12,,,,, +388,27,1,13040,768,1811.872,,,,,,144,88,0,,,,, +388,30,1,13043,864,1811.974,,,,,,144,70,0,,,,, +388,26,1,13039,768,1812.006,,,,,,144,79,0,,,,, +388,29,1,13042,864,1812.108,,,,,,144,66,0,,,,, +388,31,1,13044,960,1812.108,64,16.0,A#5,mp-,13,144,82,13,,,,, +388,32,3,13045,960,1812.108,21,32.0,F#2,p,11,144,42,11,,,,, +388,32,3,13045,960,1812.196,,,,,,144,42,0,,,,, +388,33,3,13046,981,1812.196,21,32.0,D3,p,11,144,50,11,,,,, +388,33,3,13046,981,1812.284,,,,,,144,50,0,,,,, +388,34,3,13047,1002,1812.284,22,32.0,F#2,p,11,144,42,11,,,,, +388,28,3,13041,768,1812.376,,,,,,144,47,0,,,,, +388,31,1,13044,960,1812.376,,,,,,144,82,0,,,,, +388,34,3,13047,1002,1812.376,,,,,,144,42,0,,,,, +388,35,1,13048,1024,1812.376,64,16.0,F#4,mp-,13,144,66,13,,,,, +388,36,3,13049,1024,1812.376,21,32.0,B2,p-,10,144,47,10,,,,, +388,37,3,13050,1024,1812.376,32,32.0,D3,p-,10,144,50,10,,,,, +388,36,3,13049,1024,1812.464,,,,,,144,47,0,,,,, +388,38,3,13051,1045,1812.464,21,32.0,F#2,p-,10,144,42,10,,,,, +388,37,3,13050,1024,1812.51,,,,,,144,50,0,,,,, +388,38,3,13051,1045,1812.552,,,,,,144,42,0,,,,, +388,39,3,13052,1066,1812.552,22,32.0,D3,pp,8,144,50,8,,,,, +388,35,1,13048,1024,1812.644,,,,,,144,66,0,,,,, +388,39,3,13052,1066,1812.644,,,,,,144,50,0,,,,, +388,40,1,13053,1088,1812.644,192,8.0,G5,mp,14,144,79,14,,,,, +388,41,1,13054,1088,1812.644,128,8.0,A#5,mp,14,144,82,14,,,,, +388,42,1,13055,1088,1812.644,128,8.0,D6,mp,14,144,86,14,,,,, +388,43,3,13056,1088,1812.644,64,16.0,F#2,pp,8,144,42,8,,,,, +388,43,3,13056,1088,1812.911,,,,,,144,42,0,,,,, +388,44,3,13057,1152,1812.911,128,8.0,C2,mp,14,144,36,14,,,,, +388,45,3,13058,1152,1812.911,128,8.0,E5,mp,14,144,76,14,,,,, +388,41,1,13054,1088,1813.179,,,,,,144,82,0,,,,, +388,42,1,13055,1088,1813.179,,,,,,144,86,0,,,,, +388,40,1,13053,1088,1813.447,,,,,,144,79,0,,,,, +388,44,3,13057,1152,1813.447,,,,,,144,36,0,,,,, +388,45,3,13058,1152,1813.447,,,,,,144,76,0,,,,, +389,0,0,13059,0,1813.447,,,,,,,,,389,,,, +389,1,1,13060,0,1813.447,102,8.0,C5,mp,14,144,72,14,,,,, +389,2,1,13061,0,1813.447,128,8.0,G5,mp,14,144,79,14,,,,, +389,3,1,13062,0,1813.447,128,8.0,A#5,mp,14,144,82,14,,,,, +389,4,1,13063,0,1813.447,128,8.0,D6,mp,14,144,86,14,,,,, +389,5,3,13064,0,1813.447,,,,,,176,102,0,,,,, +389,6,0,13065,64,1813.715,,,,,,176,64,0,,,,,^ +389,1,1,13060,0,1813.874,,,,,,144,72,0,,,,, +389,2,1,13061,0,1813.874,,,,,,144,79,0,,,,, +389,3,1,13062,0,1813.874,,,,,,144,82,0,,,,, +389,4,1,13063,0,1813.874,,,,,,144,86,0,,,,, +389,7,1,13066,102,1813.874,154,8.0,C5,mp,14,144,72,14,,,,, +389,8,1,13067,102,1813.874,128,8.0,G5,mp,14,144,79,14,,,,, +389,9,1,13068,102,1813.874,128,8.0,A#5,mp,14,144,82,14,,,,, +389,10,1,13069,102,1813.874,128,8.0,D6,mp,14,144,86,14,,,,, +389,11,0,13070,102,1813.874,,,,,,,,,,6049,,, +389,12,3,13071,128,1813.983,,,,,,176,102,0,,,,, +389,13,0,13072,156,1814.1,,,,,,176,64,127,,,,,V +389,8,1,13067,102,1814.41,,,,,,144,79,0,,,,, +389,9,1,13068,102,1814.41,,,,,,144,82,0,,,,, +389,10,1,13069,102,1814.41,,,,,,144,86,0,,,,, +389,7,1,13066,102,1814.519,,,,,,144,72,0,,,,, +389,14,1,13073,256,1814.519,,,,,,176,102,0,,,,, +389,15,3,13074,,1814.519,,8.0,B2,mp,14,144,47,14,,,,g, +389,15,3,13074,,1814.569,,,,,,144,47,0,,,,, +389,16,3,13075,,1814.594,,8.0,E4,mp,14,144,64,14,,,,g, +389,16,3,13075,,1814.644,,,,,,144,64,0,,,,, +389,17,3,13076,,1814.669,,8.0,B1,mp,14,144,35,14,,,,g, +389,17,3,13076,,1814.719,,,,,,144,35,0,,,,, +389,18,3,13077,256,1814.744,51,16.0,G3,mp,14,144,55,14,,,,, +389,19,3,13078,256,1814.744,64,16.0,A#3,mp,14,144,58,14,,,,, +389,18,3,13077,256,1814.957,,,,,,144,55,0,,,,, +389,20,3,13079,307,1814.957,25,32.0,F#2,mp,14,144,42,14,,,,, +389,21,3,13080,307,1814.957,32,32.0,G3,mp,14,144,55,14,,,,, +389,19,3,13078,256,1815.011,,,,,,144,58,0,,,,, +389,20,3,13079,307,1815.062,,,,,,144,42,0,,,,, +389,22,3,13081,332,1815.062,52,16.0,C3,mp,14,144,48,14,,,,, +389,21,3,13080,307,1815.091,,,,,,144,55,0,,,,, +389,22,3,13081,332,1815.279,,,,,,144,48,0,,,,, +389,23,1,13082,384,1815.279,32,32.0,C2,pp,8,144,36,8,,,,, +389,24,1,13083,384,1815.279,32,32.0,E5,pp,8,144,76,8,,,,, +389,25,3,13084,384,1815.279,,,,,,176,102,0,,,,, +389,23,1,13082,384,1815.413,,,,,,144,36,0,,,,, +389,24,1,13083,384,1815.413,,,,,,144,76,0,,,,, +389,26,1,13085,416,1815.413,32,32.0,D6,p-,10,144,86,10,,,,, +389,26,1,13085,416,1815.547,,,,,,144,86,0,,,,, +389,27,1,13086,448,1815.547,21,32.0,A6,p+,12,144,93,12,,,,, +389,27,1,13086,448,1815.635,,,,,,144,93,0,,,,, +389,28,1,13087,469,1815.635,21,32.0,G#2,mp-,13,144,44,13,,,,, +389,28,1,13087,469,1815.723,,,,,,144,44,0,,,,, +389,29,1,13088,490,1815.723,22,32.0,A6,mp,14,144,93,14,,,,, +389,29,1,13088,490,1815.815,,,,,,144,93,0,,,,, +389,30,1,13089,512,1815.815,32,32.0,D6,mp,14,144,86,14,,,,, +389,31,3,13090,512,1815.815,,,,,,176,102,0,,,,, +389,30,1,13089,512,1815.949,,,,,,144,86,0,,,,, +389,32,1,13091,544,1815.949,32,32.0,G#3,f,20,144,56,20,,,,, +389,32,1,13091,544,1816.083,,,,,,144,56,0,,,,, +389,33,1,13092,576,1816.083,32,32.0,A7,f,20,144,105,20,,,,, +389,33,1,13092,576,1816.217,,,,,,144,105,0,,,,, +389,34,1,13093,608,1816.217,32,32.0,D7,f,20,144,98,20,,,,, +389,35,3,13094,608,1816.217,32,32.0,C3,f,20,144,48,20,,,,, +389,36,3,13095,608,1816.217,32,32.0,G#3,f,20,144,56,20,,,,, +389,34,1,13093,608,1816.351,,,,,,144,98,0,,,,, +389,35,3,13094,608,1816.351,,,,,,144,48,0,,,,, +389,36,3,13095,608,1816.351,,,,,,144,56,0,,,,, +389,37,1,13096,640,1816.351,42,16.0,D7,f,20,144,98,20,,,,, +389,38,1,13097,640,1816.351,64,16.0,A7,f,20,144,105,20,,,,, +389,39,3,13098,640,1816.351,42,16.0,C3,f,20,144,48,20,,,,, +389,40,3,13099,640,1816.351,64,16.0,G#3,f,20,144,56,20,,,,, +389,37,1,13096,640,1816.527,,,,,,144,98,0,,,,, +389,39,3,13098,640,1816.527,,,,,,144,48,0,,,,, +389,41,1,13100,682,1816.527,43,16.0,B6,p,11,144,95,11,,,,, +389,42,3,13101,682,1816.527,,,,,,176,102,0,,,,, +389,38,1,13097,640,1816.619,,,,,,144,105,0,,,,, +389,40,3,13099,640,1816.619,,,,,,144,56,0,,,,, +389,43,0,13102,725,1816.646,,,,,,176,64,0,,,,,^ +389,41,1,13100,682,1816.706,,,,,,144,95,0,,,,, +389,44,1,13103,725,1816.706,,,,,,176,102,0,,,,, +389,45,3,13104,725,1816.706,43,16.0,A2,p,11,144,45,11,,,,, +389,45,3,13104,725,1816.886,,,,,,144,45,0,,,,, +389,47,1,13105,768,1816.886,512,2.0,A2,p,11,144,45,11,,,,, +389,48,1,13106,768,1816.886,512,2.0,B3,ppp,5,144,59,5,,,,, +389,49,1,13107,768,1816.886,512,2.0,B6,p,11,144,95,11,,,,, +389,50,3,13108,768,1816.886,,,,,,176,102,0,,,,, +389,46,0,13109,768,1816.946,,,,,,176,64,127,,,,,V +389,51,3,13110,819,1817.1,25,32.0,F#2,p,11,144,42,11,,,,, +389,52,3,13111,819,1817.1,32,32.0,G3,p,11,144,55,11,,,,, +389,51,3,13110,819,1817.205,,,,,,144,42,0,,,,, +389,53,3,13112,844,1817.205,52,16.0,C3,p,11,144,48,11,,,,, +389,52,3,13111,819,1817.234,,,,,,144,55,0,,,,, +389,53,3,13112,844,1817.422,,,,,,144,48,0,,,,, +389,54,3,13113,896,1817.422,,,,,,176,102,0,,,,, +389,55,3,13114,917,1817.51,21,32.0,A1,pp,8,144,33,8,,,,, +389,55,3,13114,917,1817.598,,,,,,144,33,0,,,,, +389,56,3,13115,938,1817.598,22,32.0,E4,pp+,9,144,64,9,,,,, +389,56,3,13115,938,1817.69,,,,,,144,64,0,,,,, +389,57,3,13116,960,1817.69,21,32.0,D5,p-,10,144,74,10,,,,, +389,57,3,13116,960,1817.778,,,,,,144,74,0,,,,, +389,58,3,13117,981,1817.778,21,32.0,A1,p,11,144,33,11,,,,, +389,59,3,13118,981,1817.778,32,32.0,G#2,p,11,144,44,11,,,,, +389,58,3,13117,981,1817.866,,,,,,144,33,0,,,,, +389,60,3,13119,1002,1817.866,22,32.0,D5,p+,12,144,74,12,,,,, +389,61,3,13120,1002,1817.866,32,32.0,C6,p+,12,144,84,12,,,,, +389,59,3,13118,981,1817.912,,,,,,144,44,0,,,,, +389,60,3,13119,1002,1817.958,,,,,,144,74,0,,,,, +389,62,3,13121,1024,1817.958,28,32.0,F#3,pp,8,144,54,8,,,,, +389,61,3,13120,1002,1818.0,,,,,,144,84,0,,,,, +389,62,3,13121,1024,1818.075,,,,,,144,54,0,,,,, +389,63,3,13122,1052,1818.075,28,32.0,D4,pp+,9,144,62,9,,,,, +389,63,3,13122,1052,1818.192,,,,,,144,62,0,,,,, +389,64,3,13123,1080,1818.192,29,32.0,F#3,p,11,144,54,11,,,,, +389,64,3,13123,1080,1818.314,,,,,,144,54,0,,,,, +389,65,3,13124,1109,1818.314,85,16.0,D4,p+,12,144,62,12,,,,, +389,65,3,13124,1109,1818.669,,,,,,144,62,0,,,,, +389,66,3,13125,1194,1818.669,86,16.0,F#3,mf,17,144,54,17,,,,, +389,66,3,13125,1194,1819.029,,,,,,144,54,0,,,,, +389,67,1,13126,,1819.029,,8.0,F4,mp,14,144,65,14,,,,g, +389,47,1,13105,768,1819.029,,,,,,144,45,0,,,,, +389,48,1,13106,768,1819.029,,,,,,144,59,0,,,,, +389,49,1,13107,768,1819.029,,,,,,144,95,0,,,,, +389,67,1,13126,,1819.079,,,,,,144,65,0,,,,, +390,0,0,13127,0,1819.104,,,,,,,,,390,,,, +390,1,1,13128,0,1819.104,128,8.0,C2,mp,14,144,36,14,,,,, +390,2,3,13129,0,1819.104,128,8.0,D#2,mp,14,144,39,14,,,,, +390,1,1,13128,0,1819.64,,,,,,144,36,0,,,,, +390,2,3,13129,0,1819.64,,,,,,144,39,0,,,,, +390,3,1,13130,128,1819.64,,,,,,176,102,0,,,,, +390,4,3,13131,128,1819.64,,,,,,176,102,0,,,,, +390,5,3,13132,149,1819.728,21,32.0,A1,pp,8,144,33,8,,,,, +390,5,3,13132,149,1819.816,,,,,,144,33,0,,,,, +390,6,3,13133,170,1819.816,22,32.0,E4,pp+,9,144,64,9,,,,, +390,6,3,13133,170,1819.908,,,,,,144,64,0,,,,, +390,7,3,13134,192,1819.908,21,32.0,D5,p-,10,144,74,10,,,,, +390,7,3,13134,192,1819.996,,,,,,144,74,0,,,,, +390,8,3,13135,213,1819.996,21,32.0,A1,p,11,144,33,11,,,,, +390,9,3,13136,213,1819.996,32,32.0,G#2,p,11,144,44,11,,,,, +390,8,3,13135,213,1820.084,,,,,,144,33,0,,,,, +390,10,3,13137,234,1820.084,22,32.0,D5,p+,12,144,74,12,,,,, +390,11,3,13138,234,1820.084,32,32.0,C6,p+,12,144,84,12,,,,, +390,9,3,13136,213,1820.13,,,,,,144,44,0,,,,, +390,10,3,13137,234,1820.176,,,,,,144,74,0,,,,, +390,12,1,13139,256,1820.176,,,,,,176,102,0,,,,, +390,13,3,13140,256,1820.176,,,,,,176,102,0,,,,, +390,11,3,13138,234,1820.218,,,,,,144,84,0,,,,, +390,14,3,13141,329,1820.481,36,32.0,A1,pp,8,144,33,8,,,,, +390,14,3,13141,329,1820.632,,,,,,144,33,0,,,,, +390,15,3,13142,365,1820.632,55,32.0,E4,pp,8,144,64,8,,,,, +390,15,3,13142,365,1820.862,,,,,,144,64,0,,,,, +390,16,3,13143,420,1820.862,55,32.0,G#2,pp+,9,144,44,9,,,,, +390,16,3,13143,420,1821.092,,,,,,144,44,0,,,,, +390,17,3,13144,475,1821.092,37,32.0,A1,p-,10,144,33,10,,,,, +390,17,3,13144,475,1821.247,,,,,,144,33,0,,,,, +390,18,1,13145,512,1821.247,,,,,,176,102,0,,,,, +390,19,3,13146,512,1821.247,54,32.0,C6,p-,10,144,84,10,,,,, +390,19,3,13146,512,1821.473,,,,,,144,84,0,,,,, +390,20,3,13147,566,1821.473,37,32.0,D5,p,11,144,74,11,,,,, +390,20,3,13147,566,1821.628,,,,,,144,74,0,,,,, +390,21,3,13148,603,1821.628,37,32.0,G#2,p+,12,144,44,12,,,,, +390,21,3,13148,603,1821.783,,,,,,144,44,0,,,,, +390,22,3,13149,640,1821.783,36,32.0,D5,p+,12,144,74,12,,,,, +390,22,3,13149,640,1821.934,,,,,,144,74,0,,,,, +390,23,0,13150,676,1821.934,,,,,,176,64,0,,,,,^ +390,24,3,13151,676,1821.934,55,32.0,C6,p+,12,144,84,12,,,,, +390,25,0,13152,676,1821.934,,,,,,,,,,6050,,, +390,24,3,13151,676,1822.164,,,,,,144,84,0,,,,, +390,26,3,13153,731,1822.164,37,32.0,D5,p+,12,144,74,12,,,,, +390,26,3,13153,731,1822.319,,,,,,144,74,0,,,,, +390,28,1,13154,768,1822.319,85,8.0,A2,p+,12,144,45,12,,,,, +390,29,1,13155,768,1822.319,128,8.0,B6,p+,12,144,95,12,,,,, +390,30,3,13156,768,1822.319,,,,,,176,102,0,,,,, +390,27,0,13157,768,1822.319,,,,,,176,64,127,,,,,V +390,28,1,13154,768,1822.674,,,,,,144,45,0,,,,, +390,31,1,13158,853,1822.674,21,32.0,C#5,p+,12,144,73,12,,,,, +390,31,1,13158,853,1822.762,,,,,,144,73,0,,,,, +390,32,1,13159,874,1822.762,22,32.0,F#2,p+,12,144,42,12,,,,, +390,29,1,13155,768,1822.854,,,,,,144,95,0,,,,, +390,32,1,13159,874,1822.854,,,,,,144,42,0,,,,, +390,33,1,13160,896,1822.854,32,32.0,F3,p+,12,144,53,12,,,,, +390,33,1,13160,896,1822.988,,,,,,144,53,0,,,,, +390,34,1,13161,928,1822.988,32,32.0,C#4,p+,12,144,61,12,,,,, +390,34,1,13161,928,1823.122,,,,,,144,61,0,,,,, +390,35,1,13162,960,1823.122,64,16.0,F#2,p+,12,144,42,12,,,,, +390,35,1,13162,960,1823.39,,,,,,144,42,0,,,,, +390,36,1,13163,1024,1823.39,128,8.0,F4,mp,14,144,65,14,,,,, +390,37,3,13164,1024,1823.39,256,4.0,C2,mp,14,144,36,14,,,,, +390,36,1,13163,1024,1823.926,,,,,,144,65,0,,,,, +390,38,1,13165,1152,1823.926,51,16.0,G#4,mp,14,144,68,14,,,,, +390,38,1,13165,1152,1824.139,,,,,,144,68,0,,,,, +390,39,1,13166,1203,1824.139,77,16.0,A#3,mp,14,144,58,14,,,,, +390,40,0,13167,1279,1824.309,,,,,,176,64,0,,,,,^ +390,39,1,13166,1203,1824.461,,,,,,144,58,0,,,,, +391,0,0,13168,0,1824.461,,,,,,,,,391,,,, +391,2,1,13169,0,1824.461,128,8.0,E4,pp,8,144,64,8,,,,, +391,3,2,13170,0,1824.461,51,16.0,A#3,mp,14,144,58,14,,,,, +391,4,2,13171,0,1824.461,64,16.0,F4,mp,14,144,65,14,,,,, +391,5,2,13172,0,1824.461,64,16.0,G#4,mp,14,144,68,14,,,,, +391,6,3,13173,0,1824.461,,,,,,176,102,0,,,,, +390,37,3,13164,1024,1824.461,,,,,,144,36,0,,,,, +391,1,0,13174,0,1824.609,,,,,,176,64,127,,,,,V +391,3,2,13170,0,1824.675,,,,,,144,58,0,,,,, +391,7,2,13175,51,1824.675,77,16.0,E6,mp,14,144,88,14,,,,, +391,4,2,13171,0,1824.729,,,,,,144,65,0,,,,, +391,5,2,13172,0,1824.729,,,,,,144,68,0,,,,, +391,2,1,13169,0,1824.997,,,,,,144,64,0,,,,, +391,7,2,13175,51,1824.997,,,,,,144,88,0,,,,, +391,8,1,13176,128,1824.997,85,8.0,D5,pp,8,144,74,8,,,,, +391,9,2,13177,128,1824.997,,,,,,176,102,0,,,,, +391,10,3,13178,170,1825.173,29,32.0,F#3,p,11,144,54,11,,,,, +391,10,3,13178,170,1825.294,,,,,,144,54,0,,,,, +391,11,3,13179,199,1825.294,28,32.0,D4,mp-,13,144,62,13,,,,, +391,8,1,13176,128,1825.353,,,,,,144,74,0,,,,, +391,12,1,13180,213,1825.353,85,8.0,E4,pp,8,144,64,8,,,,, +391,11,3,13179,199,1825.412,,,,,,144,62,0,,,,, +391,13,3,13181,227,1825.412,29,32.0,F#3,mp+,15,144,54,15,,,,, +391,13,3,13181,227,1825.533,,,,,,144,54,0,,,,, +391,18,0,13182,256,1825.533,,,,,,176,64,0,,,,,^ +391,14,3,13183,256,1825.533,42,16.0,G#1,mf,17,144,32,17,,,,, +391,15,3,13184,256,1825.533,64,16.0,D#2,mf,17,144,39,17,,,,, +391,16,3,13185,256,1825.533,64,16.0,F#3,mf,17,144,54,17,,,,, +391,17,3,13186,256,1825.533,64,16.0,D4,mf,17,144,62,17,,,,, +391,19,2,13187,256,1825.533,,,,,,176,102,0,,,,, +391,12,1,13180,213,1825.709,,,,,,144,64,0,,,,, +391,14,3,13183,256,1825.709,,,,,,144,32,0,,,,, +391,15,3,13184,256,1825.709,,,,,,144,39,0,,,,, +391,17,3,13186,256,1825.709,,,,,,144,62,0,,,,, +391,20,3,13188,298,1825.709,43,16.0,G#1,mf,17,144,32,17,,,,, +391,21,3,13189,298,1825.709,64,16.0,D#2,mf,17,144,39,17,,,,, +391,22,1,13190,298,1825.709,86,8.0,D5,pp,8,144,74,8,,,,, +391,23,2,13191,298,1825.709,43,16.0,D4,mf,17,144,62,17,,,,, +391,24,2,13192,298,1825.709,64,16.0,A#4,mf,17,144,70,17,,,,, +391,16,3,13185,256,1825.801,,,,,,144,54,0,,,,, +391,20,3,13188,298,1825.889,,,,,,144,32,0,,,,, +391,23,2,13191,298,1825.889,,,,,,144,62,0,,,,, +391,25,3,13193,341,1825.889,,,,,,176,102,0,,,,, +391,26,2,13194,341,1825.889,,,,,,176,102,0,,,,, +391,21,3,13189,298,1825.977,,,,,,144,39,0,,,,, +391,24,2,13192,298,1825.977,,,,,,144,70,0,,,,, +391,22,1,13190,298,1826.069,,,,,,144,74,0,,,,, +391,27,3,13195,384,1826.069,128,8.0,C1,pp,8,144,24,8,,,,, +391,29,1,13196,384,1826.069,,,,,,176,102,0,,,,, +391,28,0,13197,384,1826.069,,,,,,176,64,127,,,,,V +391,30,2,13198,426,1826.244,,,,,,176,102,0,,,,, +391,27,3,13195,384,1826.604,,,,,,144,24,0,,,,, +391,31,1,13199,512,1826.604,128,8.0,D5,pp,8,144,74,8,,,,, +391,32,2,13200,512,1826.604,,,,,,176,102,0,,,,, +391,33,3,13201,512,1826.604,512,2.0,G1,ppp,5,144,31,5,,,,, +391,31,1,13199,512,1827.14,,,,,,144,74,0,,,,, +391,34,1,13202,640,1827.14,128,8.0,G#3,pp,8,144,56,8,,,,, +391,34,1,13202,640,1827.676,,,,,,144,56,0,,,,, +391,35,1,13203,768,1827.676,256,4.0,A7,pp,8,144,105,8,,,,, +391,36,2,13204,768,1827.676,,,,,,176,102,0,,,,, +391,37,0,13205,1024,1828.731,,,,,,176,64,0,,,,,^ +391,33,3,13201,512,1828.747,,,,,,144,31,0,,,,, +391,35,1,13203,768,1828.747,,,,,,144,105,0,,,,, +391,38,1,13206,1024,1828.747,256,4.0,D5,mf,17,144,74,17,,,,, +391,39,2,13207,1024,1828.747,64,16.0,A#4,ppp,5,144,70,5,,,,, +391,40,3,13208,1024,1828.747,64,16.0,F#2,ppp,5,144,42,5,,,,, +391,41,3,13209,1024,1828.747,64,16.0,C3,ppp,5,144,48,5,,,,, +391,42,3,13210,1024,1828.747,64,16.0,G3,ppp,5,144,55,5,,,,, +391,39,2,13207,1024,1829.015,,,,,,144,70,0,,,,, +391,40,3,13208,1024,1829.015,,,,,,144,42,0,,,,, +391,41,3,13209,1024,1829.015,,,,,,144,48,0,,,,, +391,42,3,13210,1024,1829.015,,,,,,144,55,0,,,,, +391,44,2,13211,1088,1829.015,64,16.0,B5,ppp,5,144,83,5,,,,, +391,45,3,13212,1088,1829.015,64,16.0,D#2,ppp,5,144,39,5,,,,, +391,43,0,13213,1088,1829.031,,,,,,176,64,127,,,,,V +391,44,2,13211,1088,1829.283,,,,,,144,83,0,,,,, +391,45,3,13212,1088,1829.283,,,,,,144,39,0,,,,, +391,46,2,13214,1152,1829.283,64,16.0,B4,ppp,5,144,71,5,,,,, +391,47,3,13215,1152,1829.283,64,16.0,G3,ppp,5,144,55,5,,,,, +391,48,2,13216,1216,1829.551,,,,,,176,102,0,,,,, +391,49,3,13217,1216,1829.551,32,32.0,C#4,ppp,5,144,61,5,,,,, +391,49,3,13217,1216,1829.685,,,,,,144,61,0,,,,, +391,50,3,13218,1248,1829.685,32,32.0,G#2,ppp,5,144,44,5,,,,, +391,46,2,13214,1152,1829.701,,,,,,144,71,0,,,,, +391,47,3,13215,1152,1829.701,,,,,,144,55,0,,,,, +391,50,3,13218,1248,1829.819,,,,,,144,44,0,,,,, +392,0,0,13219,0,1829.819,,,,,,,,,392,,,, +392,1,1,13220,0,1829.819,64,16.0,C#4,ppp,5,144,61,5,,,,, +392,2,3,13221,0,1829.819,32,32.0,G#2,ppp,5,144,44,5,,,,, +392,2,3,13221,0,1829.953,,,,,,144,44,0,,,,, +392,3,3,13222,32,1829.953,32,32.0,D#2,ppp,5,144,39,5,,,,, +391,38,1,13206,1024,1829.969,,,,,,144,74,0,,,,, +392,1,1,13220,0,1830.086,,,,,,144,61,0,,,,, +392,3,3,13222,32,1830.086,,,,,,144,39,0,,,,, +392,4,1,13223,64,1830.086,32,32.0,B4,ppp,5,144,71,5,,,,, +392,5,3,13224,64,1830.086,64,16.0,D#2,ppp,5,144,39,5,,,,, +392,4,1,13223,64,1830.22,,,,,,144,71,0,,,,, +392,6,1,13225,96,1830.22,32,32.0,G3,ppp,5,144,55,5,,,,, +392,5,3,13224,64,1830.354,,,,,,144,39,0,,,,, +392,6,1,13225,96,1830.354,,,,,,144,55,0,,,,, +392,7,1,13226,128,1830.354,,,,,,176,102,0,,,,, +392,8,3,13227,128,1830.354,,,,,,176,102,0,,,,, +392,9,1,13228,160,1830.488,21,32.0,C#4,ppp,5,144,61,5,,,,, +392,10,3,13229,160,1830.488,42,16.0,D#2,ppp,5,144,39,5,,,,, +392,11,3,13230,160,1830.488,64,16.0,G#2,ppp,5,144,44,5,,,,, +392,12,1,13231,181,1830.576,21,32.0,B4,ppp,5,144,71,5,,,,, +392,9,1,13228,160,1830.664,,,,,,144,61,0,,,,, +392,10,3,13229,160,1830.664,,,,,,144,39,0,,,,, +392,11,3,13230,160,1830.664,,,,,,144,44,0,,,,, +392,12,1,13231,181,1830.664,,,,,,144,71,0,,,,, +392,13,1,13232,202,1830.664,22,32.0,G3,ppp,5,144,55,5,,,,, +392,14,1,13233,202,1830.664,32,32.0,C#4,ppp,5,144,61,5,,,,, +392,15,3,13234,202,1830.664,22,32.0,D#2,ppp,5,144,39,5,,,,, +392,16,3,13235,202,1830.664,32,32.0,G#2,ppp,5,144,44,5,,,,, +392,17,0,13236,224,1830.673,,,,,,176,64,0,,,,,^ +392,18,1,13237,224,1830.756,,,,,,176,102,0,,,,, +392,19,3,13238,224,1830.756,,,,,,176,102,0,,,,, +392,20,0,13239,224,1830.756,,,,,,,,,,6051,,, +392,22,1,13240,256,1830.89,42,16.0,C#7,fff,24,144,97,23,,,,, +392,23,3,13241,256,1830.89,,,,,,176,102,0,,,,, +392,21,0,13242,256,1830.973,,,,,,176,64,127,,,,,V +392,13,1,13232,202,1831.056,,,,,,144,55,0,,,,, +392,15,3,13234,202,1831.056,,,,,,144,39,0,,,,, +392,22,1,13240,256,1831.066,,,,,,144,97,0,,,,, +392,24,1,13243,298,1831.066,43,16.0,C#7,fff,24,144,97,23,,,,, +392,25,3,13244,298,1831.066,43,16.0,D3,fff,24,144,50,23,,,,, +392,14,1,13233,202,1831.098,,,,,,144,61,0,,,,, +392,25,3,13244,298,1831.246,,,,,,144,50,0,,,,, +392,26,1,13245,341,1831.246,171,4.0,C#7,,,,,,,,,, +392,27,3,13246,341,1831.246,171,4.0,G#1,fff,24,144,32,23,,,,, +392,28,3,13247,341,1831.246,256,4.0,D2,fff,24,144,38,23,,,,, +392,16,3,13235,202,1831.281,,,,,,144,44,0,,,,, +392,27,3,13246,341,1831.961,,,,,,144,32,0,,,,, +392,29,1,13248,512,1831.961,,,,,,176,102,0,,,,, +392,30,3,13249,512,1831.961,,,,,,176,102,0,,,,, +392,24,1,13243,298,1831.961,,,,,,144,97,0,,,,, +392,28,3,13247,341,1832.317,,,,,,144,38,0,,,,, +392,31,1,13250,768,1833.033,102,8.0,A#4,fff,24,144,70,23,,,,, +392,32,3,13251,768,1833.033,102,8.0,F#2,fff,24,144,42,23,,,,, +392,33,3,13252,768,1833.033,128,8.0,C3,fff,24,144,48,23,,,,, +392,34,3,13253,768,1833.033,128,8.0,G3,fff,24,144,55,23,,,,, +392,32,3,13251,768,1833.46,,,,,,144,42,0,,,,, +392,33,3,13252,768,1833.46,,,,,,144,48,0,,,,, +392,34,3,13253,768,1833.46,,,,,,144,55,0,,,,, +392,35,1,13254,870,1833.46,154,8.0,D6,fff,24,144,86,23,,,,, +392,36,3,13255,870,1833.46,154,8.0,F#2,fff,24,144,42,23,,,,, +392,37,3,13256,870,1833.46,128,8.0,C3,fff,24,144,48,23,,,,, +392,38,3,13257,870,1833.46,128,8.0,G3,fff,24,144,55,23,,,,, +392,31,1,13250,768,1833.685,,,,,,144,70,0,,,,, +392,39,0,13258,929,1833.707,,,,,,176,64,0,,,,,^ +392,37,3,13256,870,1833.996,,,,,,144,48,0,,,,, +392,38,3,13257,870,1833.996,,,,,,144,55,0,,,,, +392,41,1,13259,,1834.029,,8.0,D4,p,11,144,62,11,,,,g, +392,41,1,13259,,1834.079,,,,,,144,62,0,,,,, +392,35,1,13254,870,1834.104,,,,,,144,86,0,,,,, +392,36,3,13255,870,1834.104,,,,,,144,42,0,,,,, +392,42,1,13260,1024,1834.104,85,8.0,E3,p,11,144,52,11,,,,, +392,43,3,13261,1024,1834.104,,,,,,176,102,0,,,,, +392,40,0,13262,1024,1834.104,,,,,,176,64,127,,,,,V +392,44,3,13263,1066,1834.28,171,4.0,C1,p,11,144,24,11,,,,, +392,42,1,13260,1024,1834.46,,,,,,144,52,0,,,,, +392,45,1,13264,1109,1834.46,128,8.0,D4,p,11,144,62,11,,,,, +392,44,3,13263,1066,1834.996,,,,,,144,24,0,,,,, +392,45,1,13264,1109,1834.996,,,,,,144,62,0,,,,, +392,46,1,13265,1237,1834.996,43,16.0,E3,p,11,144,52,11,,,,, +392,47,1,13266,1237,1834.996,64,16.0,D4,p,11,144,62,11,,,,, +392,48,3,13267,1237,1834.996,43,16.0,C1,p,11,144,24,11,,,,, +392,46,1,13265,1237,1835.176,,,,,,144,52,0,,,,, +392,48,3,13267,1237,1835.176,,,,,,144,24,0,,,,, +393,0,0,13268,0,1835.176,,,,,,,,,393,,,, +393,1,1,13269,0,1835.176,,,,,,176,102,0,,,,, +393,2,3,13270,0,1835.176,,,,,,176,102,0,,,,, +392,47,1,13266,1237,1835.264,,,,,,144,62,0,,,,, +393,3,1,13271,28,1835.293,28,32.0,A4,p,11,144,69,11,,,,, +393,3,1,13271,28,1835.41,,,,,,144,69,0,,,,, +393,4,1,13272,56,1835.41,29,32.0,G#2,p+,12,144,44,12,,,,, +393,4,1,13272,56,1835.531,,,,,,144,44,0,,,,, +393,5,1,13273,85,1835.531,28,32.0,A5,p+,12,144,81,12,,,,, +393,5,1,13273,85,1835.649,,,,,,144,81,0,,,,, +393,6,1,13274,113,1835.649,29,32.0,G#2,mp-,13,144,44,13,,,,, +393,6,1,13274,113,1835.77,,,,,,144,44,0,,,,, +393,7,1,13275,142,1835.77,28,32.0,A4,mp-,13,144,69,13,,,,, +393,7,1,13275,142,1835.887,,,,,,144,69,0,,,,, +393,8,1,13276,170,1835.887,43,32.0,E3,mp,14,144,52,14,,,,, +393,8,1,13276,170,1836.067,,,,,,144,52,0,,,,, +393,9,1,13277,213,1836.067,43,32.0,C2,mp+,15,144,36,15,,,,, +393,9,1,13277,213,1836.247,,,,,,144,36,0,,,,, +393,10,1,13278,256,1836.247,42,16.0,D5,mp+,15,144,74,15,,,,, +393,11,3,13279,256,1836.247,,,,,,176,102,0,,,,, +393,10,1,13278,256,1836.423,,,,,,144,74,0,,,,, +393,12,1,13280,298,1836.423,43,16.0,G#2,mf-,16,144,44,16,,,,, +393,12,1,13280,298,1836.603,,,,,,144,44,0,,,,, +393,13,1,13281,341,1836.603,43,16.0,A6,mf,17,144,93,17,,,,, +393,14,3,13282,341,1836.603,43,16.0,C2,mf,17,144,36,17,,,,, +393,15,3,13283,341,1836.603,64,16.0,G#2,mf,17,144,44,17,,,,, +393,16,3,13284,341,1836.603,64,16.0,E3,mf,17,144,52,17,,,,, +393,13,1,13281,341,1836.783,,,,,,144,93,0,,,,, +393,14,3,13282,341,1836.783,,,,,,144,36,0,,,,, +393,17,1,13285,384,1836.783,,,,,,176,102,0,,,,, +393,18,3,13286,384,1836.783,,,,,,176,102,0,,,,, +393,15,3,13283,341,1836.871,,,,,,144,44,0,,,,, +393,16,3,13284,341,1836.871,,,,,,144,52,0,,,,, +393,19,1,13287,426,1836.959,22,32.0,E5,pp,8,144,76,8,,,,, +393,19,1,13287,426,1837.051,,,,,,144,76,0,,,,, +393,20,1,13288,448,1837.051,21,32.0,D6,pp+,9,144,86,9,,,,, +393,20,1,13288,448,1837.139,,,,,,144,86,0,,,,, +393,21,1,13289,469,1837.139,21,32.0,A6,p-,10,144,93,10,,,,, +393,21,1,13289,469,1837.227,,,,,,144,93,0,,,,, +393,22,1,13290,490,1837.227,22,32.0,C3,p,11,144,48,11,,,,, +393,22,1,13290,490,1837.319,,,,,,144,48,0,,,,, +393,23,1,13291,512,1837.319,42,16.0,E4,p+,12,144,64,12,,,,, +393,24,3,13292,512,1837.319,,,,,,176,102,0,,,,, +393,23,1,13291,512,1837.494,,,,,,144,64,0,,,,, +393,25,1,13293,554,1837.494,22,32.0,C2,mp,14,144,36,14,,,,, +393,25,1,13293,554,1837.586,,,,,,144,36,0,,,,, +393,26,1,13294,576,1837.586,21,32.0,E4,mp+,15,144,64,15,,,,, +393,26,1,13294,576,1837.674,,,,,,144,64,0,,,,, +393,27,1,13295,597,1837.674,21,32.0,D5,mf-,16,144,74,16,,,,, +393,27,1,13295,597,1837.762,,,,,,144,74,0,,,,, +393,28,1,13296,618,1837.762,22,32.0,A5,mf,17,144,81,17,,,,, +393,28,1,13296,618,1837.854,,,,,,144,81,0,,,,, +393,29,1,13297,640,1837.854,21,32.0,C3,f-,19,144,48,19,,,,, +393,29,1,13297,640,1837.942,,,,,,144,48,0,,,,, +393,30,1,13298,661,1837.942,21,32.0,G#3,f,20,144,56,20,,,,, +393,30,1,13298,661,1838.03,,,,,,144,56,0,,,,, +393,31,1,13299,682,1838.03,,,,,,176,102,0,,,,, +393,32,3,13300,682,1838.03,29,32.0,D5,f+,21,144,74,21,,,,, +393,33,1,13301,710,1838.147,,,,,,176,102,0,,,,, +393,32,3,13300,682,1838.151,,,,,,144,74,0,,,,, +393,34,3,13302,711,1838.151,28,32.0,G#1,ff,22,144,32,22,,,,, +393,35,1,13303,738,1838.264,30,16.0,A7,ff,22,144,105,22,,,,, +393,34,3,13302,711,1838.269,,,,,,144,32,0,,,,, +393,36,0,13304,739,1838.269,,,,,,176,64,0,,,,,^ +393,37,3,13305,739,1838.269,29,32.0,C1,ff,22,144,24,22,,,,, +393,35,1,13303,738,1838.39,,,,,,144,105,0,,,,, +393,37,3,13305,739,1838.39,,,,,,144,24,0,,,,, +393,38,1,13306,768,1838.39,,,,,,176,102,0,,,,, +393,39,0,13307,768,1838.39,,,,,,,,,,6052,,, +393,40,3,13308,768,1838.39,256,4.0,E4,ff,22,144,64,22,,,,, +393,41,1,13309,853,1838.746,85,8.0,F#4,mp,14,144,66,14,,,,, +393,42,1,13310,853,1838.746,128,8.0,D5,mp,14,144,74,14,,,,, +393,41,1,13309,853,1839.102,,,,,,144,66,0,,,,, +393,43,1,13311,938,1839.102,86,8.0,D#4,mp,14,144,63,14,,,,, +393,42,1,13310,853,1839.281,,,,,,144,74,0,,,,, +393,43,1,13311,938,1839.461,,,,,,144,63,0,,,,, +393,44,1,13312,1024,1839.461,85,8.0,F#4,mp,14,144,66,14,,,,, +393,45,1,13313,1024,1839.461,128,8.0,D5,mp,14,144,74,14,,,,, +393,47,3,13314,1024,1839.461,,,,,,176,102,0,,,,, +393,46,0,13315,1024,1839.461,,,,,,176,64,127,,,,,V +393,40,3,13308,768,1839.461,,,,,,144,64,0,,,,, +393,44,1,13312,1024,1839.817,,,,,,144,66,0,,,,, +393,48,1,13316,1109,1839.817,64,16.0,D#3,mp,14,144,51,14,,,,, +393,45,1,13313,1024,1839.997,,,,,,144,74,0,,,,, +393,48,1,13316,1109,1840.085,,,,,,144,51,0,,,,, +393,49,1,13317,1173,1840.085,21,32.0,A#5,p,11,144,82,11,,,,, +393,49,1,13317,1173,1840.173,,,,,,144,82,0,,,,, +393,50,1,13318,1194,1840.173,22,32.0,G#2,p,11,144,44,11,,,,, +393,50,1,13318,1194,1840.265,,,,,,144,44,0,,,,, +393,51,1,13319,1216,1840.265,21,32.0,A#5,p-,10,144,82,10,,,,, +393,51,1,13319,1216,1840.353,,,,,,144,82,0,,,,, +393,52,1,13320,1237,1840.353,21,32.0,G#1,pp+,9,144,32,9,,,,, +393,52,1,13320,1237,1840.441,,,,,,144,32,0,,,,, +393,53,1,13321,1258,1840.441,22,32.0,A#6,pp,8,144,94,8,,,,, +393,53,1,13321,1258,1840.533,,,,,,144,94,0,,,,, +394,0,0,13322,0,1840.533,,,,,,,,,394,,,, +394,1,1,13323,0,1840.533,76,16.0,C#7,fff,24,144,97,23,,,,, +394,2,3,13324,0,1840.533,,,,,,176,102,0,,,,, +394,1,1,13323,0,1840.851,,,,,,144,97,0,,,,, +394,3,1,13325,76,1840.851,,,,,,176,102,0,,,,, +394,4,3,13326,85,1840.889,171,4.0,G#1,fff,24,144,32,23,,,,, +394,5,3,13327,85,1840.889,256,4.0,D3,fff,24,144,50,23,,,,, +394,6,1,13328,115,1841.014,25,32.0,D7,p,11,144,98,11,,,,, +394,6,1,13328,115,1841.119,,,,,,144,98,0,,,,, +394,7,1,13329,140,1841.119,26,32.0,D#6,p,11,144,87,11,,,,, +394,7,1,13329,140,1841.228,,,,,,144,87,0,,,,, +394,8,1,13330,166,1841.228,26,32.0,F#6,p,11,144,90,11,,,,, +394,8,1,13330,166,1841.336,,,,,,144,90,0,,,,, +394,9,1,13331,192,1841.336,25,32.0,D#5,p,11,144,75,11,,,,, +394,9,1,13331,192,1841.441,,,,,,144,75,0,,,,, +394,10,1,13332,217,1841.441,39,32.0,F#6,p,11,144,90,11,,,,, +394,10,1,13332,217,1841.604,,,,,,144,90,0,,,,, +394,11,1,13333,256,1841.604,25,32.0,D#4,p,11,144,63,11,,,,, +394,12,3,13334,256,1841.604,512,2.0,G#1,,,,,,,,,, +394,13,3,13335,256,1841.604,512,2.0,D3,,,,,,,,,, +394,11,1,13333,256,1841.709,,,,,,144,63,0,,,,, +394,14,1,13336,281,1841.709,39,32.0,D7,p,11,144,98,11,,,,, +394,14,1,13336,281,1841.872,,,,,,144,98,0,,,,, +394,15,1,13337,320,1841.872,38,32.0,F#5,p,11,144,78,11,,,,, +394,15,1,13337,320,1842.031,,,,,,144,78,0,,,,, +394,16,1,13338,358,1842.031,26,32.0,D#5,p,11,144,75,11,,,,, +394,16,1,13338,358,1842.14,,,,,,144,75,0,,,,, +394,17,1,13339,384,1842.14,25,32.0,F#5,p,11,144,78,11,,,,, +394,17,1,13339,384,1842.245,,,,,,144,78,0,,,,, +394,18,1,13340,409,1842.245,39,32.0,D#4,p,11,144,63,11,,,,, +394,18,1,13340,409,1842.408,,,,,,144,63,0,,,,, +394,19,1,13341,448,1842.408,38,32.0,G#3,p,11,144,56,11,,,,, +394,19,1,13341,448,1842.567,,,,,,144,56,0,,,,, +394,20,1,13342,486,1842.567,26,32.0,A#7,p,11,144,106,11,,,,, +394,20,1,13342,486,1842.676,,,,,,144,106,0,,,,, +394,21,1,13343,512,1842.676,54,32.0,D7,p,11,144,98,11,,,,, +394,21,1,13343,512,1842.902,,,,,,144,98,0,,,,, +394,22,1,13344,566,1842.902,55,32.0,F#5,p,11,144,78,11,,,,, +394,22,1,13344,566,1843.132,,,,,,144,78,0,,,,, +394,23,1,13345,621,1843.132,55,32.0,D#5,p,11,144,75,11,,,,, +394,23,1,13345,621,1843.362,,,,,,144,75,0,,,,, +394,24,1,13346,676,1843.362,55,32.0,G#3,p,11,144,56,11,,,,, +394,24,1,13346,676,1843.592,,,,,,144,56,0,,,,, +394,25,0,13347,731,1843.592,,,,,,176,64,0,,,,,^ +394,26,1,13348,731,1843.592,37,32.0,A#7,p,11,144,106,11,,,,, +394,4,3,13326,85,1843.747,,,,,,144,32,0,,,,, +394,26,1,13348,731,1843.747,,,,,,144,106,0,,,,, +394,27,3,13349,768,1843.747,,,,,,176,102,0,,,,, +394,28,1,13350,768,1843.747,,,,,,176,102,0,,,,, +394,5,3,13327,85,1844.103,,,,,,144,50,0,,,,, +394,30,3,13351,853,1844.103,,,,,,176,102,0,,,,, +394,31,0,13352,853,1844.103,,,,,,,,,,6053,,, +394,29,0,13353,853,1844.103,,,,,,176,64,127,,,,,V +394,32,3,13354,874,1844.191,22,32.0,F#2,p,11,144,42,11,,,,, +394,32,3,13354,874,1844.283,,,,,,144,42,0,,,,, +394,33,3,13355,896,1844.283,21,32.0,D3,mp-,13,144,50,13,,,,, +394,33,3,13355,896,1844.371,,,,,,144,50,0,,,,, +394,34,3,13356,917,1844.371,21,32.0,F#2,mp+,15,144,42,15,,,,, +394,34,3,13356,917,1844.459,,,,,,144,42,0,,,,, +394,35,3,13357,938,1844.459,22,32.0,D#2,mf-,16,144,39,16,,,,, +394,36,1,13358,938,1844.459,,,,,,176,102,0,,,,, +394,35,3,13357,938,1844.551,,,,,,144,39,0,,,,, +394,37,3,13359,960,1844.551,21,32.0,F#2,mf+,18,144,42,18,,,,, +394,38,3,13360,960,1844.551,32,32.0,D3,mf+,18,144,50,18,,,,, +394,39,3,13361,960,1844.551,32,32.0,A#3,mf+,18,144,58,18,,,,, +394,37,3,13359,960,1844.639,,,,,,144,42,0,,,,, +394,40,3,13362,981,1844.639,21,32.0,G#1,f,20,144,32,20,,,,, +394,41,1,13363,981,1844.639,43,16.0,B1,f,20,144,35,20,,,,, +394,42,1,13364,981,1844.639,64,16.0,E4,f,20,144,64,20,,,,, +394,38,3,13360,960,1844.685,,,,,,144,50,0,,,,, +394,39,3,13361,960,1844.685,,,,,,144,58,0,,,,, +394,40,3,13362,981,1844.727,,,,,,144,32,0,,,,, +394,43,0,13365,1002,1844.727,,,,,,176,64,0,,,,,^ +394,44,3,13366,1002,1844.727,22,32.0,G#1,ff,22,144,32,22,,,,, +394,45,3,13367,1002,1844.727,32,32.0,D#2,ff,22,144,39,22,,,,, +394,46,3,13368,1002,1844.727,32,32.0,F#2,ff,22,144,42,22,,,,, +394,47,3,13369,1002,1844.727,32,32.0,A#4,ff,22,144,70,22,,,,, +394,41,1,13363,981,1844.819,,,,,,144,35,0,,,,, +394,44,3,13366,1002,1844.819,,,,,,144,32,0,,,,, +394,48,1,13370,1024,1844.819,256,4.0,D5,ff,22,144,74,22,,,,, +394,49,3,13371,1024,1844.819,42,16.0,B1,mp,14,144,35,14,,,,, +394,50,3,13372,1024,1844.819,64,16.0,D2,mp,14,144,38,14,,,,, +394,45,3,13367,1002,1844.86,,,,,,144,39,0,,,,, +394,46,3,13368,1002,1844.86,,,,,,144,42,0,,,,, +394,47,3,13369,1002,1844.86,,,,,,144,70,0,,,,, +394,42,1,13364,981,1844.906,,,,,,144,64,0,,,,, +394,49,3,13371,1024,1844.994,,,,,,144,35,0,,,,, +394,51,3,13373,1066,1844.994,43,16.0,F#1,mp,14,144,30,14,,,,, +394,50,3,13372,1024,1845.086,,,,,,144,38,0,,,,, +394,51,3,13373,1066,1845.174,,,,,,144,30,0,,,,, +394,52,3,13374,1109,1845.174,,,,,,176,102,0,,,,, +394,53,3,13375,1194,1845.53,,,,,,176,102,0,,,,, +395,0,0,13376,0,1845.89,,,,,,,,,395,,,, +395,1,1,13377,0,1845.89,128,8.0,D5,,,,,,,,,, +395,2,3,13378,0,1845.89,,,,,,176,102,0,,,,, +395,3,1,13379,128,1846.426,21,32.0,F#3,pp,8,144,54,8,,,,, +394,48,1,13370,1024,1846.426,,,,,,144,74,0,,,,, +395,3,1,13379,128,1846.514,,,,,,144,54,0,,,,, +395,5,1,13380,149,1846.514,21,32.0,G4,pp,8,144,67,8,,,,, +395,4,0,13381,149,1846.514,,,,,,176,64,127,,,,,V +395,5,1,13380,149,1846.602,,,,,,144,67,0,,,,, +395,6,1,13382,170,1846.602,22,32.0,F#3,pp,8,144,54,8,,,,, +395,6,1,13382,170,1846.694,,,,,,144,54,0,,,,, +395,7,1,13383,192,1846.694,21,32.0,G4,pp,8,144,67,8,,,,, +395,7,1,13383,192,1846.781,,,,,,144,67,0,,,,, +395,8,1,13384,213,1846.781,21,32.0,F#3,pp,8,144,54,8,,,,, +395,8,1,13384,213,1846.869,,,,,,144,54,0,,,,, +395,9,0,13385,234,1846.869,,,,,,176,64,0,,,,,^ +395,10,1,13386,234,1846.869,22,32.0,G4,pp,8,144,67,8,,,,, +395,11,1,13387,256,1846.961,32,32.0,G4,,,,,,,,,, +395,12,3,13388,256,1846.961,64,16.0,C1,ff,22,144,24,22,,,,, +395,13,3,13389,256,1846.961,64,16.0,E4,ff,22,144,64,22,,,,, +395,14,3,13390,256,1846.961,64,16.0,C5,f,20,144,72,20,,,,, +395,10,1,13386,234,1847.095,,,,,,144,67,0,,,,, +395,15,1,13391,288,1847.095,32,32.0,F#3,pp,8,144,54,8,,,,, +395,12,3,13388,256,1847.229,,,,,,144,24,0,,,,, +395,13,3,13389,256,1847.229,,,,,,144,64,0,,,,, +395,14,3,13390,256,1847.229,,,,,,144,72,0,,,,, +395,15,1,13391,288,1847.229,,,,,,144,54,0,,,,, +395,17,1,13392,320,1847.229,32,32.0,G4,pp,8,144,67,8,,,,, +395,18,3,13393,320,1847.229,,,,,,176,102,0,,,,, +395,16,0,13394,320,1847.229,,,,,,176,64,127,,,,,V +395,17,1,13392,320,1847.363,,,,,,144,67,0,,,,, +395,19,1,13395,352,1847.363,32,32.0,F#3,pp,8,144,54,8,,,,, +395,19,1,13395,352,1847.497,,,,,,144,54,0,,,,, +395,20,1,13396,384,1847.497,21,32.0,A#4,pp,8,144,70,8,,,,, +395,20,1,13396,384,1847.585,,,,,,144,70,0,,,,, +395,21,1,13397,405,1847.585,21,32.0,C4,pp,8,144,60,8,,,,, +395,21,1,13397,405,1847.673,,,,,,144,60,0,,,,, +395,22,1,13398,426,1847.673,22,32.0,D5,pp,8,144,74,8,,,,, +395,23,1,13399,448,1847.765,32,32.0,D5,,,,,,,,,, +395,22,1,13398,426,1847.899,,,,,,144,74,0,,,,, +395,24,0,13400,480,1847.899,,,,,,176,64,0,,,,,^ +395,25,1,13401,480,1847.899,32,32.0,C4,pp,8,144,60,8,,,,, +395,25,1,13401,480,1848.033,,,,,,144,60,0,,,,, +395,26,1,13402,512,1848.033,,,,,,176,102,0,,,,, +395,27,3,13403,512,1848.033,64,16.0,C1,ff,22,144,24,22,,,,, +395,28,3,13404,512,1848.033,64,16.0,E4,ff,22,144,64,22,,,,, +395,29,3,13405,512,1848.033,64,16.0,D5,ff,22,144,74,22,,,,, +395,30,1,13406,544,1848.167,32,32.0,G4,pp,8,144,67,8,,,,, +395,27,3,13403,512,1848.301,,,,,,144,24,0,,,,, +395,28,3,13404,512,1848.301,,,,,,144,64,0,,,,, +395,29,3,13405,512,1848.301,,,,,,144,74,0,,,,, +395,30,1,13406,544,1848.301,,,,,,144,67,0,,,,, +395,32,1,13407,576,1848.301,32,32.0,F#3,pp,8,144,54,8,,,,, +395,33,3,13408,576,1848.301,,,,,,176,102,0,,,,, +395,31,0,13409,576,1848.301,,,,,,176,64,127,,,,,V +395,34,1,13410,608,1848.435,32,32.0,A#4,pp,8,144,70,8,,,,, +395,34,1,13410,608,1848.569,,,,,,144,70,0,,,,, +395,35,1,13411,640,1848.569,21,32.0,D6,pp,8,144,86,8,,,,, +395,35,1,13411,640,1848.656,,,,,,144,86,0,,,,, +395,36,1,13412,661,1848.656,21,32.0,C4,pp,8,144,60,8,,,,, +395,32,1,13407,576,1848.66,,,,,,144,54,0,,,,, +395,36,1,13412,661,1848.744,,,,,,144,60,0,,,,, +395,37,1,13413,682,1848.744,22,32.0,D6,pp,8,144,86,8,,,,, +395,37,1,13413,682,1848.836,,,,,,144,86,0,,,,, +395,38,1,13414,704,1848.836,21,32.0,C4,pp,8,144,60,8,,,,, +395,38,1,13414,704,1848.924,,,,,,144,60,0,,,,, +395,39,0,13415,725,1848.924,,,,,,176,64,0,,,,,^ +395,40,1,13416,725,1848.924,43,16.0,D6,pp,8,144,86,8,,,,, +395,40,1,13416,725,1849.104,,,,,,144,86,0,,,,, +395,41,1,13417,768,1849.104,32,32.0,F#4,ff,22,144,66,22,,,,, +395,42,1,13418,768,1849.104,32,32.0,D5,ff,22,144,74,22,,,,, +395,43,3,13419,,1849.104,,8.0,C3,p,11,144,48,11,,,,g, +395,43,3,13419,,1849.154,,,,,,144,48,0,,,,, +395,44,3,13420,768,1849.179,170,4.0,F4,p,11,144,65,11,,,,, +395,41,1,13417,768,1849.238,,,,,,144,66,0,,,,, +395,42,1,13418,768,1849.238,,,,,,144,74,0,,,,, +395,46,1,13421,800,1849.313,32,32.0,A#4,pp,8,144,70,8,,,,, +395,45,0,13422,800,1849.313,,,,,,176,64,127,,,,,V +395,48,0,13423,864,1849.431,,,,,,176,64,0,,,,,^ +395,46,1,13421,800,1849.447,,,,,,144,70,0,,,,, +395,47,1,13424,832,1849.447,32,32.0,D6,pp,8,144,86,8,,,,, +395,47,1,13424,832,1849.581,,,,,,144,86,0,,,,, +395,50,1,13425,864,1849.581,32,32.0,C4,pp,8,144,60,8,,,,, +395,50,1,13425,864,1849.715,,,,,,144,60,0,,,,, +395,51,1,13426,896,1849.715,,,,,,176,102,0,,,,, +395,49,0,13427,864,1849.731,,,,,,176,64,127,,,,,V +395,44,3,13420,768,1849.891,,,,,,144,65,0,,,,, +395,52,3,13428,938,1849.891,86,8.0,A#3,p,11,144,58,11,,,,, +395,53,1,13429,1024,1850.251,56,16.0,A#4,mp,14,144,70,14,,,,, +395,54,3,13430,1024,1850.251,85,8.0,A#3,,,,,,,,,, +395,53,1,13429,1024,1850.485,,,,,,144,70,0,,,,, +395,55,1,13431,1080,1850.485,57,16.0,B6,mp,14,144,95,14,,,,, +395,52,3,13428,938,1850.606,,,,,,144,58,0,,,,, +395,56,3,13432,1109,1850.606,43,16.0,C3,p,11,144,48,11,,,,, +395,55,1,13431,1080,1850.724,,,,,,144,95,0,,,,, +395,57,1,13433,1137,1850.724,86,16.0,E4,mp,14,144,64,14,,,,, +395,56,3,13432,1109,1850.786,,,,,,144,48,0,,,,, +395,58,3,13434,1152,1850.786,42,16.0,F4,p,11,144,65,11,,,,, +395,58,3,13434,1152,1850.962,,,,,,144,65,0,,,,, +395,59,3,13435,1194,1850.962,43,16.0,A#3,p,11,144,58,11,,,,, +395,57,1,13433,1137,1851.084,,,,,,144,64,0,,,,, +395,60,1,13436,1223,1851.084,57,16.0,B6,mp,14,144,95,14,,,,, +395,59,3,13435,1194,1851.142,,,,,,144,58,0,,,,, +395,61,3,13437,1237,1851.142,43,16.0,C3,p,11,144,48,11,,,,, +395,62,0,13438,1255,1851.218,,,,,,176,64,0,,,,,^ +395,60,1,13436,1223,1851.322,,,,,,144,95,0,,,,, +395,61,3,13437,1237,1851.322,,,,,,144,48,0,,,,, +396,0,0,13439,0,1851.322,,,,,,,,,396,,,, +396,1,0,13440,0,1851.322,,,,,,,,,,6054,,, +396,2,1,13441,0,1851.322,256,4.0,F#4,mp,14,144,66,14,,,,, +396,3,1,13442,0,1851.322,256,4.0,D5,mp,14,144,74,14,,,,, +396,4,3,13443,0,1851.322,256,4.0,D#3,ff,22,144,51,22,,,,, +396,5,0,13444,64,1851.59,,,,,,176,64,127,,,,,V +396,2,1,13441,0,1852.394,,,,,,144,66,0,,,,, +396,6,1,13445,256,1852.394,64,16.0,F#4,mp,14,144,66,14,,,,, +396,7,3,13446,256,1852.394,128,8.0,G#1,ff,22,144,32,22,,,,, +396,3,1,13442,0,1852.394,,,,,,144,74,0,,,,, +396,4,3,13443,0,1852.394,,,,,,144,51,0,,,,, +396,6,1,13445,256,1852.661,,,,,,144,66,0,,,,, +396,8,1,13447,320,1852.661,64,16.0,A#7,mp,14,144,106,14,,,,, +396,7,3,13446,256,1852.929,,,,,,144,32,0,,,,, +396,8,1,13447,320,1852.929,,,,,,144,106,0,,,,, +396,9,1,13448,384,1852.929,38,32.0,D#4,ppp,5,144,63,5,,,,, +396,10,3,13449,384,1852.929,,,,,,176,102,0,,,,, +396,11,1,13450,422,1853.088,26,32.0,G#3,ppp+,6,144,56,6,,,,, +396,9,1,13448,384,1853.163,,,,,,144,63,0,,,,, +396,11,1,13450,422,1853.197,,,,,,144,56,0,,,,, +396,12,1,13451,448,1853.197,38,32.0,D#4,ppp+,6,144,63,6,,,,, +396,12,1,13451,448,1853.356,,,,,,144,63,0,,,,, +396,13,1,13452,486,1853.356,26,32.0,G#3,pp-,7,144,56,7,,,,, +396,13,1,13452,486,1853.465,,,,,,144,56,0,,,,, +396,14,1,13453,512,1853.465,38,32.0,D#4,pp-,7,144,63,7,,,,, +396,15,3,13454,512,1853.465,,,,,,176,102,0,,,,, +396,14,1,13453,512,1853.624,,,,,,144,63,0,,,,, +396,16,1,13455,550,1853.624,38,32.0,G#3,pp,8,144,56,8,,,,, +396,16,1,13455,550,1853.783,,,,,,144,56,0,,,,, +396,17,1,13456,588,1853.783,39,32.0,C3,pp+,9,144,48,9,,,,, +396,17,1,13456,588,1853.946,,,,,,144,48,0,,,,, +396,18,1,13457,627,1853.946,13,64.0,D#4,p-,10,144,63,10,,,,, +396,20,0,13458,640,1854.001,,,,,,176,64,0,,,,,^ +396,19,1,13459,640,1854.001,25,32.0,D#4,,,,,,,,,, +396,18,1,13457,627,1854.105,,,,,,144,63,0,,,,, +396,21,1,13460,665,1854.105,39,32.0,G#3,p-,10,144,56,10,,,,, +396,21,1,13460,665,1854.269,,,,,,144,56,0,,,,, +396,22,1,13461,704,1854.269,25,32.0,A4,p,11,144,69,11,,,,, +396,23,3,13462,704,1854.269,21,32.0,F#3,ppp,5,144,54,5,,,,, +396,23,3,13462,704,1854.356,,,,,,144,54,0,,,,, +396,24,3,13463,725,1854.356,21,32.0,D4,ppp,5,144,62,5,,,,, +396,22,1,13461,704,1854.373,,,,,,144,69,0,,,,, +396,25,1,13464,729,1854.373,39,32.0,E6,p,11,144,88,11,,,,, +396,24,3,13463,725,1854.444,,,,,,144,62,0,,,,, +396,26,3,13465,746,1854.444,22,32.0,F#3,ppp,5,144,54,5,,,,, +396,26,3,13465,746,1854.536,,,,,,144,54,0,,,,, +396,27,1,13466,768,1854.536,28,32.0,A#4,p,11,144,70,11,,,,, +396,29,3,13467,768,1854.536,,,,,,176,102,0,,,,, +396,28,0,13468,768,1854.536,,,,,,176,64,127,,,,,V +396,25,1,13464,729,1854.536,,,,,,144,88,0,,,,, +396,27,1,13466,768,1854.654,,,,,,144,70,0,,,,, +396,30,1,13469,796,1854.654,28,32.0,E4,mp-,13,144,64,13,,,,, +396,30,1,13469,796,1854.771,,,,,,144,64,0,,,,, +396,31,1,13470,824,1854.771,29,32.0,E4,mp+,15,144,64,15,,,,, +396,32,1,13471,824,1854.771,32,32.0,A#4,mp+,15,144,70,15,,,,, +396,33,1,13472,824,1854.771,32,32.0,B6,mp+,15,144,95,15,,,,, +396,31,1,13470,824,1854.892,,,,,,144,64,0,,,,, +396,34,1,13473,853,1854.892,28,32.0,C#6,mf+,18,144,85,18,,,,, +396,32,1,13471,824,1854.905,,,,,,144,70,0,,,,, +396,33,1,13472,824,1854.905,,,,,,144,95,0,,,,, +396,34,1,13473,853,1855.009,,,,,,144,85,0,,,,, +396,35,1,13474,881,1855.009,86,16.0,F5,f,20,144,77,20,,,,, +396,36,3,13475,896,1855.072,21,32.0,D4,ppp,5,144,62,5,,,,, +396,36,3,13475,896,1855.16,,,,,,144,62,0,,,,, +396,37,3,13476,917,1855.16,21,32.0,F#3,ppp,5,144,54,5,,,,, +396,37,3,13476,917,1855.248,,,,,,144,54,0,,,,, +396,38,3,13477,938,1855.248,32,32.0,D4,ppp,5,144,62,5,,,,, +396,35,1,13474,881,1855.369,,,,,,144,77,0,,,,, +396,39,1,13478,967,1855.369,,,,,,176,102,0,,,,, +396,40,3,13479,970,1855.382,32,32.0,F#3,ppp,5,144,54,5,,,,, +396,38,3,13477,938,1855.382,,,,,,144,62,0,,,,, +396,40,3,13479,970,1855.516,,,,,,144,54,0,,,,, +396,41,3,13480,1002,1855.516,22,32.0,G#2,ppp,5,144,44,5,,,,, +396,42,3,13481,1002,1855.516,32,32.0,F#3,ppp,5,144,54,5,,,,, +396,43,3,13482,1002,1855.516,32,32.0,D4,ppp,5,144,62,5,,,,, +396,41,3,13480,1002,1855.608,,,,,,144,44,0,,,,, +396,44,1,13483,1024,1855.608,,,,,,176,102,0,,,,, +396,45,3,13484,1024,1855.608,21,32.0,D#3,ppp,5,144,51,5,,,,, +396,42,3,13481,1002,1855.65,,,,,,144,54,0,,,,, +396,43,3,13482,1002,1855.65,,,,,,144,62,0,,,,, +396,45,3,13484,1024,1855.696,,,,,,144,51,0,,,,, +396,46,3,13485,1045,1855.696,21,32.0,G#2,ppp,5,144,44,5,,,,, +396,46,3,13485,1045,1855.784,,,,,,144,44,0,,,,, +396,47,1,13486,1066,1855.784,64,16.0,F#3,ppp,5,144,54,5,,,,, +396,48,1,13487,1066,1855.784,64,16.0,D4,ppp,5,144,62,5,,,,, +396,49,3,13488,1066,1855.784,32,32.0,D#3,ppp,5,144,51,5,,,,, +396,49,3,13488,1066,1855.918,,,,,,144,51,0,,,,, +396,50,3,13489,1098,1855.918,32,32.0,G#2,ppp,5,144,44,5,,,,, +396,47,1,13486,1066,1856.052,,,,,,144,54,0,,,,, +396,48,1,13487,1066,1856.052,,,,,,144,62,0,,,,, +396,50,3,13489,1098,1856.052,,,,,,144,44,0,,,,, +396,51,1,13490,1130,1856.052,22,32.0,A#5,ppp,5,144,82,5,,,,, +396,52,3,13491,1130,1856.052,22,32.0,G#2,ppp,5,144,44,5,,,,, +396,53,3,13492,1130,1856.052,32,32.0,D#3,ppp,5,144,51,5,,,,, +396,54,0,13493,1152,1856.128,,,,,,176,64,0,,,,,^ +396,51,1,13490,1130,1856.144,,,,,,144,82,0,,,,, +396,52,3,13491,1130,1856.144,,,,,,144,44,0,,,,, +396,55,1,13494,1152,1856.144,,,,,,176,102,0,,,,, +396,56,3,13495,1152,1856.144,,,,,,176,102,0,,,,, +396,53,3,13492,1130,1856.185,,,,,,144,51,0,,,,, +396,58,3,13496,1216,1856.411,21,32.0,F4,ppp,5,144,65,5,,,,, +396,57,0,13497,1216,1856.428,,,,,,176,64,127,,,,,V +396,58,3,13496,1216,1856.499,,,,,,144,65,0,,,,, +396,59,3,13498,1237,1856.499,21,32.0,A#3,pp+,9,144,58,9,,,,, +396,59,3,13498,1237,1856.587,,,,,,144,58,0,,,,, +396,60,3,13499,1258,1856.587,22,32.0,C3,mp-,13,144,48,13,,,,, +396,60,3,13499,1258,1856.679,,,,,,144,48,0,,,,, +397,0,0,13500,0,1856.679,,,,,,,,,397,,,, +397,1,1,13501,0,1856.679,21,32.0,G#6,f,20,144,92,20,,,,, +397,2,3,13502,0,1856.679,64,16.0,A#3,mf,17,144,58,17,,,,, +397,3,3,13503,0,1856.679,64,16.0,F4,mf,17,144,65,17,,,,, +397,1,1,13501,0,1856.767,,,,,,144,92,0,,,,, +397,4,1,13504,21,1856.767,43,16.0,E7,f,20,144,100,20,,,,, +397,2,3,13502,0,1856.947,,,,,,144,58,0,,,,, +397,3,3,13503,0,1856.947,,,,,,144,65,0,,,,, +397,4,1,13504,21,1856.947,,,,,,144,100,0,,,,, +397,5,1,13505,64,1856.947,,,,,,176,102,0,,,,, +397,6,3,13506,64,1856.947,,,,,,176,102,0,,,,, +397,7,0,13507,192,1857.483,,,,,,176,64,0,,,,,^ +397,8,1,13508,192,1857.483,64,16.0,G1,p,11,144,31,11,,,,, +397,9,3,13509,192,1857.483,,,,,,176,102,0,,,,, +397,8,1,13508,192,1857.751,,,,,,144,31,0,,,,, +397,10,1,13510,256,1857.751,192,8.0,G1,p,11,144,31,11,,,,, +397,11,1,13511,256,1857.751,128,8.0,C#4,p,11,144,61,11,,,,, +397,12,3,13512,256,1857.751,170,4.0,D#1,ff,22,144,27,22,,,,, +397,13,3,13513,256,1857.751,256,4.0,C5,ff,22,144,72,22,,,,, +397,11,1,13511,256,1858.286,,,,,,144,61,0,,,,, +397,12,3,13512,256,1858.462,,,,,,144,27,0,,,,, +397,13,3,13513,256,1858.462,,,,,,144,72,0,,,,, +397,14,3,13514,426,1858.462,43,16.0,G#1,ff,22,144,32,22,,,,, +397,15,3,13515,426,1858.462,64,16.0,C5,ff,22,144,72,22,,,,, +397,10,1,13510,256,1858.554,,,,,,144,31,0,,,,, +397,16,1,13516,448,1858.554,,,,,,176,102,0,,,,, +397,14,3,13514,426,1858.642,,,,,,144,32,0,,,,, +397,15,3,13515,426,1858.642,,,,,,144,72,0,,,,, +397,17,3,13517,469,1858.642,43,16.0,G#1,ff,22,144,32,22,,,,, +397,18,3,13518,469,1858.642,64,16.0,C5,ff,22,144,72,22,,,,, +397,19,3,13519,469,1858.642,64,16.0,E5,ff,22,144,76,22,,,,, +397,17,3,13517,469,1858.822,,,,,,144,32,0,,,,, +397,21,1,13520,512,1858.822,256,4.0,D5,pp,8,144,74,8,,,,, +397,22,3,13521,512,1858.822,64,16.0,G1,p,11,144,31,11,,,,, +397,23,3,13522,512,1858.822,64,16.0,C#4,p,11,144,61,11,,,,, +397,20,0,13523,512,1858.822,,,,,,176,64,127,,,,,V +397,18,3,13518,469,1858.91,,,,,,144,72,0,,,,, +397,19,3,13519,469,1858.91,,,,,,144,76,0,,,,, +397,22,3,13521,512,1859.09,,,,,,144,31,0,,,,, +397,23,3,13522,512,1859.09,,,,,,144,61,0,,,,, +397,24,3,13524,576,1859.09,42,16.0,E5,p,11,144,76,11,,,,, +397,24,3,13524,576,1859.266,,,,,,144,76,0,,,,, +397,25,3,13525,618,1859.266,43,16.0,C3,p,11,144,48,11,,,,, +397,25,3,13525,618,1859.446,,,,,,144,48,0,,,,, +397,26,3,13526,661,1859.446,64,16.0,G#2,p,11,144,44,11,,,,, +397,28,0,13527,742,1859.689,,,,,,176,64,0,,,,,^ +397,26,3,13526,661,1859.714,,,,,,144,44,0,,,,, +397,27,3,13528,725,1859.714,43,16.0,C4,p,11,144,60,11,,,,, +397,21,1,13520,512,1859.894,,,,,,144,74,0,,,,, +397,27,3,13528,725,1859.894,,,,,,144,60,0,,,,, +397,30,1,13529,768,1859.894,,,,,,176,102,0,,,,, +397,31,3,13530,768,1859.894,21,32.0,D5,f,20,144,74,20,,,,, +397,31,3,13530,768,1859.981,,,,,,144,74,0,,,,, +397,32,3,13531,789,1859.981,21,32.0,D#2,f-,19,144,39,19,,,,, +397,29,0,13532,768,1859.989,,,,,,176,64,127,,,,,V +397,32,3,13531,789,1860.069,,,,,,144,39,0,,,,, +397,33,3,13533,810,1860.069,22,32.0,A#5,mf+,18,144,82,18,,,,, +397,33,3,13533,810,1860.161,,,,,,144,82,0,,,,, +397,34,3,13534,832,1860.161,21,32.0,D#2,mf,17,144,39,17,,,,, +397,35,3,13535,832,1860.161,32,32.0,F#2,mf,17,144,42,17,,,,, +397,34,3,13534,832,1860.249,,,,,,144,39,0,,,,, +397,36,3,13536,853,1860.249,32,32.0,D4,mf-,16,144,62,16,,,,, +397,35,3,13535,832,1860.295,,,,,,144,42,0,,,,, +397,36,3,13536,853,1860.383,,,,,,144,62,0,,,,, +397,37,3,13537,885,1860.383,11,64.0,D#2,mp+,15,144,39,15,,,,, +397,38,3,13538,885,1860.383,16,64.0,F#2,mp+,15,144,42,15,,,,, +397,39,3,13539,896,1860.429,10,64.0,D#2,,,,,,,,,, +397,40,3,13540,896,1860.429,16,64.0,F#2,,,,,,,,,, +397,37,3,13537,885,1860.471,,,,,,144,39,0,,,,, +397,41,3,13541,906,1860.471,32,32.0,D3,mp,14,144,50,14,,,,, +397,38,3,13538,885,1860.517,,,,,,144,42,0,,,,, +397,41,3,13541,906,1860.605,,,,,,144,50,0,,,,, +397,42,3,13542,938,1860.605,32,32.0,F#2,mp-,13,144,42,13,,,,, +397,42,3,13542,938,1860.739,,,,,,144,42,0,,,,, +397,43,3,13543,970,1860.739,32,32.0,D#2,p,11,144,39,11,,,,, +397,43,3,13543,970,1860.873,,,,,,144,39,0,,,,, +397,44,0,13544,1002,1860.873,,,,,,176,64,0,,,,,^ +397,45,3,13545,1002,1860.873,22,32.0,G#1,p-,10,144,32,10,,,,, +397,46,3,13546,1002,1860.873,32,32.0,F#2,p-,10,144,42,10,,,,, +397,45,3,13545,1002,1860.965,,,,,,144,32,0,,,,, +397,47,3,13547,1024,1860.965,21,32.0,D#2,pp+,9,144,39,9,,,,, +397,46,3,13546,1002,1861.007,,,,,,144,42,0,,,,, +397,47,3,13547,1024,1861.053,,,,,,144,39,0,,,,, +397,48,3,13548,1045,1861.053,21,32.0,D3,pp,8,144,50,8,,,,, +397,49,3,13549,1045,1861.053,32,32.0,A#4,pp,8,144,70,8,,,,, +397,48,3,13548,1045,1861.141,,,,,,144,50,0,,,,, +397,50,3,13550,1066,1861.141,32,32.0,G#1,pp-,7,144,32,7,,,,, +397,51,3,13551,1066,1861.141,32,32.0,D#2,pp-,7,144,39,7,,,,, +397,49,3,13549,1045,1861.187,,,,,,144,70,0,,,,, +397,50,3,13550,1066,1861.275,,,,,,144,32,0,,,,, +397,51,3,13551,1066,1861.275,,,,,,144,39,0,,,,, +397,52,3,13552,1098,1861.275,22,32.0,A#3,ppp+,6,144,58,6,,,,, +397,52,3,13552,1098,1861.367,,,,,,144,58,0,,,,, +397,53,3,13553,1120,1861.367,32,32.0,D3,ppp,5,144,50,5,,,,, +397,53,3,13553,1120,1861.501,,,,,,144,50,0,,,,, +397,54,3,13554,1152,1861.501,32,32.0,F#2,ppp,5,144,42,5,,,,, +397,54,3,13554,1152,1861.635,,,,,,144,42,0,,,,, +397,55,3,13555,1184,1861.635,32,32.0,D#2,ppp,5,144,39,5,,,,, +397,56,3,13556,1184,1861.635,32,32.0,D3,ppp,5,144,50,5,,,,, +397,55,3,13555,1184,1861.769,,,,,,144,39,0,,,,, +397,56,3,13556,1184,1861.769,,,,,,144,50,0,,,,, +397,57,3,13557,1216,1861.769,32,32.0,G#1,ppp,5,144,32,5,,,,, +397,58,3,13558,1216,1861.769,32,32.0,D#2,ppp,5,144,39,5,,,,, +397,59,3,13559,1216,1861.769,32,32.0,F#2,ppp,5,144,42,5,,,,, +397,57,3,13557,1216,1861.903,,,,,,144,32,0,,,,, +397,58,3,13558,1216,1861.903,,,,,,144,39,0,,,,, +397,59,3,13559,1216,1861.903,,,,,,144,42,0,,,,, +397,60,3,13560,1248,1861.903,32,32.0,A#3,ppp,5,144,58,5,,,,, +397,60,3,13560,1248,1862.036,,,,,,144,58,0,,,,, +398,0,0,13561,0,1862.036,,,,,,,,,398,,,, +398,1,0,13562,0,1862.036,,,,,,,,,,6055,,, +398,2,1,13563,0,1862.036,,,,,,176,102,0,,,,, +398,3,3,13564,0,1862.036,,,,,,176,102,0,,,,, +398,4,3,13565,64,1862.304,25,32.0,B2,p,11,144,47,11,,,,, +398,5,3,13566,64,1862.304,32,32.0,D4,p,11,144,62,11,,,,, +398,4,3,13565,64,1862.409,,,,,,144,47,0,,,,, +398,7,3,13567,89,1862.409,26,32.0,E2,mp,14,144,40,14,,,,, +398,6,0,13568,89,1862.409,,,,,,176,64,127,,,,,V +398,5,3,13566,64,1862.438,,,,,,144,62,0,,,,, +398,7,3,13567,89,1862.518,,,,,,144,40,0,,,,, +398,8,3,13569,115,1862.518,25,32.0,F#1,mf-,16,144,30,16,,,,, +398,9,3,13570,115,1862.518,32,32.0,D3,mf-,16,144,50,16,,,,, +398,8,3,13569,115,1862.622,,,,,,144,30,0,,,,, +398,10,3,13571,140,1862.622,26,32.0,A#0,f-,19,144,22,19,,,,, +398,11,3,13572,140,1862.622,32,32.0,E2,f-,19,144,40,19,,,,, +398,12,3,13573,140,1862.622,32,32.0,B2,f-,19,144,47,19,,,,, +398,9,3,13570,115,1862.652,,,,,,144,50,0,,,,, +398,10,3,13571,140,1862.731,,,,,,144,22,0,,,,, +398,11,3,13572,140,1862.731,,,,,,144,40,0,,,,, +398,12,3,13573,140,1862.731,,,,,,144,47,0,,,,, +398,13,3,13574,166,1862.731,26,32.0,F#1,ff,22,144,30,22,,,,, +398,14,3,13575,166,1862.731,32,32.0,E2,ff,22,144,40,22,,,,, +398,15,3,13576,166,1862.731,32,32.0,B2,ff,22,144,47,22,,,,, +398,16,3,13577,166,1862.731,32,32.0,D3,ff,22,144,50,22,,,,, +398,13,3,13574,166,1862.84,,,,,,144,30,0,,,,, +398,17,3,13578,192,1862.84,,,,,,176,102,0,,,,, +398,14,3,13575,166,1862.865,,,,,,144,40,0,,,,, +398,15,3,13576,166,1862.865,,,,,,144,47,0,,,,, +398,16,3,13577,166,1862.865,,,,,,144,50,0,,,,, +398,18,1,13579,256,1863.108,42,16.0,D3,fff,24,144,50,23,,,,, +398,19,1,13580,256,1863.108,64,16.0,C#7,fff,24,144,97,23,,,,, +398,20,3,13581,256,1863.108,,,,,,176,102,0,,,,, +398,18,1,13579,256,1863.284,,,,,,144,50,0,,,,, +398,21,1,13582,298,1863.284,43,16.0,G#1,fff,24,144,32,23,,,,, +398,22,1,13583,298,1863.284,64,16.0,C5,fff,24,144,72,23,,,,, +398,23,1,13584,298,1863.284,64,16.0,E5,fff,24,144,76,23,,,,, +398,19,1,13580,256,1863.376,,,,,,144,97,0,,,,, +398,21,1,13582,298,1863.464,,,,,,144,32,0,,,,, +398,24,1,13585,341,1863.464,,,,,,176,102,0,,,,, +398,22,1,13583,298,1863.552,,,,,,144,72,0,,,,, +398,23,1,13584,298,1863.552,,,,,,144,76,0,,,,, +398,25,0,13586,512,1864.179,,,,,,176,64,0,,,,,^ +398,26,1,13587,512,1864.179,,,,,,176,102,0,,,,, +398,27,3,13588,512,1864.179,85,8.0,C1,fff,24,144,24,23,,,,, +398,28,1,13589,576,1864.447,21,32.0,C#4,ff,22,144,61,22,,,,, +398,28,1,13589,576,1864.535,,,,,,144,61,0,,,,, +398,29,1,13590,597,1864.535,,,,,,176,102,0,,,,, +398,30,3,13591,597,1864.535,21,32.0,C1,,,,,,,,,, +398,31,3,13592,597,1864.535,32,32.0,G1,f,20,144,31,20,,,,, +398,27,3,13588,512,1864.623,,,,,,144,24,0,,,,, +398,32,1,13593,618,1864.623,22,32.0,C#3,f-,19,144,49,19,,,,, +398,33,3,13594,618,1864.623,,,,,,176,102,0,,,,, +398,31,3,13592,597,1864.669,,,,,,144,31,0,,,,, +398,32,1,13593,618,1864.715,,,,,,144,49,0,,,,, +398,34,1,13595,640,1864.715,21,32.0,C#4,mf,17,144,61,17,,,,, +398,35,3,13596,640,1864.715,21,32.0,C2,mf,17,144,36,17,,,,, +398,34,1,13595,640,1864.803,,,,,,144,61,0,,,,, +398,35,3,13596,640,1864.803,,,,,,144,36,0,,,,, +398,36,1,13597,661,1864.803,,,,,,176,102,0,,,,, +398,37,3,13598,661,1864.803,21,32.0,G1,mf-,16,144,31,16,,,,, +398,37,3,13598,661,1864.891,,,,,,144,31,0,,,,, +398,38,1,13599,682,1864.891,22,32.0,C3,mp,14,144,48,14,,,,, +398,39,1,13600,682,1864.891,32,32.0,C#4,mp,14,144,61,14,,,,, +398,40,3,13601,682,1864.891,,,,,,176,102,0,,,,, +398,38,1,13599,682,1864.983,,,,,,144,48,0,,,,, +398,41,1,13602,704,1864.983,,,,,,176,102,0,,,,, +398,42,3,13603,704,1864.983,21,32.0,G1,mp-,13,144,31,13,,,,, +398,43,3,13604,704,1864.983,32,32.0,C2,mp-,13,144,36,13,,,,, +398,39,1,13600,682,1865.025,,,,,,144,61,0,,,,, +398,42,3,13603,704,1865.071,,,,,,144,31,0,,,,, +398,44,1,13605,725,1865.071,21,32.0,C3,p,11,144,48,11,,,,, +398,45,1,13606,725,1865.071,32,32.0,C#3,p,11,144,49,11,,,,, +398,46,3,13607,725,1865.071,,,,,,176,102,0,,,,, +398,43,3,13604,704,1865.117,,,,,,144,36,0,,,,, +398,44,1,13605,725,1865.159,,,,,,144,48,0,,,,, +398,47,1,13608,746,1865.159,,,,,,176,102,0,,,,, +398,48,3,13609,746,1865.159,22,32.0,C2,p-,10,144,36,10,,,,, +398,45,1,13606,725,1865.205,,,,,,144,49,0,,,,, +398,48,3,13609,746,1865.251,,,,,,144,36,0,,,,, +398,49,1,13610,768,1865.251,32,32.0,C#4,pp,8,144,61,8,,,,, +398,50,1,13611,768,1865.251,32,32.0,E4,pp,8,144,64,8,,,,, +398,51,3,13612,768,1865.251,32,32.0,G1,pp,8,144,31,8,,,,, +398,49,1,13610,768,1865.385,,,,,,144,61,0,,,,, +398,50,1,13611,768,1865.385,,,,,,144,64,0,,,,, +398,51,3,13612,768,1865.385,,,,,,144,31,0,,,,, +398,52,1,13613,800,1865.385,,,,,,176,102,0,,,,, +398,53,3,13614,800,1865.385,32,32.0,G#1,pp,8,144,32,8,,,,, +398,53,3,13614,800,1865.519,,,,,,144,32,0,,,,, +398,54,1,13615,832,1865.519,,,,,,176,102,0,,,,, +398,55,3,13616,832,1865.519,,,,,,176,102,0,,,,, +398,58,3,13617,,1865.786,,8.0,E5,p,11,144,76,11,,,,g, +398,58,3,13617,,1865.836,,,,,,144,76,0,,,,, +398,56,1,13618,896,1865.861,64,16.0,D5,ff,22,144,74,22,,,,, +398,57,1,13619,896,1865.861,64,16.0,E5,mf,17,144,76,17,,,,, +398,59,3,13620,896,1865.861,128,8.0,G#2,p,11,144,44,11,,,,, +398,60,3,13621,896,1865.861,128,8.0,D#3,p,11,144,51,11,,,,, +398,61,3,13622,896,1865.861,128,8.0,G#3,ff,22,144,56,22,,,,, +398,56,1,13618,896,1866.129,,,,,,144,74,0,,,,, +398,57,1,13619,896,1866.129,,,,,,144,76,0,,,,, +398,62,1,13623,960,1866.129,64,16.0,A7,ff,22,144,105,22,,,,, +398,59,3,13620,896,1866.397,,,,,,144,44,0,,,,, +398,60,3,13621,896,1866.397,,,,,,144,51,0,,,,, +398,61,3,13622,896,1866.397,,,,,,144,56,0,,,,, +398,62,1,13623,960,1866.397,,,,,,144,105,0,,,,, +398,64,1,13624,1024,1866.397,,,,,,176,102,0,,,,, +398,65,3,13625,,1866.397,,8.0,D3,f,20,144,50,20,,,,g, +398,65,3,13625,,1866.447,,,,,,144,50,0,,,,, +398,66,3,13626,,1866.472,,8.0,A3,mf+,18,144,57,18,,,,g, +398,66,3,13626,,1866.522,,,,,,144,57,0,,,,, +398,67,3,13627,1024,1866.547,21,32.0,E2,mf-,16,144,40,16,,,,, +398,63,0,13628,1024,1866.547,,,,,,176,64,127,,,,,V +398,67,3,13627,1024,1866.635,,,,,,144,40,0,,,,, +398,68,3,13629,1045,1866.635,21,32.0,C1,mp,14,144,24,14,,,,, +398,68,3,13629,1045,1866.723,,,,,,144,24,0,,,,, +398,69,3,13630,1066,1866.723,22,32.0,D3,p+,12,144,50,12,,,,, +398,69,3,13630,1066,1866.815,,,,,,144,50,0,,,,, +398,70,3,13631,1088,1866.815,21,32.0,G#1,pp+,9,144,32,9,,,,, +398,71,0,13632,1109,1866.843,,,,,,176,64,0,,,,,^ +398,70,3,13631,1088,1866.903,,,,,,144,32,0,,,,, +398,72,3,13633,1109,1866.903,21,32.0,A3,pp-,7,144,57,7,,,,, +398,72,3,13633,1109,1866.991,,,,,,144,57,0,,,,, +398,73,3,13634,1130,1866.991,22,32.0,C1,ppp,5,144,24,5,,,,, +398,74,3,13635,1130,1866.991,32,32.0,G#1,ppp,5,144,32,5,,,,, +398,75,3,13636,1130,1866.991,32,32.0,E2,ppp,5,144,40,5,,,,, +398,76,3,13637,1130,1866.991,32,32.0,D3,ppp,5,144,50,5,,,,, +398,73,3,13634,1130,1867.083,,,,,,144,24,0,,,,, +398,78,3,13638,1152,1867.083,85,8.0,A3,ppp,5,144,57,5,,,,, +398,74,3,13635,1130,1867.125,,,,,,144,32,0,,,,, +398,75,3,13636,1130,1867.125,,,,,,144,40,0,,,,, +398,76,3,13637,1130,1867.125,,,,,,144,50,0,,,,, +398,77,0,13639,1152,1867.143,,,,,,176,64,127,,,,,V +398,78,3,13638,1152,1867.439,,,,,,144,57,0,,,,, +398,79,3,13640,1237,1867.439,,,,,,176,102,0,,,,, +398,80,3,13641,1258,1867.527,22,32.0,G1,ppp,5,144,31,5,,,,, +398,80,3,13641,1258,1867.619,,,,,,144,31,0,,,,, +399,0,0,13642,0,1867.619,,,,,,,,,399,,,, +399,1,1,13643,0,1867.619,,,,,,176,102,0,,,,, +399,2,3,13644,0,1867.619,32,32.0,E5,ppp,5,144,76,5,,,,, +399,2,3,13644,0,1867.753,,,,,,144,76,0,,,,, +399,3,3,13645,32,1867.753,32,32.0,G#2,ppp,5,144,44,5,,,,, +399,3,3,13645,32,1867.886,,,,,,144,44,0,,,,, +399,4,3,13646,64,1867.886,32,32.0,G1,ppp,5,144,31,5,,,,, +399,5,3,13647,64,1867.886,32,32.0,C#5,ppp,5,144,73,5,,,,, +399,4,3,13646,64,1868.02,,,,,,144,31,0,,,,, +399,5,3,13647,64,1868.02,,,,,,144,73,0,,,,, +399,6,3,13648,96,1868.02,32,32.0,E5,ppp,5,144,76,5,,,,, +399,6,3,13648,96,1868.154,,,,,,144,76,0,,,,, +399,7,3,13649,128,1868.154,32,32.0,G#2,ppp,5,144,44,5,,,,, +399,7,3,13649,128,1868.288,,,,,,144,44,0,,,,, +399,8,3,13650,160,1868.288,32,32.0,G1,ppp,5,144,31,5,,,,, +399,9,3,13651,160,1868.288,32,32.0,C4,ppp,5,144,60,5,,,,, +399,10,3,13652,160,1868.288,32,32.0,C#5,ppp,5,144,73,5,,,,, +399,11,0,13653,160,1868.288,,,,,,,,,,6056,,, +399,8,3,13650,160,1868.422,,,,,,144,31,0,,,,, +399,9,3,13651,160,1868.422,,,,,,144,60,0,,,,, +399,10,3,13652,160,1868.422,,,,,,144,73,0,,,,, +399,12,0,13654,192,1868.422,,,,,,176,64,0,,,,,^ +399,13,3,13655,192,1868.422,,,,,,176,102,0,,,,, +399,14,1,13656,256,1868.69,,,,,,176,102,0,,,,, +399,15,3,13657,256,1868.69,256,4.0,C1,ff,22,144,24,22,,,,, +399,16,3,13658,256,1868.69,256,4.0,D#1,ff,22,144,27,22,,,,, +399,17,3,13659,256,1868.69,256,4.0,D#3,ff,22,144,51,22,,,,, +399,18,1,13660,352,1869.092,32,32.0,B3,mp,14,144,59,14,,,,, +399,18,1,13660,352,1869.226,,,,,,144,59,0,,,,, +399,20,1,13661,384,1869.226,32,32.0,D5,mp,14,144,74,14,,,,, +399,19,0,13662,384,1869.226,,,,,,176,64,127,,,,,V +399,20,1,13661,384,1869.36,,,,,,144,74,0,,,,, +399,21,1,13663,416,1869.36,32,32.0,E3,mp,14,144,52,14,,,,, +399,21,1,13663,416,1869.494,,,,,,144,52,0,,,,, +399,22,1,13664,448,1869.494,21,32.0,F#2,mp,14,144,42,14,,,,, +399,22,1,13664,448,1869.581,,,,,,144,42,0,,,,, +399,23,1,13665,469,1869.581,21,32.0,A#1,mp,14,144,34,14,,,,, +399,24,1,13666,469,1869.581,32,32.0,E3,mp,14,144,52,14,,,,, +399,25,1,13667,469,1869.581,32,32.0,B3,mp,14,144,59,14,,,,, +399,23,1,13665,469,1869.669,,,,,,144,34,0,,,,, +399,26,1,13668,490,1869.669,22,32.0,F#2,mp,14,144,42,14,,,,, +399,24,1,13666,469,1869.715,,,,,,144,52,0,,,,, +399,25,1,13667,469,1869.715,,,,,,144,59,0,,,,, +399,27,0,13669,503,1869.724,,,,,,176,64,0,,,,,^ +399,15,3,13657,256,1869.761,,,,,,144,24,0,,,,, +399,16,3,13658,256,1869.761,,,,,,144,27,0,,,,, +399,17,3,13659,256,1869.761,,,,,,144,51,0,,,,, +399,26,1,13668,490,1869.761,,,,,,144,42,0,,,,, +399,28,1,13670,512,1869.761,,,,,,176,102,0,,,,, +399,29,3,13671,,1869.761,,8.0,E2,pp,8,144,40,8,,,,g, +399,29,3,13671,,1869.811,,,,,,144,40,0,,,,, +399,30,3,13672,512,1869.836,170,4.0,B2,pp,8,144,47,8,,,,, +399,31,1,13673,576,1870.104,21,32.0,E5,mf,17,144,76,17,,,,, +399,31,1,13673,576,1870.192,,,,,,144,76,0,,,,, +399,32,1,13674,597,1870.192,43,16.0,G#4,mf+,18,144,68,18,,,,, +399,32,1,13674,597,1870.372,,,,,,144,68,0,,,,, +399,33,1,13675,640,1870.372,21,32.0,C7,f,20,144,96,20,,,,, +399,33,1,13675,640,1870.46,,,,,,144,96,0,,,,, +399,34,1,13676,661,1870.46,43,16.0,D6,f+,21,144,86,21,,,,, +399,30,3,13672,512,1870.548,,,,,,144,47,0,,,,, +399,35,3,13677,682,1870.548,86,8.0,E2,pp,8,144,40,8,,,,, +399,36,3,13678,682,1870.548,128,8.0,B2,pp,8,144,47,8,,,,, +399,37,3,13679,682,1870.548,128,8.0,D3,pp,8,144,50,8,,,,, +399,34,1,13676,661,1870.64,,,,,,144,86,0,,,,, +399,38,1,13680,704,1870.64,,,,,,176,102,0,,,,, +399,35,3,13677,682,1870.908,,,,,,144,40,0,,,,, +399,39,1,13681,768,1870.908,256,4.0,E3,f+,21,144,52,21,,,,, +399,40,3,13682,768,1870.908,128,8.0,C1,ff,22,144,24,22,,,,, +399,41,3,13683,768,1870.908,128,8.0,G#2,ff,22,144,44,22,,,,, +399,42,3,13684,768,1870.908,128,8.0,D#3,ff,22,144,51,22,,,,, +399,36,3,13678,682,1871.084,,,,,,144,47,0,,,,, +399,37,3,13679,682,1871.084,,,,,,144,50,0,,,,, +399,40,3,13682,768,1871.444,,,,,,144,24,0,,,,, +399,41,3,13683,768,1871.444,,,,,,144,44,0,,,,, +399,42,3,13684,768,1871.444,,,,,,144,51,0,,,,, +399,43,3,13685,896,1871.444,128,8.0,G#2,mp,14,144,44,14,,,,, +399,43,3,13685,896,1871.979,,,,,,144,44,0,,,,, +399,44,1,13686,1024,1871.979,,,,,,176,102,0,,,,, +399,45,3,13687,1024,1871.979,85,8.0,C4,mp,14,144,60,14,,,,, +399,39,1,13681,768,1871.979,,,,,,144,52,0,,,,, +399,45,3,13687,1024,1872.335,,,,,,144,60,0,,,,, +399,47,3,13688,1109,1872.335,85,8.0,E6,mp,14,144,88,14,,,,, +399,46,0,13689,1109,1872.335,,,,,,176,64,127,,,,,V +399,47,3,13688,1109,1872.691,,,,,,144,88,0,,,,, +399,48,3,13690,1194,1872.691,,,,,,176,102,0,,,,, +400,0,0,13691,0,1873.051,,,,,,,,,400,,,, +400,1,1,13692,0,1873.051,,,,,,176,102,0,,,,, +400,2,3,13693,0,1873.051,,,,,,176,102,0,,,,, +400,3,1,13694,85,1873.406,43,16.0,C#7,f,20,144,97,20,,,,, +400,4,3,13695,85,1873.406,43,16.0,D3,f,20,144,50,20,,,,, +400,3,1,13694,85,1873.586,,,,,,144,97,0,,,,, +400,4,3,13695,85,1873.586,,,,,,144,50,0,,,,, +400,5,1,13696,128,1873.586,42,16.0,C5,f,20,144,72,20,,,,, +400,6,1,13697,128,1873.586,64,16.0,E5,f,20,144,76,20,,,,, +400,7,3,13698,128,1873.586,42,16.0,G#1,f,20,144,32,20,,,,, +400,5,1,13696,128,1873.762,,,,,,144,72,0,,,,, +400,7,3,13698,128,1873.762,,,,,,144,32,0,,,,, +400,8,1,13699,170,1873.762,,,,,,176,102,0,,,,, +400,9,3,13700,170,1873.762,,,,,,176,102,0,,,,, +400,6,1,13697,128,1873.854,,,,,,144,76,0,,,,, +400,10,0,13701,212,1873.938,,,,,,176,64,0,,,,,^ +400,11,1,13702,256,1874.122,32,32.0,B3,fff,24,144,59,23,,,,, +400,12,1,13703,256,1874.122,32,32.0,C5,fff,24,144,72,23,,,,, +400,13,3,13704,256,1874.122,32,32.0,D#1,fff,24,144,27,23,,,,, +400,14,3,13705,256,1874.122,32,32.0,F#1,fff,24,144,30,23,,,,, +400,11,1,13702,256,1874.256,,,,,,144,59,0,,,,, +400,12,1,13703,256,1874.256,,,,,,144,72,0,,,,, +400,13,3,13704,256,1874.256,,,,,,144,27,0,,,,, +400,14,3,13705,256,1874.256,,,,,,144,30,0,,,,, +400,15,1,13706,288,1874.256,32,32.0,G3,fff,24,144,55,23,,,,, +400,16,1,13707,288,1874.256,32,32.0,B3,fff,24,144,59,23,,,,, +400,17,3,13708,288,1874.256,32,32.0,D#1,fff,24,144,27,23,,,,, +400,18,3,13709,288,1874.256,32,32.0,F#1,fff,24,144,30,23,,,,, +400,15,1,13706,288,1874.39,,,,,,144,55,0,,,,, +400,16,1,13707,288,1874.39,,,,,,144,59,0,,,,, +400,17,3,13708,288,1874.39,,,,,,144,27,0,,,,, +400,18,3,13709,288,1874.39,,,,,,144,30,0,,,,, +400,19,1,13710,320,1874.39,,,,,,176,102,0,,,,, +400,20,3,13711,320,1874.39,,,,,,176,102,0,,,,, +400,22,1,13712,512,1875.194,76,16.0,B2,p,11,144,47,11,,,,, +400,23,3,13713,512,1875.194,,,,,,176,102,0,,,,, +400,21,0,13714,512,1875.194,,,,,,176,64,127,,,,,V +400,22,1,13712,512,1875.512,,,,,,144,47,0,,,,, +400,24,1,13715,588,1875.512,52,16.0,A#4,p,11,144,70,11,,,,, +400,24,1,13715,588,1875.729,,,,,,144,70,0,,,,, +400,25,1,13716,640,1875.729,42,16.0,E6,p,11,144,88,11,,,,, +400,25,1,13716,640,1875.905,,,,,,144,88,0,,,,, +400,26,1,13717,682,1875.905,43,16.0,B3,p,11,144,59,11,,,,, +400,26,1,13717,682,1876.085,,,,,,144,59,0,,,,, +400,27,1,13718,725,1876.085,43,16.0,A#5,p,11,144,82,11,,,,, +400,27,1,13718,725,1876.265,,,,,,144,82,0,,,,, +400,28,1,13719,768,1876.265,,,,,,176,102,0,,,,, +400,29,3,13720,768,1876.265,21,32.0,F#2,p,11,144,42,11,,,,, +400,30,3,13721,768,1876.265,32,32.0,B3,p,11,144,59,11,,,,, +400,29,3,13720,768,1876.353,,,,,,144,42,0,,,,, +400,31,3,13722,789,1876.353,21,32.0,D4,p,11,144,62,11,,,,, +400,30,3,13721,768,1876.399,,,,,,144,59,0,,,,, +400,31,3,13722,789,1876.441,,,,,,144,62,0,,,,, +400,32,3,13723,810,1876.441,22,32.0,F#2,p,11,144,42,11,,,,, +400,32,3,13723,810,1876.533,,,,,,144,42,0,,,,, +400,33,1,13724,832,1876.533,,,,,,176,102,0,,,,, +400,34,3,13725,832,1876.533,32,32.0,B3,p,11,144,59,11,,,,, +400,35,3,13726,832,1876.533,32,32.0,D4,p,11,144,62,11,,,,, +400,36,3,13727,832,1876.533,32,32.0,A#4,p,11,144,70,11,,,,, +400,34,3,13725,832,1876.667,,,,,,144,59,0,,,,, +400,35,3,13726,832,1876.667,,,,,,144,62,0,,,,, +400,36,3,13727,832,1876.667,,,,,,144,70,0,,,,, +400,37,3,13728,864,1876.667,32,32.0,F#2,p,11,144,42,11,,,,, +400,37,3,13728,864,1876.801,,,,,,144,42,0,,,,, +400,38,1,13729,896,1876.801,,,,,,176,102,0,,,,, +400,39,3,13730,896,1876.801,,,,,,176,102,0,,,,, +400,40,1,13731,1024,1877.336,,,,,,176,102,0,,,,, +400,41,3,13732,1024,1877.336,,,,,,176,102,0,,,,, +400,42,0,13733,1279,1878.404,,,,,,176,64,0,,,,,^ +401,0,0,13734,0,1878.408,,,,,,,,,401,,,, +401,1,0,13735,0,1878.408,,,,,,,,,,6057,,, +401,2,1,13736,0,1878.408,,,,,,176,102,0,,,,, +401,3,3,13737,0,1878.408,,,,,,176,102,0,,,,, +401,4,1,13738,256,1879.479,64,16.0,E7,fff,24,144,100,23,,,,, +401,5,3,13739,256,1879.479,64,16.0,G#2,fff,24,144,44,23,,,,, +401,6,3,13740,256,1879.479,64,16.0,D#3,fff,24,144,51,23,,,,, +401,4,1,13738,256,1879.747,,,,,,144,100,0,,,,, +401,5,3,13739,256,1879.747,,,,,,144,44,0,,,,, +401,6,3,13740,256,1879.747,,,,,,144,51,0,,,,, +401,8,1,13741,320,1879.747,32,32.0,A4,fff,24,144,69,23,,,,, +401,9,1,13742,320,1879.747,32,32.0,E7,fff,24,144,100,23,,,,, +401,10,3,13743,320,1879.747,,,,,,176,102,0,,,,, +401,7,0,13744,320,1879.747,,,,,,176,64,127,,,,,V +401,8,1,13741,320,1879.881,,,,,,144,69,0,,,,, +401,9,1,13742,320,1879.881,,,,,,144,100,0,,,,, +401,11,1,13745,352,1879.881,,,,,,176,102,0,,,,, +401,12,0,13746,384,1879.953,,,,,,176,64,0,,,,,^ +401,13,1,13747,384,1880.015,,,,,,176,102,0,,,,, +401,14,3,13748,384,1880.015,21,32.0,C1,fff,24,144,24,23,,,,, +401,14,3,13748,384,1880.103,,,,,,144,24,0,,,,, +401,15,3,13749,405,1880.103,21,32.0,G#1,ff+,23,144,32,23,,,,, +401,15,3,13749,405,1880.191,,,,,,144,32,0,,,,, +401,17,3,13750,426,1880.191,22,32.0,D#2,f+,21,144,39,21,,,,, +401,16,0,13751,426,1880.253,,,,,,176,64,127,,,,,V +401,17,3,13750,426,1880.283,,,,,,144,39,0,,,,, +401,18,3,13752,448,1880.283,32,32.0,C1,f,20,144,24,20,,,,, +401,19,3,13753,448,1880.283,32,32.0,G#1,f,20,144,32,20,,,,, +401,18,3,13752,448,1880.417,,,,,,144,24,0,,,,, +401,19,3,13753,448,1880.417,,,,,,144,32,0,,,,, +401,20,3,13754,480,1880.417,32,32.0,D#3,mf+,18,144,51,18,,,,, +401,20,3,13754,480,1880.551,,,,,,144,51,0,,,,, +401,21,1,13755,512,1880.551,,,,,,176,102,0,,,,, +401,22,3,13756,512,1880.551,32,32.0,G#1,mf-,16,144,32,16,,,,, +401,22,3,13756,512,1880.685,,,,,,144,32,0,,,,, +401,23,3,13757,544,1880.685,32,32.0,A3,mp,14,144,57,14,,,,, +401,23,3,13757,544,1880.819,,,,,,144,57,0,,,,, +401,24,3,13758,576,1880.819,32,32.0,E4,p+,12,144,64,12,,,,, +401,24,3,13758,576,1880.953,,,,,,144,64,0,,,,, +401,25,3,13759,608,1880.953,32,32.0,A2,p-,10,144,45,10,,,,, +401,25,3,13759,608,1881.086,,,,,,144,45,0,,,,, +401,26,1,13760,640,1881.086,,,,,,176,102,0,,,,, +401,27,3,13761,640,1881.086,42,16.0,C1,pp,8,144,24,8,,,,, +401,28,3,13762,640,1881.086,64,16.0,G#1,pp,8,144,32,8,,,,, +401,27,3,13761,640,1881.262,,,,,,144,24,0,,,,, +401,29,3,13763,682,1881.262,43,16.0,E5,ppp,5,144,76,5,,,,, +401,28,3,13762,640,1881.354,,,,,,144,32,0,,,,, +401,30,0,13764,725,1881.382,,,,,,176,64,0,,,,,^ +401,29,3,13763,682,1881.442,,,,,,144,76,0,,,,, +401,31,3,13765,725,1881.442,43,16.0,A2,ppp,5,144,45,5,,,,, +401,31,3,13765,725,1881.622,,,,,,144,45,0,,,,, +401,33,1,13766,768,1881.622,16,64.0,A7,p,11,144,105,11,,,,, +401,34,3,13767,768,1881.622,128,8.0,C4,pp,8,144,60,8,,,,, +401,32,0,13768,768,1881.682,,,,,,176,64,127,,,,,V +401,33,1,13766,768,1881.689,,,,,,144,105,0,,,,, +401,35,1,13769,784,1881.689,16,64.0,A#4,p,11,144,70,11,,,,, +401,35,1,13769,784,1881.756,,,,,,144,70,0,,,,, +401,36,1,13770,800,1881.756,16,64.0,C#7,p,11,144,97,11,,,,, +401,36,1,13770,800,1881.823,,,,,,144,97,0,,,,, +401,37,1,13771,816,1881.823,16,64.0,A7,p-,10,144,105,10,,,,, +401,37,1,13771,816,1881.89,,,,,,144,105,0,,,,, +401,38,1,13772,832,1881.89,16,64.0,C#7,p-,10,144,97,10,,,,, +401,38,1,13772,832,1881.957,,,,,,144,97,0,,,,, +401,39,1,13773,848,1881.957,16,64.0,E4,p-,10,144,64,10,,,,, +401,39,1,13773,848,1882.024,,,,,,144,64,0,,,,, +401,40,1,13774,864,1882.024,16,64.0,A7,p-,10,144,105,10,,,,, +401,40,1,13774,864,1882.091,,,,,,144,105,0,,,,, +401,41,1,13775,880,1882.091,16,64.0,C#7,p-,10,144,97,10,,,,, +401,41,1,13775,880,1882.158,,,,,,144,97,0,,,,, +401,42,1,13776,896,1882.158,25,32.0,A#4,pp+,9,144,70,9,,,,, +401,43,3,13777,896,1882.158,128,8.0,D#5,pp,8,144,75,8,,,,, +401,34,3,13767,768,1882.158,,,,,,144,60,0,,,,, +401,42,1,13776,896,1882.263,,,,,,144,70,0,,,,, +401,44,1,13778,921,1882.263,26,32.0,E4,pp+,9,144,64,9,,,,, +401,44,1,13778,921,1882.371,,,,,,144,64,0,,,,, +401,45,1,13779,947,1882.371,25,32.0,A7,pp+,9,144,105,9,,,,, +401,45,1,13779,947,1882.476,,,,,,144,105,0,,,,, +401,46,1,13780,972,1882.476,26,32.0,C#7,pp,8,144,97,8,,,,, +401,46,1,13780,972,1882.585,,,,,,144,97,0,,,,, +401,47,1,13781,998,1882.585,26,32.0,F5,pp,8,144,77,8,,,,, +401,43,3,13777,896,1882.694,,,,,,144,75,0,,,,, +401,47,1,13781,998,1882.694,,,,,,144,77,0,,,,, +401,48,1,13782,,1882.694,,8.0,A#2,pp,8,144,46,8,,,,g, +401,48,1,13782,,1882.744,,,,,,144,46,0,,,,, +401,49,1,13783,,1882.769,,8.0,C#3,pp,8,144,49,8,,,,g, +401,49,1,13783,,1882.819,,,,,,144,49,0,,,,, +401,50,1,13784,1024,1882.844,256,4.0,E5,ff,22,144,76,22,,,,, +401,51,1,13785,1024,1882.844,256,4.0,A5,p,11,144,81,11,,,,, +401,52,3,13786,1024,1882.844,128,8.0,A1,pp,8,144,33,8,,,,, +401,53,3,13787,1024,1882.844,128,8.0,C5,pp,8,144,72,8,,,,, +401,52,3,13786,1024,1883.379,,,,,,144,33,0,,,,, +401,53,3,13787,1024,1883.379,,,,,,144,72,0,,,,, +401,54,0,13788,1152,1883.379,,,,,,176,64,0,,,,,^ +401,55,3,13789,1152,1883.379,128,8.0,A1,pp,8,144,33,8,,,,, +401,56,3,13790,1152,1883.379,128,8.0,C#2,pp,8,144,37,8,,,,, +401,57,3,13791,1152,1883.379,128,8.0,F2,pp,8,144,41,8,,,,, +401,58,3,13792,1152,1883.379,128,8.0,C5,pp,8,144,72,8,,,,, +402,0,0,13793,0,1883.915,,,,,,,,,402,,,, +402,1,1,13794,0,1883.915,192,8.0,G5,pp,8,144,79,8,,,,, +402,2,3,13795,0,1883.915,128,8.0,D6,p,11,144,86,11,,,,, +401,50,1,13784,1024,1883.99,,,,,,144,76,0,,,,, +401,51,1,13785,1024,1883.99,,,,,,144,81,0,,,,, +401,55,3,13789,1152,1883.99,,,,,,144,33,0,,,,, +401,56,3,13790,1152,1883.99,,,,,,144,37,0,,,,, +401,57,3,13791,1152,1883.99,,,,,,144,41,0,,,,, +401,58,3,13792,1152,1883.99,,,,,,144,72,0,,,,, +402,2,3,13795,0,1884.451,,,,,,144,86,0,,,,, +402,3,3,13796,128,1884.451,128,8.0,G#5,p,11,144,80,11,,,,, +402,1,1,13794,0,1884.719,,,,,,144,79,0,,,,, +402,4,1,13797,192,1884.719,64,16.0,B1,ff,22,144,35,22,,,,, +402,5,1,13798,192,1884.719,64,16.0,E5,ff,22,144,76,22,,,,, +402,3,3,13796,128,1884.986,,,,,,144,80,0,,,,, +402,4,1,13797,192,1884.986,,,,,,144,35,0,,,,, +402,5,1,13798,192,1884.986,,,,,,144,76,0,,,,, +402,7,1,13799,256,1884.986,512,2.0,G3,f,20,144,55,20,,,,, +402,8,3,13800,256,1884.986,42,16.0,D4,pp,8,144,62,8,,,,, +402,6,0,13801,256,1884.986,,,,,,176,64,127,,,,,V +402,8,3,13800,256,1885.162,,,,,,144,62,0,,,,, +402,9,3,13802,298,1885.162,43,16.0,G#3,pp,8,144,56,8,,,,, +402,9,3,13802,298,1885.342,,,,,,144,56,0,,,,, +402,10,3,13803,341,1885.342,43,16.0,D4,pp,8,144,62,8,,,,, +402,10,3,13803,341,1885.522,,,,,,144,62,0,,,,, +402,11,3,13804,384,1885.522,64,16.0,C#3,pp,8,144,49,8,,,,, +402,11,3,13804,384,1885.79,,,,,,144,49,0,,,,, +402,12,3,13805,448,1885.79,64,16.0,G#3,pp,8,144,56,8,,,,, +402,12,3,13805,448,1886.058,,,,,,144,56,0,,,,, +402,13,3,13806,512,1886.058,64,16.0,A0,pp,8,144,21,8,,,,, +402,13,3,13806,512,1886.326,,,,,,144,21,0,,,,, +402,14,3,13807,576,1886.326,64,16.0,F1,pp,8,144,29,8,,,,, +402,14,3,13807,576,1886.594,,,,,,144,29,0,,,,, +402,15,3,13808,640,1886.594,,,,,,176,102,0,,,,, +402,16,0,13809,640,1886.594,,,,,,,,,,6058,,, +402,17,0,13810,768,1887.084,,,,,,176,64,0,,,,,^ +402,18,1,13811,768,1887.129,128,8.0,C4,p,11,144,60,11,,,,, +402,19,3,13812,768,1887.129,256,4.0,C#4,p,11,144,61,11,,,,, +402,7,1,13799,256,1887.129,,,,,,144,55,0,,,,, +402,20,0,13813,818,1887.384,,,,,,176,64,127,,,,,V +402,18,1,13811,768,1887.665,,,,,,144,60,0,,,,, +402,21,1,13814,896,1887.665,85,8.0,D#5,pp+,9,144,75,9,,,,, +402,21,1,13814,896,1888.021,,,,,,144,75,0,,,,, +402,22,1,13815,981,1888.021,43,16.0,A6,pp-,7,144,93,7,,,,, +402,23,0,13816,994,1888.075,,,,,,176,64,0,,,,,^ +402,22,1,13815,981,1888.201,,,,,,144,93,0,,,,, +402,24,1,13817,1024,1888.201,102,8.0,C4,pp-,7,144,60,7,,,,, +402,25,1,13818,1024,1888.201,128,8.0,G#4,pp-,7,144,68,7,,,,, +402,26,1,13819,1024,1888.201,128,8.0,D#5,pp-,7,144,75,7,,,,, +402,27,1,13820,1024,1888.201,128,8.0,A5,pp-,7,144,81,7,,,,, +402,28,3,13821,1024,1888.201,256,4.0,C3,pp,8,144,48,8,,,,, +402,19,3,13812,768,1888.201,,,,,,144,61,0,,,,, +402,29,1,13822,1126,1888.628,154,8.0,C4,,,,,,,,,, +402,30,1,13823,1126,1888.628,128,8.0,G#4,,,,,,,,,, +402,31,1,13824,1126,1888.628,128,8.0,D#5,,,,,,,,,, +402,32,1,13825,1126,1888.628,128,8.0,A5,,,,,,,,,, +402,33,1,13826,1126,1888.628,128,8.0,E7,ppp,5,144,100,5,,,,, +402,33,1,13826,1126,1889.163,,,,,,144,100,0,,,,, +402,28,3,13821,1024,1889.272,,,,,,144,48,0,,,,, +403,0,0,13827,0,1889.272,,,,,,,,,403,,,, +403,1,1,13828,0,1889.272,512,2.0,C4,,,,,,,,,, +403,2,1,13829,0,1889.272,512,2.0,G#4,,,,,,,,,, +403,3,1,13830,0,1889.272,512,2.0,D#5,,,,,,,,,, +403,4,1,13831,0,1889.272,512,2.0,A5,,,,,,,,,, +403,5,2,13832,0,1889.272,,,,,,176,102,0,,,,, +403,6,3,13833,0,1889.272,25,32.0,D1,pp,8,144,26,8,,,,, +403,6,3,13833,0,1889.377,,,,,,144,26,0,,,,, +403,7,3,13834,25,1889.377,26,32.0,G#1,pp,8,144,32,8,,,,, +403,7,3,13834,25,1889.486,,,,,,144,32,0,,,,, +403,8,3,13835,51,1889.486,25,32.0,F1,pp,8,144,29,8,,,,, +403,8,3,13835,51,1889.59,,,,,,144,29,0,,,,, +403,9,3,13836,76,1889.59,26,32.0,C#1,pp,8,144,25,8,,,,, +403,9,3,13836,76,1889.699,,,,,,144,25,0,,,,, +403,10,3,13837,102,1889.699,26,32.0,D1,pp,8,144,26,8,,,,, +403,10,3,13837,102,1889.808,,,,,,144,26,0,,,,, +403,11,3,13838,128,1889.808,25,32.0,G#1,pp,8,144,32,8,,,,, +403,11,3,13838,128,1889.913,,,,,,144,32,0,,,,, +403,12,3,13839,153,1889.913,39,32.0,F1,pp,8,144,29,8,,,,, +403,12,3,13839,153,1890.076,,,,,,144,29,0,,,,, +403,13,3,13840,192,1890.076,38,32.0,D1,pp,8,144,26,8,,,,, +403,13,3,13840,192,1890.235,,,,,,144,26,0,,,,, +403,14,3,13841,230,1890.235,26,32.0,C#1,pp,8,144,25,8,,,,, +403,14,3,13841,230,1890.344,,,,,,144,25,0,,,,, +403,15,2,13842,256,1890.344,,,,,,176,102,0,,,,, +403,16,3,13843,256,1890.344,25,32.0,A0,pp,8,144,21,8,,,,, +403,16,3,13843,256,1890.448,,,,,,144,21,0,,,,, +403,18,3,13844,281,1890.448,39,32.0,C#1,pp,8,144,25,8,,,,, +403,17,0,13845,281,1890.448,,,,,,176,64,127,,,,,V +403,18,3,13844,281,1890.611,,,,,,144,25,0,,,,, +403,19,3,13846,320,1890.611,25,32.0,G#1,pp,8,144,32,8,,,,, +403,19,3,13846,320,1890.716,,,,,,144,32,0,,,,, +403,20,3,13847,345,1890.716,26,32.0,F1,pp,8,144,29,8,,,,, +403,20,3,13847,345,1890.825,,,,,,144,29,0,,,,, +403,21,3,13848,371,1890.825,38,32.0,D2,pp,8,144,38,8,,,,, +403,21,3,13848,371,1890.984,,,,,,144,38,0,,,,, +403,22,3,13849,409,1890.984,39,32.0,C#1,pp,8,144,25,8,,,,, +403,22,3,13849,409,1891.147,,,,,,144,25,0,,,,, +403,23,3,13850,448,1891.147,38,32.0,G#1,pp,8,144,32,8,,,,, +403,23,3,13850,448,1891.306,,,,,,144,32,0,,,,, +403,24,3,13851,486,1891.306,26,32.0,A0,pp,8,144,21,8,,,,, +402,24,1,13817,1024,1891.415,,,,,,144,60,0,,,,, +402,25,1,13818,1024,1891.415,,,,,,144,68,0,,,,, +402,26,1,13819,1024,1891.415,,,,,,144,75,0,,,,, +402,27,1,13820,1024,1891.415,,,,,,144,81,0,,,,, +403,24,3,13851,486,1891.415,,,,,,144,21,0,,,,, +403,25,1,13852,512,1891.415,42,16.0,C#5,p,11,144,73,11,,,,, +403,26,1,13853,512,1891.415,64,16.0,A5,p,11,144,81,11,,,,, +403,27,2,13854,512,1891.415,,,,,,176,102,0,,,,, +403,28,3,13855,512,1891.415,,,,,,176,102,0,,,,, +403,25,1,13852,512,1891.591,,,,,,144,73,0,,,,, +403,26,1,13853,512,1891.591,,,,,,144,81,0,,,,, +403,29,0,13856,554,1891.591,,,,,,176,64,0,,,,,^ +403,30,1,13857,554,1891.591,64,16.0,F3,mp-,13,144,53,13,,,,, +403,31,1,13858,554,1891.591,64,16.0,C#5,mp-,13,144,73,13,,,,, +403,32,1,13859,554,1891.591,64,16.0,A5,mp-,13,144,81,13,,,,, +403,30,1,13857,554,1891.859,,,,,,144,53,0,,,,, +403,31,1,13858,554,1891.859,,,,,,144,73,0,,,,, +403,32,1,13859,554,1891.859,,,,,,144,81,0,,,,, +403,33,1,13860,618,1891.859,22,32.0,E2,mp+,15,144,40,15,,,,, +403,33,1,13860,618,1891.951,,,,,,144,40,0,,,,, +403,34,1,13861,640,1891.951,32,32.0,C#5,mf,17,144,73,17,,,,, +403,35,1,13862,640,1891.951,32,32.0,A5,mf,17,144,81,17,,,,, +403,36,2,13863,640,1891.951,64,16.0,E5,ff,22,144,76,22,,,,, +403,37,3,13864,640,1891.951,42,16.0,E2,mf,17,144,40,17,,,,, +403,38,3,13865,640,1891.951,64,16.0,F3,mf,17,144,53,17,,,,, +403,34,1,13861,640,1892.085,,,,,,144,73,0,,,,, +403,35,1,13862,640,1892.085,,,,,,144,81,0,,,,, +403,39,1,13866,672,1892.085,,,,,,176,102,0,,,,, +403,37,3,13864,640,1892.127,,,,,,144,40,0,,,,, +403,40,3,13867,682,1892.127,86,8.0,F#2,f,20,144,42,20,,,,, +403,41,3,13868,682,1892.127,128,8.0,G3,f,20,144,55,20,,,,, +403,36,2,13863,640,1892.219,,,,,,144,76,0,,,,, +403,38,3,13865,640,1892.219,,,,,,144,53,0,,,,, +403,42,2,13869,704,1892.219,64,16.0,B1,ff,22,144,35,22,,,,, +403,43,2,13870,704,1892.219,64,16.0,A#3,ff,22,144,58,22,,,,, +403,40,3,13867,682,1892.486,,,,,,144,42,0,,,,, +403,42,2,13869,704,1892.486,,,,,,144,35,0,,,,, +403,43,2,13870,704,1892.486,,,,,,144,58,0,,,,, +403,44,1,13871,768,1892.486,128,8.0,E3,pp,8,144,52,8,,,,, +403,45,1,13872,768,1892.486,128,8.0,G5,pp,8,144,79,8,,,,, +403,46,2,13873,768,1892.486,,,,,,176,102,0,,,,, +403,47,3,13874,768,1892.486,,,,,,176,102,0,,,,, +403,41,3,13868,682,1892.662,,,,,,144,55,0,,,,, +403,44,1,13871,768,1892.662,,,,,,144,52,0,,,,, +403,49,3,13875,810,1892.662,43,16.0,E3,p,11,144,52,11,,,,, +403,50,3,13876,810,1892.662,64,16.0,B3,p,11,144,59,11,,,,, +403,51,3,13877,810,1892.662,64,16.0,D4,p,11,144,62,11,,,,, +403,48,0,13878,810,1892.662,,,,,,176,64,127,,,,,V +403,52,3,13879,853,1892.842,85,8.0,A#0,p,11,144,22,11,,,,, +403,50,3,13876,810,1892.93,,,,,,144,59,0,,,,, +403,51,3,13877,810,1892.93,,,,,,144,62,0,,,,, +403,45,1,13872,768,1893.022,,,,,,144,79,0,,,,, +403,49,3,13875,810,1893.022,,,,,,144,52,0,,,,, +403,53,0,13880,896,1893.022,,,,,,176,64,0,,,,,^ +403,54,1,13881,896,1893.022,128,8.0,G#2,p,11,144,44,11,,,,, +403,55,1,13882,896,1893.022,128,8.0,E3,p,11,144,52,11,,,,, +403,52,3,13879,853,1893.198,,,,,,144,22,0,,,,, +403,56,3,13883,938,1893.198,86,8.0,F#1,p,11,144,30,11,,,,, +403,54,1,13881,896,1893.558,,,,,,144,44,0,,,,, +403,55,1,13882,896,1893.558,,,,,,144,52,0,,,,, +403,56,3,13883,938,1893.558,,,,,,144,30,0,,,,, +403,58,1,13884,1024,1893.558,64,16.0,C#4,pp,8,144,61,8,,,,, +403,59,3,13885,1024,1893.558,256,4.0,B6,ff,22,144,95,22,,,,, +403,57,0,13886,1024,1893.558,,,,,,176,64,127,,,,,V +403,58,1,13884,1024,1893.826,,,,,,144,61,0,,,,, +403,60,1,13887,1088,1893.826,42,16.0,D5,p-,10,144,74,10,,,,, +403,60,1,13887,1088,1894.002,,,,,,144,74,0,,,,, +403,61,1,13888,1130,1894.002,22,32.0,A2,p,11,144,45,11,,,,, +403,61,1,13888,1130,1894.094,,,,,,144,45,0,,,,, +403,62,1,13889,1152,1894.094,21,32.0,G#4,p+,12,144,68,12,,,,, +403,62,1,13889,1152,1894.181,,,,,,144,68,0,,,,, +403,63,1,13890,1173,1894.181,21,32.0,A2,p+,12,144,45,12,,,,, +403,63,1,13890,1173,1894.269,,,,,,144,45,0,,,,, +403,64,1,13891,1194,1894.269,22,32.0,G#4,mp-,13,144,68,13,,,,, +403,64,1,13891,1194,1894.361,,,,,,144,68,0,,,,, +403,65,1,13892,1216,1894.361,21,32.0,A2,mp-,13,144,45,13,,,,, +403,65,1,13892,1216,1894.449,,,,,,144,45,0,,,,, +403,66,1,13893,1237,1894.449,43,16.0,F3,mp,14,144,53,14,,,,, +403,67,0,13894,1279,1894.625,,,,,,176,64,0,,,,,^ +403,66,1,13893,1237,1894.629,,,,,,144,53,0,,,,, +404,0,0,13895,0,1894.629,,,,,,,,,404,,,, +404,1,1,13896,0,1894.629,,,,,,176,102,0,,,,, +404,2,3,13897,0,1894.629,,,,,,176,102,0,,,,, +404,3,4,13898,0,1894.629,,,,,,176,102,0,,,,, +403,59,3,13885,1024,1894.629,,,,,,144,95,0,,,,, +404,4,1,13899,64,1894.897,32,32.0,D6,mp,14,144,86,14,,,,, +404,5,0,13900,76,1894.947,,,,,,176,64,127,,,,,V +404,4,1,13899,64,1895.031,,,,,,144,86,0,,,,, +404,6,1,13901,96,1895.031,32,32.0,C#5,mp,14,144,73,14,,,,, +404,6,1,13901,96,1895.165,,,,,,144,73,0,,,,, +404,7,1,13902,128,1895.165,,,,,,176,102,0,,,,, +404,8,3,13903,128,1895.165,42,16.0,A1,mp,14,144,33,14,,,,, +404,8,3,13903,128,1895.341,,,,,,144,33,0,,,,, +404,9,3,13904,170,1895.341,22,32.0,F2,mp,14,144,41,14,,,,, +404,9,3,13904,170,1895.433,,,,,,144,41,0,,,,, +404,10,3,13905,192,1895.433,42,16.0,D6,mp,14,144,86,14,,,,, +404,10,3,13905,192,1895.609,,,,,,144,86,0,,,,, +404,11,3,13906,234,1895.609,22,32.0,G#5,mp,14,144,80,14,,,,, +404,11,3,13906,234,1895.701,,,,,,144,80,0,,,,, +404,12,1,13907,256,1895.701,384,4.0,C#5,mp,14,144,73,14,,,,, +404,13,1,13908,256,1895.701,256,4.0,G5,mp,14,144,79,14,,,,, +404,14,1,13909,256,1895.701,256,4.0,D6,mp,14,144,86,14,,,,, +404,15,3,13910,256,1895.701,384,4.0,A1,mp,14,144,33,14,,,,, +404,16,3,13911,256,1895.701,256,4.0,F2,mp,14,144,41,14,,,,, +404,17,4,13912,,1895.701,,8.0,D#2,pp,8,144,39,8,,,,g, +404,17,4,13912,,1895.751,,,,,,144,39,0,,,,, +404,18,4,13913,256,1895.776,384,4.0,B2,pp,8,144,47,8,,,,, +404,13,1,13908,256,1896.772,,,,,,144,79,0,,,,, +404,14,1,13909,256,1896.772,,,,,,144,86,0,,,,, +404,16,3,13911,256,1896.772,,,,,,144,41,0,,,,, +404,12,1,13907,256,1897.308,,,,,,144,73,0,,,,, +404,15,3,13910,256,1897.308,,,,,,144,33,0,,,,, +404,18,4,13913,256,1897.383,,,,,,144,47,0,,,,, +404,19,1,13914,640,1897.383,128,8.0,C#5,f,20,144,73,20,,,,, +404,20,1,13915,640,1897.383,128,8.0,G5,f,20,144,79,20,,,,, +404,21,1,13916,640,1897.383,128,8.0,D6,f,20,144,86,20,,,,, +404,22,3,13917,640,1897.383,32,32.0,D#2,f,20,144,39,20,,,,, +404,23,3,13918,640,1897.383,32,32.0,B2,f,20,144,47,20,,,,, +404,24,4,13919,640,1897.383,128,8.0,A1,f,20,144,33,20,,,,, +404,25,4,13920,640,1897.383,128,8.0,F2,f,20,144,41,20,,,,, +404,22,3,13917,640,1897.517,,,,,,144,39,0,,,,, +404,23,3,13918,640,1897.517,,,,,,144,47,0,,,,, +404,26,3,13921,672,1897.517,32,32.0,G2,mf-,16,144,43,16,,,,, +404,26,3,13921,672,1897.651,,,,,,144,43,0,,,,, +404,27,3,13922,704,1897.651,32,32.0,C4,p+,12,144,60,12,,,,, +404,27,3,13922,704,1897.785,,,,,,144,60,0,,,,, +404,28,3,13923,736,1897.785,32,32.0,D#2,pp,8,144,39,8,,,,, +404,29,3,13924,736,1897.785,32,32.0,F#2,pp,8,144,42,8,,,,, +404,30,3,13925,736,1897.785,32,32.0,G2,pp,8,144,43,8,,,,, +404,31,3,13926,736,1897.785,32,32.0,B2,pp,8,144,47,8,,,,, +404,32,3,13927,736,1897.785,32,32.0,C4,pp,8,144,60,8,,,,, +404,33,0,13928,767,1897.914,,,,,,176,64,0,,,,,^ +404,19,1,13914,640,1897.919,,,,,,144,73,0,,,,, +404,20,1,13915,640,1897.919,,,,,,144,79,0,,,,, +404,21,1,13916,640,1897.919,,,,,,144,86,0,,,,, +404,24,4,13919,640,1897.919,,,,,,144,33,0,,,,, +404,25,4,13920,640,1897.919,,,,,,144,41,0,,,,, +404,34,1,13929,768,1897.919,,,,,,176,102,0,,,,, +404,35,3,13930,768,1897.919,256,4.0,D#2,,,,,,,,,, +404,36,3,13931,768,1897.919,256,4.0,F#2,,,,,,,,,, +404,37,3,13932,768,1897.919,256,4.0,G2,,,,,,,,,, +404,38,3,13933,768,1897.919,256,4.0,B2,,,,,,,,,, +404,39,3,13934,768,1897.919,256,4.0,C4,,,,,,,,,, +404,40,4,13935,768,1897.919,,,,,,176,102,0,,,,, +404,41,1,13936,896,1898.454,64,16.0,B6,pp,8,144,95,8,,,,, +404,42,4,13937,896,1898.454,64,16.0,A2,pp,8,144,45,8,,,,, +404,41,1,13936,896,1898.722,,,,,,144,95,0,,,,, +404,42,4,13937,896,1898.722,,,,,,144,45,0,,,,, +404,43,1,13938,960,1898.722,64,16.0,C#5,pp,8,144,73,8,,,,, +404,44,1,13939,960,1898.722,64,16.0,G5,pp,8,144,79,8,,,,, +404,45,1,13940,960,1898.722,64,16.0,D6,pp,8,144,86,8,,,,, +404,46,4,13941,960,1898.722,64,16.0,F2,pp,8,144,41,8,,,,, +404,47,0,13942,989,1898.844,,,,,,176,64,127,,,,,V +404,43,1,13938,960,1898.99,,,,,,144,73,0,,,,, +404,44,1,13939,960,1898.99,,,,,,144,79,0,,,,, +404,45,1,13940,960,1898.99,,,,,,144,86,0,,,,, +404,46,4,13941,960,1898.99,,,,,,144,41,0,,,,, +404,48,1,13943,1024,1898.99,,,,,,176,102,0,,,,, +404,49,3,13944,1024,1898.99,42,32.0,C3,pp,8,144,48,8,,,,, +404,50,4,13945,1024,1898.99,,,,,,176,102,0,,,,, +404,28,3,13923,736,1898.99,,,,,,144,39,0,,,,, +404,29,3,13924,736,1898.99,,,,,,144,42,0,,,,, +404,30,3,13925,736,1898.99,,,,,,144,43,0,,,,, +404,31,3,13926,736,1898.99,,,,,,144,47,0,,,,, +404,32,3,13927,736,1898.99,,,,,,144,60,0,,,,, +404,49,3,13944,1024,1899.166,,,,,,144,48,0,,,,, +404,51,3,13946,1066,1899.166,29,32.0,G#4,pp+,9,144,68,9,,,,, +404,51,3,13946,1066,1899.287,,,,,,144,68,0,,,,, +404,52,3,13947,1095,1899.287,28,32.0,F4,p-,10,144,65,10,,,,, +404,52,3,13947,1095,1899.404,,,,,,144,65,0,,,,, +404,53,3,13948,1123,1899.404,29,32.0,E5,p,11,144,76,11,,,,, +404,53,3,13948,1123,1899.526,,,,,,144,76,0,,,,, +404,54,1,13949,1152,1899.526,42,16.0,F4,p+,12,144,65,12,,,,, +404,55,1,13950,1152,1899.526,64,16.0,A4,p+,12,144,69,12,,,,, +404,56,1,13951,1152,1899.526,64,16.0,E5,p+,12,144,76,12,,,,, +404,57,3,13952,1152,1899.526,,,,,,176,102,0,,,,, +404,54,1,13949,1152,1899.702,,,,,,144,65,0,,,,, +404,58,1,13953,1194,1899.702,43,16.0,A#3,mp-,13,144,58,13,,,,, +404,55,1,13950,1152,1899.794,,,,,,144,69,0,,,,, +404,56,1,13951,1152,1899.794,,,,,,144,76,0,,,,, +404,59,0,13954,1237,1899.821,,,,,,176,64,0,,,,,^ +404,58,1,13953,1194,1899.881,,,,,,144,58,0,,,,, +404,60,1,13955,1237,1899.881,43,16.0,C3,mp,14,144,48,14,,,,, +404,60,1,13955,1237,1900.061,,,,,,144,48,0,,,,, +405,0,0,13956,0,1900.061,,,,,,,,,405,,,, +405,1,0,13957,0,1900.061,,,,,,,,,,6059,,, +405,3,1,13958,0,1900.061,85,8.0,A6,mp,14,144,93,14,,,,, +405,4,3,13959,0,1900.061,64,16.0,G#2,pp,8,144,44,8,,,,, +405,5,3,13960,0,1900.061,64,16.0,E3,pp,8,144,52,8,,,,, +405,2,0,13961,0,1900.121,,,,,,176,64,127,,,,,V +405,6,3,13962,64,1900.329,42,16.0,A1,mp-,13,144,33,13,,,,, +405,4,3,13959,0,1900.404,,,,,,144,44,0,,,,, +405,5,3,13960,0,1900.404,,,,,,144,52,0,,,,, +405,3,1,13958,0,1900.417,,,,,,144,93,0,,,,, +405,7,1,13963,85,1900.417,171,4.0,C#6,mp+,15,144,85,15,,,,, +405,8,1,13964,85,1900.417,256,4.0,A6,mp+,15,144,93,15,,,,, +405,6,3,13962,64,1900.505,,,,,,144,33,0,,,,, +405,9,3,13965,106,1900.505,43,16.0,D4,mf,17,144,62,17,,,,, +405,9,3,13965,106,1900.685,,,,,,144,62,0,,,,, +405,10,3,13966,149,1900.685,64,16.0,G#2,f,20,144,44,20,,,,, +405,11,3,13967,149,1900.685,64,16.0,E3,f,20,144,52,20,,,,, +405,12,3,13968,149,1900.685,64,16.0,C5,f,20,144,72,20,,,,, +405,13,3,13969,213,1900.953,43,16.0,D4,f,20,144,62,20,,,,, +405,14,0,13970,256,1901.041,,,,,,176,64,0,,,,,^ +405,10,3,13966,149,1901.103,,,,,,144,44,0,,,,, +405,11,3,13967,149,1901.103,,,,,,144,52,0,,,,, +405,12,3,13968,149,1901.103,,,,,,144,72,0,,,,, +405,13,3,13969,213,1901.133,,,,,,144,62,0,,,,, +405,15,1,13971,256,1901.133,,,,,,176,102,0,,,,, +405,16,3,13972,256,1901.133,256,4.0,D#2,ppp,5,144,39,5,,,,, +405,7,1,13963,85,1901.283,,,,,,144,85,0,,,,, +405,17,0,13973,284,1901.341,,,,,,176,64,127,,,,,V +405,18,1,13974,312,1901.367,29,32.0,E5,p,11,144,76,11,,,,, +405,18,1,13974,312,1901.489,,,,,,144,76,0,,,,, +405,19,1,13975,341,1901.489,28,32.0,A3,mp,14,144,57,14,,,,, +405,19,1,13975,341,1901.606,,,,,,144,57,0,,,,, +405,20,1,13976,369,1901.606,29,32.0,G#4,mf-,16,144,68,16,,,,, +405,8,1,13964,85,1901.639,,,,,,144,93,0,,,,, +405,20,1,13976,369,1901.727,,,,,,144,68,0,,,,, +405,21,1,13977,398,1901.727,28,32.0,A3,f-,19,144,57,19,,,,, +405,21,1,13977,398,1901.844,,,,,,144,57,0,,,,, +405,22,1,13978,426,1901.844,29,32.0,A3,ff,22,144,57,22,,,,, +405,23,1,13979,426,1901.844,32,32.0,G#4,ff,22,144,68,22,,,,, +405,24,1,13980,426,1901.844,32,32.0,C7,ff,22,144,96,22,,,,, +405,22,1,13978,426,1901.966,,,,,,144,57,0,,,,, +405,25,1,13981,455,1901.966,57,16.0,D6,ff,22,144,86,22,,,,, +405,23,1,13979,426,1901.978,,,,,,144,68,0,,,,, +405,24,1,13980,426,1901.978,,,,,,144,96,0,,,,, +405,26,0,13982,511,1902.14,,,,,,176,64,0,,,,,^ +405,25,1,13981,455,1902.204,,,,,,144,86,0,,,,, +405,27,1,13983,512,1902.204,42,32.0,G#4,ppp,5,144,68,5,,,,, +405,28,3,13984,512,1902.204,,,,,,176,102,0,,,,, +405,16,3,13972,256,1902.204,,,,,,144,39,0,,,,, +405,27,1,13983,512,1902.38,,,,,,144,68,0,,,,, +405,30,1,13985,554,1902.38,29,32.0,E5,ppp,5,144,76,5,,,,, +405,29,0,13986,554,1902.44,,,,,,176,64,127,,,,,V +405,30,1,13985,554,1902.501,,,,,,144,76,0,,,,, +405,31,1,13987,583,1902.501,28,32.0,F4,ppp,5,144,65,5,,,,, +405,31,1,13987,583,1902.619,,,,,,144,65,0,,,,, +405,32,1,13988,611,1902.619,29,32.0,E6,ppp,5,144,88,5,,,,, +405,32,1,13988,611,1902.74,,,,,,144,88,0,,,,, +405,33,1,13989,640,1902.74,25,32.0,A#3,ppp,5,144,58,5,,,,, +405,33,1,13989,640,1902.845,,,,,,144,58,0,,,,, +405,34,1,13990,665,1902.845,39,32.0,F4,ppp,5,144,65,5,,,,, +405,34,1,13990,665,1903.008,,,,,,144,65,0,,,,, +405,35,1,13991,704,1903.008,25,32.0,A#3,ppp,5,144,58,5,,,,, +405,35,1,13991,704,1903.113,,,,,,144,58,0,,,,, +405,36,1,13992,729,1903.113,39,32.0,C2,ppp,5,144,36,5,,,,, +405,36,1,13992,729,1903.276,,,,,,144,36,0,,,,, +405,38,0,13993,768,1903.276,,,,,,176,64,0,,,,,^ +405,37,1,13994,768,1903.276,25,32.0,G#4,ppp,5,144,68,5,,,,, +405,39,3,13995,768,1903.276,,,,,,176,102,0,,,,, +405,37,1,13994,768,1903.38,,,,,,144,68,0,,,,, +405,40,1,13996,793,1903.38,26,32.0,F4,ppp,5,144,65,5,,,,, +405,40,1,13996,793,1903.489,,,,,,144,65,0,,,,, +405,41,1,13997,819,1903.489,77,16.0,E6,ppp,5,144,88,5,,,,, +405,41,1,13997,819,1903.811,,,,,,144,88,0,,,,, +405,42,1,13998,896,1903.811,,,,,,176,102,0,,,,, +405,44,1,13999,1024,1904.347,,,,,,176,102,0,,,,, +405,45,3,14000,1024,1904.347,256,4.0,G#1,ppp,5,144,32,5,,,,, +405,46,3,14001,1024,1904.347,256,4.0,D#2,ppp,5,144,39,5,,,,, +405,43,0,14002,1024,1904.347,,,,,,176,64,127,,,,,V +405,45,3,14000,1024,1905.419,,,,,,144,32,0,,,,, +405,46,3,14001,1024,1905.419,,,,,,144,39,0,,,,, +406,0,0,14003,0,1905.419,,,,,,,,,406,,,, +406,1,1,14004,,1905.419,,8.0,A2,ppp,5,144,45,5,,,,g, +406,1,1,14004,,1905.469,,,,,,144,45,0,,,,, +406,2,1,14005,0,1905.494,48,32.0,E6,p,11,144,88,11,,,,, +406,3,3,14006,0,1905.494,,,,,,176,102,0,,,,, +406,2,1,14005,0,1905.695,,,,,,144,88,0,,,,, +406,4,1,14007,48,1905.695,48,32.0,G#5,p+,12,144,80,12,,,,, +406,4,1,14007,48,1905.895,,,,,,144,80,0,,,,, +406,5,1,14008,96,1905.895,32,32.0,A3,mp-,13,144,57,13,,,,, +406,5,1,14008,96,1906.029,,,,,,144,57,0,,,,, +406,6,1,14009,128,1906.029,25,32.0,D7,mp,14,144,98,14,,,,, +406,6,1,14009,128,1906.134,,,,,,144,98,0,,,,, +406,7,1,14010,153,1906.134,26,32.0,C8,mp+,15,144,108,15,,,,, +406,7,1,14010,153,1906.243,,,,,,144,108,0,,,,, +406,8,1,14011,179,1906.243,25,32.0,D7,mf-,16,144,98,16,,,,, +406,8,1,14011,179,1906.347,,,,,,144,98,0,,,,, +406,9,1,14012,204,1906.347,26,32.0,C8,mf-,16,144,108,16,,,,, +406,9,1,14012,204,1906.456,,,,,,144,108,0,,,,, +406,10,1,14013,230,1906.456,26,32.0,D7,mf,17,144,98,17,,,,, +406,10,1,14013,230,1906.565,,,,,,144,98,0,,,,, +406,11,0,14014,256,1906.565,,,,,,176,64,0,,,,,^ +406,12,1,14015,256,1906.565,48,32.0,C8,mf+,18,144,108,18,,,,, +406,12,1,14015,256,1906.766,,,,,,144,108,0,,,,, +406,13,1,14016,304,1906.766,48,32.0,D7,f-,19,144,98,19,,,,, +406,13,1,14016,304,1906.967,,,,,,144,98,0,,,,, +406,14,1,14017,352,1906.967,32,32.0,A2,f,20,144,45,20,,,,, +406,15,1,14018,352,1906.967,32,32.0,G#5,f,20,144,80,20,,,,, +406,16,1,14019,352,1906.967,32,32.0,E6,f,20,144,88,20,,,,, +406,14,1,14017,352,1907.101,,,,,,144,45,0,,,,, +406,15,1,14018,352,1907.101,,,,,,144,80,0,,,,, +406,16,1,14019,352,1907.101,,,,,,144,88,0,,,,, +406,17,1,14020,384,1907.101,,,,,,176,102,0,,,,, +406,18,1,14021,512,1907.636,128,8.0,E5,ppp,5,144,76,5,,,,, +406,19,3,14022,512,1907.636,128,8.0,G#1,ppp,5,144,32,5,,,,, +406,20,3,14023,512,1907.636,128,8.0,D#2,ppp,5,144,39,5,,,,, +406,18,1,14021,512,1908.172,,,,,,144,76,0,,,,, +406,19,3,14022,512,1908.172,,,,,,144,32,0,,,,, +406,20,3,14023,512,1908.172,,,,,,144,39,0,,,,, +406,22,1,14024,640,1908.172,,,,,,176,102,0,,,,, +406,23,3,14025,640,1908.172,32,32.0,C1,ppp,5,144,24,5,,,,, +406,21,0,14026,640,1908.172,,,,,,176,64,127,,,,,V +406,23,3,14025,640,1908.306,,,,,,144,24,0,,,,, +406,24,1,14027,672,1908.306,96,16.0,A3,ppp,5,144,57,5,,,,, +406,25,1,14028,672,1908.306,64,16.0,E4,ppp,5,144,64,5,,,,, +406,26,3,14029,672,1908.306,96,16.0,G#1,ppp,5,144,32,5,,,,, +406,27,3,14030,672,1908.306,64,16.0,D#2,ppp,5,144,39,5,,,,, +406,25,1,14028,672,1908.574,,,,,,144,64,0,,,,, +406,27,3,14030,672,1908.574,,,,,,144,39,0,,,,, +406,24,1,14027,672,1908.708,,,,,,144,57,0,,,,, +406,26,3,14029,672,1908.708,,,,,,144,32,0,,,,, +406,28,1,14031,768,1908.708,256,4.0,F4,ff,22,144,65,22,,,,, +406,29,3,14032,768,1908.708,,,,,,176,102,0,,,,, +406,28,1,14031,768,1909.779,,,,,,144,65,0,,,,, +406,30,1,14033,1024,1909.779,85,16.0,G6,ppp,5,144,91,5,,,,, +406,30,1,14033,1024,1910.135,,,,,,144,91,0,,,,, +406,31,1,14034,1109,1910.135,57,16.0,E5,ppp,5,144,76,5,,,,, +406,31,1,14034,1109,1910.374,,,,,,144,76,0,,,,, +406,32,1,14035,1166,1910.374,28,32.0,C6,ppp,5,144,84,5,,,,, +406,32,1,14035,1166,1910.491,,,,,,144,84,0,,,,, +406,33,1,14036,1194,1910.491,29,32.0,G#3,ppp,5,144,56,5,,,,, +406,33,1,14036,1194,1910.612,,,,,,144,56,0,,,,, +406,34,1,14037,1223,1910.612,28,32.0,C6,ppp,5,144,84,5,,,,, +406,34,1,14037,1223,1910.729,,,,,,144,84,0,,,,, +406,35,1,14038,1251,1910.729,29,32.0,G#3,ppp,5,144,56,5,,,,, +406,35,1,14038,1251,1910.851,,,,,,144,56,0,,,,, +407,0,0,14039,0,1910.851,,,,,,,,,407,,,, +407,1,1,14040,0,1910.851,56,16.0,C6,ppp,5,144,84,5,,,,, +407,2,3,14041,0,1910.851,,,,,,176,102,0,,,,, +407,1,1,14040,0,1911.085,,,,,,144,84,0,,,,, +407,3,1,14042,56,1911.085,29,32.0,C#3,ppp,5,144,49,5,,,,, +407,4,1,14043,56,1911.085,32,32.0,G#3,ppp,5,144,56,5,,,,, +407,3,1,14042,56,1911.206,,,,,,144,49,0,,,,, +407,5,1,14044,85,1911.206,,,,,,176,102,0,,,,, +407,4,1,14043,56,1911.219,,,,,,144,56,0,,,,, +407,6,3,14045,128,1911.386,25,32.0,E5,mp,14,144,76,14,,,,, +407,6,3,14045,128,1911.491,,,,,,144,76,0,,,,, +407,7,3,14046,153,1911.491,26,32.0,A2,mf-,16,144,45,16,,,,, +407,7,3,14046,153,1911.6,,,,,,144,45,0,,,,, +407,8,3,14047,179,1911.6,25,32.0,D6,mf+,18,144,86,18,,,,, +407,8,3,14047,179,1911.705,,,,,,144,86,0,,,,, +407,9,3,14048,204,1911.705,26,32.0,A2,f,20,144,45,20,,,,, +407,10,3,14049,204,1911.705,32,32.0,G#3,f,20,144,56,20,,,,, +407,9,3,14048,204,1911.813,,,,,,144,45,0,,,,, +407,11,3,14050,230,1911.813,26,32.0,D6,ff,22,144,86,22,,,,, +407,12,3,14051,230,1911.813,32,32.0,C7,ff,22,144,96,22,,,,, +407,10,3,14049,204,1911.838,,,,,,144,56,0,,,,, +407,11,3,14050,230,1911.922,,,,,,144,86,0,,,,, +407,13,1,14052,256,1911.922,,,,,,176,102,0,,,,, +407,14,3,14053,256,1911.922,256,4.0,A2,ff,22,144,45,22,,,,, +407,15,3,14054,256,1911.922,256,4.0,G#3,ff,22,144,56,22,,,,, +407,16,3,14055,256,1911.922,256,4.0,E4,ff,22,144,64,22,,,,, +407,12,3,14051,230,1911.947,,,,,,144,96,0,,,,, +407,14,3,14053,256,1912.994,,,,,,144,45,0,,,,, +407,15,3,14054,256,1912.994,,,,,,144,56,0,,,,, +407,16,3,14055,256,1912.994,,,,,,144,64,0,,,,, +407,17,1,14056,512,1912.994,,,,,,176,102,0,,,,, +407,18,3,14057,512,1912.994,,,,,,176,102,0,,,,, +407,19,1,14058,704,1913.797,64,16.0,A#3,ff,22,144,58,22,,,,, +407,20,1,14059,704,1913.797,64,16.0,F4,ff,22,144,65,22,,,,, +407,21,1,14060,768,1914.065,256,4.0,A#3,,,,,,,,,, +407,22,1,14061,768,1914.065,256,4.0,F4,,,,,,,,,, +407,23,3,14062,768,1914.065,256,4.0,E4,ff,22,144,64,22,,,,, +407,24,0,14063,1024,1914.986,,,,,,176,64,0,,,,,^ +407,19,1,14058,704,1915.136,,,,,,144,58,0,,,,, +407,20,1,14059,704,1915.136,,,,,,144,65,0,,,,, +407,26,1,14064,1024,1915.136,,,,,,176,102,0,,,,, +407,27,3,14065,1024,1915.136,128,8.0,E4,,,,,,,,,, +407,25,0,14066,1024,1915.286,,,,,,176,64,127,,,,,V +407,23,3,14062,768,1915.672,,,,,,144,64,0,,,,, +407,28,3,14067,1152,1915.672,21,32.0,G#3,ff,22,144,56,22,,,,, +407,29,3,14068,1152,1915.672,32,32.0,E4,ff,22,144,64,22,,,,, +407,28,3,14067,1152,1915.76,,,,,,144,56,0,,,,, +407,29,3,14068,1152,1915.76,,,,,,144,64,0,,,,, +407,30,3,14069,1173,1915.76,21,32.0,A1,ff,22,144,33,22,,,,, +407,31,3,14070,1173,1915.76,32,32.0,G#3,ff,22,144,56,22,,,,, +407,32,3,14071,1173,1915.76,32,32.0,E4,ff,22,144,64,22,,,,, +407,33,3,14072,1194,1915.848,86,8.0,A1,,,,,,,,,, +407,31,3,14070,1173,1915.894,,,,,,144,56,0,,,,, +407,32,3,14071,1173,1915.894,,,,,,144,64,0,,,,, +408,0,0,14073,0,1916.208,,,,,,,,,408,,,, +408,1,1,14074,0,1916.208,85,8.0,A#3,f,20,144,58,20,,,,, +408,2,1,14075,0,1916.208,128,8.0,F4,f,20,144,65,20,,,,, +408,3,3,14076,0,1916.208,85,8.0,A1,,,,,,,,,, +407,30,3,14069,1173,1916.564,,,,,,144,33,0,,,,, +408,1,1,14074,0,1916.564,,,,,,144,58,0,,,,, +408,4,1,14077,85,1916.564,21,32.0,C7,f,20,144,96,20,,,,, +408,5,3,14078,85,1916.564,43,16.0,A1,f,20,144,33,20,,,,, +408,4,1,14077,85,1916.652,,,,,,144,96,0,,,,, +408,6,0,14079,106,1916.652,,,,,,176,64,0,,,,,^ +408,7,1,14080,106,1916.652,22,32.0,D5,f,20,144,74,20,,,,, +408,2,1,14075,0,1916.744,,,,,,144,65,0,,,,, +408,5,3,14078,85,1916.744,,,,,,144,33,0,,,,, +408,7,1,14080,106,1916.744,,,,,,144,74,0,,,,, +408,8,1,14081,128,1916.744,,,,,,176,102,0,,,,, +408,9,3,14082,,1916.744,,8.0,A0,mf,17,144,21,17,,,,g, +408,9,3,14082,,1916.794,,,,,,144,21,0,,,,, +408,10,3,14083,,1916.819,,8.0,D4,mf-,16,144,62,16,,,,g, +408,10,3,14083,,1916.869,,,,,,144,62,0,,,,, +408,11,3,14084,128,1916.894,42,16.0,E2,mp,14,144,40,14,,,,, +408,12,0,14085,148,1916.977,,,,,,176,64,127,,,,,V +408,11,3,14084,128,1917.069,,,,,,144,40,0,,,,, +408,13,3,14086,170,1917.069,43,16.0,A0,p,11,144,21,11,,,,, +408,14,3,14087,170,1917.069,64,16.0,G#1,p,11,144,32,11,,,,, +408,13,3,14086,170,1917.249,,,,,,144,21,0,,,,, +408,14,3,14087,170,1917.249,,,,,,144,32,0,,,,, +408,15,1,14088,213,1917.249,43,16.0,D4,pp,8,144,62,8,,,,, +408,16,1,14089,213,1917.249,64,16.0,C5,pp,8,144,72,8,,,,, +408,17,3,14090,213,1917.249,43,16.0,A0,pp,8,144,21,8,,,,, +408,18,3,14091,213,1917.249,64,16.0,G#1,pp,8,144,32,8,,,,, +408,19,0,14092,256,1917.429,,,,,,176,64,0,,,,,^ +408,20,1,14093,256,1917.429,256,4.0,D4,,,,,,,,,, +408,21,1,14094,256,1917.429,256,4.0,C5,,,,,,,,,, +408,22,3,14095,256,1917.429,256,4.0,A0,,,,,,,,,, +408,23,3,14096,256,1917.429,256,4.0,G#1,,,,,,,,,, +408,24,0,14097,256,1917.429,,,,,,,,,,6060,,, +408,26,1,14098,,1918.426,,8.0,G5,pp,8,144,79,8,,,,g, +408,26,1,14098,,1918.476,,,,,,144,79,0,,,,, +408,27,1,14099,512,1918.501,512,2.0,C5,pp,8,144,72,8,,,,, +408,28,3,14100,512,1918.501,170,4.0,F2,ppp,5,144,41,5,,,,, +408,25,0,14101,512,1918.501,,,,,,176,64,127,,,,,V +408,15,1,14088,213,1918.651,,,,,,144,62,0,,,,, +408,17,3,14090,213,1918.651,,,,,,144,21,0,,,,, +408,16,1,14089,213,1918.739,,,,,,144,72,0,,,,, +408,18,3,14091,213,1918.739,,,,,,144,32,0,,,,, +408,28,3,14100,512,1919.212,,,,,,144,41,0,,,,, +408,29,3,14102,682,1919.212,86,8.0,F2,ppp,5,144,41,5,,,,, +408,30,3,14103,682,1919.212,128,8.0,C#3,ppp,5,144,49,5,,,,, +408,31,3,14104,768,1919.572,128,8.0,F2,,,,,,,,,, +408,32,3,14105,768,1919.572,128,8.0,C#3,,,,,,,,,, +408,33,3,14106,896,1920.108,128,8.0,C#2,pp,8,144,37,8,,,,, +408,29,3,14102,682,1920.108,,,,,,144,41,0,,,,, +408,30,3,14103,682,1920.284,,,,,,144,49,0,,,,, +408,33,3,14106,896,1920.644,,,,,,144,37,0,,,,, +408,34,1,14107,1024,1920.644,,,,,,176,102,0,,,,, +408,35,3,14108,1024,1920.644,,,,,,176,102,0,,,,, +408,27,1,14099,512,1920.644,,,,,,144,72,0,,,,, +408,36,1,14109,1109,1920.999,43,16.0,A#4,ff,22,144,70,22,,,,, +408,37,3,14110,1109,1920.999,43,16.0,F#2,ff,22,144,42,22,,,,, +408,38,3,14111,1109,1920.999,64,16.0,G3,ff,22,144,55,22,,,,, +408,36,1,14109,1109,1921.179,,,,,,144,70,0,,,,, +408,37,3,14110,1109,1921.179,,,,,,144,42,0,,,,, +408,40,1,14112,1152,1921.179,,,,,,176,102,0,,,,, +408,39,1,14113,,1921.179,,8.0,G5,pp,8,144,79,8,,,,g, +408,39,1,14113,,1921.229,,,,,,144,79,0,,,,, +408,41,3,14114,1152,1921.254,64,16.0,E3,pp,8,144,52,8,,,,, +408,38,3,14111,1109,1921.267,,,,,,144,55,0,,,,, +408,41,3,14114,1152,1921.522,,,,,,144,52,0,,,,, +408,42,3,14115,1216,1921.522,21,32.0,G#2,pp,8,144,44,8,,,,, +408,42,3,14115,1216,1921.61,,,,,,144,44,0,,,,, +408,43,1,14116,1237,1921.61,43,16.0,E6,mp,14,144,88,14,,,,, +408,44,3,14117,1237,1921.61,43,16.0,C3,mp,14,144,48,14,,,,, +408,43,1,14116,1237,1921.79,,,,,,144,88,0,,,,, +408,44,3,14117,1237,1921.79,,,,,,144,48,0,,,,, +409,0,0,14118,0,1921.79,,,,,,,,,409,,,, +409,1,1,14119,0,1921.79,64,16.0,F5,mp,14,144,77,14,,,,, +409,2,1,14120,0,1921.79,64,16.0,E6,mp,14,144,88,14,,,,, +409,3,3,14121,0,1921.79,32,32.0,A#3,mp,14,144,58,14,,,,, +409,3,3,14121,0,1921.924,,,,,,144,58,0,,,,, +409,4,3,14122,32,1921.924,32,32.0,E2,mp,14,144,40,14,,,,, +409,1,1,14119,0,1922.058,,,,,,144,77,0,,,,, +409,2,1,14120,0,1922.058,,,,,,144,88,0,,,,, +409,4,3,14122,32,1922.058,,,,,,144,40,0,,,,, +409,5,1,14123,64,1922.058,64,16.0,C#6,mp,14,144,85,14,,,,, +409,6,1,14124,64,1922.058,64,16.0,A6,mp,14,144,93,14,,,,, +409,7,3,14125,64,1922.058,32,32.0,E3,mp,14,144,52,14,,,,, +409,8,3,14126,64,1922.058,32,32.0,A#3,mp,14,144,58,14,,,,, +409,7,3,14125,64,1922.192,,,,,,144,52,0,,,,, +409,8,3,14126,64,1922.192,,,,,,144,58,0,,,,, +409,9,3,14127,96,1922.192,32,32.0,F4,mp,14,144,65,14,,,,, +409,5,1,14123,64,1922.326,,,,,,144,85,0,,,,, +409,6,1,14124,64,1922.326,,,,,,144,93,0,,,,, +409,9,3,14127,96,1922.326,,,,,,144,65,0,,,,, +409,10,1,14128,128,1922.326,,,,,,176,102,0,,,,, +409,11,3,14129,128,1922.326,,,,,,176,102,0,,,,, +409,12,1,14130,213,1922.681,43,16.0,A#4,mp,14,144,70,14,,,,, +409,12,1,14130,213,1922.861,,,,,,144,70,0,,,,, +409,13,1,14131,256,1922.861,85,8.0,A#3,fff,24,144,58,23,,,,, +409,14,1,14132,256,1922.861,128,8.0,F4,fff,24,144,65,23,,,,, +409,15,3,14133,256,1922.861,85,8.0,C2,fff,24,144,36,23,,,,, +409,16,0,14134,341,1923.067,,,,,,176,64,0,,,,,^ +409,13,1,14131,256,1923.217,,,,,,144,58,0,,,,, +409,15,3,14133,256,1923.217,,,,,,144,36,0,,,,, +409,18,1,14135,341,1923.217,128,8.0,A#4,fff,24,144,70,23,,,,, +409,19,3,14136,341,1923.217,128,8.0,F#2,fff,24,144,42,23,,,,, +409,20,3,14137,341,1923.217,128,8.0,G3,fff,24,144,55,23,,,,, +409,17,0,14138,341,1923.367,,,,,,176,64,127,,,,,V +409,14,1,14132,256,1923.397,,,,,,144,65,0,,,,, +409,18,1,14135,341,1923.753,,,,,,144,70,0,,,,, +409,19,3,14136,341,1923.753,,,,,,144,42,0,,,,, +409,20,3,14137,341,1923.753,,,,,,144,55,0,,,,, +409,21,1,14139,469,1923.753,21,32.0,A#3,fff,24,144,58,23,,,,, +409,22,1,14140,469,1923.753,32,32.0,F4,fff,24,144,65,23,,,,, +409,23,3,14141,469,1923.753,21,32.0,C2,fff,24,144,36,23,,,,, +409,21,1,14139,469,1923.841,,,,,,144,58,0,,,,, +409,23,3,14141,469,1923.841,,,,,,144,36,0,,,,, +409,24,1,14142,490,1923.841,,,,,,176,102,0,,,,, +409,25,3,14143,490,1923.841,,,,,,176,102,0,,,,, +409,22,1,14140,469,1923.887,,,,,,144,65,0,,,,, +409,26,0,14144,512,1923.917,,,,,,176,64,0,,,,,^ +409,27,1,14145,512,1923.933,113,8.0,A#3,f,20,144,58,20,,,,, +409,28,1,14146,512,1923.933,128,8.0,F4,f,20,144,65,20,,,,, +409,29,1,14147,512,1923.933,128,8.0,A#4,f,20,144,70,20,,,,, +409,30,3,14148,512,1923.933,128,8.0,C2,f,20,144,36,20,,,,, +409,31,3,14149,512,1923.933,128,8.0,F#2,f,20,144,42,20,,,,, +409,32,0,14150,576,1924.217,,,,,,176,64,127,,,,,V +409,27,1,14145,512,1924.406,,,,,,144,58,0,,,,, +409,33,1,14151,625,1924.406,,,,,,176,102,0,,,,, +409,28,1,14146,512,1924.469,,,,,,144,65,0,,,,, +409,29,1,14147,512,1924.469,,,,,,144,70,0,,,,, +409,30,3,14148,512,1924.469,,,,,,144,36,0,,,,, +409,31,3,14149,512,1924.469,,,,,,144,42,0,,,,, +409,34,3,14152,640,1924.469,,,,,,176,102,0,,,,, +409,35,1,14153,654,1924.527,28,32.0,F6,pp,8,144,89,8,,,,, +409,35,1,14153,654,1924.644,,,,,,144,89,0,,,,, +409,36,1,14154,682,1924.644,29,32.0,G#4,p,11,144,68,11,,,,, +409,36,1,14154,682,1924.766,,,,,,144,68,0,,,,, +409,37,1,14155,711,1924.766,28,32.0,A#5,p,11,144,82,11,,,,, +409,37,1,14155,711,1924.883,,,,,,144,82,0,,,,, +409,38,1,14156,739,1924.883,29,32.0,C5,pp,8,144,72,8,,,,, +409,38,1,14156,739,1925.004,,,,,,144,72,0,,,,, +409,39,1,14157,768,1925.004,28,32.0,G#3,pp,8,144,56,8,,,,, +409,40,3,14158,768,1925.004,170,4.0,G#2,pp,8,144,44,8,,,,, +409,41,3,14159,768,1925.004,256,4.0,E3,pp,8,144,52,8,,,,, +409,39,1,14157,768,1925.122,,,,,,144,56,0,,,,, +409,42,1,14160,796,1925.122,28,32.0,A#5,pp,8,144,82,8,,,,, +409,42,1,14160,796,1925.239,,,,,,144,82,0,,,,, +409,43,1,14161,824,1925.239,29,32.0,C5,pp,8,144,72,8,,,,, +409,43,1,14161,824,1925.36,,,,,,144,72,0,,,,, +409,44,1,14162,853,1925.36,43,32.0,G#3,pp,8,144,56,8,,,,, +409,44,1,14162,853,1925.54,,,,,,144,56,0,,,,, +409,45,1,14163,896,1925.54,42,32.0,C4,pp,8,144,60,8,,,,, +409,40,3,14158,768,1925.716,,,,,,144,44,0,,,,, +409,45,1,14163,896,1925.716,,,,,,144,60,0,,,,, +409,46,1,14164,938,1925.716,29,32.0,F5,pp,8,144,77,8,,,,, +409,47,3,14165,938,1925.716,86,8.0,C5,p,11,144,72,11,,,,, +409,48,3,14166,938,1925.716,128,8.0,G5,p,11,144,79,11,,,,, +409,46,1,14164,938,1925.837,,,,,,144,77,0,,,,, +409,49,1,14167,967,1925.837,28,32.0,G#2,pp,8,144,44,8,,,,, +409,49,1,14167,967,1925.954,,,,,,144,44,0,,,,, +409,50,1,14168,995,1925.954,29,32.0,A#5,pp,8,144,82,8,,,,, +409,41,3,14159,768,1926.076,,,,,,144,52,0,,,,, +409,47,3,14165,938,1926.076,,,,,,144,72,0,,,,, +409,50,1,14168,995,1926.076,,,,,,144,82,0,,,,, +409,51,1,14169,1024,1926.076,42,32.0,F6,pp,8,144,89,8,,,,, +409,52,3,14170,1024,1926.076,113,8.0,G#2,p,11,144,44,11,,,,, +409,53,3,14171,1024,1926.076,128,8.0,E3,p,11,144,52,11,,,,, +409,48,3,14166,938,1926.252,,,,,,144,79,0,,,,, +409,51,1,14169,1024,1926.252,,,,,,144,89,0,,,,, +409,54,1,14172,1066,1926.252,29,32.0,A#5,pp,8,144,82,8,,,,, +409,52,3,14170,1024,1926.373,,,,,,144,44,0,,,,, +409,54,1,14172,1066,1926.373,,,,,,144,82,0,,,,, +409,55,1,14173,1095,1926.373,28,32.0,G#2,pp,8,144,44,8,,,,, +409,56,1,14174,1123,1926.49,29,32.0,A#5,pp,8,144,82,8,,,,, +409,55,1,14173,1095,1926.549,,,,,,144,44,0,,,,, +409,57,3,14175,1137,1926.549,,,,,,176,102,0,,,,, +409,53,3,14171,1024,1926.611,,,,,,144,52,0,,,,, +409,56,1,14174,1123,1926.611,,,,,,144,82,0,,,,, +409,58,1,14176,1152,1926.611,28,32.0,C3,pp,8,144,48,8,,,,, +409,58,1,14176,1152,1926.729,,,,,,144,48,0,,,,, +409,59,1,14177,1180,1926.729,28,32.0,E7,pp,8,144,100,8,,,,, +409,59,1,14177,1180,1926.846,,,,,,144,100,0,,,,, +409,60,1,14178,1208,1926.846,43,32.0,A#5,pp,8,144,82,8,,,,, +409,60,1,14178,1208,1927.026,,,,,,144,82,0,,,,, +409,61,1,14179,1251,1927.026,29,32.0,E7,pp,8,144,100,8,,,,, +409,62,3,14180,1251,1927.026,29,32.0,C#2,p,11,144,37,11,,,,, +409,63,3,14181,1251,1927.026,32,32.0,G#2,p,11,144,44,11,,,,, +409,61,1,14179,1251,1927.147,,,,,,144,100,0,,,,, +409,62,3,14180,1251,1927.147,,,,,,144,37,0,,,,, +410,0,0,14182,0,1927.147,,,,,,,,,410,,,, +410,2,3,14183,,1927.147,,8.0,E5,fff,24,144,76,23,,,,g, +409,63,3,14181,1251,1927.16,,,,,,144,44,0,,,,, +410,2,3,14183,,1927.197,,,,,,144,76,0,,,,, +410,1,1,14184,0,1927.222,64,16.0,A#3,fff,24,144,58,23,,,,, +410,3,3,14185,0,1927.222,64,16.0,B1,fff,24,144,35,23,,,,, +410,4,3,14186,0,1927.222,64,16.0,D2,fff,24,144,38,23,,,,, +410,1,1,14184,0,1927.49,,,,,,144,58,0,,,,, +410,3,3,14185,0,1927.49,,,,,,144,35,0,,,,, +410,4,3,14186,0,1927.49,,,,,,144,38,0,,,,, +410,5,1,14187,64,1927.49,85,8.0,A#3,fff,24,144,58,23,,,,, +410,6,3,14188,64,1927.49,85,8.0,F#1,fff,24,144,30,23,,,,, +410,7,3,14189,64,1927.49,128,8.0,B1,fff,24,144,35,23,,,,, +410,8,3,14190,64,1927.49,128,8.0,D2,fff,24,144,38,23,,,,, +410,5,1,14187,64,1927.846,,,,,,144,58,0,,,,, +410,6,3,14188,64,1927.846,,,,,,144,30,0,,,,, +410,9,1,14191,149,1927.846,,,,,,176,102,0,,,,, +410,10,3,14192,149,1927.846,,,,,,176,102,0,,,,, +410,11,0,14193,149,1927.846,,,,,,,,,,6061,,, +410,12,0,14194,170,1927.934,,,,,,176,64,0,,,,,^ +410,13,1,14195,170,1927.934,86,8.0,A#3,ff,22,144,58,22,,,,, +410,14,1,14196,170,1927.934,128,8.0,F4,ff,22,144,65,22,,,,, +410,15,1,14197,170,1927.934,128,8.0,A#4,ff,22,144,70,22,,,,, +410,16,3,14198,170,1927.934,86,8.0,C2,ff,22,144,36,22,,,,, +410,17,3,14199,170,1927.934,128,8.0,F#2,ff,22,144,42,22,,,,, +410,13,1,14195,170,1927.984,,,,,,144,58,0,,,,, +410,14,1,14196,170,1927.984,,,,,,144,65,0,,,,, +410,15,1,14197,170,1927.984,,,,,,144,70,0,,,,, +410,16,3,14198,170,1927.984,,,,,,144,36,0,,,,, +410,17,3,14199,170,1927.984,,,,,,144,42,0,,,,, +410,7,3,14189,64,1928.026,,,,,,144,35,0,,,,, +410,8,3,14190,64,1928.026,,,,,,144,38,0,,,,, +410,19,1,14200,256,1928.294,64,16.0,B5,pp,8,144,83,8,,,,, +410,20,3,14201,256,1928.294,,,,,,176,102,0,,,,, +410,18,0,14202,256,1928.294,,,,,,176,64,127,,,,,V +410,19,1,14200,256,1928.561,,,,,,144,83,0,,,,, +410,21,1,14203,320,1928.561,42,16.0,A1,p-,10,144,33,10,,,,, +410,21,1,14203,320,1928.737,,,,,,144,33,0,,,,, +410,22,1,14204,362,1928.737,22,32.0,G2,p,11,144,43,11,,,,, +410,22,1,14204,362,1928.829,,,,,,144,43,0,,,,, +410,23,1,14205,384,1928.829,64,16.0,D#5,p+,12,144,75,12,,,,, +410,24,0,14206,448,1929.081,,,,,,176,64,0,,,,,^ +410,23,1,14205,384,1929.097,,,,,,144,75,0,,,,, +410,25,1,14207,448,1929.097,64,16.0,B5,mp-,13,144,83,13,,,,, +410,26,3,14208,448,1929.097,64,16.0,F#1,ff,22,144,30,22,,,,, +410,27,3,14209,448,1929.097,64,16.0,B1,ff,22,144,35,22,,,,, +410,28,3,14210,448,1929.097,64,16.0,D2,ff,22,144,38,22,,,,, +410,25,1,14207,448,1929.365,,,,,,144,83,0,,,,, +410,26,3,14208,448,1929.365,,,,,,144,30,0,,,,, +410,27,3,14209,448,1929.365,,,,,,144,35,0,,,,, +410,28,3,14210,448,1929.365,,,,,,144,38,0,,,,, +410,30,1,14211,512,1929.365,21,32.0,A1,mp+,15,144,33,15,,,,, +410,31,3,14212,512,1929.365,,,,,,176,102,0,,,,, +410,29,0,14213,512,1929.381,,,,,,176,64,127,,,,,V +410,30,1,14211,512,1929.453,,,,,,144,33,0,,,,, +410,32,1,14214,533,1929.453,21,32.0,G2,mf-,16,144,43,16,,,,, +410,32,1,14214,533,1929.541,,,,,,144,43,0,,,,, +410,33,1,14215,554,1929.541,22,32.0,D#5,mf-,16,144,75,16,,,,, +410,33,1,14215,554,1929.633,,,,,,144,75,0,,,,, +410,34,1,14216,576,1929.633,21,32.0,E6,mf,17,144,88,17,,,,, +410,35,3,14217,576,1929.633,21,32.0,A1,mp,14,144,33,14,,,,, +410,36,3,14218,576,1929.633,32,32.0,G2,mp,14,144,43,14,,,,, +410,34,1,14216,576,1929.721,,,,,,144,88,0,,,,, +410,35,3,14217,576,1929.721,,,,,,144,33,0,,,,, +410,37,1,14219,597,1929.721,32,32.0,D#5,mf,17,144,75,17,,,,, +410,38,3,14220,597,1929.721,,,,,,176,102,0,,,,, +410,36,3,14218,576,1929.767,,,,,,144,43,0,,,,, +410,37,1,14219,597,1929.855,,,,,,144,75,0,,,,, +410,39,1,14221,629,1929.855,32,32.0,B5,mf+,18,144,83,18,,,,, +410,39,1,14221,629,1929.989,,,,,,144,83,0,,,,, +410,40,1,14222,661,1929.989,32,32.0,A1,f-,19,144,33,19,,,,, +410,40,1,14222,661,1930.123,,,,,,144,33,0,,,,, +410,41,1,14223,693,1930.123,32,32.0,E6,f,20,144,88,20,,,,, +410,41,1,14223,693,1930.256,,,,,,144,88,0,,,,, +410,42,1,14224,725,1930.256,43,16.0,G2,f,20,144,43,20,,,,, +410,43,3,14225,725,1930.256,43,16.0,C2,ff,22,144,36,22,,,,, +410,44,3,14226,725,1930.256,64,16.0,F#2,ff,22,144,42,22,,,,, +410,45,3,14227,725,1930.256,64,16.0,B3,ff,22,144,59,22,,,,, +410,46,3,14228,725,1930.256,64,16.0,F4,ff,22,144,65,22,,,,, +410,47,3,14229,725,1930.256,64,16.0,A#4,ff,22,144,70,22,,,,, +410,48,0,14230,746,1930.344,,,,,,176,64,0,,,,,^ +410,42,1,14224,725,1930.436,,,,,,144,43,0,,,,, +410,43,3,14225,725,1930.436,,,,,,144,36,0,,,,, +410,49,1,14231,768,1930.436,,,,,,176,102,0,,,,, +410,50,3,14232,768,1930.436,384,4.0,F#1,mf,17,144,30,17,,,,, +410,51,3,14233,768,1930.436,256,4.0,B1,mf,17,144,35,17,,,,, +410,52,3,14234,768,1930.436,256,4.0,D2,mf,17,144,38,17,,,,, +410,53,3,14235,768,1930.436,256,4.0,A#3,mf,17,144,58,17,,,,, +410,44,3,14226,725,1930.524,,,,,,144,42,0,,,,, +410,45,3,14227,725,1930.524,,,,,,144,59,0,,,,, +410,46,3,14228,725,1930.524,,,,,,144,65,0,,,,, +410,47,3,14229,725,1930.524,,,,,,144,70,0,,,,, +410,53,3,14235,768,1931.148,,,,,,144,58,0,,,,, +410,54,1,14236,938,1931.148,86,8.0,C2,ff,22,144,36,22,,,,, +410,55,1,14237,938,1931.148,128,8.0,F#2,ff,22,144,42,22,,,,, +410,56,1,14238,938,1931.148,128,8.0,A#3,ff,22,144,58,22,,,,, +410,57,1,14239,938,1931.148,128,8.0,F4,ff,22,144,65,22,,,,, +410,58,1,14240,938,1931.148,128,8.0,A#4,ff,22,144,70,22,,,,, +410,54,1,14236,938,1931.508,,,,,,144,36,0,,,,, +410,59,1,14241,1024,1931.508,,,,,,176,102,0,,,,, +410,51,3,14233,768,1931.583,,,,,,144,35,0,,,,, +410,52,3,14234,768,1931.583,,,,,,144,38,0,,,,, +410,55,1,14237,938,1931.684,,,,,,144,42,0,,,,, +410,56,1,14238,938,1931.684,,,,,,144,58,0,,,,, +410,57,1,14239,938,1931.684,,,,,,144,65,0,,,,, +410,58,1,14240,938,1931.684,,,,,,144,70,0,,,,, +410,50,3,14232,768,1932.044,,,,,,144,30,0,,,,, +410,60,3,14242,1152,1932.044,128,8.0,F#1,p,11,144,30,11,,,,, +410,61,3,14243,1152,1932.044,128,8.0,B1,p,11,144,35,11,,,,, +410,62,3,14244,1152,1932.044,128,8.0,D2,p,11,144,38,11,,,,, +410,63,3,14245,1152,1932.044,128,8.0,A#3,p,11,144,58,11,,,,, +411,0,0,14246,0,1932.579,,,,,,,,,411,,,, +411,1,1,14247,0,1932.579,,,,,,176,102,0,,,,, +411,2,3,14248,0,1932.579,128,8.0,F#1,,,,,,,,,, +411,3,3,14249,0,1932.579,128,8.0,B1,,,,,,,,,, +411,4,3,14250,0,1932.579,128,8.0,D2,,,,,,,,,, +411,5,3,14251,0,1932.579,128,8.0,A#3,,,,,,,,,, +411,6,3,14252,128,1933.115,128,8.0,F#1,p-,10,144,30,10,,,,, +411,7,3,14253,128,1933.115,128,8.0,B1,p-,10,144,35,10,,,,, +411,8,3,14254,128,1933.115,128,8.0,D2,p-,10,144,38,10,,,,, +411,9,3,14255,128,1933.115,128,8.0,A#3,p-,10,144,58,10,,,,, +411,10,0,14256,128,1933.115,,,,,,,,,,6062,,, +410,60,3,14242,1152,1933.115,,,,,,144,30,0,,,,, +410,61,3,14243,1152,1933.115,,,,,,144,35,0,,,,, +410,62,3,14244,1152,1933.115,,,,,,144,38,0,,,,, +410,63,3,14245,1152,1933.115,,,,,,144,58,0,,,,, +411,6,3,14252,128,1933.651,,,,,,144,30,0,,,,, +411,7,3,14253,128,1933.651,,,,,,144,35,0,,,,, +411,8,3,14254,128,1933.651,,,,,,144,38,0,,,,, +411,9,3,14255,128,1933.651,,,,,,144,58,0,,,,, +411,12,3,14257,256,1933.651,28,32.0,G#1,pp,8,144,32,8,,,,, +411,11,0,14258,256,1933.651,,,,,,176,64,127,,,,,V +411,12,3,14257,256,1933.768,,,,,,144,32,0,,,,, +411,13,3,14259,284,1933.768,28,32.0,F3,pp,8,144,53,8,,,,, +411,13,3,14259,284,1933.885,,,,,,144,53,0,,,,, +411,14,3,14260,312,1933.885,29,32.0,C2,pp+,9,144,36,9,,,,, +411,14,3,14260,312,1934.006,,,,,,144,36,0,,,,, +411,15,3,14261,341,1934.006,28,32.0,G#1,pp+,9,144,32,9,,,,, +411,15,3,14261,341,1934.124,,,,,,144,32,0,,,,, +411,16,3,14262,369,1934.124,29,32.0,F3,p-,10,144,53,10,,,,, +411,16,3,14262,369,1934.245,,,,,,144,53,0,,,,, +411,17,3,14263,398,1934.245,28,32.0,C2,p-,10,144,36,10,,,,, +411,17,3,14263,398,1934.362,,,,,,144,36,0,,,,, +411,18,3,14264,426,1934.362,43,32.0,G#1,p,11,144,32,11,,,,, +411,18,3,14264,426,1934.542,,,,,,144,32,0,,,,, +411,19,3,14265,469,1934.542,43,32.0,C2,p,11,144,36,11,,,,, +411,19,3,14265,469,1934.722,,,,,,144,36,0,,,,, +411,20,3,14266,512,1934.722,28,32.0,F3,p+,12,144,53,12,,,,, +411,20,3,14266,512,1934.839,,,,,,144,53,0,,,,, +411,21,3,14267,540,1934.839,28,32.0,C2,p+,12,144,36,12,,,,, +411,22,0,14268,568,1934.867,,,,,,176,64,0,,,,,^ +411,21,3,14267,540,1934.957,,,,,,144,36,0,,,,, +411,23,3,14269,568,1934.957,29,32.0,F4,mp-,13,144,65,13,,,,, +411,23,3,14269,568,1935.078,,,,,,144,65,0,,,,, +411,24,3,14270,597,1935.078,43,32.0,G#1,mp-,13,144,32,13,,,,, +411,25,0,14271,597,1935.167,,,,,,176,64,127,,,,,V +411,24,3,14270,597,1935.258,,,,,,144,32,0,,,,, +411,26,3,14272,640,1935.258,42,32.0,C2,mp,14,144,36,14,,,,, +411,26,3,14272,640,1935.434,,,,,,144,36,0,,,,, +411,27,3,14273,682,1935.434,86,16.0,F4,mp,14,144,65,14,,,,, +411,27,3,14273,682,1935.794,,,,,,144,65,0,,,,, +411,28,3,14274,768,1935.794,85,8.0,A#2,mp,14,144,46,14,,,,, +411,29,1,14275,768,1935.794,384,4.0,D#3,f,20,144,51,20,,,,, +411,28,3,14274,768,1936.149,,,,,,144,46,0,,,,, +411,30,3,14276,853,1936.149,85,8.0,E5,mp,14,144,76,14,,,,, +411,30,3,14276,853,1936.505,,,,,,144,76,0,,,,, +411,31,3,14277,938,1936.505,,,,,,176,102,0,,,,, +411,,,14278,1024,1936.715,,,,,,176,64,0,,,,,^ +411,32,3,14279,1024,1936.865,,,,,,176,102,0,,,,, +411,33,0,14280,1024,1937.015,,,,,,176,64,127,,,,,V +411,34,3,14281,1066,1937.041,22,32.0,B3,mp,14,144,59,14,,,,, +411,34,3,14281,1066,1937.133,,,,,,144,59,0,,,,, +411,35,3,14282,1088,1937.133,21,32.0,E6,mp,14,144,88,14,,,,, +411,35,3,14282,1088,1937.221,,,,,,144,88,0,,,,, +411,36,3,14283,1109,1937.221,21,32.0,B2,mp-,13,144,47,13,,,,, +411,36,3,14283,1109,1937.309,,,,,,144,47,0,,,,, +411,37,3,14284,1130,1937.309,22,32.0,E7,mp-,13,144,100,13,,,,, +411,37,3,14284,1130,1937.401,,,,,,144,100,0,,,,, +411,38,3,14285,1152,1937.401,32,32.0,B3,p+,12,144,59,12,,,,, +411,39,1,14286,1152,1937.401,,,,,,176,102,0,,,,, +411,29,1,14275,768,1937.401,,,,,,144,51,0,,,,, +411,38,3,14285,1152,1937.535,,,,,,144,59,0,,,,, +411,40,3,14287,1184,1937.535,32,32.0,A#5,p+,12,144,82,12,,,,, +411,40,3,14287,1184,1937.669,,,,,,144,82,0,,,,, +411,41,3,14288,1216,1937.669,21,32.0,F#2,p,11,144,42,11,,,,, +411,42,3,14289,1216,1937.669,32,32.0,B2,p,11,144,47,11,,,,, +411,41,3,14288,1216,1937.756,,,,,,144,42,0,,,,, +411,43,3,14290,1237,1937.756,43,16.0,D3,p,11,144,50,11,,,,, +411,42,3,14289,1216,1937.803,,,,,,144,47,0,,,,, +411,43,3,14290,1237,1937.936,,,,,,144,50,0,,,,, +412,0,0,14291,0,1937.936,,,,,,,,,412,,,, +412,1,1,14292,0,1937.936,,,,,,176,102,0,,,,, +412,2,3,14293,0,1937.936,32,32.0,F#2,p-,10,144,42,10,,,,, +412,2,3,14293,0,1938.07,,,,,,144,42,0,,,,, +412,3,1,14294,32,1938.07,64,16.0,A#5,p-,10,144,82,10,,,,, +412,4,3,14295,32,1938.07,32,32.0,B2,p-,10,144,47,10,,,,, +412,4,3,14295,32,1938.204,,,,,,144,47,0,,,,, +412,5,3,14296,64,1938.204,32,32.0,F#2,pp+,9,144,42,9,,,,, +412,6,3,14297,64,1938.204,32,32.0,D3,pp+,9,144,50,9,,,,, +412,3,1,14294,32,1938.338,,,,,,144,82,0,,,,, +412,5,3,14296,64,1938.338,,,,,,144,42,0,,,,, +412,6,3,14297,64,1938.338,,,,,,144,50,0,,,,, +412,7,1,14298,96,1938.338,32,32.0,E6,pp+,9,144,88,9,,,,, +412,8,3,14299,96,1938.338,32,32.0,B2,pp+,9,144,47,9,,,,, +412,7,1,14298,96,1938.472,,,,,,144,88,0,,,,, +412,8,3,14299,96,1938.472,,,,,,144,47,0,,,,, +412,9,1,14300,128,1938.472,,,,,,176,102,0,,,,, +412,10,3,14301,128,1938.472,42,16.0,F#2,pp,8,144,42,8,,,,, +412,11,3,14302,128,1938.472,64,16.0,D3,pp,8,144,50,8,,,,, +412,10,3,14301,128,1938.648,,,,,,144,42,0,,,,, +412,12,1,14303,170,1938.648,86,8.0,A#5,pp,8,144,82,8,,,,, +412,13,1,14304,170,1938.648,128,8.0,E6,pp,8,144,88,8,,,,, +412,14,3,14305,170,1938.648,43,16.0,B2,pp,8,144,47,8,,,,, +412,11,3,14302,128,1938.74,,,,,,144,50,0,,,,, +412,14,3,14305,170,1938.828,,,,,,144,47,0,,,,, +412,15,3,14306,213,1938.828,43,16.0,F#2,pp,8,144,42,8,,,,, +412,16,3,14307,213,1938.828,64,16.0,B2,pp,8,144,47,8,,,,, +412,17,3,14308,213,1938.828,64,16.0,D3,pp,8,144,50,8,,,,, +412,12,1,14303,170,1939.008,,,,,,144,82,0,,,,, +412,15,3,14306,213,1939.008,,,,,,144,42,0,,,,, +412,18,1,14309,256,1939.008,,,,,,176,102,0,,,,, +412,19,3,14310,256,1939.008,,,,,,176,102,0,,,,, +412,16,3,14307,213,1939.096,,,,,,144,47,0,,,,, +412,17,3,14308,213,1939.096,,,,,,144,50,0,,,,, +412,13,1,14304,170,1939.184,,,,,,144,88,0,,,,, +412,20,1,14311,426,1939.719,86,8.0,A#5,pp,8,144,82,8,,,,, +412,21,1,14312,426,1939.719,128,8.0,E6,pp,8,144,88,8,,,,, +412,22,3,14313,426,1939.719,86,8.0,F#2,pp,8,144,42,8,,,,, +412,23,3,14314,426,1939.719,128,8.0,B2,pp,8,144,47,8,,,,, +412,24,3,14315,426,1939.719,128,8.0,D3,pp,8,144,50,8,,,,, +412,20,1,14311,426,1940.079,,,,,,144,82,0,,,,, +412,22,3,14313,426,1940.079,,,,,,144,42,0,,,,, +412,25,1,14316,512,1940.079,,,,,,176,102,0,,,,, +412,26,3,14317,512,1940.079,,,,,,176,102,0,,,,, +412,21,1,14312,426,1940.255,,,,,,144,88,0,,,,, +412,23,3,14314,426,1940.255,,,,,,144,47,0,,,,, +412,24,3,14315,426,1940.255,,,,,,144,50,0,,,,, +412,27,1,14318,597,1940.435,85,8.0,A#4,pp,8,144,70,8,,,,, +412,28,1,14319,597,1940.435,128,8.0,E5,pp,8,144,76,8,,,,, +412,29,3,14320,597,1940.435,85,8.0,F#2,pp,8,144,42,8,,,,, +412,30,3,14321,597,1940.435,128,8.0,B2,pp,8,144,47,8,,,,, +412,31,3,14322,597,1940.435,128,8.0,D3,pp,8,144,50,8,,,,, +412,27,1,14318,597,1940.791,,,,,,144,70,0,,,,, +412,29,3,14320,597,1940.791,,,,,,144,42,0,,,,, +412,32,0,14323,682,1940.791,,,,,,176,64,0,,,,,^ +412,33,1,14324,682,1940.791,86,8.0,B4,f,20,144,71,20,,,,, +412,34,3,14325,682,1940.791,86,8.0,D#3,f,20,144,51,20,,,,, +412,28,1,14319,597,1940.971,,,,,,144,76,0,,,,, +412,30,3,14321,597,1940.971,,,,,,144,47,0,,,,, +412,31,3,14322,597,1940.971,,,,,,144,50,0,,,,, +412,36,1,14326,768,1941.151,85,8.0,A#3,ff,22,144,58,22,,,,, +412,37,1,14327,768,1941.151,128,8.0,F4,ff,22,144,65,22,,,,, +412,38,1,14328,768,1941.151,128,8.0,G#4,ff,22,144,68,22,,,,, +412,39,1,14329,768,1941.151,128,8.0,B4,,,,,,,,,, +412,40,3,14330,768,1941.151,85,8.0,C2,ff,22,144,36,22,,,,, +412,41,3,14331,768,1941.151,128,8.0,D#3,,,,,,,,,, +412,35,0,14332,768,1941.151,,,,,,176,64,127,,,,,V +412,36,1,14326,768,1941.506,,,,,,144,58,0,,,,, +412,40,3,14330,768,1941.506,,,,,,144,36,0,,,,, +412,42,1,14333,853,1941.506,85,8.0,B4,f,20,144,71,20,,,,, +412,43,3,14334,853,1941.506,85,8.0,A0,f,20,144,21,20,,,,, +412,37,1,14327,768,1941.686,,,,,,144,65,0,,,,, +412,38,1,14328,768,1941.686,,,,,,144,68,0,,,,, +412,33,1,14324,682,1941.686,,,,,,144,71,0,,,,, +412,34,3,14325,682,1941.686,,,,,,144,51,0,,,,, +412,42,1,14333,853,1941.862,,,,,,144,71,0,,,,, +412,43,3,14334,853,1941.862,,,,,,144,21,0,,,,, +412,44,1,14335,938,1941.862,22,32.0,E6,f,20,144,88,20,,,,, +412,45,3,14336,938,1941.862,22,32.0,A0,f,20,144,21,20,,,,, +412,44,1,14335,938,1941.954,,,,,,144,88,0,,,,, +412,45,3,14336,938,1941.954,,,,,,144,21,0,,,,, +412,46,1,14337,960,1941.954,64,16.0,E6,f,20,144,88,20,,,,, +412,47,3,14338,960,1941.954,64,16.0,A0,f,20,144,21,20,,,,, +412,48,3,14339,960,1941.954,64,16.0,G1,f,20,144,31,20,,,,, +412,46,1,14337,960,1942.222,,,,,,144,88,0,,,,, +412,47,3,14338,960,1942.222,,,,,,144,21,0,,,,, +412,48,3,14339,960,1942.222,,,,,,144,31,0,,,,, +412,49,1,14340,1024,1942.222,85,8.0,A#3,ff,22,144,58,22,,,,, +412,50,1,14341,1024,1942.222,128,8.0,F4,ff,22,144,65,22,,,,, +412,51,1,14342,1024,1942.222,128,8.0,G#4,ff,22,144,68,22,,,,, +412,52,3,14343,1024,1942.222,85,8.0,C2,ff,22,144,36,22,,,,, +412,49,1,14340,1024,1942.578,,,,,,144,58,0,,,,, +412,52,3,14343,1024,1942.578,,,,,,144,36,0,,,,, +412,53,1,14344,1109,1942.578,128,8.0,E7,ff,22,144,100,22,,,,, +412,54,3,14345,1109,1942.578,,,,,,176,102,0,,,,, +412,50,1,14341,1024,1942.758,,,,,,144,65,0,,,,, +412,51,1,14342,1024,1942.758,,,,,,144,68,0,,,,, +412,53,1,14344,1109,1943.114,,,,,,144,100,0,,,,, +412,55,0,14346,1237,1943.114,,,,,,176,64,0,,,,,^ +412,56,1,14347,1237,1943.114,43,16.0,A#4,pp,8,144,70,8,,,,, +412,57,1,14348,1237,1943.114,64,16.0,E5,pp,8,144,76,8,,,,, +412,58,3,14349,1237,1943.114,43,16.0,F#2,pp,8,144,42,8,,,,, +412,59,3,14350,1237,1943.114,64,16.0,B2,pp,8,144,47,8,,,,, +412,60,3,14351,1237,1943.114,64,16.0,D3,pp,8,144,50,8,,,,, +412,56,1,14347,1237,1943.294,,,,,,144,70,0,,,,, +412,58,3,14349,1237,1943.294,,,,,,144,42,0,,,,, +413,0,0,14352,0,1943.294,,,,,,,,,413,,,, +413,1,1,14353,0,1943.294,128,8.0,B4,pp,8,144,71,8,,,,, +413,2,3,14354,0,1943.294,,,,,,176,102,0,,,,, +412,57,1,14348,1237,1943.381,,,,,,144,76,0,,,,, +412,59,3,14350,1237,1943.381,,,,,,144,47,0,,,,, +412,60,3,14351,1237,1943.381,,,,,,144,50,0,,,,, +413,1,1,14353,0,1943.829,,,,,,144,71,0,,,,, +413,3,1,14355,128,1943.829,128,8.0,B6,ff,22,144,95,22,,,,, +413,4,3,14356,128,1943.829,128,8.0,A2,ff,22,144,45,22,,,,, +413,5,3,14357,128,1943.829,128,8.0,F3,ff,22,144,53,22,,,,, +413,3,1,14355,128,1944.365,,,,,,144,95,0,,,,, +413,4,3,14356,128,1944.365,,,,,,144,45,0,,,,, +413,5,3,14357,128,1944.365,,,,,,144,53,0,,,,, +413,6,1,14358,256,1944.365,,,,,,176,102,0,,,,, +413,7,3,14359,,1944.365,,8.0,D#3,f,20,144,51,20,,,,g, +413,7,3,14359,,1944.415,,,,,,144,51,0,,,,, +413,8,3,14360,,1944.44,,8.0,E6,f-,19,144,88,19,,,,g, +413,8,3,14360,,1944.49,,,,,,144,88,0,,,,, +413,9,3,14361,256,1944.515,76,16.0,D#3,f-,19,144,51,19,,,,, +413,10,3,14362,256,1944.515,64,16.0,B3,f-,19,144,59,19,,,,, +413,10,3,14362,256,1944.783,,,,,,144,59,0,,,,, +413,9,3,14361,256,1944.833,,,,,,144,51,0,,,,, +413,12,3,14363,332,1944.833,52,16.0,D#3,mf,17,144,51,17,,,,, +413,11,0,14364,332,1944.833,,,,,,176,64,127,,,,,V +413,12,3,14363,332,1945.051,,,,,,144,51,0,,,,, +413,13,1,14365,384,1945.051,85,8.0,B4,mp+,15,144,71,15,,,,, +413,14,3,14366,384,1945.051,,,,,,176,102,0,,,,, +413,15,3,14367,426,1945.227,43,16.0,A1,mp,14,144,33,14,,,,, +413,13,1,14365,384,1945.406,,,,,,144,71,0,,,,, +413,15,3,14367,426,1945.406,,,,,,144,33,0,,,,, +413,16,1,14368,469,1945.406,43,16.0,E5,mp-,13,144,76,13,,,,, +413,17,3,14369,469,1945.406,43,16.0,A0,mp-,13,144,21,13,,,,, +413,16,1,14368,469,1945.586,,,,,,144,76,0,,,,, +413,17,3,14369,469,1945.586,,,,,,144,21,0,,,,, +413,18,1,14370,512,1945.586,85,8.0,B4,p+,12,144,71,12,,,,, +413,19,3,14371,512,1945.586,,,,,,176,102,0,,,,, +413,20,3,14372,554,1945.762,22,32.0,A1,p-,10,144,33,10,,,,, +413,20,3,14372,554,1945.854,,,,,,144,33,0,,,,, +413,21,3,14373,576,1945.854,21,32.0,G2,p-,10,144,43,10,,,,, +413,18,1,14370,512,1945.942,,,,,,144,71,0,,,,, +413,21,3,14373,576,1945.942,,,,,,144,43,0,,,,, +413,22,1,14374,597,1945.942,,,,,,176,102,0,,,,, +413,23,3,14375,597,1945.942,43,16.0,A1,pp+,9,144,33,9,,,,, +413,23,3,14375,597,1946.122,,,,,,144,33,0,,,,, +413,24,0,14376,640,1946.122,,,,,,176,64,0,,,,,^ +413,25,1,14377,640,1946.122,42,16.0,E5,pp,8,144,76,8,,,,, +413,26,3,14378,640,1946.122,42,16.0,A1,pp,8,144,33,8,,,,, +413,25,1,14377,640,1946.298,,,,,,144,76,0,,,,, +413,26,3,14378,640,1946.298,,,,,,144,33,0,,,,, +413,27,1,14379,682,1946.298,,,,,,176,102,0,,,,, +413,28,3,14380,682,1946.298,43,16.0,G2,pp,8,144,43,8,,,,, +413,28,3,14380,682,1946.478,,,,,,144,43,0,,,,, +413,29,3,14381,725,1946.478,,,,,,176,102,0,,,,, +413,30,1,14382,768,1946.658,,,,,,176,102,0,,,,, +413,31,3,14383,768,1946.658,,,,,,176,102,0,,,,, +413,32,0,14384,768,1946.658,,,,,,,,,,6063,,, +413,34,3,14385,881,1947.131,,,,,,176,102,0,,,,, +413,33,0,14386,881,1947.131,,,,,,176,64,127,,,,,V +413,35,3,14387,910,1947.252,28,32.0,F5,pp,8,144,77,8,,,,, +413,35,3,14387,910,1947.369,,,,,,144,77,0,,,,, +413,36,3,14388,938,1947.369,29,32.0,G#2,pp,8,144,44,8,,,,, +413,36,3,14388,938,1947.491,,,,,,144,44,0,,,,, +413,37,3,14389,967,1947.491,28,32.0,C3,pp,8,144,48,8,,,,, +413,37,3,14389,967,1947.608,,,,,,144,48,0,,,,, +413,38,3,14390,995,1947.608,29,32.0,F6,pp,8,144,89,8,,,,, +413,38,3,14390,995,1947.729,,,,,,144,89,0,,,,, +413,39,1,14391,1024,1947.729,,,,,,176,102,0,,,,, +413,40,3,14392,1024,1947.729,,,,,,176,102,0,,,,, +414,0,0,14393,0,1948.801,,,,,,,,,414,,,, +414,1,1,14394,0,1948.801,85,8.0,B4,pp,8,144,71,8,,,,, +414,2,3,14395,0,1948.801,170,4.0,D#4,f,20,144,63,20,,,,, +414,1,1,14394,0,1949.156,,,,,,144,71,0,,,,, +414,3,1,14396,85,1949.156,85,8.0,D6,pp,8,144,86,8,,,,, +414,2,3,14395,0,1949.512,,,,,,144,63,0,,,,, +414,3,1,14396,85,1949.512,,,,,,144,86,0,,,,, +414,4,1,14397,170,1949.512,86,8.0,D6,fff,24,144,86,23,,,,, +414,5,3,14398,170,1949.512,43,16.0,A#4,fff,24,144,70,23,,,,, +414,5,3,14398,170,1949.692,,,,,,144,70,0,,,,, +414,6,3,14399,213,1949.692,43,16.0,F#2,fff,24,144,42,23,,,,, +414,7,3,14400,213,1949.692,64,16.0,C3,fff,24,144,48,23,,,,, +414,8,3,14401,213,1949.692,64,16.0,G3,fff,24,144,55,23,,,,, +414,9,0,14402,255,1949.818,,,,,,176,64,0,,,,,^ +414,4,1,14397,170,1949.872,,,,,,144,86,0,,,,, +414,6,3,14399,213,1949.872,,,,,,144,42,0,,,,, +414,10,1,14403,256,1949.872,,,,,,176,102,0,,,,, +414,11,3,14404,256,1949.872,128,8.0,D#4,mf,17,144,63,17,,,,, +414,7,3,14400,213,1949.96,,,,,,144,48,0,,,,, +414,8,3,14401,213,1949.96,,,,,,144,55,0,,,,, +414,12,0,14405,303,1950.118,,,,,,176,64,127,,,,,V +414,11,3,14404,256,1950.408,,,,,,144,63,0,,,,, +414,13,3,14406,384,1950.408,42,16.0,D#4,mf,17,144,63,17,,,,, +414,13,3,14406,384,1950.584,,,,,,144,63,0,,,,, +414,14,3,14407,426,1950.584,64,16.0,B5,mf-,16,144,83,16,,,,, +414,14,3,14407,426,1950.852,,,,,,144,83,0,,,,, +414,15,3,14408,490,1950.852,22,32.0,E6,mp,14,144,88,14,,,,, +414,15,3,14408,490,1950.944,,,,,,144,88,0,,,,, +414,16,1,14409,512,1950.944,,,,,,176,102,0,,,,, +414,17,3,14410,512,1950.944,21,32.0,A2,mp-,13,144,45,13,,,,, +414,17,3,14410,512,1951.031,,,,,,144,45,0,,,,, +414,18,3,14411,533,1951.031,21,32.0,E6,mp-,13,144,88,13,,,,, +414,18,3,14411,533,1951.119,,,,,,144,88,0,,,,, +414,19,3,14412,554,1951.119,22,32.0,A2,p+,12,144,45,12,,,,, +414,19,3,14412,554,1951.211,,,,,,144,45,0,,,,, +414,20,3,14413,576,1951.211,21,32.0,E6,p+,12,144,88,12,,,,, +414,20,3,14413,576,1951.299,,,,,,144,88,0,,,,, +414,21,1,14414,597,1951.299,43,16.0,A2,p,11,144,45,11,,,,, +414,22,3,14415,597,1951.299,43,16.0,E6,p,11,144,88,11,,,,, +414,21,1,14414,597,1951.479,,,,,,144,45,0,,,,, +414,22,3,14415,597,1951.479,,,,,,144,88,0,,,,, +414,23,1,14416,640,1951.479,21,32.0,G5,f,20,144,79,20,,,,, +414,24,1,14417,640,1951.479,32,32.0,A6,mp,14,144,93,14,,,,, +414,25,3,14418,640,1951.479,64,16.0,G3,fff,24,144,55,23,,,,, +414,23,1,14416,640,1951.567,,,,,,144,79,0,,,,, +414,26,1,14419,661,1951.567,21,32.0,A#5,f,20,144,82,20,,,,, +414,24,1,14417,640,1951.613,,,,,,144,93,0,,,,, +414,26,1,14419,661,1951.655,,,,,,144,82,0,,,,, +414,27,1,14420,682,1951.655,22,32.0,F#3,f,20,144,54,20,,,,, +414,25,3,14418,640,1951.747,,,,,,144,55,0,,,,, +414,27,1,14420,682,1951.747,,,,,,144,54,0,,,,, +414,28,1,14421,704,1951.747,32,32.0,G5,f,20,144,79,20,,,,, +414,29,3,14422,704,1951.747,21,32.0,A#2,mp,14,144,46,14,,,,, +414,30,3,14423,725,1951.835,43,16.0,A2,p,11,144,45,11,,,,, +414,31,3,14424,725,1951.835,64,16.0,G3,p,11,144,55,11,,,,, +414,32,3,14425,725,1951.835,64,16.0,D#4,p,11,144,63,11,,,,, +414,33,3,14426,725,1951.835,64,16.0,A#4,p,11,144,70,11,,,,, +414,34,3,14427,725,1951.835,64,16.0,E5,p,11,144,76,11,,,,, +414,35,1,14428,736,1951.881,32,32.0,F#3,mf+,18,144,54,18,,,,, +414,29,3,14422,704,1951.985,,,,,,144,46,0,,,,, +414,30,3,14423,725,1952.015,,,,,,144,45,0,,,,, +414,35,1,14428,736,1952.015,,,,,,144,54,0,,,,, +414,36,1,14429,768,1952.015,21,32.0,A#5,mp+,15,144,82,15,,,,, +414,37,3,14430,768,1952.015,85,8.0,C#6,mf,17,144,85,17,,,,, +414,28,1,14421,704,1952.031,,,,,,144,79,0,,,,, +414,31,3,14424,725,1952.103,,,,,,144,55,0,,,,, +414,32,3,14425,725,1952.103,,,,,,144,63,0,,,,, +414,33,3,14426,725,1952.103,,,,,,144,70,0,,,,, +414,34,3,14427,725,1952.103,,,,,,144,76,0,,,,, +414,36,1,14429,768,1952.103,,,,,,144,82,0,,,,, +414,38,1,14431,789,1952.103,21,32.0,F#3,mp,14,144,54,14,,,,, +414,38,1,14431,789,1952.191,,,,,,144,54,0,,,,, +414,39,1,14432,810,1952.191,22,32.0,C4,mp-,13,144,60,13,,,,, +414,39,1,14432,810,1952.283,,,,,,144,60,0,,,,, +414,40,1,14433,832,1952.283,21,32.0,D6,p,11,144,86,11,,,,, +414,37,3,14430,768,1952.371,,,,,,144,85,0,,,,, +414,40,1,14433,832,1952.371,,,,,,144,86,0,,,,, +414,41,1,14434,853,1952.371,21,32.0,A#5,pp+,9,144,82,9,,,,, +414,42,3,14435,853,1952.371,43,16.0,F4,mf+,18,144,65,18,,,,, +414,41,1,14434,853,1952.459,,,,,,144,82,0,,,,, +414,43,1,14436,874,1952.459,22,32.0,F#3,pp,8,144,54,8,,,,, +414,42,3,14435,853,1952.551,,,,,,144,65,0,,,,, +414,43,1,14436,874,1952.551,,,,,,144,54,0,,,,, +414,44,1,14437,896,1952.551,32,32.0,G5,pp,8,144,79,8,,,,, +414,45,3,14438,896,1952.551,,,,,,176,102,0,,,,, +414,44,1,14437,896,1952.685,,,,,,144,79,0,,,,, +414,46,1,14439,928,1952.685,32,32.0,A#5,pp-,7,144,82,7,,,,, +414,46,1,14439,928,1952.819,,,,,,144,82,0,,,,, +414,47,1,14440,960,1952.819,32,32.0,C4,pp-,7,144,60,7,,,,, +414,47,1,14440,960,1952.953,,,,,,144,60,0,,,,, +414,48,1,14441,992,1952.953,,,,,,176,102,0,,,,, +414,49,0,14442,999,1952.982,,,,,,176,64,0,,,,,^ +414,51,1,14443,1024,1953.086,256,4.0,A#4,mf,17,144,70,17,,,,, +414,52,1,14444,1024,1953.086,256,4.0,E5,p,11,144,76,11,,,,, +414,53,3,14445,,1953.086,,8.0,F#1,mf,17,144,30,17,,,,g, +414,53,3,14445,,1953.136,,,,,,144,30,0,,,,, +414,54,3,14446,,1953.161,,8.0,G2,mf,17,144,43,17,,,,g, +414,54,3,14446,,1953.211,,,,,,144,43,0,,,,, +414,55,3,14447,,1953.236,,8.0,F#1,mf,17,144,30,17,,,,g, +414,55,3,14447,,1953.286,,,,,,144,30,0,,,,, +414,56,3,14448,1024,1953.311,256,4.0,F#1,mf,17,144,30,17,,,,, +414,57,3,14449,1024,1953.311,256,4.0,G#1,f,20,144,32,20,,,,, +414,58,3,14450,1024,1953.311,256,4.0,G2,mf,17,144,43,17,,,,, +414,50,0,14451,1024,1953.311,,,,,,176,64,127,,,,,V +415,0,0,14452,0,1954.383,,,,,,,,,415,,,, +415,1,1,14453,0,1954.383,128,8.0,A#4,,,,,,,,,, +415,2,1,14454,0,1954.383,128,8.0,E5,,,,,,,,,, +415,3,3,14455,0,1954.383,128,8.0,F#1,,,,,,,,,, +415,4,3,14456,0,1954.383,128,8.0,G#1,,,,,,,,,, +415,5,3,14457,0,1954.383,128,8.0,G2,,,,,,,,,, +414,51,1,14443,1024,1954.694,,,,,,144,70,0,,,,, +414,52,1,14444,1024,1954.694,,,,,,144,76,0,,,,, +414,56,3,14448,1024,1954.919,,,,,,144,30,0,,,,, +414,57,3,14449,1024,1954.919,,,,,,144,32,0,,,,, +414,58,3,14450,1024,1954.919,,,,,,144,43,0,,,,, +415,6,1,14458,128,1954.919,128,8.0,E5,p,11,144,76,11,,,,, +415,7,3,14459,128,1954.919,,,,,,176,102,0,,,,, +415,9,0,14460,234,1955.258,,,,,,176,64,0,,,,,^ +415,8,3,14461,213,1955.274,21,32.0,B2,p,11,144,47,11,,,,, +415,8,3,14461,213,1955.362,,,,,,144,47,0,,,,, +415,10,3,14462,234,1955.362,22,32.0,F#2,p,11,144,42,11,,,,, +415,11,0,14463,234,1955.362,,,,,,,,,,6064,,, +415,6,1,14458,128,1955.454,,,,,,144,76,0,,,,, +415,10,3,14462,234,1955.454,,,,,,144,42,0,,,,, +415,13,1,14464,256,1955.454,341,2.0,A#4,p,11,144,70,11,,,,, +415,14,1,14465,256,1955.454,512,2.0,E5,mp,14,144,76,14,,,,, +415,15,3,14466,256,1955.454,341,2.0,F#1,pp,8,144,30,8,,,,, +415,16,3,14467,256,1955.454,512,2.0,G2,pp,8,144,43,8,,,,, +415,12,0,14468,256,1955.558,,,,,,176,64,127,,,,,V +415,13,1,14464,256,1956.881,,,,,,144,70,0,,,,, +415,15,3,14466,256,1956.881,,,,,,144,30,0,,,,, +415,16,3,14467,256,1956.881,,,,,,144,43,0,,,,, +415,17,1,14469,597,1956.881,21,32.0,A#4,mp,14,144,70,14,,,,, +415,18,1,14470,597,1956.881,32,32.0,D5,mp,14,144,74,14,,,,, +415,19,3,14471,597,1956.881,21,32.0,F#1,mp,14,144,30,14,,,,, +415,20,3,14472,597,1956.881,32,32.0,G2,mp,14,144,43,14,,,,, +415,17,1,14469,597,1956.969,,,,,,144,70,0,,,,, +415,18,1,14470,597,1956.969,,,,,,144,74,0,,,,, +415,19,3,14471,597,1956.969,,,,,,144,30,0,,,,, +415,21,1,14473,618,1956.969,22,32.0,A#4,f,20,144,70,20,,,,, +415,22,1,14474,618,1956.969,32,32.0,D5,f,20,144,74,20,,,,, +415,23,3,14475,618,1956.969,22,32.0,C2,f,20,144,36,20,,,,, +415,14,1,14465,256,1957.061,,,,,,144,76,0,,,,, +415,21,1,14473,618,1957.061,,,,,,144,70,0,,,,, +415,23,3,14475,618,1957.061,,,,,,144,36,0,,,,, +415,24,1,14476,640,1957.061,85,8.0,A#4,mp,14,144,70,14,,,,, +415,25,1,14477,640,1957.061,128,8.0,E5,mp,14,144,76,14,,,,, +415,26,3,14478,640,1957.061,128,8.0,B2,mp,14,144,47,14,,,,, +415,22,1,14474,618,1957.103,,,,,,144,74,0,,,,, +415,24,1,14476,640,1957.417,,,,,,144,70,0,,,,, +415,27,0,14479,725,1957.417,,,,,,176,64,0,,,,,^ +415,28,1,14480,725,1957.417,43,16.0,G4,mp,14,144,67,14,,,,, +415,25,1,14477,640,1957.597,,,,,,144,76,0,,,,, +415,26,3,14478,640,1957.597,,,,,,144,47,0,,,,, +415,29,1,14481,768,1957.597,21,32.0,G4,,,,,,,,,, +415,30,1,14482,768,1957.597,32,32.0,A#4,p,11,144,70,11,,,,, +415,31,1,14483,768,1957.597,32,32.0,E5,p,11,144,76,11,,,,, +415,32,3,14484,768,1957.597,21,32.0,B2,p,11,144,47,11,,,,, +415,20,3,14472,597,1957.672,,,,,,144,43,0,,,,, +415,32,3,14484,768,1957.685,,,,,,144,47,0,,,,, +415,33,1,14485,789,1957.685,21,32.0,G4,,,,,,,,,, +415,34,3,14486,789,1957.685,21,32.0,F#2,p-,10,144,42,10,,,,, +415,30,1,14482,768,1957.731,,,,,,144,70,0,,,,, +415,31,1,14483,768,1957.731,,,,,,144,76,0,,,,, +415,34,3,14486,789,1957.773,,,,,,144,42,0,,,,, +415,35,1,14487,810,1957.773,22,32.0,G4,,,,,,,,,, +415,36,1,14488,810,1957.773,32,32.0,A#4,pp+,9,144,70,9,,,,, +415,37,1,14489,810,1957.773,32,32.0,E5,pp+,9,144,76,9,,,,, +415,38,3,14490,810,1957.773,22,32.0,B2,pp+,9,144,47,9,,,,, +415,38,3,14490,810,1957.865,,,,,,144,47,0,,,,, +415,39,1,14491,832,1957.865,21,32.0,G4,,,,,,,,,, +415,40,3,14492,832,1957.865,21,32.0,F#2,pp,8,144,42,8,,,,, +415,41,3,14493,832,1957.865,32,32.0,B2,pp,8,144,47,8,,,,, +415,42,3,14494,832,1957.865,32,32.0,D3,pp,8,144,50,8,,,,, +415,36,1,14488,810,1957.907,,,,,,144,70,0,,,,, +415,37,1,14489,810,1957.907,,,,,,144,76,0,,,,, +415,40,3,14492,832,1957.953,,,,,,144,42,0,,,,, +415,44,1,14495,853,1957.953,85,8.0,G4,,,,,,,,,, +415,45,3,14496,853,1957.953,128,8.0,C3,ff,22,144,48,22,,,,, +415,43,0,14497,853,1957.953,,,,,,176,64,127,,,,,V +415,41,3,14493,832,1957.999,,,,,,144,47,0,,,,, +415,42,3,14494,832,1957.999,,,,,,144,50,0,,,,, +415,28,1,14480,725,1958.309,,,,,,144,67,0,,,,, +415,46,1,14498,938,1958.309,86,8.0,F#3,mf,17,144,54,17,,,,, +415,47,1,14499,938,1958.309,128,8.0,G4,mf,17,144,67,17,,,,, +415,45,3,14496,853,1958.489,,,,,,144,48,0,,,,, +415,48,3,14500,981,1958.489,43,16.0,G#1,ff,22,144,32,22,,,,, +415,49,3,14501,981,1958.489,64,16.0,C3,ff,22,144,48,22,,,,, +415,46,1,14498,938,1958.669,,,,,,144,54,0,,,,, +415,48,3,14500,981,1958.669,,,,,,144,32,0,,,,, +415,50,1,14502,1024,1958.669,,,,,,176,102,0,,,,, +415,51,3,14503,1024,1958.669,,,,,,176,102,0,,,,, +415,49,3,14501,981,1958.756,,,,,,144,48,0,,,,, +415,47,1,14499,938,1958.844,,,,,,144,67,0,,,,, +415,52,1,14504,1109,1959.024,171,4.0,F6,ff,22,144,89,22,,,,, +415,53,3,14505,1109,1959.024,171,4.0,C3,ff,22,144,48,22,,,,, +415,52,1,14504,1109,1959.74,,,,,,144,89,0,,,,, +415,53,3,14505,1109,1959.74,,,,,,144,48,0,,,,, +416,0,0,14506,0,1959.74,,,,,,,,,416,,,, +416,1,1,14507,0,1959.74,,,,,,176,102,0,,,,, +416,2,3,14508,0,1959.74,,,,,,176,102,0,,,,, +416,3,1,14509,85,1960.096,171,4.0,A#5,ff,22,144,82,22,,,,, +416,4,1,14510,85,1960.096,256,4.0,F6,ff,22,144,89,22,,,,, +416,5,3,14511,85,1960.096,38,32.0,F3,f,20,144,53,20,,,,, +416,6,3,14512,85,1960.096,32,32.0,G4,f,20,144,67,20,,,,, +416,6,3,14512,85,1960.23,,,,,,144,67,0,,,,, +416,5,3,14511,85,1960.255,,,,,,144,53,0,,,,, +416,7,3,14513,123,1960.255,25,32.0,B5,mf+,18,144,83,18,,,,, +416,7,3,14513,123,1960.359,,,,,,144,83,0,,,,, +416,8,3,14514,148,1960.359,25,32.0,C4,mf,17,144,60,17,,,,, +416,8,3,14514,148,1960.464,,,,,,144,60,0,,,,, +416,9,3,14515,173,1960.464,39,32.0,D7,mp+,15,144,98,15,,,,, +416,9,3,14515,173,1960.627,,,,,,144,98,0,,,,, +416,10,3,14516,212,1960.627,26,32.0,C4,mp-,13,144,60,13,,,,, +416,10,3,14516,212,1960.736,,,,,,144,60,0,,,,, +416,11,3,14517,238,1960.736,39,32.0,B5,p+,12,144,83,12,,,,, +416,3,1,14509,85,1960.811,,,,,,144,82,0,,,,, +416,12,1,14518,256,1960.811,,,,,,176,102,0,,,,, +416,11,3,14517,238,1960.899,,,,,,144,83,0,,,,, +416,13,3,14519,277,1960.899,38,32.0,D7,p-,10,144,98,10,,,,, +416,13,3,14519,277,1961.058,,,,,,144,98,0,,,,, +416,14,3,14520,315,1961.058,26,32.0,C4,pp,8,144,60,8,,,,, +416,4,1,14510,85,1961.167,,,,,,144,89,0,,,,, +416,14,3,14520,315,1961.167,,,,,,144,60,0,,,,, +416,15,3,14521,341,1961.167,85,8.0,F6,ff,22,144,89,22,,,,, +416,16,3,14522,341,1961.167,128,8.0,E7,ff,22,144,100,22,,,,, +416,15,3,14521,341,1961.523,,,,,,144,89,0,,,,, +416,17,3,14523,426,1961.523,22,32.0,F#1,pp,8,144,30,8,,,,, +416,17,3,14523,426,1961.615,,,,,,144,30,0,,,,, +416,18,3,14524,448,1961.615,21,32.0,G2,pp,8,144,43,8,,,,, +416,16,3,14522,341,1961.703,,,,,,144,100,0,,,,, +416,18,3,14524,448,1961.703,,,,,,144,43,0,,,,, +416,19,3,14525,469,1961.703,21,32.0,F#1,pp,8,144,30,8,,,,, +416,19,3,14525,469,1961.791,,,,,,144,30,0,,,,, +416,20,3,14526,490,1961.791,22,32.0,C2,pp,8,144,36,8,,,,, +416,20,3,14526,490,1961.883,,,,,,144,36,0,,,,, +416,21,1,14527,512,1961.883,,,,,,176,102,0,,,,, +416,22,3,14528,512,1961.883,85,8.0,A#2,pp,8,144,46,8,,,,, +416,22,3,14528,512,1962.239,,,,,,144,46,0,,,,, +416,23,1,14529,597,1962.239,128,8.0,A#3,pp,8,144,58,8,,,,, +416,24,1,14530,597,1962.239,128,8.0,D4,pp,8,144,62,8,,,,, +416,25,3,14531,597,1962.239,171,4.0,F#1,pp,8,144,30,8,,,,, +416,26,3,14532,597,1962.239,256,4.0,C2,pp,8,144,36,8,,,,, +416,27,3,14533,597,1962.239,256,4.0,G2,pp,8,144,43,8,,,,, +416,28,1,14534,725,1962.774,21,32.0,A6,p,11,144,93,11,,,,, +416,23,1,14529,597,1962.849,,,,,,144,58,0,,,,, +416,24,1,14530,597,1962.849,,,,,,144,62,0,,,,, +416,28,1,14534,725,1962.862,,,,,,144,93,0,,,,, +416,29,0,14535,746,1962.862,,,,,,176,64,0,,,,,^ +416,30,1,14536,746,1962.862,22,32.0,A#2,p+,12,144,46,12,,,,, +416,30,1,14536,746,1962.954,,,,,,144,46,0,,,,, +416,31,1,14537,768,1962.954,42,16.0,C#6,mp-,13,144,85,13,,,,, +416,32,1,14538,768,1962.954,64,16.0,A6,mp-,13,144,93,13,,,,, +416,33,3,14539,768,1962.954,,,,,,176,102,0,,,,, +416,25,3,14531,597,1963.029,,,,,,144,30,0,,,,, +416,31,1,14537,768,1963.13,,,,,,144,85,0,,,,, +416,34,1,14540,810,1963.13,43,16.0,F4,mp,14,144,65,14,,,,, +416,32,1,14538,768,1963.222,,,,,,144,93,0,,,,, +416,34,1,14540,810,1963.31,,,,,,144,65,0,,,,, +416,35,1,14541,853,1963.31,43,16.0,A#2,mp+,15,144,46,15,,,,, +416,26,3,14532,597,1963.385,,,,,,144,36,0,,,,, +416,27,3,14533,597,1963.385,,,,,,144,43,0,,,,, +416,35,1,14541,853,1963.49,,,,,,144,46,0,,,,, +416,37,1,14542,896,1963.49,128,8.0,E2,mf,17,144,40,17,,,,, +416,38,3,14543,896,1963.49,128,8.0,F#2,pp,8,144,42,8,,,,, +416,39,3,14544,896,1963.49,128,8.0,B2,pp,8,144,47,8,,,,, +416,40,3,14545,896,1963.49,128,8.0,D3,pp,8,144,50,8,,,,, +416,41,3,14546,896,1963.49,128,8.0,A#4,pp,8,144,70,8,,,,, +416,42,3,14547,896,1963.49,128,8.0,E5,pp,8,144,76,8,,,,, +416,36,0,14548,896,1963.49,,,,,,176,64,127,,,,,V +416,37,1,14542,896,1964.026,,,,,,144,40,0,,,,, +416,43,1,14549,1024,1964.026,,,,,,176,102,0,,,,, +416,44,3,14550,1024,1964.026,128,8.0,F#2,,,,,,,,,, +416,45,3,14551,1024,1964.026,128,8.0,B2,,,,,,,,,, +416,46,3,14552,1024,1964.026,128,8.0,D3,,,,,,,,,, +416,47,3,14553,1024,1964.026,128,8.0,A#4,,,,,,,,,, +416,48,3,14554,1024,1964.026,128,8.0,E5,,,,,,,,,, +416,49,0,14555,1152,1964.561,,,,,,176,64,0,,,,,^ +416,50,1,14556,1152,1964.561,21,32.0,A#4,pp,8,144,70,8,,,,, +416,51,1,14557,1152,1964.561,32,32.0,E5,pp,8,144,76,8,,,,, +416,52,3,14558,1152,1964.561,21,32.0,F#2,pp,8,144,42,8,,,,, +416,53,3,14559,1152,1964.561,32,32.0,B2,pp,8,144,47,8,,,,, +416,54,3,14560,1152,1964.561,32,32.0,D3,pp,8,144,50,8,,,,, +416,38,3,14543,896,1964.561,,,,,,144,42,0,,,,, +416,39,3,14544,896,1964.561,,,,,,144,47,0,,,,, +416,40,3,14545,896,1964.561,,,,,,144,50,0,,,,, +416,41,3,14546,896,1964.561,,,,,,144,70,0,,,,, +416,42,3,14547,896,1964.561,,,,,,144,76,0,,,,, +416,50,1,14556,1152,1964.649,,,,,,144,70,0,,,,, +416,52,3,14558,1152,1964.649,,,,,,144,42,0,,,,, +416,55,1,14561,1173,1964.649,21,32.0,A4,pp,8,144,69,8,,,,, +416,56,3,14562,1173,1964.649,21,32.0,F2,pp,8,144,41,8,,,,, +416,57,3,14563,1173,1964.649,32,32.0,C#3,pp,8,144,49,8,,,,, +416,51,1,14557,1152,1964.695,,,,,,144,76,0,,,,, +416,53,3,14559,1152,1964.695,,,,,,144,47,0,,,,, +416,54,3,14560,1152,1964.695,,,,,,144,50,0,,,,, +416,55,1,14561,1173,1964.737,,,,,,144,69,0,,,,, +416,56,3,14562,1173,1964.737,,,,,,144,41,0,,,,, +416,57,3,14563,1173,1964.737,,,,,,144,49,0,,,,, +416,58,1,14564,1194,1964.737,43,16.0,G#3,pp,8,144,56,8,,,,, +416,59,3,14565,1194,1964.737,43,16.0,F2,pp,8,144,41,8,,,,, +416,60,3,14566,1194,1964.737,64,16.0,C#3,pp,8,144,49,8,,,,, +416,58,1,14564,1194,1964.917,,,,,,144,56,0,,,,, +416,59,3,14565,1194,1964.917,,,,,,144,41,0,,,,, +416,61,1,14567,1237,1964.917,,,,,,176,102,0,,,,, +416,62,3,14568,1237,1964.917,43,16.0,D2,pp,8,144,38,8,,,,, +416,60,3,14566,1194,1965.005,,,,,,144,49,0,,,,, +417,0,0,14569,0,1965.097,,,,,,,,,417,,,, +417,2,1,14570,0,1965.097,,,,,,176,102,0,,,,, +417,3,3,14571,0,1965.097,64,16.0,D2,,,,,,,,,, +417,1,0,14572,0,1965.097,,,,,,176,64,127,,,,,V +416,62,3,14568,1237,1965.365,,,,,,144,38,0,,,,, +417,4,3,14573,64,1965.365,21,32.0,G#1,mp,14,144,32,14,,,,, +417,4,3,14573,64,1965.453,,,,,,144,32,0,,,,, +417,5,3,14574,85,1965.453,21,32.0,F5,mp,14,144,77,14,,,,, +417,5,3,14574,85,1965.541,,,,,,144,77,0,,,,, +417,6,3,14575,106,1965.541,22,32.0,C3,mp-,13,144,48,13,,,,, +417,6,3,14575,106,1965.633,,,,,,144,48,0,,,,, +417,7,3,14576,128,1965.633,32,32.0,G#2,mp-,13,144,44,13,,,,, +417,7,3,14576,128,1965.767,,,,,,144,44,0,,,,, +417,8,3,14577,160,1965.767,32,32.0,C3,p+,12,144,48,12,,,,, +417,8,3,14577,160,1965.901,,,,,,144,48,0,,,,, +417,9,1,14578,192,1965.901,64,16.0,F5,p,11,144,77,11,,,,, +417,10,3,14579,192,1965.901,21,32.0,G#2,p,11,144,44,11,,,,, +417,10,3,14579,192,1965.989,,,,,,144,44,0,,,,, +417,11,3,14580,213,1965.989,21,32.0,C3,p,11,144,48,11,,,,, +417,11,3,14580,213,1966.077,,,,,,144,48,0,,,,, +417,12,3,14581,234,1966.077,22,32.0,E6,p-,10,144,88,10,,,,, +417,9,1,14578,192,1966.169,,,,,,144,77,0,,,,, +417,12,3,14581,234,1966.169,,,,,,144,88,0,,,,, +417,13,1,14582,256,1966.169,,,,,,176,102,0,,,,, +417,14,3,14583,256,1966.169,21,32.0,C3,p-,10,144,48,10,,,,, +417,15,3,14584,256,1966.169,32,32.0,A#3,p-,10,144,58,10,,,,, +417,14,3,14583,256,1966.256,,,,,,144,48,0,,,,, +417,16,3,14585,277,1966.256,32,32.0,F5,pp+,9,144,77,9,,,,, +417,17,3,14586,277,1966.256,32,32.0,E6,pp+,9,144,88,9,,,,, +417,15,3,14584,256,1966.303,,,,,,144,58,0,,,,, +417,16,3,14585,277,1966.39,,,,,,144,77,0,,,,, +417,17,3,14586,277,1966.39,,,,,,144,88,0,,,,, +417,18,3,14587,309,1966.39,32,32.0,C3,pp+,9,144,48,9,,,,, +417,19,3,14588,309,1966.39,32,32.0,A#3,pp+,9,144,58,9,,,,, +417,18,3,14587,309,1966.524,,,,,,144,48,0,,,,, +417,19,3,14588,309,1966.524,,,,,,144,58,0,,,,, +417,20,3,14589,341,1966.524,43,16.0,E6,pp,8,144,88,8,,,,, +417,20,3,14589,341,1966.704,,,,,,144,88,0,,,,, +417,21,1,14590,384,1966.704,,,,,,176,102,0,,,,, +417,22,3,14591,384,1966.704,,,,,,176,102,0,,,,, +417,23,3,14592,426,1966.88,43,16.0,F2,pp,8,144,41,8,,,,, +417,24,3,14593,426,1966.88,64,16.0,D3,pp,8,144,50,8,,,,, +417,23,3,14592,426,1967.06,,,,,,144,41,0,,,,, +417,25,1,14594,469,1967.06,43,16.0,G#3,pp,8,144,56,8,,,,, +417,26,1,14595,469,1967.06,64,16.0,A4,pp,8,144,69,8,,,,, +417,27,3,14596,469,1967.06,43,16.0,D2,pp,8,144,38,8,,,,, +417,24,3,14593,426,1967.148,,,,,,144,50,0,,,,, +417,25,1,14594,469,1967.24,,,,,,144,56,0,,,,, +417,27,3,14596,469,1967.24,,,,,,144,38,0,,,,, +417,30,0,14597,715,1967.24,,,,,,176,64,0,,,,,^ +417,28,1,14598,512,1967.24,,,,,,176,102,0,,,,, +417,29,3,14599,512,1967.24,,,,,,176,102,0,,,,, +417,31,0,14600,715,1967.24,,,,,,,,,,6065,,, +417,26,1,14595,469,1967.328,,,,,,144,69,0,,,,, +417,32,1,14601,768,1967.462,,,,,,176,102,0,,,,, +417,33,3,14602,768,1967.462,21,32.0,F2,mp,14,144,41,14,,,,, +417,34,3,14603,768,1967.462,32,32.0,C#3,mp,14,144,49,14,,,,, +417,33,3,14602,768,1967.55,,,,,,144,41,0,,,,, +417,35,3,14604,789,1967.55,21,32.0,D2,mf,17,144,38,17,,,,, +417,36,3,14605,789,1967.55,32,32.0,G#3,mf,17,144,56,17,,,,, +417,37,3,14606,789,1967.55,32,32.0,A4,mf,17,144,69,17,,,,, +417,34,3,14603,768,1967.596,,,,,,144,49,0,,,,, +417,35,3,14604,789,1967.638,,,,,,144,38,0,,,,, +417,39,3,14607,810,1967.638,,,,,,176,102,0,,,,, +417,38,0,14608,810,1967.638,,,,,,176,64,127,,,,,V +417,36,3,14605,789,1967.684,,,,,,144,56,0,,,,, +417,37,3,14606,789,1967.684,,,,,,144,69,0,,,,, +417,40,1,14609,832,1967.73,64,16.0,C4,p,11,144,60,11,,,,, +417,40,1,14609,832,1967.998,,,,,,144,60,0,,,,, +417,41,1,14610,896,1967.998,42,16.0,G5,p+,12,144,79,12,,,,, +417,42,3,14611,896,1967.998,,,,,,176,102,0,,,,, +417,41,1,14610,896,1968.173,,,,,,144,79,0,,,,, +417,43,1,14612,938,1968.173,86,8.0,F6,pp,8,144,89,8,,,,, +417,44,3,14613,992,1968.399,32,32.0,A#3,mf,17,144,58,17,,,,, +417,43,1,14612,938,1968.533,,,,,,144,89,0,,,,, +417,44,3,14613,992,1968.533,,,,,,144,58,0,,,,, +417,45,1,14614,1024,1968.533,256,4.0,F6,pp,8,144,89,8,,,,, +417,46,1,14615,1024,1968.533,256,4.0,A6,mf,17,144,93,17,,,,, +417,47,3,14616,1024,1968.533,64,16.0,G#2,pp,8,144,44,8,,,,, +417,48,3,14617,1024,1968.533,64,16.0,E3,pp,8,144,52,8,,,,, +417,49,3,14618,1024,1968.533,64,16.0,A#3,mf,17,144,58,17,,,,, +417,47,3,14616,1024,1968.801,,,,,,144,44,0,,,,, +417,48,3,14617,1024,1968.801,,,,,,144,52,0,,,,, +417,49,3,14618,1024,1968.801,,,,,,144,58,0,,,,, +417,50,3,14619,1088,1968.801,64,16.0,C#2,pp,8,144,37,8,,,,, +417,50,3,14619,1088,1969.069,,,,,,144,37,0,,,,, +417,51,3,14620,1152,1969.069,128,8.0,G#2,pp,8,144,44,8,,,,, +417,51,3,14620,1152,1969.605,,,,,,144,44,0,,,,, +418,0,0,14621,0,1969.605,,,,,,,,,418,,,, +418,1,1,14622,0,1969.605,73,16.0,A#3,mf,17,144,58,17,,,,, +418,2,3,14623,0,1969.605,,,,,,176,102,0,,,,, +417,45,1,14614,1024,1969.605,,,,,,144,89,0,,,,, +417,46,1,14615,1024,1969.605,,,,,,144,93,0,,,,, +418,1,1,14622,0,1969.91,,,,,,144,58,0,,,,, +418,3,1,14624,73,1969.91,109,16.0,A6,mf,17,144,93,17,,,,, +418,3,1,14624,73,1970.366,,,,,,144,93,0,,,,, +418,4,1,14625,182,1970.366,74,16.0,C#6,mf,17,144,85,17,,,,, +418,4,1,14625,182,1970.676,,,,,,144,85,0,,,,, +418,5,1,14626,256,1970.676,28,32.0,F6,pp,8,144,89,8,,,,, +418,6,1,14627,256,1970.676,32,32.0,G#6,pp,8,144,92,8,,,,, +418,7,3,14628,256,1970.676,73,16.0,G#2,mf,17,144,44,17,,,,, +418,8,3,14629,256,1970.676,64,16.0,E3,mf,17,144,52,17,,,,, +418,5,1,14626,256,1970.793,,,,,,144,89,0,,,,, +418,9,1,14630,284,1970.793,28,32.0,F3,pp,8,144,53,8,,,,, +418,6,1,14627,256,1970.81,,,,,,144,92,0,,,,, +418,9,1,14630,284,1970.911,,,,,,144,53,0,,,,, +418,10,1,14631,312,1970.911,29,32.0,D3,pp+,9,144,50,9,,,,, +418,8,3,14629,256,1970.944,,,,,,144,52,0,,,,, +418,7,3,14628,256,1970.982,,,,,,144,44,0,,,,, +418,11,3,14632,329,1970.982,109,16.0,A#3,mf,17,144,58,17,,,,, +418,10,1,14631,312,1971.032,,,,,,144,50,0,,,,, +418,12,1,14633,341,1971.032,28,32.0,C3,pp+,9,144,48,9,,,,, +418,13,1,14634,341,1971.032,32,32.0,C#4,pp+,9,144,61,9,,,,, +418,12,1,14633,341,1971.149,,,,,,144,48,0,,,,, +418,14,1,14635,369,1971.149,29,32.0,A7,pp+,9,144,105,9,,,,, +418,13,1,14634,341,1971.166,,,,,,144,61,0,,,,, +418,14,1,14635,369,1971.27,,,,,,144,105,0,,,,, +418,15,1,14636,398,1971.27,42,32.0,F3,p-,10,144,53,10,,,,, +418,11,3,14632,329,1971.438,,,,,,144,58,0,,,,, +418,16,3,14637,438,1971.438,74,16.0,E3,mf,17,144,52,17,,,,, +418,15,1,14636,398,1971.446,,,,,,144,53,0,,,,, +418,17,1,14638,440,1971.446,43,32.0,C#4,p-,10,144,61,10,,,,, +418,17,1,14638,440,1971.626,,,,,,144,61,0,,,,, +418,18,1,14639,483,1971.626,29,32.0,G#6,p,11,144,92,11,,,,, +418,18,1,14639,483,1971.748,,,,,,144,92,0,,,,, +418,19,1,14640,512,1971.748,28,32.0,F3,p,11,144,53,11,,,,, +418,20,1,14641,512,1971.748,32,32.0,C#4,p,11,144,61,11,,,,, +418,21,3,14642,512,1971.748,73,16.0,A#3,mf,17,144,58,17,,,,, +418,16,3,14637,438,1971.748,,,,,,144,52,0,,,,, +418,19,1,14640,512,1971.865,,,,,,144,53,0,,,,, +418,22,1,14643,540,1971.865,28,32.0,D3,p,11,144,50,11,,,,, +418,20,1,14641,512,1971.881,,,,,,144,61,0,,,,, +418,22,1,14643,540,1971.982,,,,,,144,50,0,,,,, +418,23,1,14644,568,1971.982,43,32.0,G#5,p+,12,144,80,12,,,,, +418,21,3,14642,512,1972.053,,,,,,144,58,0,,,,, +418,24,3,14645,585,1972.053,109,16.0,A6,mf,17,144,93,17,,,,, +418,23,1,14644,568,1972.162,,,,,,144,80,0,,,,, +418,25,1,14646,611,1972.162,29,32.0,D3,p+,12,144,50,12,,,,, +418,25,1,14646,611,1972.283,,,,,,144,50,0,,,,, +418,26,1,14647,640,1972.283,28,32.0,F3,p+,12,144,53,12,,,,, +418,27,1,14648,640,1972.283,32,32.0,C#4,p+,12,144,61,12,,,,, +418,24,3,14645,585,1972.4,,,,,,144,93,0,,,,, +418,26,1,14647,640,1972.4,,,,,,144,53,0,,,,, +418,28,1,14649,668,1972.4,28,32.0,A6,mp-,13,144,93,13,,,,, +418,27,1,14648,640,1972.417,,,,,,144,61,0,,,,, +418,29,3,14650,694,1972.509,74,16.0,C#6,mf,17,144,85,17,,,,, +418,28,1,14649,668,1972.518,,,,,,144,93,0,,,,, +418,30,1,14651,696,1972.518,43,32.0,D3,mp-,13,144,50,13,,,,, +418,30,1,14651,696,1972.698,,,,,,144,50,0,,,,, +418,31,1,14652,739,1972.698,29,32.0,G#5,mp,14,144,80,14,,,,, +418,32,1,14653,739,1972.698,32,32.0,A6,mp,14,144,93,14,,,,, +418,31,1,14652,739,1972.819,,,,,,144,80,0,,,,, +418,32,1,14653,739,1972.819,,,,,,144,93,0,,,,, +418,33,3,14654,768,1972.819,73,16.0,E2,mp,14,144,40,14,,,,, +418,34,3,14655,768,1972.819,64,16.0,G#2,mp,14,144,44,14,,,,, +418,35,3,14656,768,1972.819,64,16.0,A#2,mp,14,144,46,14,,,,, +418,36,3,14657,768,1972.819,64,16.0,C3,mp,14,144,48,14,,,,, +418,37,3,14658,768,1972.819,64,16.0,D3,mp,14,144,50,14,,,,, +418,38,1,14659,768,1972.819,512,2.0,G#5,mp,14,144,80,14,,,,, +418,39,1,14660,768,1972.819,512,2.0,F6,mp,14,144,89,14,,,,, +418,40,1,14661,768,1972.819,512,2.0,A6,mp,14,144,93,14,,,,, +418,29,3,14650,694,1972.819,,,,,,144,85,0,,,,, +418,34,3,14655,768,1973.087,,,,,,144,44,0,,,,, +418,35,3,14656,768,1973.087,,,,,,144,46,0,,,,, +418,36,3,14657,768,1973.087,,,,,,144,48,0,,,,, +418,37,3,14658,768,1973.087,,,,,,144,50,0,,,,, +418,33,3,14654,768,1973.125,,,,,,144,40,0,,,,, +418,41,3,14662,841,1973.125,73,16.0,F5,mf,17,144,77,17,,,,, +418,41,3,14662,841,1973.43,,,,,,144,77,0,,,,, +418,42,3,14663,914,1973.43,110,16.0,A7,mf,17,144,105,17,,,,, +418,42,3,14663,914,1973.89,,,,,,144,105,0,,,,, +418,43,3,14664,1024,1973.89,109,16.0,C#7,mf,17,144,97,17,,,,, +418,43,3,14664,1024,1974.347,,,,,,144,97,0,,,,, +418,44,3,14665,1133,1974.347,147,8.0,F5,mf,17,144,77,17,,,,, +418,45,0,14666,1279,1974.81,,,,,,176,64,0,,,,,^ +418,38,1,14659,768,1974.962,,,,,,144,80,0,,,,, +418,39,1,14660,768,1974.962,,,,,,144,89,0,,,,, +418,40,1,14661,768,1974.962,,,,,,144,93,0,,,,, +418,44,3,14665,1133,1974.962,,,,,,144,77,0,,,,, +419,0,0,14667,0,1974.962,,,,,,,,,419,,,, +419,2,1,14668,0,1974.962,170,8.0,G#5,mf,17,144,80,17,,,,, +419,3,1,14669,0,1974.962,128,8.0,A6,mf,17,144,93,17,,,,, +419,4,3,14670,0,1974.962,42,16.0,E2,mp,14,144,40,14,,,,, +419,5,3,14671,0,1974.962,64,16.0,G#2,mp,14,144,44,14,,,,, +419,6,3,14672,0,1974.962,64,16.0,A#2,mp,14,144,46,14,,,,, +419,7,3,14673,0,1974.962,64,16.0,D3,mp,14,144,50,14,,,,, +419,1,0,14674,0,1975.11,,,,,,176,64,127,,,,,V +419,4,3,14670,0,1975.138,,,,,,144,40,0,,,,, +419,8,3,14675,42,1975.138,43,16.0,C3,mp,14,144,48,14,,,,, +419,5,3,14671,0,1975.23,,,,,,144,44,0,,,,, +419,6,3,14672,0,1975.23,,,,,,144,46,0,,,,, +419,7,3,14673,0,1975.23,,,,,,144,50,0,,,,, +419,8,3,14675,42,1975.318,,,,,,144,48,0,,,,, +419,9,3,14676,85,1975.318,43,16.0,F5,mp,14,144,77,14,,,,, +419,3,1,14669,0,1975.498,,,,,,144,93,0,,,,, +419,9,3,14676,85,1975.498,,,,,,144,77,0,,,,, +419,10,3,14677,128,1975.498,,,,,,176,102,0,,,,, +419,2,1,14668,0,1975.673,,,,,,144,80,0,,,,, +419,11,1,14678,170,1975.673,,,,,,176,102,0,,,,, +419,12,1,14679,199,1975.795,57,16.0,C4,pp,8,144,60,8,,,,, +419,12,1,14679,199,1976.033,,,,,,144,60,0,,,,, +419,13,1,14680,256,1976.033,28,32.0,G#5,p,11,144,80,11,,,,, +419,14,3,14681,256,1976.033,85,16.0,G5,p,11,144,79,11,,,,, +419,13,1,14680,256,1976.15,,,,,,144,80,0,,,,, +419,15,1,14682,284,1976.15,28,32.0,F3,p,11,144,53,11,,,,, +419,15,1,14682,284,1976.268,,,,,,144,53,0,,,,, +419,16,1,14683,312,1976.268,29,32.0,D3,p+,12,144,50,12,,,,, +419,14,3,14681,256,1976.389,,,,,,144,79,0,,,,, +419,16,1,14683,312,1976.389,,,,,,144,50,0,,,,, +419,17,1,14684,341,1976.389,28,32.0,C#4,p+,12,144,61,12,,,,, +419,18,3,14685,341,1976.389,57,16.0,E3,p+,12,144,52,12,,,,, +419,17,1,14684,341,1976.506,,,,,,144,61,0,,,,, +419,19,1,14686,369,1976.506,29,32.0,A6,p+,12,144,93,12,,,,, +419,18,3,14685,341,1976.628,,,,,,144,52,0,,,,, +419,19,1,14686,369,1976.628,,,,,,144,93,0,,,,, +419,20,1,14687,398,1976.628,85,16.0,F2,mp-,13,144,41,13,,,,, +419,21,1,14688,398,1976.628,64,16.0,C#3,mp-,13,144,49,13,,,,, +419,22,3,14689,398,1976.628,28,32.0,C#2,mp-,13,144,37,13,,,,, +419,22,3,14689,398,1976.745,,,,,,144,37,0,,,,, +419,23,3,14690,426,1976.745,29,32.0,G#2,mp-,13,144,44,13,,,,, +419,23,3,14690,426,1976.866,,,,,,144,44,0,,,,, +419,24,3,14691,455,1976.866,28,32.0,C#2,mp-,13,144,37,13,,,,, +419,21,1,14688,398,1976.895,,,,,,144,49,0,,,,, +419,20,1,14687,398,1976.983,,,,,,144,41,0,,,,, +419,24,3,14691,455,1976.983,,,,,,144,37,0,,,,, +419,25,1,14692,483,1976.983,29,32.0,G#5,mp,14,144,80,14,,,,, +419,26,3,14693,483,1976.983,29,32.0,G#2,mp,14,144,44,14,,,,, +419,25,1,14692,483,1977.105,,,,,,144,80,0,,,,, +419,26,3,14693,483,1977.105,,,,,,144,44,0,,,,, +419,27,1,14694,512,1977.105,28,32.0,F2,mp,14,144,41,14,,,,, +419,28,1,14695,512,1977.105,32,32.0,C#3,mp,14,144,49,14,,,,, +419,29,3,14696,512,1977.105,28,32.0,C#2,mp,14,144,37,14,,,,, +419,27,1,14694,512,1977.222,,,,,,144,41,0,,,,, +419,29,3,14696,512,1977.222,,,,,,144,37,0,,,,, +419,30,1,14697,540,1977.222,28,32.0,D2,mp,14,144,38,14,,,,, +419,31,3,14698,540,1977.222,85,16.0,G#2,mp,14,144,44,14,,,,, +419,28,1,14695,512,1977.239,,,,,,144,49,0,,,,, +419,30,1,14697,540,1977.339,,,,,,144,38,0,,,,, +419,32,1,14699,568,1977.339,114,8.0,G#5,mp+,15,144,80,15,,,,, +419,31,3,14698,540,1977.578,,,,,,144,44,0,,,,, +419,33,3,14700,625,1977.578,57,16.0,C4,mp+,15,144,60,15,,,,, +419,32,1,14699,568,1977.816,,,,,,144,80,0,,,,, +419,33,3,14700,625,1977.816,,,,,,144,60,0,,,,, +419,34,1,14701,682,1977.816,57,16.0,A6,mf-,16,144,93,16,,,,, +419,35,3,14702,682,1977.816,86,16.0,G5,mf-,16,144,79,16,,,,, +419,,,14703,768,1978.026,,,,,,176,64,0,,,,,^ +419,34,1,14701,682,1978.055,,,,,,144,93,0,,,,, +419,36,1,14704,739,1978.055,29,32.0,G#5,mf,17,144,80,17,,,,, +419,37,1,14705,739,1978.055,32,32.0,A6,mf,17,144,93,17,,,,, +419,35,3,14702,682,1978.176,,,,,,144,79,0,,,,, +419,36,1,14704,739,1978.176,,,,,,144,80,0,,,,, +419,37,1,14705,739,1978.176,,,,,,144,93,0,,,,, +419,38,3,14706,768,1978.176,85,16.0,D2,mp,14,144,38,14,,,,, +419,39,3,14707,768,1978.176,64,16.0,F2,mp,14,144,41,14,,,,, +419,40,3,14708,768,1978.176,64,16.0,G#2,mp,14,144,44,14,,,,, +419,41,3,14709,768,1978.176,64,16.0,C3,mp,14,144,48,14,,,,, +419,42,3,14710,768,1978.176,64,16.0,E3,mp,14,144,52,14,,,,, +419,44,1,14711,768,1978.176,256,4.0,G#5,mf,17,144,80,17,,,,, +419,45,1,14712,768,1978.176,256,4.0,F6,mf,17,144,89,17,,,,, +419,46,1,14713,768,1978.176,256,4.0,A6,mf,17,144,93,17,,,,, +419,43,0,14714,768,1978.326,,,,,,176,64,127,,,,,V +419,39,3,14707,768,1978.444,,,,,,144,41,0,,,,, +419,40,3,14708,768,1978.444,,,,,,144,44,0,,,,, +419,41,3,14709,768,1978.444,,,,,,144,48,0,,,,, +419,42,3,14710,768,1978.444,,,,,,144,52,0,,,,, +419,38,3,14706,768,1978.532,,,,,,144,38,0,,,,, +419,47,3,14715,853,1978.532,85,16.0,G#2,p,11,144,44,11,,,,, +419,47,3,14715,853,1978.888,,,,,,144,44,0,,,,, +419,48,3,14716,938,1978.888,57,16.0,D2,p,11,144,38,11,,,,, +419,50,0,14717,1008,1979.064,,,,,,176,64,0,,,,,^ +419,48,3,14716,938,1979.126,,,,,,144,38,0,,,,, +419,49,3,14718,995,1979.126,29,32.0,G#2,p,11,144,44,11,,,,, +419,49,3,14718,995,1979.248,,,,,,144,44,0,,,,, +419,51,3,14719,1024,1979.248,56,16.0,D2,p,11,144,38,11,,,,, +419,52,3,14720,1024,1979.248,64,16.0,F2,p,11,144,41,11,,,,, +419,53,3,14721,1024,1979.248,64,16.0,G#2,p,11,144,44,11,,,,, +419,54,3,14722,1024,1979.248,64,16.0,C3,p,11,144,48,11,,,,, +419,56,1,14723,1024,1979.248,256,4.0,E7,p,11,144,100,11,,,,, +419,44,1,14711,768,1979.248,,,,,,144,80,0,,,,, +419,45,1,14712,768,1979.248,,,,,,144,89,0,,,,, +419,46,1,14713,768,1979.248,,,,,,144,93,0,,,,, +419,55,0,14724,1024,1979.364,,,,,,176,64,127,,,,,V +419,51,3,14719,1024,1979.482,,,,,,144,38,0,,,,, +419,57,3,14725,1080,1979.482,57,16.0,C4,p,11,144,60,11,,,,, +419,52,3,14720,1024,1979.515,,,,,,144,41,0,,,,, +419,53,3,14721,1024,1979.515,,,,,,144,44,0,,,,, +419,54,3,14722,1024,1979.515,,,,,,144,48,0,,,,, +419,58,3,14726,1137,1979.721,57,16.0,A#0,p,11,144,22,11,,,,, +419,57,3,14725,1080,1979.871,,,,,,144,60,0,,,,, +419,59,3,14727,1194,1979.959,86,16.0,A#0,,,,,,,,,, +419,60,0,14728,1279,1980.315,,,,,,176,64,0,,,,,^ +420,0,0,14729,0,1980.319,,,,,,,,,420,,,, +420,1,1,14730,0,1980.319,,,,,,176,102,0,,,,, +420,2,3,14731,0,1980.319,256,4.0,A#0,,,,,,,,,, +419,56,1,14723,1024,1980.469,,,,,,144,100,0,,,,, +420,3,3,14732,256,1981.39,96,16.0,A#0,,,,,,,,,, +420,4,0,14733,256,1981.39,,,,,,,,,,6066,,, +419,58,3,14726,1137,1981.792,,,,,,144,22,0,,,,, +420,6,3,14734,352,1981.792,21,32.0,F1,pp,8,144,29,8,,,,, +420,5,0,14735,352,1981.792,,,,,,176,64,127,,,,,V +420,6,3,14734,352,1981.88,,,,,,144,29,0,,,,, +420,7,3,14736,373,1981.88,21,32.0,G#3,pp,8,144,56,8,,,,, +420,7,3,14736,373,1981.968,,,,,,144,56,0,,,,, +420,8,3,14737,394,1981.968,32,32.0,C#2,pp,8,144,37,8,,,,, +420,8,3,14737,394,1982.102,,,,,,144,37,0,,,,, +420,9,3,14738,426,1982.102,22,32.0,G#3,pp,8,144,56,8,,,,, +420,9,3,14738,426,1982.194,,,,,,144,56,0,,,,, +420,10,3,14739,448,1982.194,32,32.0,F1,pp,8,144,29,8,,,,, +420,10,3,14739,448,1982.328,,,,,,144,29,0,,,,, +420,11,3,14740,480,1982.328,32,32.0,C#2,pp,8,144,37,8,,,,, +420,12,0,14741,501,1982.416,,,,,,176,64,0,,,,,^ +420,11,3,14740,480,1982.462,,,,,,144,37,0,,,,, +420,13,3,14742,512,1982.462,384,4.0,F1,pp,8,144,29,8,,,,, +420,14,3,14743,512,1982.462,256,4.0,C#2,pp,8,144,37,8,,,,, +420,15,3,14744,512,1982.462,256,4.0,D#2,pp,8,144,39,8,,,,, +420,16,3,14745,512,1982.462,256,4.0,G#3,pp,8,144,56,8,,,,, +420,14,3,14743,512,1983.533,,,,,,144,37,0,,,,, +420,15,3,14744,512,1983.533,,,,,,144,39,0,,,,, +420,16,3,14745,512,1983.533,,,,,,144,56,0,,,,, +420,17,1,14746,768,1983.533,,,,,,176,102,0,,,,, +420,18,1,14747,864,1983.935,32,32.0,B6,f,20,144,95,20,,,,, +420,19,0,14748,871,1983.964,,,,,,176,64,127,,,,,V +420,13,3,14742,512,1984.069,,,,,,144,29,0,,,,, +420,18,1,14747,864,1984.069,,,,,,144,95,0,,,,, +420,20,1,14749,896,1984.069,96,16.0,C#5,mp,14,144,73,14,,,,, +420,21,3,14750,896,1984.069,32,32.0,A2,pp,8,144,45,8,,,,, +420,22,3,14751,896,1984.069,32,32.0,F3,pp,8,144,53,8,,,,, +420,21,3,14750,896,1984.203,,,,,,144,45,0,,,,, +420,22,3,14751,896,1984.203,,,,,,144,53,0,,,,, +420,23,3,14752,928,1984.203,64,16.0,F#1,p,11,144,30,11,,,,, +420,26,0,14753,1002,1984.409,,,,,,176,64,0,,,,,^ +420,20,1,14749,896,1984.471,,,,,,144,73,0,,,,, +420,23,3,14752,928,1984.471,,,,,,144,30,0,,,,, +420,24,1,14754,992,1984.471,32,32.0,C#5,pp,8,144,73,8,,,,, +420,25,3,14755,992,1984.471,32,32.0,F#1,pp,8,144,30,8,,,,, +420,28,1,14756,1024,1984.605,256,4.0,F6,ppp,5,144,89,5,,,,, +420,29,3,14757,1024,1984.605,256,4.0,G#2,ppp,5,144,44,5,,,,, +420,30,3,14758,1024,1984.605,256,4.0,C3,ppp,5,144,48,5,,,,, +420,24,1,14754,992,1984.605,,,,,,144,73,0,,,,, +420,25,3,14755,992,1984.605,,,,,,144,30,0,,,,, +420,27,0,14759,1024,1984.709,,,,,,176,64,127,,,,,V +420,28,1,14756,1024,1985.676,,,,,,144,89,0,,,,, +420,29,3,14757,1024,1985.676,,,,,,144,44,0,,,,, +420,30,3,14758,1024,1985.676,,,,,,144,48,0,,,,, +421,0,0,14760,0,1985.676,,,,,,,,,421,,,, +421,1,1,14761,0,1985.676,,,,,,176,102,0,,,,, +421,2,3,14762,0,1985.676,,,,,,176,102,0,,,,, +421,3,3,14763,128,1986.212,,,,,,176,102,0,,,,, +421,4,3,14764,213,1986.568,,,,,,176,102,0,,,,, +421,8,0,14765,243,1986.57,,,,,,176,64,0,,,,,^ +421,5,3,14766,234,1986.655,22,32.0,F1,ppp,5,144,29,5,,,,, +421,6,3,14767,234,1986.655,32,32.0,C#2,ppp,5,144,37,5,,,,, +421,7,3,14768,234,1986.655,32,32.0,G#3,ppp,5,144,56,5,,,,, +421,5,3,14766,234,1986.748,,,,,,144,29,0,,,,, +421,10,1,14769,256,1986.748,21,32.0,D1,ppp,5,144,26,5,,,,, +421,11,3,14770,256,1986.748,,,,,,176,102,0,,,,, +421,6,3,14767,234,1986.789,,,,,,144,37,0,,,,, +421,7,3,14768,234,1986.789,,,,,,144,56,0,,,,, +421,10,1,14769,256,1986.835,,,,,,144,26,0,,,,, +421,12,1,14771,277,1986.835,21,32.0,A4,ppp,5,144,69,5,,,,, +421,9,0,14772,256,1986.87,,,,,,176,64,127,,,,,V +421,12,1,14771,277,1986.923,,,,,,144,69,0,,,,, +421,13,1,14773,298,1986.923,22,32.0,G#5,ppp+,6,144,80,6,,,,, +421,13,1,14773,298,1987.015,,,,,,144,80,0,,,,, +421,14,1,14774,320,1987.015,32,32.0,F3,ppp+,6,144,53,6,,,,, +421,14,1,14774,320,1987.149,,,,,,144,53,0,,,,, +421,15,1,14775,352,1987.149,32,32.0,C#4,pp-,7,144,61,7,,,,, +421,15,1,14775,352,1987.283,,,,,,144,61,0,,,,, +421,16,1,14776,384,1987.283,21,32.0,G#5,pp,8,144,80,8,,,,, +421,16,1,14776,384,1987.371,,,,,,144,80,0,,,,, +421,17,1,14777,405,1987.371,21,32.0,A6,pp,8,144,93,8,,,,, +421,17,1,14777,405,1987.459,,,,,,144,93,0,,,,, +421,18,1,14778,426,1987.459,32,32.0,D2,pp+,9,144,38,9,,,,, +421,18,1,14778,426,1987.593,,,,,,144,38,0,,,,, +421,19,1,14779,458,1987.593,22,32.0,A6,pp+,9,144,93,9,,,,, +421,19,1,14779,458,1987.685,,,,,,144,93,0,,,,, +421,20,1,14780,480,1987.685,32,32.0,G#5,p-,10,144,80,10,,,,, +421,20,1,14780,480,1987.819,,,,,,144,80,0,,,,, +421,21,1,14781,512,1987.819,76,16.0,D2,p,11,144,38,11,,,,, +421,22,1,14782,512,1987.819,64,16.0,E2,p,11,144,40,11,,,,, +421,23,1,14783,512,1987.819,64,16.0,A#2,p,11,144,46,11,,,,, +421,24,3,14784,512,1987.819,512,2.0,C#7,p,11,144,97,11,,,,, +421,25,3,14785,512,1987.819,512,2.0,A7,p,11,144,105,11,,,,, +421,22,1,14782,512,1988.087,,,,,,144,40,0,,,,, +421,23,1,14783,512,1988.087,,,,,,144,46,0,,,,, +421,21,1,14781,512,1988.137,,,,,,144,38,0,,,,, +421,26,1,14786,588,1988.137,52,16.0,A6,mp-,13,144,93,13,,,,, +421,27,1,14787,640,1988.355,76,16.0,F3,mp,14,144,53,14,,,,, +421,26,1,14786,588,1988.58,,,,,,144,93,0,,,,, +421,27,1,14787,640,1988.673,,,,,,144,53,0,,,,, +421,28,1,14788,716,1988.673,77,16.0,C#4,mf-,16,144,61,16,,,,, +421,28,1,14788,716,1988.995,,,,,,144,61,0,,,,, +421,29,1,14789,793,1988.995,51,16.0,G#5,mf+,18,144,80,18,,,,, +421,29,1,14789,793,1989.209,,,,,,144,80,0,,,,, +421,30,1,14790,844,1989.209,52,16.0,A6,f-,19,144,93,19,,,,, +421,30,1,14790,844,1989.426,,,,,,144,93,0,,,,, +421,31,1,14791,896,1989.426,76,16.0,D2,f,20,144,38,20,,,,, +421,31,1,14791,896,1989.744,,,,,,144,38,0,,,,, +421,32,0,14792,972,1989.744,,,,,,176,64,0,,,,,^ +421,33,1,14793,972,1989.744,52,16.0,A6,f,20,144,93,20,,,,, +421,33,1,14793,972,1989.962,,,,,,144,93,0,,,,, +421,34,1,14794,,1989.962,,8.0,G6,mp,14,144,91,14,,,,g, +421,34,1,14794,,1990.012,,,,,,144,91,0,,,,, +421,35,1,14795,,1990.037,,8.0,C6,mp,14,144,84,14,,,,g, +421,36,1,14796,,1990.037,,8.0,A6,mp,14,144,93,14,,,,g, +421,35,1,14795,,1990.087,,,,,,144,84,0,,,,, +421,36,1,14796,,1990.087,,,,,,144,93,0,,,,, +421,37,1,14797,1024,1990.187,128,8.0,E5,mp,14,144,76,14,,,,, +421,38,3,14798,1024,1990.187,32,32.0,D#2,mp,14,144,39,14,,,,, +421,39,3,14799,1024,1990.187,32,32.0,B2,mp,14,144,47,14,,,,, +421,24,3,14784,512,1990.187,,,,,,144,97,0,,,,, +421,25,3,14785,512,1990.187,,,,,,144,105,0,,,,, +421,38,3,14798,1024,1990.321,,,,,,144,39,0,,,,, +421,39,3,14799,1024,1990.321,,,,,,144,47,0,,,,, +421,40,3,14800,1056,1990.321,32,32.0,B2,mp,14,144,47,14,,,,, +421,40,3,14800,1056,1990.455,,,,,,144,47,0,,,,, +421,41,3,14801,1088,1990.455,128,8.0,A0,mp-,13,144,21,13,,,,, +421,37,1,14797,1024,1990.723,,,,,,144,76,0,,,,, +421,42,1,14802,1152,1990.723,,,,,,176,102,0,,,,, +421,41,3,14801,1088,1990.99,,,,,,144,21,0,,,,, +421,43,3,14803,1216,1990.99,32,32.0,A0,p-,10,144,21,10,,,,, +421,44,3,14804,1216,1990.99,32,32.0,D#2,p-,10,144,39,10,,,,, +421,45,3,14805,1216,1990.99,32,32.0,B2,p-,10,144,47,10,,,,, +421,43,3,14803,1216,1991.124,,,,,,144,21,0,,,,, +421,44,3,14804,1216,1991.124,,,,,,144,39,0,,,,, +421,45,3,14805,1216,1991.124,,,,,,144,47,0,,,,, +421,46,3,14806,1248,1991.124,32,32.0,G1,p-,10,144,31,10,,,,, +421,46,3,14806,1248,1991.258,,,,,,144,31,0,,,,, +422,0,0,14807,0,1991.258,,,,,,,,,422,,,, +422,2,1,14808,0,1991.258,192,8.0,F2,mp,14,144,41,14,,,,, +422,3,1,14809,0,1991.258,128,8.0,F3,mp,14,144,53,14,,,,, +422,4,3,14810,0,1991.258,32,32.0,A0,pp+,9,144,21,9,,,,, +422,5,3,14811,0,1991.258,32,32.0,E1,pp+,9,144,28,9,,,,, +422,1,0,14812,0,1991.258,,,,,,176,64,127,,,,,V +422,4,3,14810,0,1991.392,,,,,,144,21,0,,,,, +422,5,3,14811,0,1991.392,,,,,,144,28,0,,,,, +422,6,3,14813,32,1991.392,96,16.0,E3,pp,8,144,52,8,,,,, +422,3,1,14809,0,1991.794,,,,,,144,53,0,,,,, +422,6,3,14813,32,1991.794,,,,,,144,52,0,,,,, +422,7,3,14814,128,1991.794,128,8.0,A0,pp,8,144,21,8,,,,, +422,8,3,14815,128,1991.794,128,8.0,G1,pp,8,144,31,8,,,,, +422,9,3,14816,128,1991.794,128,8.0,D#2,pp,8,144,39,8,,,,, +422,10,3,14817,128,1991.794,128,8.0,B2,pp,8,144,47,8,,,,, +422,11,3,14818,128,1991.794,128,8.0,E3,pp,8,144,52,8,,,,, +422,2,1,14808,0,1992.062,,,,,,144,41,0,,,,, +422,12,1,14819,192,1992.062,64,16.0,F#4,pp,8,144,66,8,,,,, +422,13,1,14820,256,1992.33,64,16.0,F#4,,,,,,,,,, +422,14,3,14821,256,1992.33,256,4.0,A0,,,,,,,,,, +422,15,3,14822,256,1992.33,256,4.0,G1,,,,,,,,,, +422,16,3,14823,256,1992.33,256,4.0,D#2,,,,,,,,,, +422,17,3,14824,256,1992.33,256,4.0,B2,,,,,,,,,, +422,18,3,14825,256,1992.33,256,4.0,E3,,,,,,,,,, +422,12,1,14819,192,1992.598,,,,,,144,66,0,,,,, +422,19,1,14826,320,1992.598,64,16.0,B5,pp,8,144,83,8,,,,, +422,20,1,14827,384,1992.865,96,16.0,B5,,,,,,,,,, +422,19,1,14826,320,1993.267,,,,,,144,83,0,,,,, +422,21,1,14828,480,1993.267,32,32.0,B6,ppp,5,144,95,5,,,,, +422,7,3,14814,128,1993.401,,,,,,144,21,0,,,,, +422,8,3,14815,128,1993.401,,,,,,144,31,0,,,,, +422,9,3,14816,128,1993.401,,,,,,144,39,0,,,,, +422,10,3,14817,128,1993.401,,,,,,144,47,0,,,,, +422,11,3,14818,128,1993.401,,,,,,144,52,0,,,,, +422,21,1,14828,480,1993.401,,,,,,144,95,0,,,,, +422,22,1,14829,512,1993.401,96,16.0,C#5,ppp,5,144,73,5,,,,, +422,23,1,14830,512,1993.401,64,16.0,D5,ppp,5,144,74,5,,,,, +422,24,3,14831,512,1993.401,96,16.0,A2,ppp,5,144,45,5,,,,, +422,25,3,14832,512,1993.401,64,16.0,F3,ppp,5,144,53,5,,,,, +422,23,1,14830,512,1993.669,,,,,,144,74,0,,,,, +422,25,3,14832,512,1993.669,,,,,,144,53,0,,,,, +422,22,1,14829,512,1993.803,,,,,,144,73,0,,,,, +422,24,3,14831,512,1993.803,,,,,,144,45,0,,,,, +422,26,1,14833,608,1993.803,32,32.0,C#5,ppp,5,144,73,5,,,,, +422,27,3,14834,608,1993.803,32,32.0,F#1,ppp,5,144,30,5,,,,, +422,28,0,14835,640,1993.937,,,,,,176,64,0,,,,,^ +422,29,1,14836,640,1993.937,128,8.0,C#5,,,,,,,,,, +422,30,1,14837,640,1993.937,128,8.0,A#5,ppp,5,144,82,5,,,,, +422,31,3,14838,640,1993.937,128,8.0,F#1,,,,,,,,,, +422,32,0,14839,640,1993.937,,,,,,,,,,6067,,, +422,26,1,14833,608,1994.473,,,,,,144,73,0,,,,, +422,27,3,14834,608,1994.473,,,,,,144,30,0,,,,, +422,30,1,14837,640,1994.473,,,,,,144,82,0,,,,, +422,34,1,14840,768,1994.473,21,32.0,E5,p,11,144,76,11,,,,, +422,35,3,14841,768,1994.473,,,,,,176,102,0,,,,, +422,33,0,14842,768,1994.473,,,,,,176,64,127,,,,,V +422,34,1,14840,768,1994.56,,,,,,144,76,0,,,,, +422,36,1,14843,789,1994.56,21,32.0,G#3,p,11,144,56,11,,,,, +422,36,1,14843,789,1994.648,,,,,,144,56,0,,,,, +422,37,1,14844,810,1994.648,22,32.0,C#3,p,11,144,49,11,,,,, +422,37,1,14844,810,1994.74,,,,,,144,49,0,,,,, +422,38,1,14845,832,1994.74,,,,,,176,102,0,,,,, +422,39,1,14846,896,1995.008,,,,,,176,102,0,,,,, +422,40,1,14847,960,1995.276,21,32.0,E5,p,11,144,76,11,,,,, +422,40,1,14847,960,1995.364,,,,,,144,76,0,,,,, +422,41,1,14848,981,1995.364,21,32.0,G#3,p,11,144,56,11,,,,, +422,41,1,14848,981,1995.452,,,,,,144,56,0,,,,, +422,42,1,14849,1002,1995.452,22,32.0,C6,p,11,144,84,11,,,,, +422,42,1,14849,1002,1995.544,,,,,,144,84,0,,,,, +422,43,1,14850,1024,1995.544,21,32.0,G#3,p,11,144,56,11,,,,, +422,44,3,14851,1024,1995.544,128,8.0,A#2,p,11,144,46,11,,,,, +422,43,1,14850,1024,1995.632,,,,,,144,56,0,,,,, +422,45,1,14852,1045,1995.632,21,32.0,E5,p,11,144,76,11,,,,, +422,46,1,14853,1045,1995.632,32,32.0,B5,p,11,144,83,11,,,,, +422,47,1,14854,1045,1995.632,32,32.0,C6,p,11,144,84,11,,,,, +422,45,1,14852,1045,1995.72,,,,,,144,76,0,,,,, +422,48,1,14855,1066,1995.72,22,32.0,G#3,p,11,144,56,11,,,,, +422,46,1,14853,1045,1995.766,,,,,,144,83,0,,,,, +422,47,1,14854,1045,1995.766,,,,,,144,84,0,,,,, +422,48,1,14855,1066,1995.812,,,,,,144,56,0,,,,, +422,49,1,14856,1088,1995.812,21,32.0,C#3,p,11,144,49,11,,,,, +422,50,1,14857,1088,1995.812,32,32.0,E5,p,11,144,76,11,,,,, +422,51,1,14858,1088,1995.812,32,32.0,C6,p,11,144,84,11,,,,, +422,49,1,14856,1088,1995.9,,,,,,144,49,0,,,,, +422,52,1,14859,1109,1995.9,43,16.0,D5,p,11,144,74,11,,,,, +422,50,1,14857,1088,1995.946,,,,,,144,76,0,,,,, +422,51,1,14858,1088,1995.946,,,,,,144,84,0,,,,, +422,44,3,14851,1024,1996.08,,,,,,144,46,0,,,,, +422,52,1,14859,1109,1996.08,,,,,,144,74,0,,,,, +422,53,1,14860,1152,1996.08,64,16.0,F3,p,11,144,53,11,,,,, +422,54,3,14861,1152,1996.08,128,8.0,E2,p,11,144,40,11,,,,, +422,53,1,14860,1152,1996.348,,,,,,144,53,0,,,,, +422,55,1,14862,1216,1996.348,64,16.0,F#4,p,11,144,66,11,,,,, +422,54,3,14861,1152,1996.615,,,,,,144,40,0,,,,, +422,55,1,14862,1216,1996.615,,,,,,144,66,0,,,,, +423,0,0,14863,0,1996.615,,,,,,,,,423,,,, +423,1,1,14864,0,1996.615,42,16.0,A6,p+,12,144,93,12,,,,, +423,2,1,14865,0,1996.615,64,16.0,B6,p+,12,144,95,12,,,,, +423,3,3,14866,0,1996.615,,,,,,176,102,0,,,,, +423,1,1,14864,0,1996.791,,,,,,144,93,0,,,,, +423,4,1,14867,42,1996.791,43,16.0,D5,p+,12,144,74,12,,,,, +423,2,1,14865,0,1996.883,,,,,,144,95,0,,,,, +423,4,1,14867,42,1996.971,,,,,,144,74,0,,,,, +423,5,1,14868,85,1996.971,43,16.0,A#5,p+,12,144,82,12,,,,, +423,5,1,14868,85,1997.151,,,,,,144,82,0,,,,, +423,6,1,14869,128,1997.151,,,,,,176,102,0,,,,, +423,7,3,14870,128,1997.151,128,8.0,A#3,mp-,13,144,58,13,,,,, +423,7,3,14870,128,1997.687,,,,,,144,58,0,,,,, +423,8,1,14871,256,1997.687,,,,,,176,102,0,,,,, +423,9,3,14872,256,1997.687,128,8.0,E2,mp,14,144,40,14,,,,, +423,9,3,14872,256,1998.223,,,,,,144,40,0,,,,, +423,10,3,14873,384,1998.223,32,32.0,A5,mp+,15,144,81,15,,,,, +423,10,3,14873,384,1998.356,,,,,,144,81,0,,,,, +423,11,3,14874,416,1998.356,32,32.0,A#2,mp+,15,144,46,15,,,,, +423,11,3,14874,416,1998.49,,,,,,144,46,0,,,,, +423,12,3,14875,448,1998.49,32,32.0,E1,mp+,15,144,28,15,,,,, +423,12,3,14875,448,1998.624,,,,,,144,28,0,,,,, +423,13,3,14876,480,1998.624,32,32.0,A6,mp+,15,144,93,15,,,,, +423,13,3,14876,480,1998.758,,,,,,144,93,0,,,,, +423,14,1,14877,512,1998.758,42,16.0,D5,mp+,15,144,74,15,,,,, +423,15,1,14878,512,1998.758,64,16.0,B5,mp+,15,144,83,15,,,,, +423,16,3,14879,512,1998.758,,,,,,176,102,0,,,,, +423,14,1,14877,512,1998.934,,,,,,144,74,0,,,,, +423,17,1,14880,554,1998.934,43,16.0,F2,mp+,15,144,41,15,,,,, +423,15,1,14878,512,1999.026,,,,,,144,83,0,,,,, +423,17,1,14880,554,1999.114,,,,,,144,41,0,,,,, +423,18,1,14881,597,1999.114,43,16.0,F#4,mp+,15,144,66,15,,,,, +423,18,1,14881,597,1999.294,,,,,,144,66,0,,,,, +423,19,1,14882,640,1999.294,25,32.0,E6,ppp,5,144,88,5,,,,, +423,19,1,14882,640,1999.399,,,,,,144,88,0,,,,, +423,20,1,14883,665,1999.399,26,32.0,B6,ppp,5,144,95,5,,,,, +423,20,1,14883,665,1999.507,,,,,,144,95,0,,,,, +423,21,1,14884,691,1999.507,25,32.0,G5,ppp,5,144,79,5,,,,, +423,21,1,14884,691,1999.612,,,,,,144,79,0,,,,, +423,22,1,14885,716,1999.612,26,32.0,A#5,ppp,5,144,82,5,,,,, +423,22,1,14885,716,1999.721,,,,,,144,82,0,,,,, +423,23,1,14886,742,1999.721,26,32.0,D#7,ppp,5,144,99,5,,,,, +423,23,1,14886,742,1999.83,,,,,,144,99,0,,,,, +423,24,3,14887,768,1999.83,64,16.0,E1,ppp,5,144,28,5,,,,, +423,25,1,14888,768,1999.83,85,8.0,A7,ppp,5,144,105,5,,,,, +423,24,3,14887,768,2000.098,,,,,,144,28,0,,,,, +423,26,3,14889,832,2000.098,21,32.0,A#2,ppp,5,144,46,5,,,,, +423,25,1,14888,768,2000.185,,,,,,144,105,0,,,,, +423,26,3,14889,832,2000.185,,,,,,144,46,0,,,,, +423,27,3,14890,853,2000.185,43,16.0,E2,ppp,5,144,40,5,,,,, +423,28,3,14891,853,2000.185,64,16.0,A#2,ppp,5,144,46,5,,,,, +423,29,1,14892,853,2000.185,43,16.0,A6,ppp,5,144,93,5,,,,, +423,27,3,14890,853,2000.365,,,,,,144,40,0,,,,, +423,29,1,14892,853,2000.365,,,,,,144,93,0,,,,, +423,30,1,14893,896,2000.365,128,8.0,A#5,ppp,5,144,82,5,,,,, +423,31,3,14894,896,2000.365,,,,,,176,102,0,,,,, +423,28,3,14891,853,2000.453,,,,,,144,46,0,,,,, +423,32,1,14895,1024,2000.901,128,8.0,A#5,,,,,,,,,, +423,33,3,14896,1024,2000.901,,,,,,176,102,0,,,,, +423,34,1,14897,1152,2001.437,42,16.0,D5,mf,17,144,74,17,,,,, +423,35,1,14898,1152,2001.437,64,16.0,B5,mf,17,144,83,17,,,,, +423,30,1,14893,896,2001.437,,,,,,144,82,0,,,,, +423,34,1,14897,1152,2001.613,,,,,,144,74,0,,,,, +423,36,1,14899,1194,2001.613,86,8.0,A#5,pp,8,144,82,8,,,,, +423,37,3,14900,1194,2001.613,86,8.0,F2,mp,14,144,41,14,,,,, +423,38,3,14901,1194,2001.613,128,8.0,F#3,mp,14,144,54,14,,,,, +423,35,1,14898,1152,2001.705,,,,,,144,83,0,,,,, +423,36,1,14899,1194,2001.973,,,,,,144,82,0,,,,, +423,37,3,14900,1194,2001.973,,,,,,144,41,0,,,,, +424,0,0,14902,0,2001.973,,,,,,,,,424,,,, +424,1,1,14903,0,2001.973,,,,,,176,102,0,,,,, +424,2,3,14904,0,2001.973,,,,,,176,102,0,,,,, +423,38,3,14901,1194,2002.148,,,,,,144,54,0,,,,, +424,3,0,14905,256,2003.044,,,,,,176,64,0,,,,,^ +424,4,3,14906,256,2003.044,128,8.0,F2,mp,14,144,41,14,,,,, +424,5,1,14907,384,2003.58,384,4.0,B4,pp,8,144,71,8,,,,, +424,6,1,14908,384,2003.58,256,4.0,A5,pp,8,144,81,8,,,,, +424,7,3,14909,384,2003.58,128,8.0,E2,pp,8,144,40,8,,,,, +424,8,3,14910,384,2003.58,128,8.0,F2,,,,,,,,,, +424,9,3,14911,384,2003.58,128,8.0,A#2,pp,8,144,46,8,,,,, +424,11,3,14912,512,2004.115,128,8.0,E2,,,,,,,,,, +424,12,3,14913,512,2004.115,128,8.0,F2,,,,,,,,,, +424,13,3,14914,512,2004.115,128,8.0,A#2,,,,,,,,,, +424,10,0,14915,512,2004.115,,,,,,176,64,127,,,,,V +424,14,3,14916,640,2004.651,128,8.0,A#3,pp,8,144,58,8,,,,, +424,4,3,14906,256,2004.651,,,,,,144,41,0,,,,, +424,6,1,14908,384,2004.651,,,,,,144,81,0,,,,, +424,7,3,14909,384,2004.651,,,,,,144,40,0,,,,, +424,9,3,14911,384,2004.651,,,,,,144,46,0,,,,, +424,14,3,14916,640,2005.187,,,,,,144,58,0,,,,, +424,15,1,14917,768,2005.187,85,16.0,A6,pp,8,144,93,8,,,,, +424,16,3,14918,768,2005.187,56,16.0,E2,pp,8,144,40,8,,,,, +424,5,1,14907,384,2005.187,,,,,,144,71,0,,,,, +424,16,3,14918,768,2005.421,,,,,,144,40,0,,,,, +424,17,3,14919,824,2005.421,86,16.0,A#2,pp,8,144,46,8,,,,, +424,15,1,14917,768,2005.543,,,,,,144,93,0,,,,, +424,18,1,14920,853,2005.543,28,32.0,A5,pp,8,144,81,8,,,,, +424,18,1,14920,853,2005.66,,,,,,144,81,0,,,,, +424,19,1,14921,881,2005.66,29,32.0,A6,pp,8,144,93,8,,,,, +424,17,3,14919,824,2005.781,,,,,,144,46,0,,,,, +424,19,1,14921,881,2005.781,,,,,,144,93,0,,,,, +424,20,1,14922,910,2005.781,85,16.0,A5,pp,8,144,81,8,,,,, +424,21,3,14923,910,2005.781,57,16.0,E2,pp,8,144,40,8,,,,, +424,21,3,14923,910,2006.02,,,,,,144,40,0,,,,, +424,22,3,14924,967,2006.02,57,16.0,A#3,pp,8,144,58,8,,,,, +424,20,1,14922,910,2006.137,,,,,,144,81,0,,,,, +424,23,1,14925,995,2006.137,29,32.0,A7,pp,8,144,105,8,,,,, +424,23,1,14925,995,2006.258,,,,,,144,105,0,,,,, +424,24,1,14926,1024,2006.258,,,,,,176,102,0,,,,, +424,25,3,14927,1024,2006.258,28,32.0,A#3,,,,,,,,,, +424,22,3,14924,967,2006.375,,,,,,144,58,0,,,,, +424,26,1,14928,1052,2006.375,57,16.0,A6,pp,8,144,93,8,,,,, +424,27,3,14929,1052,2006.375,85,16.0,E2,pp,8,144,40,8,,,,, +424,26,1,14928,1052,2006.614,,,,,,144,93,0,,,,, +424,28,1,14930,1109,2006.614,28,32.0,A7,pp,8,144,105,8,,,,, +424,27,3,14929,1052,2006.731,,,,,,144,40,0,,,,, +424,28,1,14930,1109,2006.731,,,,,,144,105,0,,,,, +424,29,1,14931,1137,2006.731,,,,,,176,102,0,,,,, +424,30,3,14932,1137,2006.731,29,32.0,E2,pp,8,144,40,8,,,,, +424,30,3,14932,1137,2006.853,,,,,,144,40,0,,,,, +424,31,3,14933,1166,2006.853,28,32.0,E1,pp,8,144,28,8,,,,, +424,31,3,14933,1166,2006.97,,,,,,144,28,0,,,,, +424,32,1,14934,1194,2006.97,86,16.0,A5,pp,8,144,81,8,,,,, +424,33,3,14935,1194,2006.97,29,32.0,E2,pp,8,144,40,8,,,,, +424,33,3,14935,1194,2007.091,,,,,,144,40,0,,,,, +424,34,3,14936,1223,2007.091,28,32.0,E1,pp,8,144,28,8,,,,, +424,34,3,14936,1223,2007.208,,,,,,144,28,0,,,,, +424,35,3,14937,1251,2007.208,29,32.0,E2,pp,8,144,40,8,,,,, +424,32,1,14934,1194,2007.33,,,,,,144,81,0,,,,, +424,35,3,14937,1251,2007.33,,,,,,144,40,0,,,,, +425,0,0,14938,0,2007.33,,,,,,,,,425,,,, +425,1,1,14939,0,2007.33,113,8.0,A7,pp+,9,144,105,9,,,,, +425,2,3,14940,0,2007.33,85,16.0,A#2,pp+,9,144,46,9,,,,, +425,2,3,14940,0,2007.685,,,,,,144,46,0,,,,, +425,3,3,14941,85,2007.685,28,32.0,A#3,pp+,9,144,58,9,,,,, +425,1,1,14939,0,2007.803,,,,,,144,105,0,,,,, +425,3,3,14941,85,2007.803,,,,,,144,58,0,,,,, +425,4,1,14942,113,2007.803,57,16.0,A6,pp+,9,144,93,9,,,,, +425,5,3,14943,113,2007.803,29,32.0,A#2,pp+,9,144,46,9,,,,, +425,5,3,14943,113,2007.924,,,,,,144,46,0,,,,, +425,6,3,14944,142,2007.924,85,16.0,A#3,pp+,9,144,58,9,,,,, +425,4,1,14942,113,2008.041,,,,,,144,93,0,,,,, +425,7,1,14945,170,2008.041,86,16.0,A7,pp+,9,144,105,9,,,,, +425,6,3,14944,142,2008.28,,,,,,144,58,0,,,,, +425,8,3,14946,227,2008.28,29,32.0,E2,p-,10,144,40,10,,,,, +425,7,1,14945,170,2008.401,,,,,,144,105,0,,,,, +425,8,3,14946,227,2008.401,,,,,,144,40,0,,,,, +425,9,3,14947,256,2008.401,,,,,,176,102,0,,,,, +425,10,1,14948,256,2008.401,,,,,,176,102,0,,,,, +425,11,3,14949,341,2008.757,57,16.0,E2,p-,10,144,40,10,,,,, +425,12,3,14950,341,2008.757,64,16.0,A#2,p-,10,144,46,10,,,,, +425,11,3,14949,341,2008.995,,,,,,144,40,0,,,,, +425,13,3,14951,398,2008.995,114,8.0,E1,p-,10,144,28,10,,,,, +425,12,3,14950,341,2009.025,,,,,,144,46,0,,,,, +425,13,3,14951,398,2009.473,,,,,,144,28,0,,,,, +425,14,3,14952,512,2009.473,85,8.0,E1,p,11,144,28,11,,,,, +425,15,1,14953,512,2009.473,,,,,,176,102,0,,,,, +425,14,3,14952,512,2009.828,,,,,,144,28,0,,,,, +425,16,3,14954,597,2009.828,,,,,,176,102,0,,,,, +425,17,1,14955,597,2009.828,43,16.0,B4,f,20,144,71,20,,,,, +425,17,1,14955,597,2010.008,,,,,,144,71,0,,,,, +425,18,1,14956,640,2010.008,42,16.0,D3,f,20,144,50,20,,,,, +425,19,1,14957,640,2010.008,64,16.0,B4,f,20,144,71,20,,,,, +425,18,1,14956,640,2010.184,,,,,,144,50,0,,,,, +425,20,3,14958,682,2010.184,43,16.0,F1,p,11,144,29,11,,,,, +425,21,1,14959,682,2010.184,,,,,,176,102,0,,,,, +425,19,1,14957,640,2010.276,,,,,,144,71,0,,,,, +425,22,1,14960,704,2010.276,21,32.0,A#3,f+,21,144,58,21,,,,, +425,20,3,14958,682,2010.364,,,,,,144,29,0,,,,, +425,22,1,14960,704,2010.364,,,,,,144,58,0,,,,, +425,23,3,14961,725,2010.364,43,16.0,F1,f,20,144,29,20,,,,, +425,24,1,14962,725,2010.364,21,32.0,F#2,f+,21,144,42,21,,,,, +425,24,1,14962,725,2010.452,,,,,,144,42,0,,,,, +425,25,1,14963,746,2010.452,22,32.0,A#3,f+,21,144,58,21,,,,, +425,23,3,14961,725,2010.544,,,,,,144,29,0,,,,, +425,25,1,14963,746,2010.544,,,,,,144,58,0,,,,, +425,26,3,14964,768,2010.544,,,,,,176,102,0,,,,, +425,27,1,14965,768,2010.544,,,,,,176,102,0,,,,, +425,29,0,14966,832,2010.706,,,,,,176,64,0,,,,,^ +425,28,3,14967,832,2010.812,,,,,,176,102,0,,,,, +425,30,1,14968,832,2010.812,21,32.0,F6,ff,22,144,89,22,,,,, +425,30,1,14968,832,2010.9,,,,,,144,89,0,,,,, +425,32,3,14969,853,2010.9,171,4.0,G#2,f+,21,144,44,21,,,,, +425,33,3,14970,853,2010.9,256,4.0,C3,f+,21,144,48,21,,,,, +425,34,1,14971,853,2010.9,171,4.0,A#5,f+,21,144,82,21,,,,, +425,35,1,14972,853,2010.9,256,4.0,F6,f+,21,144,89,21,,,,, +425,31,0,14973,853,2011.006,,,,,,176,64,127,,,,,V +425,36,3,14974,1024,2011.615,128,8.0,G#2,,,,,,,,,, +425,37,3,14975,1024,2011.615,128,8.0,C3,,,,,,,,,, +425,38,1,14976,1024,2011.615,128,8.0,A#5,,,,,,,,,, +425,39,1,14977,1024,2011.615,128,8.0,F6,,,,,,,,,, +425,40,3,14978,1152,2012.151,64,16.0,G#2,,,,,,,,,, +425,41,3,14979,1152,2012.151,64,16.0,C3,,,,,,,,,, +425,42,1,14980,1152,2012.151,64,16.0,A#5,,,,,,,,,, +425,43,1,14981,1152,2012.151,64,16.0,F6,,,,,,,,,, +425,46,0,14982,1216,2012.401,,,,,,176,64,0,,,,,^ +425,44,3,14983,1216,2012.419,21,32.0,G#2,p,11,144,44,11,,,,, +425,45,3,14984,1216,2012.419,32,32.0,C3,p,11,144,48,11,,,,, +425,47,1,14985,1216,2012.419,21,32.0,A#5,p,11,144,82,11,,,,, +425,48,1,14986,1216,2012.419,32,32.0,F6,p,11,144,89,11,,,,, +425,32,3,14969,853,2012.419,,,,,,144,44,0,,,,, +425,34,1,14971,853,2012.419,,,,,,144,82,0,,,,, +425,44,3,14983,1216,2012.507,,,,,,144,44,0,,,,, +425,45,3,14984,1216,2012.507,,,,,,144,48,0,,,,, +425,47,1,14985,1216,2012.507,,,,,,144,82,0,,,,, +425,49,3,14987,1237,2012.507,43,16.0,G#2,p,11,144,44,11,,,,, +425,50,3,14988,1237,2012.507,64,16.0,C3,p,11,144,48,11,,,,, +425,51,1,14989,1237,2012.507,43,16.0,E7,p,11,144,100,11,,,,, +425,48,1,14986,1216,2012.553,,,,,,144,89,0,,,,, +425,49,3,14987,1237,2012.687,,,,,,144,44,0,,,,, +425,51,1,14989,1237,2012.687,,,,,,144,100,0,,,,, +426,0,0,14990,0,2012.687,,,,,,,,,426,,,, +426,1,1,14991,0,2012.687,,,,,,176,102,0,,,,, +426,2,3,14992,0,2012.687,,,,,,176,102,0,,,,, +425,52,0,14993,1279,2012.701,,,,,,176,64,127,,,,,V +425,50,3,14988,1237,2012.775,,,,,,144,48,0,,,,, +425,33,3,14970,853,2012.775,,,,,,144,48,0,,,,, +425,35,1,14972,853,2012.775,,,,,,144,89,0,,,,, +426,3,3,14994,512,2014.83,,,,,,176,102,0,,,,, +426,4,3,14995,597,2015.185,,,,,,176,102,0,,,,, +426,5,3,14996,725,2015.721,43,16.0,B1,ppp,5,144,35,5,,,,, +426,6,3,14997,768,2015.901,512,2.0,B1,,,,,,,,,, +426,7,0,14998,1167,2017.571,,,,,,176,64,0,,,,,^ +427,0,0,14999,0,2018.044,,,,,,,,,427,,,, +427,1,1,15000,0,2018.044,,,,,,176,102,0,,,,, +427,2,3,15001,0,2018.044,256,4.0,B1,,,,,,,,,, +427,4,3,15002,256,2019.115,256,4.0,B1,,,,,,,,,, +427,3,0,15003,256,2019.115,,,,,,176,64,127,,,,,V +427,5,1,15004,384,2019.651,25,32.0,E6,ppp,5,144,88,5,,,,, +427,5,1,15004,384,2019.756,,,,,,144,88,0,,,,, +427,6,1,15005,409,2019.756,26,32.0,B6,ppp,5,144,95,5,,,,, +427,6,1,15005,409,2019.865,,,,,,144,95,0,,,,, +427,7,1,15006,435,2019.865,25,32.0,G5,ppp,5,144,79,5,,,,, +427,7,1,15006,435,2019.969,,,,,,144,79,0,,,,, +427,8,1,15007,460,2019.969,26,32.0,A#5,ppp,5,144,82,5,,,,, +427,8,1,15007,460,2020.078,,,,,,144,82,0,,,,, +427,9,1,15008,486,2020.078,26,32.0,D#7,ppp,5,144,99,5,,,,, +427,12,0,15009,612,2020.095,,,,,,176,64,0,,,,,^ +426,5,3,14996,725,2020.187,,,,,,144,35,0,,,,, +427,9,1,15008,486,2020.187,,,,,,144,99,0,,,,, +427,10,1,15010,512,2020.187,,,,,,176,102,0,,,,, +427,11,3,15011,512,2020.187,,,,,,176,102,0,,,,, +427,13,0,15012,612,2020.187,,,,,,,,,,6068,,, +427,15,1,15013,,2020.229,,8.0,B5,mf,17,144,83,17,,,,g, +427,15,1,15013,,2020.279,,,,,,144,83,0,,,,, +427,16,1,15014,640,2020.304,42,16.0,F3,mf,17,144,53,17,,,,, +427,17,1,15015,640,2020.304,64,16.0,C#5,fff,24,144,73,23,,,,, +427,18,1,15016,640,2020.304,64,16.0,A5,fff,24,144,81,23,,,,, +427,19,1,15017,640,2020.304,64,16.0,C#6,mf,17,144,85,17,,,,, +427,20,3,15018,640,2020.304,128,8.0,E2,fff,24,144,40,23,,,,, +427,21,3,15019,640,2020.304,128,8.0,F2,fff,24,144,41,23,,,,, +427,22,3,15020,640,2020.304,128,8.0,A#2,fff,24,144,46,23,,,,, +427,14,0,15021,640,2020.395,,,,,,176,64,127,,,,,V +427,16,1,15014,640,2020.48,,,,,,144,53,0,,,,, +427,23,1,15022,682,2020.48,22,32.0,B5,mf,17,144,83,17,,,,, +427,24,1,15023,682,2020.48,32,32.0,C#6,,,,,,,,,, +427,17,1,15015,640,2020.572,,,,,,144,73,0,,,,, +427,18,1,15016,640,2020.572,,,,,,144,81,0,,,,, +427,23,1,15022,682,2020.572,,,,,,144,83,0,,,,, +427,25,1,15024,704,2020.572,21,32.0,F3,mf,17,144,53,17,,,,, +427,26,1,15025,704,2020.572,32,32.0,C#6,,,,,,,,,, +427,27,1,15026,725,2020.66,43,16.0,F3,,,,,,,,,, +427,28,1,15027,725,2020.66,64,16.0,F4,fff,24,144,65,23,,,,, +427,29,1,15028,725,2020.66,64,16.0,C#6,,,,,,,,,, +427,30,0,15029,749,2020.694,,,,,,176,64,0,,,,,^ +427,20,3,15018,640,2020.84,,,,,,144,40,0,,,,, +427,21,3,15019,640,2020.84,,,,,,144,41,0,,,,, +427,22,3,15020,640,2020.84,,,,,,144,46,0,,,,, +427,25,1,15024,704,2020.84,,,,,,144,53,0,,,,, +427,31,1,15030,768,2020.84,21,32.0,F#4,mf,17,144,66,17,,,,, +427,32,1,15031,768,2020.84,32,32.0,C#6,,,,,,,,,, +427,33,3,15032,768,2020.84,,,,,,176,102,0,,,,, +427,28,1,15027,725,2020.928,,,,,,144,65,0,,,,, +427,31,1,15030,768,2020.928,,,,,,144,66,0,,,,, +427,35,1,15033,789,2020.928,21,32.0,D5,mf,17,144,74,17,,,,, +427,36,1,15034,789,2020.928,32,32.0,C#6,,,,,,,,,, +427,34,0,15035,789,2020.994,,,,,,176,64,127,,,,,V +427,35,1,15033,789,2021.016,,,,,,144,74,0,,,,, +427,37,1,15036,810,2021.016,32,32.0,B5,mf,17,144,83,17,,,,, +427,38,1,15037,810,2021.016,32,32.0,C#6,,,,,,,,,, +427,37,1,15036,810,2021.149,,,,,,144,83,0,,,,, +427,39,1,15038,842,2021.149,32,32.0,D5,p,11,144,74,11,,,,, +427,39,1,15038,842,2021.283,,,,,,144,74,0,,,,, +427,40,1,15039,874,2021.283,22,32.0,F3,p,11,144,53,11,,,,, +427,40,1,15039,874,2021.375,,,,,,144,53,0,,,,, +427,41,1,15040,896,2021.375,21,32.0,F#4,p,11,144,66,11,,,,, +427,41,1,15040,896,2021.463,,,,,,144,66,0,,,,, +427,42,1,15041,917,2021.463,21,32.0,D5,p,11,144,74,11,,,,, +427,19,1,15017,640,2021.509,,,,,,144,85,0,,,,, +427,42,1,15041,917,2021.551,,,,,,144,74,0,,,,, +427,43,1,15042,938,2021.551,22,32.0,A#5,p,11,144,82,11,,,,, +427,43,1,15042,938,2021.643,,,,,,144,82,0,,,,, +427,44,1,15043,,2021.643,,8.0,F2,pp,8,144,41,8,,,,g, +427,44,1,15043,,2021.693,,,,,,144,41,0,,,,, +427,45,1,15044,960,2021.718,64,16.0,B4,pp,8,144,71,8,,,,, +427,45,1,15044,960,2021.986,,,,,,144,71,0,,,,, +427,46,1,15045,1024,2021.986,,,,,,176,102,0,,,,, +427,47,3,15046,1024,2021.986,64,16.0,D4,pp,8,144,62,8,,,,, +427,47,3,15046,1024,2022.254,,,,,,144,62,0,,,,, +427,48,3,15047,1088,2022.254,42,16.0,F2,p-,10,144,41,10,,,,, +427,48,3,15047,1088,2022.43,,,,,,144,41,0,,,,, +427,49,3,15048,1130,2022.43,64,16.0,B4,p+,12,144,71,12,,,,, +427,49,3,15048,1130,2022.698,,,,,,144,71,0,,,,, +427,50,3,15049,1194,2022.698,64,16.0,F2,mp+,15,144,41,15,,,,, +427,51,3,15050,1194,2022.698,64,16.0,D4,mp+,15,144,62,15,,,,, +427,50,3,15049,1194,2022.966,,,,,,144,41,0,,,,, +427,51,3,15050,1194,2022.966,,,,,,144,62,0,,,,, +427,52,3,15051,1258,2022.966,22,32.0,F1,mf,17,144,29,17,,,,, +427,52,3,15051,1258,2023.058,,,,,,144,29,0,,,,, +428,0,0,15052,0,2023.058,,,,,,,,,428,,,, +428,1,1,15053,0,2023.058,,,,,,176,102,0,,,,, +428,2,3,15054,0,2023.058,,,,,,176,102,0,,,,, +428,3,1,15055,128,2023.593,42,16.0,C#5,fff,24,144,73,23,,,,, +428,4,1,15056,128,2023.593,64,16.0,A5,fff,24,144,81,23,,,,, +428,5,1,15057,128,2023.593,64,16.0,C#6,fff,24,144,85,23,,,,, +428,6,3,15058,128,2023.593,128,8.0,E2,fff,24,144,40,23,,,,, +428,7,3,15059,128,2023.593,128,8.0,F2,fff,24,144,41,23,,,,, +428,8,3,15060,128,2023.593,128,8.0,A#2,fff,24,144,46,23,,,,, +428,3,1,15055,128,2023.769,,,,,,144,73,0,,,,, +428,9,1,15061,170,2023.769,43,16.0,F4,fff,24,144,65,23,,,,, +428,4,1,15056,128,2023.861,,,,,,144,81,0,,,,, +428,5,1,15057,128,2023.861,,,,,,144,85,0,,,,, +428,9,1,15061,170,2023.949,,,,,,144,65,0,,,,, +428,10,1,15062,213,2023.949,21,32.0,C#4,pp,8,144,61,8,,,,, +428,10,1,15062,213,2024.037,,,,,,144,61,0,,,,, +428,11,1,15063,234,2024.037,22,32.0,A1,pp+,9,144,33,9,,,,, +428,6,3,15058,128,2024.129,,,,,,144,40,0,,,,, +428,7,3,15059,128,2024.129,,,,,,144,41,0,,,,, +428,8,3,15060,128,2024.129,,,,,,144,46,0,,,,, +428,11,1,15063,234,2024.129,,,,,,144,33,0,,,,, +428,12,0,15064,256,2024.129,,,,,,176,64,0,,,,,^ +428,13,1,15065,256,2024.129,,,,,,176,102,0,,,,, +428,14,3,15066,256,2024.129,32,32.0,D5,p-,10,144,74,10,,,,, +428,14,3,15066,256,2024.263,,,,,,144,74,0,,,,, +428,15,3,15067,288,2024.263,32,32.0,G#4,p,11,144,68,11,,,,, +428,15,3,15067,288,2024.397,,,,,,144,68,0,,,,, +428,16,3,15068,320,2024.397,32,32.0,C#4,p+,12,144,61,12,,,,, +428,16,3,15068,320,2024.531,,,,,,144,61,0,,,,, +428,17,3,15069,352,2024.531,32,32.0,D5,mp-,13,144,74,13,,,,, +428,17,3,15069,352,2024.665,,,,,,144,74,0,,,,, +428,19,1,15070,384,2024.665,128,8.0,F2,fff,24,144,41,23,,,,, +428,20,1,15071,384,2024.665,128,8.0,F#2,fff,24,144,42,23,,,,, +428,21,3,15072,384,2024.665,32,32.0,C#4,mp,14,144,61,14,,,,, +428,22,3,15073,384,2024.665,32,32.0,G#4,mp,14,144,68,14,,,,, +428,18,0,15074,384,2024.665,,,,,,176,64,127,,,,,V +428,21,3,15072,384,2024.799,,,,,,144,61,0,,,,, +428,22,3,15073,384,2024.799,,,,,,144,68,0,,,,, +428,23,3,15075,416,2024.799,21,32.0,A2,mp,14,144,45,14,,,,, +428,23,3,15075,416,2024.887,,,,,,144,45,0,,,,, +428,24,3,15076,437,2024.887,21,32.0,C#4,mp,14,144,61,14,,,,, +428,25,3,15077,437,2024.887,32,32.0,G#4,mp,14,144,68,14,,,,, +428,26,3,15078,437,2024.887,32,32.0,D5,mp,14,144,74,14,,,,, +428,24,3,15076,437,2024.974,,,,,,144,61,0,,,,, +428,27,3,15079,458,2024.974,22,32.0,A1,mp,14,144,33,14,,,,, +428,25,3,15077,437,2025.021,,,,,,144,68,0,,,,, +428,26,3,15078,437,2025.021,,,,,,144,74,0,,,,, +428,28,0,15080,480,2025.067,,,,,,176,64,0,,,,,^ +428,29,3,15081,480,2025.067,32,32.0,A1,,,,,,,,,, +428,19,1,15070,384,2025.2,,,,,,144,41,0,,,,, +428,20,1,15071,384,2025.2,,,,,,144,42,0,,,,, +428,27,3,15079,458,2025.2,,,,,,144,33,0,,,,, +428,30,1,15082,512,2025.2,,,,,,176,102,0,,,,, +428,31,3,15083,512,2025.2,128,8.0,F2,p,11,144,41,11,,,,, +428,32,0,15084,512,2025.2,,,,,,,,,,6069,,, +428,34,1,15085,640,2025.736,42,16.0,C#5,mf,17,144,73,17,,,,, +428,35,1,15086,640,2025.736,64,16.0,A5,mf,17,144,81,17,,,,, +428,36,1,15087,640,2025.736,64,16.0,C#6,mf,17,144,85,17,,,,, +428,37,3,15088,640,2025.736,128,8.0,E2,mf,17,144,40,17,,,,, +428,38,3,15089,640,2025.736,128,8.0,A#2,mf,17,144,46,17,,,,, +428,33,0,15090,640,2025.736,,,,,,176,64,127,,,,,V +428,34,1,15085,640,2025.912,,,,,,144,73,0,,,,, +428,39,1,15091,682,2025.912,86,8.0,F4,mf,17,144,65,17,,,,, +428,31,3,15083,512,2025.961,,,,,,144,41,0,,,,, +428,35,1,15086,640,2026.004,,,,,,144,81,0,,,,, +428,36,1,15087,640,2026.004,,,,,,144,85,0,,,,, +428,37,3,15088,640,2026.272,,,,,,144,40,0,,,,, +428,38,3,15089,640,2026.272,,,,,,144,46,0,,,,, +428,39,1,15091,682,2026.272,,,,,,144,65,0,,,,, +428,40,1,15092,768,2026.272,,,,,,176,102,0,,,,, +428,41,3,15093,768,2026.272,32,32.0,C#5,mp,14,144,73,14,,,,, +428,41,3,15093,768,2026.406,,,,,,144,73,0,,,,, +428,42,3,15094,800,2026.406,32,32.0,A3,mp-,13,144,57,13,,,,, +428,42,3,15094,800,2026.54,,,,,,144,57,0,,,,, +428,43,3,15095,832,2026.54,21,32.0,F3,p+,12,144,53,12,,,,, +428,43,3,15095,832,2026.628,,,,,,144,53,0,,,,, +428,44,3,15096,853,2026.628,21,32.0,E4,p,11,144,64,11,,,,, +428,44,3,15096,853,2026.716,,,,,,144,64,0,,,,, +428,45,3,15097,874,2026.716,22,32.0,F3,p-,10,144,53,10,,,,, +428,45,3,15097,874,2026.808,,,,,,144,53,0,,,,, +428,46,3,15098,896,2026.808,,,,,,176,102,0,,,,, +428,47,1,15099,938,2026.983,22,32.0,C#6,p,11,144,85,11,,,,, +428,47,1,15099,938,2027.075,,,,,,144,85,0,,,,, +428,48,1,15100,,2027.075,,8.0,D7,p+,12,144,98,12,,,,g, +428,48,1,15100,,2027.125,,,,,,144,98,0,,,,, +428,49,1,15101,960,2027.15,21,32.0,A4,mp-,13,144,69,13,,,,, +428,49,1,15101,960,2027.238,,,,,,144,69,0,,,,, +428,50,1,15102,,2027.238,,8.0,F5,mp-,13,144,77,13,,,,g, +428,50,1,15102,,2027.288,,,,,,144,77,0,,,,, +428,51,1,15103,,2027.313,,8.0,G#6,mp,14,144,92,14,,,,g, +428,51,1,15103,,2027.363,,,,,,144,92,0,,,,, +428,52,1,15104,981,2027.388,,,,,,176,102,0,,,,, +428,53,1,15105,1024,2027.568,21,32.0,C#5,mf,17,144,73,17,,,,, +428,54,3,15106,1024,2027.568,,,,,,176,102,0,,,,, +428,53,1,15105,1024,2027.656,,,,,,144,73,0,,,,, +428,55,1,15107,1045,2027.656,21,32.0,D7,mf,17,144,98,17,,,,, +428,55,1,15107,1045,2027.744,,,,,,144,98,0,,,,, +428,56,1,15108,1066,2027.744,22,32.0,G#6,mf+,18,144,92,18,,,,, +428,56,1,15108,1066,2027.836,,,,,,144,92,0,,,,, +428,57,1,15109,1088,2027.836,21,32.0,A2,f-,19,144,45,19,,,,, +428,57,1,15109,1088,2027.924,,,,,,144,45,0,,,,, +428,58,1,15110,1109,2027.924,21,32.0,F3,f,20,144,53,20,,,,, +428,58,1,15110,1109,2028.012,,,,,,144,53,0,,,,, +428,59,1,15111,1130,2028.012,22,32.0,G#6,f,20,144,92,20,,,,, +428,59,1,15111,1130,2028.104,,,,,,144,92,0,,,,, +428,60,1,15112,1152,2028.104,,,,,,176,102,0,,,,, +428,61,0,15113,1279,2028.636,,,,,,176,64,0,,,,,^ +429,0,0,15114,0,2028.64,,,,,,,,,429,,,, +429,1,1,15115,,2028.64,,8.0,D3,ff,22,144,50,22,,,,g, +429,1,1,15115,,2028.69,,,,,,144,50,0,,,,, +429,2,1,15116,,2028.715,,8.0,C#2,ff,22,144,37,22,,,,g, +429,2,1,15116,,2028.765,,,,,,144,37,0,,,,, +429,3,1,15117,,2028.79,,8.0,A0,ff+,23,144,21,23,,,,g, +429,3,1,15117,,2028.84,,,,,,144,21,0,,,,, +429,4,1,15118,,2028.865,,8.0,C#2,fff,24,144,37,23,,,,g, +429,5,1,15119,,2028.865,,8.0,G#2,fff,24,144,44,23,,,,g, +429,6,1,15120,,2028.865,,8.0,D3,fff,24,144,50,23,,,,g, +429,4,1,15118,,2028.915,,,,,,144,37,0,,,,, +429,5,1,15119,,2028.915,,,,,,144,44,0,,,,, +429,6,1,15120,,2028.915,,,,,,144,50,0,,,,, +429,7,1,15121,,2028.94,,8.0,A0,fff,24,144,21,23,,,,g, +429,8,1,15122,,2028.94,,8.0,F1,fff,24,144,29,23,,,,g, +429,7,1,15121,,2028.99,,,,,,144,21,0,,,,, +429,8,1,15122,,2028.99,,,,,,144,29,0,,,,, +429,9,1,15123,0,2029.24,192,8.0,C#4,fff,24,144,61,23,,,,, +429,10,3,15124,0,2029.24,,,,,,176,102,0,,,,, +429,11,0,15125,50,2029.449,,,,,,176,64,127,,,,,V +429,12,0,15126,192,2030.043,,,,,,176,64,0,,,,,^ +429,13,1,15127,192,2030.043,64,16.0,C#4,,,,,,,,,, +429,14,3,15128,192,2030.043,,,,,,176,102,0,,,,, +429,15,1,15129,,2030.311,,8.0,G3,p,11,144,55,11,,,,g, +429,15,1,15129,,2030.361,,,,,,144,55,0,,,,, +429,16,1,15130,256,2030.386,32,32.0,A#3,p,11,144,58,11,,,,, +429,17,1,15131,256,2030.386,32,32.0,C#4,,,,,,,,,, +429,18,1,15132,256,2030.386,32,32.0,G5,p,11,144,79,11,,,,, +429,19,3,15133,256,2030.386,,,,,,176,102,0,,,,, +429,16,1,15130,256,2030.52,,,,,,144,58,0,,,,, +429,20,1,15134,288,2030.52,32,32.0,C#4,,,,,,,,,, +429,21,1,15135,288,2030.52,32,32.0,D4,p,11,144,62,11,,,,, +429,22,1,15136,288,2030.52,32,32.0,G5,,,,,,,,,, +429,9,1,15123,0,2030.579,,,,,,144,61,0,,,,, +429,21,1,15135,288,2030.654,,,,,,144,62,0,,,,, +429,23,1,15137,320,2030.654,192,8.0,C#4,fff,24,144,61,23,,,,, +429,24,1,15138,320,2030.654,128,8.0,G5,,,,,,,,,, +429,25,1,15139,320,2030.654,128,8.0,D6,fff,24,144,86,23,,,,, +429,26,3,15140,426,2031.098,86,8.0,B1,p,11,144,35,11,,,,, +429,27,3,15141,426,2031.098,128,8.0,A#2,p,11,144,46,11,,,,, +429,18,1,15132,256,2031.19,,,,,,144,79,0,,,,, +429,25,1,15139,320,2031.19,,,,,,144,86,0,,,,, +429,23,1,15137,320,2031.458,,,,,,144,61,0,,,,, +429,29,1,15142,512,2031.458,,,,,,176,102,0,,,,, +429,30,3,15143,512,2031.458,256,4.0,B1,,,,,,,,,, +429,31,3,15144,512,2031.458,256,4.0,D2,p,11,144,38,11,,,,, +429,32,3,15145,512,2031.458,256,4.0,A#2,,,,,,,,,, +429,28,0,15146,512,2031.458,,,,,,176,64,127,,,,,V +429,33,1,15147,576,2031.725,21,32.0,C#6,mp,14,144,85,14,,,,, +429,33,1,15147,576,2031.813,,,,,,144,85,0,,,,, +429,34,1,15148,597,2031.813,21,32.0,A3,mp,14,144,57,14,,,,, +429,34,1,15148,597,2031.901,,,,,,144,57,0,,,,, +429,35,1,15149,618,2031.901,22,32.0,F3,mp,14,144,53,14,,,,, +429,35,1,15149,618,2031.993,,,,,,144,53,0,,,,, +429,36,1,15150,640,2031.993,21,32.0,E4,mp,14,144,64,14,,,,, +429,36,1,15150,640,2032.081,,,,,,144,64,0,,,,, +429,37,1,15151,661,2032.081,21,32.0,F3,mp,14,144,53,14,,,,, +429,37,1,15151,661,2032.169,,,,,,144,53,0,,,,, +429,38,1,15152,682,2032.169,22,32.0,E4,mp,14,144,64,14,,,,, +429,38,1,15152,682,2032.261,,,,,,144,64,0,,,,, +429,39,1,15153,704,2032.261,64,16.0,A#4,mp,14,144,70,14,,,,, +429,31,3,15144,512,2032.529,,,,,,144,38,0,,,,, +429,39,1,15153,704,2032.529,,,,,,144,70,0,,,,, +429,40,1,15154,768,2032.529,32,32.0,F#2,pp,8,144,42,8,,,,, +429,41,1,15155,768,2032.529,32,32.0,G3,pp,8,144,55,8,,,,, +429,42,3,15156,768,2032.529,85,8.0,B1,pp,8,144,35,8,,,,, +429,43,3,15157,768,2032.529,128,8.0,D2,pp,8,144,38,8,,,,, +429,44,3,15158,768,2032.529,128,8.0,A#2,pp,8,144,46,8,,,,, +429,26,3,15140,426,2032.529,,,,,,144,35,0,,,,, +429,40,1,15154,768,2032.663,,,,,,144,42,0,,,,, +429,41,1,15155,768,2032.663,,,,,,144,55,0,,,,, +429,45,1,15159,800,2032.663,32,32.0,C3,pp,8,144,48,8,,,,, +429,27,3,15141,426,2032.705,,,,,,144,46,0,,,,, +429,45,1,15159,800,2032.797,,,,,,144,48,0,,,,, +429,46,1,15160,832,2032.797,,,,,,176,102,0,,,,, +429,42,3,15156,768,2032.885,,,,,,144,35,0,,,,, +429,47,3,15161,853,2032.885,85,8.0,E4,ppp+,6,144,64,6,,,,, +429,43,3,15157,768,2033.065,,,,,,144,38,0,,,,, +429,44,3,15158,768,2033.065,,,,,,144,46,0,,,,, +429,47,3,15161,853,2033.241,,,,,,144,64,0,,,,, +429,48,3,15162,938,2033.241,86,8.0,F#1,ppp,5,144,30,5,,,,, +429,49,3,15163,938,2033.241,128,8.0,B1,ppp,5,144,35,5,,,,, +429,50,3,15164,938,2033.241,128,8.0,D2,ppp,5,144,38,5,,,,, +429,51,3,15165,938,2033.241,128,8.0,A#2,ppp,5,144,46,5,,,,, +429,52,0,15166,960,2033.333,,,,,,176,64,0,,,,,^ +429,53,1,15167,960,2033.333,32,32.0,F#3,p,11,144,54,11,,,,, +429,53,1,15167,960,2033.467,,,,,,144,54,0,,,,, +429,54,1,15168,992,2033.467,32,32.0,A#4,p,11,144,70,11,,,,, +429,48,3,15162,938,2033.6,,,,,,144,30,0,,,,, +429,54,1,15168,992,2033.6,,,,,,144,70,0,,,,, +429,55,1,15169,1024,2033.6,256,4.0,G5,p,11,144,79,11,,,,, +429,56,3,15170,1024,2033.6,,,,,,176,102,0,,,,, +429,49,3,15163,938,2033.776,,,,,,144,35,0,,,,, +429,50,3,15164,938,2033.776,,,,,,144,38,0,,,,, +429,51,3,15165,938,2033.776,,,,,,144,46,0,,,,, +429,57,3,15171,1120,2034.002,32,32.0,B5,p,11,144,83,11,,,,, +429,57,3,15171,1120,2034.136,,,,,,144,83,0,,,,, +429,58,3,15172,1152,2034.136,32,32.0,D4,p,11,144,62,11,,,,, +429,58,3,15172,1152,2034.27,,,,,,144,62,0,,,,, +429,59,3,15173,1184,2034.27,32,32.0,F2,p,11,144,41,11,,,,, +429,59,3,15173,1184,2034.404,,,,,,144,41,0,,,,, +429,60,3,15174,1216,2034.404,32,32.0,F2,p,11,144,41,11,,,,, +429,61,3,15175,1216,2034.404,32,32.0,F#3,p,11,144,54,11,,,,, +429,62,3,15176,1216,2034.404,32,32.0,D4,p,11,144,62,11,,,,, +429,63,3,15177,1216,2034.404,32,32.0,B4,p,11,144,71,11,,,,, +429,60,3,15174,1216,2034.538,,,,,,144,41,0,,,,, +429,61,3,15175,1216,2034.538,,,,,,144,54,0,,,,, +429,62,3,15176,1216,2034.538,,,,,,144,62,0,,,,, +429,63,3,15177,1216,2034.538,,,,,,144,71,0,,,,, +429,64,3,15178,1248,2034.538,32,32.0,A#4,p,11,144,70,11,,,,, +429,64,3,15178,1248,2034.672,,,,,,144,70,0,,,,, +430,0,0,15179,0,2034.672,,,,,,,,,430,,,, +430,1,1,15180,0,2034.672,128,8.0,G5,,,,,,,,,, +430,2,3,15181,0,2034.672,32,32.0,F#2,ppp,5,144,42,5,,,,, +430,3,3,15182,0,2034.672,32,32.0,G3,ppp,5,144,55,5,,,,, +430,2,3,15181,0,2034.806,,,,,,144,42,0,,,,, +430,3,3,15182,0,2034.806,,,,,,144,55,0,,,,, +430,4,3,15183,32,2034.806,32,32.0,A#3,ppp,5,144,58,5,,,,, +430,4,3,15183,32,2034.94,,,,,,144,58,0,,,,, +430,5,3,15184,64,2034.94,32,32.0,D4,ppp,5,144,62,5,,,,, +430,5,3,15184,64,2035.074,,,,,,144,62,0,,,,, +430,6,3,15185,96,2035.074,32,32.0,F#2,ppp,5,144,42,5,,,,, +430,7,3,15186,96,2035.074,32,32.0,C3,ppp,5,144,48,5,,,,, +430,8,3,15187,96,2035.074,32,32.0,G3,ppp,5,144,55,5,,,,, +429,55,1,15169,1024,2035.208,,,,,,144,79,0,,,,, +430,6,3,15185,96,2035.208,,,,,,144,42,0,,,,, +430,7,3,15186,96,2035.208,,,,,,144,48,0,,,,, +430,8,3,15187,96,2035.208,,,,,,144,55,0,,,,, +430,10,1,15188,128,2035.208,96,16.0,E4,ppp,5,144,64,5,,,,, +430,11,3,15189,128,2035.208,,,,,,176,102,0,,,,, +430,9,0,15190,128,2035.208,,,,,,176,64,127,,,,,V +430,12,3,15191,170,2035.383,86,8.0,F#1,ppp,5,144,30,5,,,,, +430,13,3,15192,170,2035.383,128,8.0,B1,ppp,5,144,35,5,,,,, +430,14,3,15193,170,2035.383,128,8.0,D2,ppp,5,144,38,5,,,,, +430,15,3,15194,170,2035.383,128,8.0,A#2,ppp,5,144,46,5,,,,, +430,16,3,15195,170,2035.383,128,8.0,E3,ppp,5,144,52,5,,,,, +430,18,0,15196,239,2035.495,,,,,,176,64,0,,,,,^ +430,10,1,15188,128,2035.609,,,,,,144,64,0,,,,, +430,17,1,15197,224,2035.609,32,32.0,F2,mp,14,144,41,14,,,,, +430,19,0,15198,239,2035.609,,,,,,,,,,6070,,, +430,17,1,15197,224,2035.681,,,,,,144,41,0,,,,, +430,21,1,15199,256,2035.681,128,8.0,F2,mf,17,144,41,17,,,,, +430,22,1,15200,256,2035.681,128,8.0,C#3,mf,17,144,49,17,,,,, +430,23,3,15201,256,2035.681,170,8.0,B5,p,11,144,83,11,,,,, +430,12,3,15191,170,2035.743,,,,,,144,30,0,,,,, +430,20,0,15202,256,2035.795,,,,,,176,64,127,,,,,V +430,13,3,15192,170,2035.919,,,,,,144,35,0,,,,, +430,14,3,15193,170,2035.919,,,,,,144,38,0,,,,, +430,15,3,15194,170,2035.919,,,,,,144,46,0,,,,, +430,16,3,15195,170,2035.919,,,,,,144,52,0,,,,, +430,21,1,15199,256,2036.216,,,,,,144,41,0,,,,, +430,22,1,15200,256,2036.216,,,,,,144,49,0,,,,, +430,24,1,15203,384,2036.216,384,4.0,G5,p,11,144,79,11,,,,, +430,23,3,15201,256,2036.392,,,,,,144,83,0,,,,, +430,25,3,15204,426,2036.392,29,32.0,F#2,p,11,144,42,11,,,,, +430,25,3,15204,426,2036.513,,,,,,144,42,0,,,,, +430,26,3,15205,455,2036.513,28,32.0,D3,p+,12,144,50,12,,,,, +430,26,3,15205,455,2036.631,,,,,,144,50,0,,,,, +430,27,3,15206,483,2036.631,29,32.0,F#2,mp-,13,144,42,13,,,,, +430,27,3,15206,483,2036.752,,,,,,144,42,0,,,,, +430,28,3,15207,512,2036.752,28,32.0,B5,mp,14,144,83,14,,,,, +430,28,3,15207,512,2036.869,,,,,,144,83,0,,,,, +430,29,3,15208,540,2036.869,28,32.0,D3,mp,14,144,50,14,,,,, +430,29,3,15208,540,2036.986,,,,,,144,50,0,,,,, +430,30,3,15209,568,2036.986,29,32.0,F#2,mp,14,144,42,14,,,,, +430,30,3,15209,568,2037.108,,,,,,144,42,0,,,,, +430,31,3,15210,597,2037.108,,,,,,176,102,0,,,,, +430,32,3,15211,682,2037.463,86,16.0,F#1,ppp,5,144,30,5,,,,, +430,33,3,15212,682,2037.463,64,16.0,B1,ppp,5,144,35,5,,,,, +430,34,3,15213,682,2037.463,64,16.0,D2,ppp,5,144,38,5,,,,, +430,35,3,15214,682,2037.463,64,16.0,A#2,ppp,5,144,46,5,,,,, +430,36,3,15215,682,2037.463,64,16.0,E3,ppp,5,144,52,5,,,,, +430,33,3,15212,682,2037.731,,,,,,144,35,0,,,,, +430,34,3,15213,682,2037.731,,,,,,144,38,0,,,,, +430,35,3,15214,682,2037.731,,,,,,144,46,0,,,,, +430,36,3,15215,682,2037.731,,,,,,144,52,0,,,,, +430,32,3,15211,682,2037.823,,,,,,144,30,0,,,,, +430,37,1,15216,768,2037.823,153,8.0,A5,p,11,144,81,11,,,,, +430,38,3,15217,768,2037.823,,,,,,176,102,0,,,,, +430,24,1,15203,384,2037.823,,,,,,144,79,0,,,,, +430,39,3,15218,896,2038.359,128,8.0,F2,mf,17,144,41,17,,,,, +430,40,3,15219,896,2038.359,128,8.0,C#3,mf,17,144,49,17,,,,, +430,41,3,15220,896,2038.359,128,8.0,G#4,mf,17,144,68,17,,,,, +430,37,1,15216,768,2038.464,,,,,,144,81,0,,,,, +430,42,1,15221,921,2038.464,103,8.0,C#5,p+,12,144,73,12,,,,, +430,39,3,15218,896,2038.895,,,,,,144,41,0,,,,, +430,40,3,15219,896,2038.895,,,,,,144,49,0,,,,, +430,41,3,15220,896,2038.895,,,,,,144,68,0,,,,, +430,42,1,15221,921,2038.895,,,,,,144,73,0,,,,, +430,43,1,15222,1024,2038.895,38,32.0,A5,mp-,13,144,81,13,,,,, +430,44,3,15223,1024,2038.895,,,,,,176,102,0,,,,, +430,43,1,15222,1024,2039.054,,,,,,144,81,0,,,,, +430,45,1,15224,1062,2039.054,26,32.0,C#5,mp-,13,144,73,13,,,,, +430,45,1,15224,1062,2039.163,,,,,,144,73,0,,,,, +430,46,1,15225,1088,2039.163,25,32.0,A#3,mp,14,144,58,14,,,,, +430,46,1,15225,1088,2039.267,,,,,,144,58,0,,,,, +430,47,1,15226,1113,2039.267,39,32.0,A6,mp,14,144,93,14,,,,, +430,47,1,15226,1113,2039.431,,,,,,144,93,0,,,,, +430,48,1,15227,1152,2039.431,42,32.0,C#6,mp,14,144,85,14,,,,, +430,48,1,15227,1152,2039.606,,,,,,144,85,0,,,,, +430,49,1,15228,1194,2039.606,29,32.0,F4,mp,14,144,65,14,,,,, +430,49,1,15228,1194,2039.728,,,,,,144,65,0,,,,, +430,50,1,15229,1223,2039.728,28,32.0,C#6,mp+,15,144,85,15,,,,, +430,50,1,15229,1223,2039.845,,,,,,144,85,0,,,,, +430,51,1,15230,1251,2039.845,29,32.0,A#3,mp+,15,144,58,15,,,,, +430,51,1,15230,1251,2039.966,,,,,,144,58,0,,,,, +431,0,0,15231,0,2039.966,,,,,,,,,431,,,, +431,1,1,15232,0,2039.966,28,32.0,F4,mp+,15,144,65,15,,,,, +431,2,3,15233,0,2039.966,,,,,,176,102,0,,,,, +431,1,1,15232,0,2040.083,,,,,,144,65,0,,,,, +431,3,1,15234,28,2040.083,28,32.0,E3,mp+,15,144,52,15,,,,, +431,3,1,15234,28,2040.201,,,,,,144,52,0,,,,, +431,4,1,15235,56,2040.201,43,32.0,A#3,mf-,16,144,58,16,,,,, +431,4,1,15235,56,2040.381,,,,,,144,58,0,,,,, +431,5,1,15236,99,2040.381,29,32.0,E2,mf-,16,144,40,16,,,,, +431,5,1,15236,99,2040.502,,,,,,144,40,0,,,,, +431,6,1,15237,128,2040.502,42,32.0,A6,mf-,16,144,93,16,,,,, +431,6,1,15237,128,2040.678,,,,,,144,93,0,,,,, +431,7,1,15238,170,2040.678,29,32.0,C#6,mf,17,144,85,17,,,,, +431,7,1,15238,170,2040.799,,,,,,144,85,0,,,,, +431,8,1,15239,199,2040.799,28,32.0,A#4,mf,17,144,70,17,,,,, +431,8,1,15239,199,2040.916,,,,,,144,70,0,,,,, +431,9,0,15240,227,2040.916,,,,,,176,64,0,,,,,^ +431,10,1,15241,227,2040.916,29,32.0,F5,mf,17,144,77,17,,,,, +431,10,1,15241,227,2041.038,,,,,,144,77,0,,,,, +431,11,1,15242,256,2041.038,512,2.0,A#3,f,20,144,58,20,,,,, +431,12,3,15243,256,2041.038,,,,,,176,102,0,,,,, +431,14,3,15244,341,2041.393,28,32.0,A#4,p,11,144,70,11,,,,, +431,13,0,15245,341,2041.393,,,,,,176,64,127,,,,,V +431,14,3,15244,341,2041.511,,,,,,144,70,0,,,,, +431,15,3,15246,369,2041.511,29,32.0,G2,p,11,144,43,11,,,,, +431,15,3,15246,369,2041.632,,,,,,144,43,0,,,,, +431,16,3,15247,398,2041.632,28,32.0,A#4,p+,12,144,70,12,,,,, +431,16,3,15247,398,2041.749,,,,,,144,70,0,,,,, +431,17,3,15248,426,2041.749,43,32.0,F#2,p+,12,144,42,12,,,,, +431,17,3,15248,426,2041.929,,,,,,144,42,0,,,,, +431,18,3,15249,469,2041.929,43,32.0,A#4,p+,12,144,70,12,,,,, +431,18,3,15249,469,2042.109,,,,,,144,70,0,,,,, +431,19,3,15250,512,2042.109,42,16.0,B5,mp-,13,144,83,13,,,,, +431,19,3,15250,512,2042.285,,,,,,144,83,0,,,,, +431,20,3,15251,554,2042.285,43,16.0,D3,mp-,13,144,50,13,,,,, +431,20,3,15251,554,2042.465,,,,,,144,50,0,,,,, +431,21,3,15252,597,2042.465,43,16.0,F2,mp,14,144,41,14,,,,, +431,21,3,15252,597,2042.645,,,,,,144,41,0,,,,, +431,22,3,15253,640,2042.645,25,32.0,F#2,mp,14,144,42,14,,,,, +431,23,3,15254,640,2042.645,32,32.0,E3,pp,8,144,52,8,,,,, +431,22,3,15253,640,2042.749,,,,,,144,42,0,,,,, +431,24,3,15255,665,2042.749,26,32.0,C#6,pp,8,144,85,8,,,,, +431,23,3,15254,640,2042.779,,,,,,144,52,0,,,,, +431,24,3,15255,665,2042.858,,,,,,144,85,0,,,,, +431,25,3,15256,691,2042.858,25,32.0,A#4,pp,8,144,70,8,,,,, +431,25,3,15256,691,2042.963,,,,,,144,70,0,,,,, +431,26,3,15257,716,2042.963,26,32.0,A2,pp,8,144,45,8,,,,, +431,26,3,15257,716,2043.072,,,,,,144,45,0,,,,, +431,27,3,15258,742,2043.072,26,32.0,F2,pp,8,144,41,8,,,,, +431,11,1,15242,256,2043.181,,,,,,144,58,0,,,,, +431,27,3,15258,742,2043.181,,,,,,144,41,0,,,,, +431,28,1,15259,768,2043.181,,,,,,176,102,0,,,,, +431,29,3,15260,768,2043.181,,,,,,176,102,0,,,,, +431,30,1,15261,896,2043.716,42,32.0,C#6,pp,8,144,85,8,,,,, +431,30,1,15261,896,2043.892,,,,,,144,85,0,,,,, +431,31,1,15262,938,2043.892,29,32.0,A2,pp,8,144,45,8,,,,, +431,32,3,15263,938,2043.892,86,8.0,F#1,ppp,5,144,30,5,,,,, +431,33,3,15264,938,2043.892,128,8.0,B1,ppp,5,144,35,5,,,,, +431,34,3,15265,938,2043.892,128,8.0,D2,ppp,5,144,38,5,,,,, +431,35,3,15266,938,2043.892,128,8.0,A#2,ppp,5,144,46,5,,,,, +431,36,3,15267,938,2043.892,128,8.0,E3,ppp,5,144,52,5,,,,, +431,31,1,15262,938,2044.013,,,,,,144,45,0,,,,, +431,37,1,15268,967,2044.013,28,32.0,F2,pp,8,144,41,8,,,,, +431,36,3,15267,938,2044.131,,,,,,144,52,0,,,,, +431,37,1,15268,967,2044.131,,,,,,144,41,0,,,,, +431,38,1,15269,995,2044.131,29,32.0,E3,pp,8,144,52,8,,,,, +431,32,3,15263,938,2044.252,,,,,,144,30,0,,,,, +431,39,1,15270,1024,2044.252,,,,,,176,102,0,,,,, +431,40,3,15271,1024,2044.252,,,,,,176,102,0,,,,, +431,33,3,15264,938,2044.428,,,,,,144,35,0,,,,, +431,34,3,15265,938,2044.428,,,,,,144,38,0,,,,, +431,35,3,15266,938,2044.428,,,,,,144,46,0,,,,, +431,38,1,15269,995,2044.428,,,,,,144,52,0,,,,, +431,41,1,15272,1152,2044.788,42,16.0,C#7,pp,8,144,97,8,,,,, +431,41,1,15272,1152,2044.963,,,,,,144,97,0,,,,, +431,42,1,15273,1194,2044.963,43,16.0,A2,pp,8,144,45,8,,,,, +431,42,1,15273,1194,2045.143,,,,,,144,45,0,,,,, +431,43,1,15274,1237,2045.143,43,16.0,E3,pp,8,144,52,8,,,,, +431,43,1,15274,1237,2045.323,,,,,,144,52,0,,,,, +432,0,0,15275,0,2045.323,,,,,,,,,432,,,, +432,1,1,15276,0,2045.323,28,32.0,F2,pp,8,144,41,8,,,,, +432,2,1,15277,0,2045.323,32,32.0,A2,pp,8,144,45,8,,,,, +432,3,3,15278,0,2045.323,,,,,,176,102,0,,,,, +432,1,1,15276,0,2045.441,,,,,,144,41,0,,,,, +432,4,1,15279,28,2045.441,28,32.0,C#7,pp,8,144,97,8,,,,, +432,2,1,15277,0,2045.457,,,,,,144,45,0,,,,, +432,4,1,15279,28,2045.558,,,,,,144,97,0,,,,, +432,5,1,15280,56,2045.558,29,32.0,A#5,pp,8,144,82,8,,,,, +432,5,1,15280,56,2045.679,,,,,,144,82,0,,,,, +432,6,1,15281,85,2045.679,43,32.0,F2,pp,8,144,41,8,,,,, +432,7,1,15282,85,2045.679,32,32.0,A2,pp,8,144,45,8,,,,, +432,8,1,15283,85,2045.679,32,32.0,E3,pp,8,144,52,8,,,,, +432,7,1,15282,85,2045.813,,,,,,144,45,0,,,,, +432,8,1,15283,85,2045.813,,,,,,144,52,0,,,,, +432,6,1,15281,85,2045.859,,,,,,144,41,0,,,,, +432,9,1,15284,128,2045.859,128,8.0,A#5,pp,8,144,82,8,,,,, +432,9,1,15284,128,2046.395,,,,,,144,82,0,,,,, +432,10,1,15285,256,2046.395,,,,,,176,102,0,,,,, +432,11,3,15286,256,2046.395,,,,,,176,102,0,,,,, +432,12,1,15287,384,2046.931,25,32.0,E5,ppp,5,144,76,5,,,,, +432,12,1,15287,384,2047.035,,,,,,144,76,0,,,,, +432,13,1,15288,409,2047.035,26,32.0,B5,ppp,5,144,83,5,,,,, +432,13,1,15288,409,2047.144,,,,,,144,83,0,,,,, +432,14,1,15289,435,2047.144,25,32.0,G4,ppp,5,144,67,5,,,,, +432,14,1,15289,435,2047.249,,,,,,144,67,0,,,,, +432,15,1,15290,460,2047.249,26,32.0,A#4,ppp,5,144,70,5,,,,, +432,16,1,15291,460,2047.249,32,32.0,E5,ppp,5,144,76,5,,,,, +432,15,1,15290,460,2047.357,,,,,,144,70,0,,,,, +432,17,1,15292,486,2047.357,26,32.0,D#7,ppp,5,144,99,5,,,,, +432,16,1,15291,460,2047.383,,,,,,144,76,0,,,,, +432,17,1,15292,486,2047.466,,,,,,144,99,0,,,,, +432,18,1,15293,512,2047.466,,,,,,176,102,0,,,,, +432,19,3,15294,512,2047.466,,,,,,176,102,0,,,,, +432,20,1,15295,576,2047.734,96,16.0,E1,mp,14,144,28,14,,,,, +432,21,1,15296,576,2047.734,64,16.0,A#3,mp,14,144,58,14,,,,, +432,22,3,15297,597,2047.822,171,4.0,F#1,pp,8,144,30,8,,,,, +432,23,3,15298,597,2047.822,256,4.0,B1,pp,8,144,35,8,,,,, +432,24,3,15299,597,2047.822,256,4.0,D2,pp,8,144,38,8,,,,, +432,25,3,15300,597,2047.822,256,4.0,A#2,pp,8,144,46,8,,,,, +432,26,3,15301,597,2047.822,256,4.0,E3,pp,8,144,52,8,,,,, +432,21,1,15296,576,2048.002,,,,,,144,58,0,,,,, +432,20,1,15295,576,2048.136,,,,,,144,28,0,,,,, +432,27,1,15302,672,2048.136,96,16.0,E1,mf,17,144,28,17,,,,, +432,22,3,15297,597,2048.538,,,,,,144,30,0,,,,, +432,27,1,15302,672,2048.538,,,,,,144,28,0,,,,, +433,0,0,15303,0,2048.538,,,,,,,,,433,,,, +433,1,1,15304,0,2048.538,42,16.0,C#7,pp,8,144,97,8,,,,, +433,2,1,15305,0,2048.538,64,16.0,A7,f,20,144,105,20,,,,, +433,3,3,15306,0,2048.538,256,4.0,E1,f,20,144,28,20,,,,, +433,1,1,15304,0,2048.713,,,,,,144,97,0,,,,, +433,4,1,15307,42,2048.713,43,16.0,A1,pp,8,144,33,8,,,,, +433,2,1,15305,0,2048.806,,,,,,144,105,0,,,,, +433,5,1,15308,85,2048.893,43,16.0,E2,pp,8,144,40,8,,,,, +432,23,3,15298,597,2048.893,,,,,,144,35,0,,,,, +432,24,3,15299,597,2048.893,,,,,,144,38,0,,,,, +432,25,3,15300,597,2048.893,,,,,,144,46,0,,,,, +432,26,3,15301,597,2048.893,,,,,,144,52,0,,,,, +433,4,1,15307,42,2048.893,,,,,,144,33,0,,,,, +433,6,1,15309,128,2049.073,28,32.0,F1,pp,8,144,29,8,,,,, +433,7,1,15310,128,2049.073,32,32.0,A1,pp,8,144,33,8,,,,, +433,5,1,15308,85,2049.073,,,,,,144,40,0,,,,, +433,6,1,15309,128,2049.191,,,,,,144,29,0,,,,, +433,8,1,15311,156,2049.191,28,32.0,C#7,pp,8,144,97,8,,,,, +433,7,1,15310,128,2049.207,,,,,,144,33,0,,,,, +433,8,1,15311,156,2049.308,,,,,,144,97,0,,,,, +433,9,1,15312,184,2049.308,29,32.0,A#5,pp,8,144,82,8,,,,, +433,10,1,15313,213,2049.429,43,32.0,F1,pp,8,144,29,8,,,,, +433,11,1,15314,213,2049.429,32,32.0,A1,pp,8,144,33,8,,,,, +433,12,1,15315,213,2049.429,32,32.0,E2,pp,8,144,40,8,,,,, +433,9,1,15312,184,2049.429,,,,,,144,82,0,,,,, +433,11,1,15314,213,2049.563,,,,,,144,33,0,,,,, +433,12,1,15315,213,2049.563,,,,,,144,40,0,,,,, +433,10,1,15313,213,2049.609,,,,,,144,29,0,,,,, +433,13,1,15316,256,2049.609,28,32.0,B6,p,11,144,95,11,,,,, +433,14,3,15317,256,2049.609,,,,,,176,102,0,,,,, +433,3,3,15306,0,2049.609,,,,,,144,28,0,,,,, +433,15,1,15318,284,2049.726,28,32.0,F2,p,11,144,41,11,,,,, +433,13,1,15316,256,2049.726,,,,,,144,95,0,,,,, +433,15,1,15318,284,2049.843,,,,,,144,41,0,,,,, +433,16,1,15319,312,2049.843,29,32.0,D5,p,11,144,74,11,,,,, +433,17,1,15320,341,2049.965,43,32.0,B5,p,11,144,83,11,,,,, +433,16,1,15319,312,2049.965,,,,,,144,74,0,,,,, +433,18,1,15321,384,2050.145,42,32.0,D5,p,11,144,74,11,,,,, +433,17,1,15320,341,2050.145,,,,,,144,83,0,,,,, +433,19,1,15322,426,2050.321,29,32.0,F1,p,11,144,29,11,,,,, +433,18,1,15321,384,2050.321,,,,,,144,74,0,,,,, +433,19,1,15322,426,2050.442,,,,,,144,29,0,,,,, +433,20,1,15323,455,2050.442,28,32.0,A#5,p,11,144,82,11,,,,, +433,21,1,15324,483,2050.559,43,32.0,F#2,p,11,144,42,11,,,,, +433,20,1,15323,455,2050.559,,,,,,144,82,0,,,,, +433,22,3,15325,512,2050.681,,,,,,176,102,0,,,,, +433,23,1,15326,526,2050.739,28,32.0,A#5,p,11,144,82,11,,,,, +433,21,1,15324,483,2050.739,,,,,,144,42,0,,,,, +433,23,1,15326,526,2050.856,,,,,,144,82,0,,,,, +433,24,1,15327,554,2050.856,43,32.0,F1,p,11,144,29,11,,,,, +433,24,1,15327,554,2051.036,,,,,,144,29,0,,,,, +433,25,1,15328,597,2051.036,43,32.0,F#2,p,11,144,42,11,,,,, +433,26,1,15329,640,2051.216,28,32.0,F1,p,11,144,29,11,,,,, +433,27,1,15330,640,2051.216,32,32.0,A1,p,11,144,33,11,,,,, +433,25,1,15328,597,2051.216,,,,,,144,42,0,,,,, +433,26,1,15329,640,2051.333,,,,,,144,29,0,,,,, +433,28,1,15331,668,2051.333,28,32.0,C#7,p,11,144,97,11,,,,, +433,27,1,15330,640,2051.35,,,,,,144,33,0,,,,, +433,28,1,15331,668,2051.451,,,,,,144,97,0,,,,, +433,29,1,15332,696,2051.451,29,32.0,A#5,p,11,144,82,11,,,,, +433,30,1,15333,725,2051.572,43,32.0,F1,p,11,144,29,11,,,,, +433,31,1,15334,725,2051.572,32,32.0,A1,p,11,144,33,11,,,,, +433,32,1,15335,725,2051.572,32,32.0,E2,p,11,144,40,11,,,,, +433,29,1,15332,696,2051.572,,,,,,144,82,0,,,,, +433,31,1,15334,725,2051.706,,,,,,144,33,0,,,,, +433,32,1,15335,725,2051.706,,,,,,144,40,0,,,,, +433,30,1,15333,725,2051.752,,,,,,144,29,0,,,,, +433,33,1,15336,768,2051.752,96,16.0,C#7,mp,14,144,97,14,,,,, +433,34,1,15337,768,2051.752,64,16.0,A7,mp,14,144,105,14,,,,, +433,35,3,15338,768,2051.752,85,8.0,E1,mp,14,144,28,14,,,,, +433,34,1,15337,768,2052.02,,,,,,144,105,0,,,,, +433,35,3,15338,768,2052.108,,,,,,144,28,0,,,,, +433,36,3,15339,853,2052.108,171,4.0,F#1,pp,8,144,30,8,,,,, +433,37,3,15340,853,2052.108,256,4.0,B1,pp,8,144,35,8,,,,, +433,38,3,15341,853,2052.108,256,4.0,D2,pp,8,144,38,8,,,,, +433,33,1,15336,768,2052.154,,,,,,144,97,0,,,,, +433,39,1,15342,864,2052.154,32,32.0,F5,mp,14,144,77,14,,,,, +433,39,1,15342,864,2052.288,,,,,,144,77,0,,,,, +433,40,1,15343,896,2052.288,48,32.0,C5,p,11,144,72,11,,,,, +433,40,1,15343,896,2052.489,,,,,,144,72,0,,,,, +433,41,1,15344,944,2052.489,32,32.0,C#2,p+,12,144,37,12,,,,, +433,41,1,15344,944,2052.623,,,,,,144,37,0,,,,, +433,42,1,15345,976,2052.623,48,32.0,G#2,mp-,13,144,44,13,,,,, +433,42,1,15345,976,2052.823,,,,,,144,44,0,,,,, +433,43,1,15346,1024,2052.823,48,32.0,C5,mp-,13,144,72,13,,,,, +433,44,3,15347,1024,2052.823,,,,,,176,102,0,,,,, +433,36,3,15339,853,2052.823,,,,,,144,30,0,,,,, +433,43,1,15346,1024,2053.024,,,,,,144,72,0,,,,, +433,45,1,15348,1072,2053.024,48,32.0,C#2,mp,14,144,37,14,,,,, +433,37,3,15340,853,2053.179,,,,,,144,35,0,,,,, +433,38,3,15341,853,2053.179,,,,,,144,38,0,,,,, +433,45,1,15348,1072,2053.225,,,,,,144,37,0,,,,, +433,46,1,15349,1120,2053.225,96,16.0,G6,mp+,15,144,91,15,,,,, +433,46,1,15349,1120,2053.627,,,,,,144,91,0,,,,, +433,47,1,15350,1216,2053.627,64,16.0,E3,mf,17,144,52,17,,,,, +433,47,1,15350,1216,2053.895,,,,,,144,52,0,,,,, +433,48,1,15351,1280,2053.895,256,4.0,F5,pp,8,144,77,8,,,,, +433,49,1,15352,1280,2053.895,256,4.0,C#7,pp,8,144,97,8,,,,, +433,50,1,15353,1280,2053.895,256,4.0,A7,pp,8,144,105,8,,,,, +433,51,3,15354,1280,2053.895,,,,,,176,102,0,,,,, +433,52,0,15355,1496,2054.77,,,,,,176,64,0,,,,,^ +434,0,0,15356,0,2054.966,,,,,,,,,434,,,, +434,1,0,15357,0,2054.966,,,,,,,,,,6071,,, +434,3,1,15358,0,2054.966,256,4.0,B6,f,20,144,95,20,,,,, +434,4,3,15359,,2054.966,,8.0,C4,mp,14,144,60,14,,,,g, +433,48,1,15351,1280,2054.966,,,,,,144,77,0,,,,, +433,49,1,15352,1280,2054.966,,,,,,144,97,0,,,,, +433,50,1,15353,1280,2054.966,,,,,,144,105,0,,,,, +434,4,3,15359,,2055.016,,,,,,144,60,0,,,,, +434,5,3,15360,0,2055.041,256,4.0,G4,mp,14,144,67,14,,,,, +434,2,0,15361,0,2055.07,,,,,,176,64,127,,,,,V +434,3,1,15358,0,2056.038,,,,,,144,95,0,,,,, +434,6,1,15362,256,2056.113,256,4.0,D4,f,20,144,62,20,,,,, +434,7,1,15363,256,2056.113,256,4.0,B6,f,20,144,95,20,,,,, +434,8,3,15364,256,2056.113,85,8.0,G4,,,,,,,,,, +434,9,3,15365,341,2056.468,85,8.0,E3,mp+,15,144,52,15,,,,, +434,5,3,15360,0,2056.468,,,,,,144,67,0,,,,, +434,10,3,15366,426,2056.824,,,,,,176,102,0,,,,, +434,9,3,15365,341,2056.824,,,,,,144,52,0,,,,, +434,6,1,15362,256,2057.184,,,,,,144,62,0,,,,, +434,11,1,15367,512,2057.184,32,32.0,F1,mp+,15,144,29,15,,,,, +434,12,1,15368,512,2057.184,32,32.0,D4,mp+,15,144,62,15,,,,, +434,13,3,15369,512,2057.184,,,,,,176,102,0,,,,, +434,7,1,15363,256,2057.184,,,,,,144,95,0,,,,, +434,11,1,15367,512,2057.318,,,,,,144,29,0,,,,, +434,12,1,15368,512,2057.318,,,,,,144,62,0,,,,, +434,14,1,15370,544,2057.318,32,32.0,F1,mp+,15,144,29,15,,,,, +434,15,1,15371,544,2057.318,32,32.0,F#3,mp+,15,144,54,15,,,,, +434,16,1,15372,544,2057.318,32,32.0,D4,mp+,15,144,62,15,,,,, +434,14,1,15370,544,2057.452,,,,,,144,29,0,,,,, +434,15,1,15371,544,2057.452,,,,,,144,54,0,,,,, +434,16,1,15372,544,2057.452,,,,,,144,62,0,,,,, +434,17,1,15373,576,2057.452,192,8.0,A#5,mp+,15,144,82,15,,,,, +434,18,1,15374,576,2057.452,128,8.0,B6,mp+,15,144,95,15,,,,, +434,19,3,15375,640,2057.72,21,32.0,G#1,mp,14,144,32,14,,,,, +434,19,3,15375,640,2057.808,,,,,,144,32,0,,,,, +434,20,3,15376,661,2057.808,21,32.0,C#1,mp+,15,144,25,15,,,,, +434,20,3,15376,661,2057.896,,,,,,144,25,0,,,,, +434,21,3,15377,682,2057.896,32,32.0,G#1,mf-,16,144,32,16,,,,, +434,18,1,15374,576,2057.988,,,,,,144,95,0,,,,, +434,21,3,15377,682,2058.03,,,,,,144,32,0,,,,, +434,22,3,15378,714,2058.03,32,32.0,C4,mf,17,144,60,17,,,,, +434,22,3,15378,714,2058.163,,,,,,144,60,0,,,,, +434,23,3,15379,746,2058.163,22,32.0,C#1,mf+,18,144,25,18,,,,, +434,24,3,15380,746,2058.163,32,32.0,G#1,mf+,18,144,32,18,,,,, +434,25,3,15381,746,2058.163,32,32.0,C4,mf+,18,144,60,18,,,,, +434,26,0,15382,768,2058.173,,,,,,176,64,0,,,,,^ +434,27,1,15383,768,2058.256,,,,,,176,102,0,,,,, +434,28,3,15384,768,2058.256,,,,,,176,102,0,,,,, +434,17,1,15373,576,2058.331,,,,,,144,82,0,,,,, +434,23,3,15379,746,2058.331,,,,,,144,25,0,,,,, +434,24,3,15380,746,2058.372,,,,,,144,32,0,,,,, +434,25,3,15381,746,2058.372,,,,,,144,60,0,,,,, +434,30,3,15385,800,2058.389,32,32.0,C#1,f,20,144,25,20,,,,, +434,31,3,15386,800,2058.389,32,32.0,G#1,f,20,144,32,20,,,,, +434,32,3,15387,800,2058.389,32,32.0,C4,f,20,144,60,20,,,,, +434,29,0,15388,800,2058.473,,,,,,176,64,127,,,,,V +434,30,3,15385,800,2058.523,,,,,,144,25,0,,,,, +434,31,3,15386,800,2058.523,,,,,,144,32,0,,,,, +434,32,3,15387,800,2058.523,,,,,,144,60,0,,,,, +434,33,3,15389,832,2058.523,,,,,,176,102,0,,,,, +434,34,1,15390,853,2058.611,21,32.0,A#5,p,11,144,82,11,,,,, +434,35,1,15391,853,2058.611,32,32.0,B6,p,11,144,95,11,,,,, +434,36,3,15392,853,2058.611,43,16.0,F#3,p,11,144,54,11,,,,, +434,37,3,15393,853,2058.611,64,16.0,D4,p,11,144,62,11,,,,, +434,34,1,15390,853,2058.699,,,,,,144,82,0,,,,, +434,38,1,15394,874,2058.699,22,32.0,G6,mp,14,144,91,14,,,,, +434,35,1,15391,853,2058.745,,,,,,144,95,0,,,,, +434,39,1,15395,896,2058.791,21,32.0,C6,mp+,15,144,84,15,,,,, +434,40,3,15396,896,2058.791,,,,,,176,102,0,,,,, +434,36,3,15392,853,2058.791,,,,,,144,54,0,,,,, +434,38,1,15394,874,2058.791,,,,,,144,91,0,,,,, +434,39,1,15395,896,2058.879,,,,,,144,84,0,,,,, +434,41,1,15397,917,2058.879,21,32.0,E5,mf-,16,144,76,16,,,,, +434,37,3,15393,853,2058.879,,,,,,144,62,0,,,,, +434,41,1,15397,917,2058.967,,,,,,144,76,0,,,,, +434,42,1,15398,938,2058.967,22,32.0,C#3,mf,17,144,49,17,,,,, +434,42,1,15398,938,2059.059,,,,,,144,49,0,,,,, +434,43,1,15399,960,2059.059,21,32.0,G#3,mf+,18,144,56,18,,,,, +434,43,1,15399,960,2059.147,,,,,,144,56,0,,,,, +434,44,1,15400,981,2059.147,21,32.0,C6,f-,19,144,84,19,,,,, +434,44,1,15400,981,2059.235,,,,,,144,84,0,,,,, +434,45,1,15401,1002,2059.235,22,32.0,C#3,f,20,144,49,20,,,,, +434,46,0,15402,1008,2059.26,,,,,,176,64,0,,,,,^ +434,51,1,15403,1024,2059.327,42,16.0,E4,p,11,144,64,11,,,,, +434,48,1,15404,,2059.327,,8.0,C5,mp,14,144,72,14,,,,g, +434,45,1,15401,1002,2059.327,,,,,,144,49,0,,,,, +434,48,1,15404,,2059.377,,,,,,144,72,0,,,,, +434,49,1,15405,,2059.402,,8.0,G5,mp,14,144,79,14,,,,g, +434,49,1,15405,,2059.452,,,,,,144,79,0,,,,, +434,50,1,15406,,2059.477,,8.0,C#2,mp+,15,144,37,15,,,,g, +434,52,3,15407,,2059.477,,8.0,F1,mp+,15,144,29,15,,,,g, +434,51,1,15403,1024,2059.503,,,,,,144,64,0,,,,, +434,50,1,15406,,2059.527,,,,,,144,37,0,,,,, +434,52,3,15407,,2059.527,,,,,,144,29,0,,,,, +434,53,3,15408,1024,2059.627,64,16.0,B4,p,11,144,71,11,,,,, +434,47,0,15409,1024,2059.627,,,,,,176,64,127,,,,,V +434,54,1,15410,1066,2059.803,86,8.0,G#2,p-,10,144,44,10,,,,, +434,55,1,15411,1066,2059.803,128,8.0,E4,p-,10,144,64,10,,,,, +434,53,3,15408,1024,2059.895,,,,,,144,71,0,,,,, +434,56,3,15412,1088,2059.895,64,16.0,D3,p-,10,144,50,10,,,,, +434,54,1,15410,1066,2060.163,,,,,,144,44,0,,,,, +434,57,1,15413,1152,2060.163,,,,,,176,102,0,,,,, +434,58,3,15414,1152,2060.163,128,8.0,F1,pp+,9,144,29,9,,,,, +434,56,3,15412,1088,2060.163,,,,,,144,50,0,,,,, +434,55,1,15411,1066,2060.338,,,,,,144,64,0,,,,, +434,59,1,15415,1280,2060.698,,,,,,176,102,0,,,,, +434,60,3,15416,1280,2060.698,128,8.0,F1,,,,,,,,,, +434,61,0,15417,1408,2061.234,,,,,,176,64,0,,,,,^ +434,62,3,15418,1408,2061.234,32,32.0,F1,ppp+,6,144,29,6,,,,, +434,63,3,15419,1408,2061.234,32,32.0,D2,ppp+,6,144,38,6,,,,, +434,64,3,15420,1408,2061.234,32,32.0,B4,ppp+,6,144,71,6,,,,, +434,58,3,15414,1152,2061.234,,,,,,144,29,0,,,,, +434,62,3,15418,1408,2061.368,,,,,,144,29,0,,,,, +434,63,3,15419,1408,2061.368,,,,,,144,38,0,,,,, +434,64,3,15420,1408,2061.368,,,,,,144,71,0,,,,, +434,65,3,15421,1440,2061.368,32,32.0,A#3,ppp+,6,144,58,6,,,,, +434,65,3,15421,1440,2061.502,,,,,,144,58,0,,,,, +434,66,3,15422,1472,2061.502,32,32.0,F#1,ppp,5,144,30,5,,,,, +434,66,3,15422,1472,2061.636,,,,,,144,30,0,,,,, +434,67,3,15423,1504,2061.636,32,32.0,A#3,ppp,5,144,58,5,,,,, +434,67,3,15423,1504,2061.77,,,,,,144,58,0,,,,, +435,0,0,15424,0,2061.77,,,,,,,,,435,,,, +435,2,1,15425,0,2061.77,85,8.0,B4,mp,14,144,71,14,,,,, +435,3,3,15426,0,2061.77,42,16.0,F1,mp,14,144,29,14,,,,, +435,4,3,15427,0,2061.77,64,16.0,D2,mp,14,144,38,14,,,,, +435,1,0,15428,0,2061.77,,,,,,176,64,127,,,,,V +435,3,3,15426,0,2061.946,,,,,,144,29,0,,,,, +435,5,3,15429,42,2061.946,86,8.0,F#1,pp,8,144,30,8,,,,, +435,4,3,15427,0,2062.038,,,,,,144,38,0,,,,, +435,2,1,15425,0,2062.126,,,,,,144,71,0,,,,, +435,6,1,15430,85,2062.126,43,16.0,A#3,ppp,5,144,58,5,,,,, +435,5,3,15429,42,2062.306,,,,,,144,30,0,,,,, +435,7,1,15431,128,2062.306,,,,,,176,102,0,,,,, +435,8,3,15432,128,2062.306,51,16.0,E2,pp,8,144,40,8,,,,, +435,6,1,15430,85,2062.306,,,,,,144,58,0,,,,, +435,9,1,15433,153,2062.41,77,16.0,B3,pp,8,144,59,8,,,,, +435,8,3,15432,128,2062.519,,,,,,144,40,0,,,,, +435,10,3,15434,179,2062.519,25,32.0,G1,pp,8,144,31,8,,,,, +435,10,3,15434,179,2062.624,,,,,,144,31,0,,,,, +435,11,3,15435,204,2062.624,52,16.0,A#1,pp,8,144,34,8,,,,, +435,12,3,15436,204,2062.624,64,16.0,E2,pp,8,144,40,8,,,,, +435,9,1,15433,153,2062.732,,,,,,144,59,0,,,,, +435,13,1,15437,230,2062.732,26,32.0,D#5,pp,8,144,75,8,,,,, +435,14,1,15438,256,2062.841,,,,,,176,102,0,,,,, +435,15,3,15439,256,2062.841,,,,,,176,102,0,,,,, +435,11,3,15435,204,2062.841,,,,,,144,34,0,,,,, +435,13,1,15437,230,2062.841,,,,,,144,75,0,,,,, +435,12,3,15436,204,2062.891,,,,,,144,40,0,,,,, +435,16,0,15440,512,2063.913,,,,,,176,64,0,,,,,^ +435,17,1,15441,512,2063.913,32,32.0,A#3,f,20,144,58,20,,,,, +435,18,1,15442,512,2063.913,32,32.0,B4,f,20,144,71,20,,,,, +435,19,3,15443,512,2063.913,32,32.0,F1,f,20,144,29,20,,,,, +435,20,3,15444,512,2063.913,32,32.0,F#1,f,20,144,30,20,,,,, +435,21,3,15445,512,2063.913,32,32.0,D2,f,20,144,38,20,,,,, +435,17,1,15441,512,2064.047,,,,,,144,58,0,,,,, +435,18,1,15442,512,2064.047,,,,,,144,71,0,,,,, +435,19,3,15443,512,2064.047,,,,,,144,29,0,,,,, +435,20,3,15444,512,2064.047,,,,,,144,30,0,,,,, +435,21,3,15445,512,2064.047,,,,,,144,38,0,,,,, +435,22,1,15446,544,2064.047,96,16.0,A#3,f,20,144,58,20,,,,, +435,23,1,15447,544,2064.047,64,16.0,B4,f,20,144,71,20,,,,, +435,24,3,15448,544,2064.047,96,16.0,F1,f,20,144,29,20,,,,, +435,25,3,15449,544,2064.047,64,16.0,F#1,f,20,144,30,20,,,,, +435,26,3,15450,544,2064.047,64,16.0,D2,f,20,144,38,20,,,,, +435,27,1,15451,640,2064.448,,,,,,176,102,0,,,,, +435,28,3,15452,640,2064.448,,,,,,176,102,0,,,,, +435,23,1,15447,544,2064.464,,,,,,144,71,0,,,,, +435,25,3,15449,544,2064.464,,,,,,144,30,0,,,,, +435,26,3,15450,544,2064.464,,,,,,144,38,0,,,,, +435,22,1,15446,544,2064.582,,,,,,144,58,0,,,,, +435,24,3,15448,544,2064.582,,,,,,144,29,0,,,,, +435,29,1,15453,672,2064.582,96,16.0,A#3,mp,14,144,58,14,,,,, +435,30,1,15454,672,2064.582,64,16.0,B4,mp,14,144,71,14,,,,, +435,31,3,15455,672,2064.582,96,16.0,F1,mp,14,144,29,14,,,,, +435,32,3,15456,672,2064.582,64,16.0,F#1,mp,14,144,30,14,,,,, +435,33,3,15457,672,2064.582,64,16.0,D2,mp,14,144,38,14,,,,, +435,34,1,15458,768,2064.984,64,16.0,A#3,,,,,,,,,, +435,35,1,15459,768,2064.984,64,16.0,B4,,,,,,,,,, +435,36,3,15460,768,2064.984,64,16.0,F1,,,,,,,,,, +435,37,3,15461,768,2064.984,64,16.0,F#1,,,,,,,,,, +435,38,3,15462,768,2064.984,64,16.0,D2,,,,,,,,,, +435,30,1,15454,672,2065.118,,,,,,144,71,0,,,,, +435,32,3,15456,672,2065.118,,,,,,144,30,0,,,,, +435,33,3,15457,672,2065.118,,,,,,144,38,0,,,,, +435,29,1,15453,672,2065.252,,,,,,144,58,0,,,,, +435,31,3,15455,672,2065.252,,,,,,144,29,0,,,,, +435,39,1,15463,832,2065.252,,,,,,176,102,0,,,,, +435,40,3,15464,832,2065.252,,,,,,176,102,0,,,,, +435,41,1,15465,864,2065.386,128,8.0,A#3,pp,8,144,58,8,,,,, +435,42,1,15466,864,2065.386,128,8.0,B4,pp,8,144,71,8,,,,, +435,43,3,15467,864,2065.386,128,8.0,F1,pp,8,144,29,8,,,,, +435,44,3,15468,864,2065.386,128,8.0,F#1,pp,8,144,30,8,,,,, +435,45,3,15469,864,2065.386,128,8.0,D2,pp,8,144,38,8,,,,, +435,46,1,15470,992,2065.922,,,,,,176,102,0,,,,, +435,47,3,15471,992,2065.922,32,32.0,A#2,pp,8,144,46,8,,,,, +435,48,0,15472,992,2065.922,,,,,,,,,,6072,,, +435,50,1,15473,1024,2066.056,,,,,,176,102,0,,,,, +435,51,3,15474,1024,2066.056,512,2.0,A#2,,,,,,,,,, +435,49,0,15475,1024,2066.056,,,,,,176,64,127,,,,,V +435,41,1,15465,864,2066.522,,,,,,144,58,0,,,,, +435,42,1,15466,864,2066.522,,,,,,144,71,0,,,,, +435,43,3,15467,864,2066.522,,,,,,144,29,0,,,,, +435,44,3,15468,864,2066.522,,,,,,144,30,0,,,,, +435,45,3,15469,864,2066.522,,,,,,144,38,0,,,,, +436,0,0,15476,0,2068.198,,,,,,,,,436,,,, +436,1,1,15477,0,2068.198,153,8.0,B5,pp,8,144,83,8,,,,, +436,2,3,15478,0,2068.198,,,,,,176,102,0,,,,, +435,47,3,15471,992,2068.273,,,,,,144,46,0,,,,, +436,1,1,15477,0,2068.839,,,,,,144,83,0,,,,, +436,3,1,15479,153,2068.839,103,8.0,F1,pp,8,144,29,8,,,,, +436,3,1,15479,153,2069.27,,,,,,144,29,0,,,,, +436,4,1,15480,256,2069.27,153,8.0,D4,pp,8,144,62,8,,,,, +436,5,1,15481,256,2069.27,128,8.0,B5,pp,8,144,83,8,,,,, +436,5,1,15481,256,2069.806,,,,,,144,83,0,,,,, +436,4,1,15480,256,2069.91,,,,,,144,62,0,,,,, +436,6,1,15482,409,2069.91,103,8.0,F1,pp,8,144,29,8,,,,, +436,6,1,15482,409,2070.341,,,,,,144,29,0,,,,, +436,7,1,15483,512,2070.341,,,,,,176,102,0,,,,, +436,8,3,15484,512,2070.341,153,8.0,F2,pp,8,144,41,8,,,,, +436,9,3,15485,512,2070.341,128,8.0,D4,pp,8,144,62,8,,,,, +436,9,3,15485,512,2070.877,,,,,,144,62,0,,,,, +436,8,3,15484,512,2070.982,,,,,,144,41,0,,,,, +436,10,3,15486,665,2070.982,,,,,,176,102,0,,,,, +436,11,3,15487,716,2071.195,26,32.0,G2,pp,8,144,43,8,,,,, +436,11,3,15487,716,2071.304,,,,,,144,43,0,,,,, +436,12,3,15488,742,2071.304,26,32.0,A#2,pp,8,144,46,8,,,,, +436,12,3,15488,742,2071.413,,,,,,144,46,0,,,,, +436,13,1,15489,768,2071.413,256,4.0,D#6,pp,8,144,87,8,,,,, +436,14,3,15490,768,2071.413,,,,,,176,102,0,,,,, +436,15,3,15491,853,2071.768,,,,,,176,102,0,,,,, +436,16,3,15492,,2072.304,,8.0,C5,pp,8,144,72,8,,,,g, +436,16,3,15492,,2072.354,,,,,,144,72,0,,,,, +436,17,3,15493,,2072.379,,8.0,G5,pp,8,144,79,8,,,,g, +436,17,3,15493,,2072.429,,,,,,144,79,0,,,,, +436,18,3,15494,,2072.454,,8.0,C#2,pp+,9,144,37,9,,,,g, +436,13,1,15489,768,2072.484,,,,,,144,87,0,,,,, +436,18,3,15494,,2072.504,,,,,,144,37,0,,,,, +436,19,3,15495,981,2072.529,43,16.0,E4,p,11,144,64,11,,,,, +436,19,3,15495,981,2072.709,,,,,,144,64,0,,,,, +436,20,1,15496,1024,2072.709,,,,,,176,102,0,,,,, +436,21,3,15497,1024,2072.709,128,8.0,G#2,p+,12,144,44,12,,,,, +436,22,3,15498,1024,2072.709,128,8.0,E4,p+,12,144,64,12,,,,, +436,23,1,15499,1152,2073.245,25,32.0,G6,pp,8,144,91,8,,,,, +436,24,3,15500,1152,2073.245,,,,,,176,102,0,,,,, +436,21,3,15497,1024,2073.245,,,,,,144,44,0,,,,, +436,22,3,15498,1024,2073.245,,,,,,144,64,0,,,,, +436,23,1,15499,1152,2073.349,,,,,,144,91,0,,,,, +436,25,1,15501,1177,2073.349,26,32.0,C#2,pp+,9,144,37,9,,,,, +436,25,1,15501,1177,2073.458,,,,,,144,37,0,,,,, +436,26,1,15502,1203,2073.458,25,32.0,E5,p-,10,144,76,10,,,,, +436,26,1,15502,1203,2073.563,,,,,,144,76,0,,,,, +436,27,1,15503,1228,2073.563,39,32.0,G6,p-,10,144,91,10,,,,, +436,28,1,15504,1267,2073.726,38,32.0,E3,p+,12,144,52,12,,,,, +436,27,1,15503,1228,2073.726,,,,,,144,91,0,,,,, +436,28,1,15504,1267,2073.885,,,,,,144,52,0,,,,, +436,29,1,15505,1305,2073.885,39,32.0,G#2,mp-,13,144,44,13,,,,, +436,29,1,15505,1305,2074.048,,,,,,144,44,0,,,,, +436,30,1,15506,1344,2074.048,25,32.0,C6,mp,14,144,84,14,,,,, +436,30,1,15506,1344,2074.153,,,,,,144,84,0,,,,, +436,31,1,15507,1369,2074.153,39,32.0,G7,mp+,15,144,103,15,,,,, +436,31,1,15507,1369,2074.316,,,,,,144,103,0,,,,, +436,32,1,15508,1408,2074.316,38,32.0,E3,mf-,16,144,52,16,,,,, +436,33,3,15509,1408,2074.316,76,16.0,G6,mf-,16,144,91,16,,,,, +436,34,1,15510,1446,2074.475,77,16.0,G#2,mf+,18,144,44,18,,,,, +436,32,1,15508,1408,2074.475,,,,,,144,52,0,,,,, +436,35,3,15511,1484,2074.634,39,32.0,C6,f-,19,144,84,19,,,,, +436,33,3,15509,1408,2074.634,,,,,,144,91,0,,,,, +436,39,0,15512,1535,2074.767,,,,,,176,64,0,,,,,^ +436,34,1,15510,1446,2074.798,,,,,,144,44,0,,,,, +436,35,3,15511,1484,2074.798,,,,,,144,84,0,,,,, +436,36,1,15513,1523,2074.798,13,64.0,C#2,f,20,144,37,20,,,,, +436,37,1,15514,1523,2074.798,16,64.0,G#2,f,20,144,44,20,,,,, +436,38,3,15515,1523,2074.798,13,64.0,C6,f,20,144,84,20,,,,, +436,36,1,15513,1523,2074.852,,,,,,144,37,0,,,,, +436,38,3,15515,1523,2074.852,,,,,,144,84,0,,,,, +437,0,0,15516,0,2074.852,,,,,,,,,437,,,, +437,1,1,15517,0,2074.852,,,,,,176,102,0,,,,, +437,2,3,15518,0,2074.852,,,,,,176,102,0,,,,, +436,37,1,15514,1523,2074.865,,,,,,144,44,0,,,,, +437,4,1,15519,32,2074.986,32,32.0,C#4,fff,24,144,61,23,,,,, +437,5,1,15520,32,2074.986,32,32.0,D6,fff,24,144,86,23,,,,, +437,3,0,15521,32,2075.067,,,,,,176,64,127,,,,,V +437,4,1,15519,32,2075.12,,,,,,144,61,0,,,,, +437,5,1,15520,32,2075.12,,,,,,144,86,0,,,,, +437,6,1,15522,64,2075.12,192,8.0,C#4,fff,24,144,61,23,,,,, +437,7,1,15523,64,2075.12,128,8.0,G#5,fff,24,144,80,23,,,,, +437,8,1,15524,64,2075.12,128,8.0,D6,fff,24,144,86,23,,,,, +437,9,1,15525,256,2075.923,128,8.0,C#4,,,,,,,,,, +437,10,1,15526,256,2075.923,128,8.0,G#5,,,,,,,,,, +437,11,1,15527,256,2075.923,128,8.0,D6,,,,,,,,,, +437,7,1,15523,64,2076.191,,,,,,144,80,0,,,,, +437,8,1,15524,64,2076.191,,,,,,144,86,0,,,,, +437,12,1,15528,384,2076.459,128,8.0,G#5,fff,24,144,80,23,,,,, +437,13,1,15529,384,2076.459,128,8.0,D6,fff,24,144,86,23,,,,, +437,14,3,15530,384,2076.459,32,32.0,A1,ff,22,144,33,22,,,,, +437,6,1,15522,64,2076.459,,,,,,144,61,0,,,,, +437,14,3,15530,384,2076.593,,,,,,144,33,0,,,,, +437,15,0,15531,416,2076.593,,,,,,176,64,0,,,,,^ +437,16,3,15532,416,2076.593,32,32.0,A1,ff,22,144,33,22,,,,, +437,17,3,15533,416,2076.593,32,32.0,F2,ff,22,144,41,22,,,,, +437,16,3,15532,416,2076.727,,,,,,144,33,0,,,,, +437,17,3,15533,416,2076.727,,,,,,144,41,0,,,,, +437,18,3,15534,448,2076.727,,,,,,176,102,0,,,,, +437,19,1,15535,512,2076.995,256,4.0,G#5,,,,,,,,,, +437,20,1,15536,512,2076.995,256,4.0,D6,,,,,,,,,, +437,21,3,15537,512,2076.995,,,,,,176,102,0,,,,, +437,22,0,15538,545,2077.133,,,,,,176,64,127,,,,,V +437,23,3,15539,640,2077.531,25,32.0,G5,f,20,144,79,20,,,,, +437,23,3,15539,640,2077.635,,,,,,144,79,0,,,,, +437,24,3,15540,665,2077.635,26,32.0,C#1,f-,19,144,25,19,,,,, +437,24,3,15540,665,2077.744,,,,,,144,25,0,,,,, +437,25,3,15541,691,2077.744,25,32.0,E4,mf+,18,144,64,18,,,,, +437,25,3,15541,691,2077.849,,,,,,144,64,0,,,,, +437,26,3,15542,716,2077.849,39,32.0,G5,mf,17,144,79,17,,,,, +437,27,3,15543,755,2078.012,38,32.0,E2,mf-,16,144,40,16,,,,, +437,26,3,15542,716,2078.012,,,,,,144,79,0,,,,, +437,12,1,15528,384,2078.066,,,,,,144,80,0,,,,, +437,13,1,15529,384,2078.066,,,,,,144,86,0,,,,, +437,28,1,15544,768,2078.066,,,,,,176,102,0,,,,, +437,27,3,15543,755,2078.171,,,,,,144,40,0,,,,, +437,29,3,15545,793,2078.171,39,32.0,G#1,mp+,15,144,32,15,,,,, +437,29,3,15545,793,2078.334,,,,,,144,32,0,,,,, +437,30,3,15546,832,2078.334,25,32.0,C5,mp-,13,144,72,13,,,,, +437,30,3,15546,832,2078.439,,,,,,144,72,0,,,,, +437,31,3,15547,857,2078.439,39,32.0,G6,p+,12,144,91,12,,,,, +437,31,3,15547,857,2078.602,,,,,,144,91,0,,,,, +437,32,1,15548,896,2078.602,128,8.0,G5,p,11,144,79,11,,,,, +437,33,3,15549,896,2078.602,38,32.0,E2,p,11,144,40,11,,,,, +437,34,3,15550,934,2078.761,38,32.0,G#1,p,11,144,32,11,,,,, +437,33,3,15549,896,2078.761,,,,,,144,40,0,,,,, +437,35,3,15551,972,2078.92,39,32.0,C5,p,11,144,72,11,,,,, +437,34,3,15550,934,2078.92,,,,,,144,32,0,,,,, +437,35,3,15551,972,2079.083,,,,,,144,72,0,,,,, +437,36,3,15552,1011,2079.083,13,64.0,C#1,p,11,144,25,11,,,,, +437,37,3,15553,1011,2079.083,16,64.0,G#1,p,11,144,32,11,,,,, +437,38,3,15554,1011,2079.083,16,64.0,C5,p,11,144,72,11,,,,, +437,36,3,15552,1011,2079.138,,,,,,144,25,0,,,,, +437,39,1,15555,1024,2079.138,,,,,,176,102,0,,,,, +437,40,3,15556,1024,2079.138,,,,,,176,102,0,,,,, +437,32,1,15548,896,2079.138,,,,,,144,79,0,,,,, +437,37,3,15553,1011,2079.15,,,,,,144,32,0,,,,, +437,38,3,15554,1011,2079.15,,,,,,144,72,0,,,,, +437,41,1,15557,1280,2080.209,76,16.0,D4,p,11,144,62,11,,,,, +437,42,1,15558,1280,2080.209,64,16.0,B4,p,11,144,71,11,,,,, +437,43,3,15559,1280,2080.209,76,16.0,F1,p,11,144,29,11,,,,, +437,42,1,15558,1280,2080.477,,,,,,144,71,0,,,,, +437,41,1,15557,1280,2080.527,,,,,,144,62,0,,,,, +437,43,3,15559,1280,2080.527,,,,,,144,29,0,,,,, +437,44,1,15560,1356,2080.527,52,16.0,D4,p-,10,144,62,10,,,,, +437,45,1,15561,1356,2080.527,64,16.0,B4,p-,10,144,71,10,,,,, +437,46,3,15562,1356,2080.527,52,16.0,F1,p-,10,144,29,10,,,,, +437,44,1,15560,1356,2080.745,,,,,,144,62,0,,,,, +437,45,1,15561,1356,2080.745,,,,,,144,71,0,,,,, +437,46,3,15562,1356,2080.745,,,,,,144,29,0,,,,, +437,47,1,15563,1408,2080.745,51,16.0,D4,pp+,9,144,62,9,,,,, +437,48,1,15564,1408,2080.745,64,16.0,B4,pp+,9,144,71,9,,,,, +437,49,3,15565,1408,2080.745,102,8.0,F1,pp+,9,144,29,9,,,,, +437,50,3,15566,1408,2080.745,128,8.0,F#2,pp+,9,144,42,9,,,,, +437,47,1,15563,1408,2080.958,,,,,,144,62,0,,,,, +437,48,1,15564,1408,2080.958,,,,,,144,71,0,,,,, +437,51,1,15567,1459,2080.958,51,16.0,D4,pp,8,144,62,8,,,,, +437,52,1,15568,1459,2080.958,64,16.0,A#4,pp,8,144,70,8,,,,, +437,53,1,15569,1459,2080.958,64,16.0,B4,pp,8,144,71,8,,,,, +437,49,3,15565,1408,2081.172,,,,,,144,29,0,,,,, +437,50,3,15566,1408,2081.172,,,,,,144,42,0,,,,, +437,51,1,15567,1459,2081.172,,,,,,144,62,0,,,,, +437,52,1,15568,1459,2081.172,,,,,,144,70,0,,,,, +437,53,1,15569,1459,2081.172,,,,,,144,71,0,,,,, +437,54,3,15570,1510,2081.172,26,32.0,F1,pp-,7,144,29,7,,,,, +437,55,3,15571,1510,2081.172,32,32.0,F#2,pp-,7,144,42,7,,,,, +437,56,1,15572,1510,2081.172,26,32.0,D4,pp-,7,144,62,7,,,,, +437,57,1,15573,1510,2081.172,32,32.0,A#4,pp-,7,144,70,7,,,,, +437,58,1,15574,1510,2081.172,32,32.0,B4,pp-,7,144,71,7,,,,, +438,0,0,15575,0,2081.281,,,,,,,,,438,,,, +438,1,1,15576,0,2081.281,,,,,,176,102,0,,,,, +438,2,3,15577,0,2081.281,,,,,,176,102,0,,,,, +437,54,3,15570,1510,2081.281,,,,,,144,29,0,,,,, +437,56,1,15572,1510,2081.281,,,,,,144,62,0,,,,, +437,55,3,15571,1510,2081.306,,,,,,144,42,0,,,,, +437,57,1,15573,1510,2081.306,,,,,,144,70,0,,,,, +437,58,1,15574,1510,2081.306,,,,,,144,71,0,,,,, +438,3,1,15578,153,2081.921,103,8.0,C5,mp,14,144,72,14,,,,, +438,4,1,15579,153,2081.921,128,8.0,G5,mp,14,144,79,14,,,,, +438,5,3,15580,153,2081.921,103,8.0,C#1,mp,14,144,25,14,,,,, +438,6,3,15581,153,2081.921,128,8.0,G#1,mp,14,144,32,14,,,,, +438,7,3,15582,153,2081.921,128,8.0,E2,mp,14,144,40,14,,,,, +438,3,1,15578,153,2082.352,,,,,,144,72,0,,,,, +438,5,3,15580,153,2082.352,,,,,,144,25,0,,,,, +438,8,1,15583,256,2082.352,25,32.0,C#4,pp,8,144,61,8,,,,, +438,9,3,15584,256,2082.352,,,,,,176,102,0,,,,, +438,4,1,15579,153,2082.457,,,,,,144,79,0,,,,, +438,6,3,15581,153,2082.457,,,,,,144,32,0,,,,, +438,7,3,15582,153,2082.457,,,,,,144,40,0,,,,, +438,8,1,15583,256,2082.457,,,,,,144,61,0,,,,, +438,10,1,15585,281,2082.457,26,32.0,A1,pp,8,144,33,8,,,,, +438,10,1,15585,281,2082.565,,,,,,144,33,0,,,,, +438,11,1,15586,307,2082.565,25,32.0,D5,pp,8,144,74,8,,,,, +438,11,1,15586,307,2082.67,,,,,,144,74,0,,,,, +438,12,1,15587,332,2082.67,26,32.0,F2,pp,8,144,41,8,,,,, +438,12,1,15587,332,2082.779,,,,,,144,41,0,,,,, +438,13,1,15588,358,2082.779,26,32.0,G#4,pp,8,144,68,8,,,,, +438,13,1,15588,358,2082.888,,,,,,144,68,0,,,,, +438,14,1,15589,384,2082.888,,,,,,176,102,0,,,,, +438,15,3,15590,384,2082.888,28,32.0,C#4,pp,8,144,61,8,,,,, +438,16,3,15591,384,2082.888,32,32.0,D5,pp,8,144,74,8,,,,, +438,15,3,15590,384,2083.005,,,,,,144,61,0,,,,, +438,17,3,15592,412,2083.005,28,32.0,A1,pp,8,144,33,8,,,,, +438,16,3,15591,384,2083.022,,,,,,144,74,0,,,,, +438,17,3,15592,412,2083.122,,,,,,144,33,0,,,,, +438,18,3,15593,440,2083.122,43,32.0,C#4,pp,8,144,61,8,,,,, +438,19,3,15594,483,2083.302,29,32.0,G#4,pp,8,144,68,8,,,,, +438,20,3,15595,483,2083.302,32,32.0,D5,pp,8,144,74,8,,,,, +438,18,3,15593,440,2083.302,,,,,,144,61,0,,,,, +438,21,3,15596,512,2083.423,28,32.0,F2,pp,8,144,41,8,,,,, +438,22,1,15597,512,2083.423,,,,,,176,102,0,,,,, +438,19,3,15594,483,2083.423,,,,,,144,68,0,,,,, +438,20,3,15595,483,2083.436,,,,,,144,74,0,,,,, +438,21,3,15596,512,2083.541,,,,,,144,41,0,,,,, +438,23,3,15598,540,2083.541,28,32.0,G#4,pp,8,144,68,8,,,,, +438,23,3,15598,540,2083.658,,,,,,144,68,0,,,,, +438,24,3,15599,568,2083.658,43,32.0,D5,pp,8,144,74,8,,,,, +438,25,3,15600,611,2083.838,29,32.0,G#4,pp,8,144,68,8,,,,, +438,24,3,15599,568,2083.838,,,,,,144,74,0,,,,, +438,26,3,15601,640,2083.959,28,32.0,A1,pp,8,144,33,8,,,,, +438,25,3,15600,611,2083.959,,,,,,144,68,0,,,,, +438,26,3,15601,640,2084.076,,,,,,144,33,0,,,,, +438,27,3,15602,668,2084.076,28,32.0,C#4,pp,8,144,61,8,,,,, +438,28,3,15603,668,2084.076,32,32.0,G#4,pp,8,144,68,8,,,,, +438,29,3,15604,668,2084.076,32,32.0,D5,pp,8,144,74,8,,,,, +438,27,3,15602,668,2084.193,,,,,,144,61,0,,,,, +438,30,3,15605,696,2084.193,43,32.0,A0,pp,8,144,21,8,,,,, +438,28,3,15603,668,2084.21,,,,,,144,68,0,,,,, +438,29,3,15604,668,2084.21,,,,,,144,74,0,,,,, +438,30,3,15605,696,2084.373,,,,,,144,21,0,,,,, +438,31,3,15606,739,2084.373,29,32.0,F1,pp,8,144,29,8,,,,, +438,32,3,15607,768,2084.495,,,,,,176,102,0,,,,, +438,33,1,15608,768,2084.495,48,32.0,G#3,pp,8,144,56,8,,,,, +438,34,1,15609,768,2084.495,32,32.0,D4,pp,8,144,62,8,,,,, +438,31,3,15606,739,2084.495,,,,,,144,29,0,,,,, +438,34,1,15609,768,2084.629,,,,,,144,62,0,,,,, +438,33,1,15608,768,2084.696,,,,,,144,56,0,,,,, +438,35,1,15610,816,2084.696,48,32.0,A0,pp,8,144,21,8,,,,, +438,36,3,15611,853,2084.851,,,,,,176,102,0,,,,, +438,35,1,15610,816,2084.897,,,,,,144,21,0,,,,, +438,37,1,15612,864,2084.897,32,32.0,F1,pp,8,144,29,8,,,,, +438,37,1,15612,864,2085.031,,,,,,144,29,0,,,,, +438,38,1,15613,896,2085.031,42,16.0,C#3,pp,8,144,49,8,,,,, +438,39,3,15614,896,2085.031,,,,,,176,102,0,,,,, +438,38,1,15613,896,2085.206,,,,,,144,49,0,,,,, +438,40,1,15615,938,2085.206,43,16.0,D4,pp,8,144,62,8,,,,, +438,40,1,15615,938,2085.386,,,,,,144,62,0,,,,, +438,41,1,15616,981,2085.386,43,16.0,G#3,pp,8,144,56,8,,,,, +438,41,1,15616,981,2085.566,,,,,,144,56,0,,,,, +438,42,0,15617,1024,2085.566,,,,,,176,64,0,,,,,^ +438,43,1,15618,1024,2085.566,64,16.0,C#3,fff,24,144,49,23,,,,, +438,44,1,15619,1024,2085.566,64,16.0,G#3,fff,24,144,56,23,,,,, +438,45,1,15620,1024,2085.566,64,16.0,D4,fff,24,144,62,23,,,,, +438,46,3,15621,1024,2085.566,42,16.0,A0,fff,24,144,21,23,,,,, +438,46,3,15621,1024,2085.742,,,,,,144,21,0,,,,, +438,47,3,15622,1066,2085.742,43,16.0,A0,fff,24,144,21,23,,,,, +438,48,3,15623,1066,2085.742,64,16.0,F1,fff,24,144,29,23,,,,, +438,43,1,15618,1024,2085.834,,,,,,144,49,0,,,,, +438,44,1,15619,1024,2085.834,,,,,,144,56,0,,,,, +438,45,1,15620,1024,2085.834,,,,,,144,62,0,,,,, +438,49,1,15624,1088,2085.834,,,,,,176,102,0,,,,, +438,47,3,15622,1066,2085.922,,,,,,144,21,0,,,,, +438,50,3,15625,1109,2085.922,,,,,,176,102,0,,,,, +438,48,3,15623,1066,2086.01,,,,,,144,29,0,,,,, +438,52,1,15626,1152,2086.102,,,,,,176,102,0,,,,, +438,53,3,15627,1152,2086.102,28,32.0,C#6,pp,8,144,85,8,,,,, +438,51,0,15628,1152,2086.102,,,,,,176,64,127,,,,,V +438,53,3,15627,1152,2086.219,,,,,,144,85,0,,,,, +438,54,3,15629,1180,2086.219,28,32.0,E3,pp,8,144,52,8,,,,, +438,54,3,15629,1180,2086.336,,,,,,144,52,0,,,,, +438,55,3,15630,1208,2086.336,43,32.0,A2,pp+,9,144,45,9,,,,, +438,55,3,15630,1208,2086.516,,,,,,144,45,0,,,,, +438,56,3,15631,1251,2086.516,29,32.0,E3,p-,10,144,52,10,,,,, +438,56,3,15631,1251,2086.638,,,,,,144,52,0,,,,, +438,57,3,15632,1280,2086.638,28,32.0,A2,p-,10,144,45,10,,,,, +438,58,1,15633,1280,2086.638,,,,,,176,102,0,,,,, +438,57,3,15632,1280,2086.755,,,,,,144,45,0,,,,, +438,59,3,15634,1308,2086.755,28,32.0,A#4,p,11,144,70,11,,,,, +438,59,3,15634,1308,2086.872,,,,,,144,70,0,,,,, +438,60,3,15635,1336,2086.872,43,32.0,F2,p,11,144,41,11,,,,, +438,60,3,15635,1336,2087.052,,,,,,144,41,0,,,,, +438,61,3,15636,1379,2087.052,29,32.0,A#5,p+,12,144,82,12,,,,, +438,61,3,15636,1379,2087.173,,,,,,144,82,0,,,,, +438,62,3,15637,1408,2087.173,32,32.0,A2,p+,12,144,45,12,,,,, +438,62,3,15637,1408,2087.307,,,,,,144,45,0,,,,, +438,63,3,15638,1440,2087.307,21,32.0,E3,mp-,13,144,52,13,,,,, +438,63,3,15638,1440,2087.395,,,,,,144,52,0,,,,, +438,64,3,15639,1461,2087.395,32,32.0,F2,mp-,13,144,41,13,,,,, +438,64,3,15639,1461,2087.529,,,,,,144,41,0,,,,, +438,65,3,15640,1493,2087.529,21,32.0,A#3,mp,14,144,58,14,,,,, +438,67,0,15641,1535,2087.595,,,,,,176,64,0,,,,,^ +438,65,3,15640,1493,2087.617,,,,,,144,58,0,,,,, +438,66,3,15642,1514,2087.617,22,32.0,F2,mp,14,144,41,14,,,,, +438,66,3,15642,1514,2087.709,,,,,,144,41,0,,,,, +439,0,0,15643,0,2087.709,,,,,,,,,439,,,, +439,2,1,15644,0,2087.709,64,16.0,C#5,p,11,144,73,11,,,,, +439,3,3,15645,,2087.709,,8.0,E2,mp,14,144,40,14,,,,g, +439,3,3,15645,,2087.759,,,,,,144,40,0,,,,, +439,4,3,15646,0,2087.784,,,,,,176,102,0,,,,, +439,1,0,15647,0,2087.895,,,,,,176,64,127,,,,,V +439,2,1,15644,0,2087.977,,,,,,144,73,0,,,,, +439,5,1,15648,64,2088.052,64,16.0,A1,p,11,144,33,11,,,,, +439,5,1,15648,64,2088.32,,,,,,144,33,0,,,,, +439,6,1,15649,128,2088.32,64,16.0,E2,p,11,144,40,11,,,,, +439,6,1,15649,128,2088.588,,,,,,144,40,0,,,,, +439,7,1,15650,192,2088.588,64,16.0,C#6,p,11,144,85,11,,,,, +439,7,1,15650,192,2088.856,,,,,,144,85,0,,,,, +439,8,1,15651,256,2088.856,,,,,,176,102,0,,,,, +439,9,3,15652,256,2088.856,51,16.0,A1,pp,8,144,33,8,,,,, +439,10,3,15653,256,2088.856,64,16.0,F2,pp,8,144,41,8,,,,, +439,9,3,15652,256,2089.069,,,,,,144,33,0,,,,, +439,11,1,15654,307,2089.069,51,16.0,B6,pp,8,144,95,8,,,,, +439,12,3,15655,307,2089.069,51,16.0,F1,pp,8,144,29,8,,,,, +439,10,3,15653,256,2089.123,,,,,,144,41,0,,,,, +439,11,1,15654,307,2089.282,,,,,,144,95,0,,,,, +439,12,3,15655,307,2089.282,,,,,,144,29,0,,,,, +439,13,1,15656,358,2089.282,51,16.0,B6,pp,8,144,95,8,,,,, +439,14,3,15657,358,2089.282,51,16.0,F1,pp,8,144,29,8,,,,, +439,15,3,15658,358,2089.282,64,16.0,F#2,pp,8,144,42,8,,,,, +439,13,1,15656,358,2089.496,,,,,,144,95,0,,,,, +439,14,3,15657,358,2089.496,,,,,,144,29,0,,,,, +439,15,3,15658,358,2089.496,,,,,,144,42,0,,,,, +439,16,1,15659,409,2089.496,51,16.0,B6,pp,8,144,95,8,,,,, +439,17,3,15660,409,2089.496,51,16.0,F#2,pp,8,144,42,8,,,,, +439,18,3,15661,409,2089.496,64,16.0,D3,pp,8,144,50,8,,,,, +439,16,1,15659,409,2089.709,,,,,,144,95,0,,,,, +439,17,3,15660,409,2089.709,,,,,,144,42,0,,,,, +439,18,3,15661,409,2089.709,,,,,,144,50,0,,,,, +439,19,1,15662,460,2089.709,52,16.0,A#5,pp,8,144,82,8,,,,, +439,20,1,15663,460,2089.709,64,16.0,B6,pp,8,144,95,8,,,,, +439,21,3,15664,460,2089.709,52,16.0,F2,pp,8,144,41,8,,,,, +439,22,3,15665,460,2089.709,64,16.0,F#2,pp,8,144,42,8,,,,, +439,23,3,15666,460,2089.709,64,16.0,D3,pp,8,144,50,8,,,,, +439,19,1,15662,460,2089.927,,,,,,144,82,0,,,,, +439,21,3,15664,460,2089.927,,,,,,144,41,0,,,,, +439,24,1,15667,512,2089.927,,,,,,176,102,0,,,,, +439,25,3,15668,512,2089.927,,,,,,176,102,0,,,,, +439,20,1,15663,460,2089.977,,,,,,144,95,0,,,,, +439,22,3,15665,460,2089.977,,,,,,144,42,0,,,,, +439,23,3,15666,460,2089.977,,,,,,144,50,0,,,,, +439,26,1,15669,704,2090.731,85,8.0,C#5,p,11,144,73,11,,,,, +439,27,3,15670,704,2090.731,42,16.0,A1,p,11,144,33,11,,,,, +439,27,3,15670,704,2090.906,,,,,,144,33,0,,,,, +439,28,3,15671,746,2090.906,43,16.0,A1,p+,12,144,33,12,,,,, +439,29,3,15672,746,2090.906,64,16.0,E2,p+,12,144,40,12,,,,, +439,26,1,15669,704,2091.086,,,,,,144,73,0,,,,, +439,28,3,15671,746,2091.086,,,,,,144,33,0,,,,, +439,29,3,15672,746,2091.086,,,,,,144,40,0,,,,, +439,30,1,15673,789,2091.086,43,16.0,C#6,mp,14,144,85,14,,,,, +439,31,3,15674,789,2091.086,43,16.0,A1,mp,14,144,33,14,,,,, +439,32,3,15675,789,2091.086,64,16.0,E2,mp,14,144,40,14,,,,, +439,30,1,15673,789,2091.266,,,,,,144,85,0,,,,, +439,31,3,15674,789,2091.266,,,,,,144,33,0,,,,, +439,33,1,15676,832,2091.266,,,,,,176,102,0,,,,, +439,34,3,15677,832,2091.266,42,16.0,F1,mp+,15,144,29,15,,,,, +439,32,3,15675,789,2091.354,,,,,,144,40,0,,,,, +439,34,3,15677,832,2091.442,,,,,,144,29,0,,,,, +439,35,3,15678,874,2091.442,22,32.0,A#3,mf-,16,144,58,16,,,,, +439,35,3,15678,874,2091.534,,,,,,144,58,0,,,,, +439,36,3,15679,896,2091.534,128,8.0,F1,mf,17,144,29,17,,,,, +439,37,3,15680,896,2091.534,128,8.0,A1,mf,17,144,33,17,,,,, +439,38,3,15681,896,2091.534,128,8.0,E2,mf,17,144,40,17,,,,, +439,39,3,15682,896,2091.534,128,8.0,A#3,mf,17,144,58,17,,,,, +439,40,0,15683,896,2091.534,,,,,,,,,,6073,,, +439,41,0,15684,1024,2092.027,,,,,,176,64,0,,,,,^ +439,36,3,15679,896,2092.07,,,,,,144,29,0,,,,, +439,37,3,15680,896,2092.07,,,,,,144,33,0,,,,, +439,38,3,15681,896,2092.07,,,,,,144,40,0,,,,, +439,39,3,15682,896,2092.07,,,,,,144,58,0,,,,, +439,42,1,15685,1024,2092.07,192,8.0,C#7,f,20,144,97,20,,,,, +439,43,3,15686,1024,2092.07,,,,,,176,102,0,,,,, +439,44,0,15687,1075,2092.327,,,,,,176,64,127,,,,,V +439,45,1,15688,1216,2092.873,51,16.0,B5,pp,8,144,83,8,,,,, +439,46,3,15689,1216,2092.873,51,16.0,F2,pp,8,144,41,8,,,,, +439,42,1,15685,1024,2092.948,,,,,,144,97,0,,,,, +439,45,1,15688,1216,2093.087,,,,,,144,83,0,,,,, +439,46,3,15689,1216,2093.087,,,,,,144,41,0,,,,, +439,47,1,15690,1267,2093.087,51,16.0,B5,pp,8,144,83,8,,,,, +439,48,3,15691,1267,2093.087,51,16.0,F#2,pp,8,144,42,8,,,,, +439,49,3,15692,1267,2093.087,64,16.0,D3,pp,8,144,50,8,,,,, +439,47,1,15690,1267,2093.3,,,,,,144,83,0,,,,, +439,48,3,15691,1267,2093.3,,,,,,144,42,0,,,,, +439,50,1,15693,1318,2093.3,51,16.0,B5,pp,8,144,83,8,,,,, +439,51,3,15694,1318,2093.3,51,16.0,F2,pp,8,144,41,8,,,,, +439,52,3,15695,1318,2093.3,64,16.0,F#2,pp,8,144,42,8,,,,, +439,49,3,15692,1267,2093.355,,,,,,144,50,0,,,,, +439,50,1,15693,1318,2093.514,,,,,,144,83,0,,,,, +439,51,3,15694,1318,2093.514,,,,,,144,41,0,,,,, +439,52,3,15695,1318,2093.514,,,,,,144,42,0,,,,, +439,53,1,15696,1369,2093.514,51,16.0,B5,pp,8,144,83,8,,,,, +439,54,3,15697,1369,2093.514,51,16.0,F1,pp,8,144,29,8,,,,, +439,55,3,15698,1369,2093.514,64,16.0,F#2,pp,8,144,42,8,,,,, +439,53,1,15696,1369,2093.727,,,,,,144,83,0,,,,, +439,54,3,15697,1369,2093.727,,,,,,144,29,0,,,,, +439,55,3,15698,1369,2093.727,,,,,,144,42,0,,,,, +439,56,1,15699,1420,2093.727,52,16.0,D4,pp,8,144,62,8,,,,, +439,57,1,15700,1420,2093.727,64,16.0,A#4,pp,8,144,70,8,,,,, +439,58,1,15701,1420,2093.727,64,16.0,B4,pp,8,144,71,8,,,,, +439,59,3,15702,1420,2093.727,52,16.0,F1,pp,8,144,29,8,,,,, +439,60,3,15703,1420,2093.727,64,16.0,F#2,pp,8,144,42,8,,,,, +439,63,0,15704,1493,2093.883,,,,,,176,64,0,,,,,^ +439,56,1,15699,1420,2093.945,,,,,,144,62,0,,,,, +439,59,3,15702,1420,2093.945,,,,,,144,29,0,,,,, +439,61,1,15705,1472,2093.945,,,,,,176,102,0,,,,, +439,62,3,15706,1472,2093.945,,,,,,176,102,0,,,,, +439,57,1,15700,1420,2093.995,,,,,,144,70,0,,,,, +439,58,1,15701,1420,2093.995,,,,,,144,71,0,,,,, +439,60,3,15703,1420,2093.995,,,,,,144,42,0,,,,, +439,65,3,15707,1493,2094.033,43,16.0,G#1,pp,8,144,32,8,,,,, +439,64,0,15708,1493,2094.183,,,,,,176,64,127,,,,,V +439,65,3,15707,1493,2094.213,,,,,,144,32,0,,,,, +440,0,0,15709,0,2094.213,,,,,,,,,440,,,, +440,1,1,15710,0,2094.213,64,16.0,F5,pp,8,144,77,8,,,,, +440,2,3,15711,0,2094.213,,,,,,176,102,0,,,,, +440,1,1,15710,0,2094.481,,,,,,144,77,0,,,,, +440,3,1,15712,64,2094.481,42,16.0,A#4,pp,8,144,70,8,,,,, +440,4,3,15713,64,2094.481,,,,,,176,102,0,,,,, +440,3,1,15712,64,2094.656,,,,,,144,70,0,,,,, +440,5,1,15714,106,2094.656,43,16.0,F5,pp,8,144,77,8,,,,, +440,6,3,15715,106,2094.656,43,16.0,C2,pp,8,144,36,8,,,,, +440,7,3,15716,106,2094.656,64,16.0,A#2,pp,8,144,46,8,,,,, +440,5,1,15714,106,2094.836,,,,,,144,77,0,,,,, +440,6,3,15715,106,2094.836,,,,,,144,36,0,,,,, +440,8,1,15717,149,2094.836,64,16.0,F5,pp,8,144,77,8,,,,, +440,9,3,15718,149,2094.836,,,,,,176,102,0,,,,, +440,7,3,15716,106,2094.924,,,,,,144,46,0,,,,, +440,10,3,15719,170,2094.924,,,,,,176,102,0,,,,, +440,8,1,15717,149,2095.104,,,,,,144,77,0,,,,, +440,11,1,15720,213,2095.104,43,16.0,A#4,pp,8,144,70,8,,,,, +440,11,1,15720,213,2095.284,,,,,,144,70,0,,,,, +440,12,1,15721,256,2095.284,16,64.0,A4,mp,14,144,69,14,,,,, +440,13,3,15722,256,2095.284,,,,,,176,102,0,,,,, +440,16,0,15723,304,2095.35,,,,,,176,64,0,,,,,^ +440,12,1,15721,256,2095.351,,,,,,144,69,0,,,,, +440,14,1,15724,272,2095.351,16,64.0,E5,mp+,15,144,76,15,,,,, +440,14,1,15724,272,2095.418,,,,,,144,76,0,,,,, +440,15,1,15725,288,2095.418,16,64.0,A#5,mf-,16,144,82,16,,,,, +440,15,1,15725,288,2095.485,,,,,,144,82,0,,,,, +440,17,1,15726,304,2095.485,16,64.0,F4,mf-,16,144,65,16,,,,, +440,17,1,15726,304,2095.552,,,,,,144,65,0,,,,, +440,19,1,15727,320,2095.552,32,32.0,C#7,mf,17,,,,,,,, +440,20,3,15728,,2095.552,,8.0,C#7,mf,17,144,97,17,,,,g, +440,21,3,15729,,2095.627,,8.0,E4,mf+,18,144,64,18,,,,g, +440,18,0,15730,311,2095.65,,,,,,176,64,127,,,,,V +440,21,3,15729,,2095.677,,,,,,144,64,0,,,,, +440,20,3,15728,,2095.686,,,,,,144,97,0,,,,, +440,22,3,15731,,2095.702,,8.0,A3,f-,19,144,57,19,,,,g, +440,22,3,15731,,2095.752,,,,,,144,57,0,,,,, +440,23,3,15732,320,2095.777,32,32.0,F3,f,20,144,53,20,,,,, +440,24,3,15733,320,2095.777,32,32.0,A3,f,20,144,57,20,,,,, +440,25,3,15734,320,2095.777,32,32.0,E4,f,20,144,64,20,,,,, +440,23,3,15732,320,2095.911,,,,,,144,53,0,,,,, +440,24,3,15733,320,2095.911,,,,,,144,57,0,,,,, +440,25,3,15734,320,2095.911,,,,,,144,64,0,,,,, +440,26,1,15735,352,2095.911,32,32.0,A#6,f,20,144,94,20,,,,, +440,27,1,15736,352,2095.911,32,32.0,C#7,f,20,144,97,20,,,,, +440,28,3,15737,352,2095.911,32,32.0,F3,f,20,144,53,20,,,,, +440,29,3,15738,352,2095.911,32,32.0,A3,f,20,144,57,20,,,,, +440,30,3,15739,352,2095.911,32,32.0,E4,f,20,144,64,20,,,,, +440,26,1,15735,352,2096.045,,,,,,144,94,0,,,,, +440,27,1,15736,352,2096.045,,,,,,144,97,0,,,,, +440,28,3,15737,352,2096.045,,,,,,144,53,0,,,,, +440,29,3,15738,352,2096.045,,,,,,144,57,0,,,,, +440,30,3,15739,352,2096.045,,,,,,144,64,0,,,,, +440,31,1,15740,384,2096.045,,,,,,176,102,0,,,,, +440,32,3,15741,384,2096.045,,,,,,176,102,0,,,,, +440,33,1,15742,,2096.506,,8.0,E3,f,20,144,52,20,,,,g, +440,33,1,15742,,2096.556,,,,,,144,52,0,,,,, +440,34,1,15743,512,2096.581,32,32.0,B3,f,20,144,59,20,,,,, +440,35,1,15744,512,2096.581,32,32.0,C#6,f,20,144,85,20,,,,, +440,36,3,15745,512,2096.581,48,32.0,D4,p,11,144,62,11,,,,, +440,37,1,15746,544,2096.714,32,32.0,A2,f,20,144,45,20,,,,, +440,38,3,15747,560,2096.781,32,32.0,G#2,p,11,144,44,11,,,,, +440,37,1,15746,544,2096.848,,,,,,144,45,0,,,,, +440,39,1,15748,576,2096.848,64,16.0,E3,f,20,144,52,20,,,,, +440,38,3,15747,560,2096.915,,,,,,144,44,0,,,,, +440,40,3,15749,592,2096.915,48,32.0,C#2,p,11,144,37,11,,,,, +440,34,1,15743,512,2097.014,,,,,,144,59,0,,,,, +440,35,1,15744,512,2097.014,,,,,,144,85,0,,,,, +440,36,3,15745,512,2097.081,,,,,,144,62,0,,,,, +440,40,3,15749,592,2097.116,,,,,,144,37,0,,,,, +440,41,1,15750,640,2097.116,,,,,,176,102,0,,,,, +440,42,3,15751,640,2097.116,48,32.0,D3,p,11,144,50,11,,,,, +440,39,1,15748,576,2097.116,,,,,,144,52,0,,,,, +440,42,3,15751,640,2097.317,,,,,,144,50,0,,,,, +440,43,3,15752,688,2097.317,32,32.0,G#2,p,11,144,44,11,,,,, +440,43,3,15752,688,2097.451,,,,,,144,44,0,,,,, +440,44,3,15753,720,2097.451,48,32.0,C#2,p,11,144,37,11,,,,, +440,44,3,15753,720,2097.652,,,,,,144,37,0,,,,, +440,45,0,15754,768,2097.652,,,,,,176,64,0,,,,,^ +440,46,1,15755,768,2097.652,128,8.0,B3,f,20,144,59,20,,,,, +440,47,3,15756,768,2097.652,128,8.0,D3,p,11,144,50,11,,,,, +440,46,1,15755,768,2098.188,,,,,,144,59,0,,,,, +440,47,3,15756,768,2098.188,,,,,,144,50,0,,,,, +440,49,1,15757,896,2098.188,25,32.0,E2,pp,8,144,40,8,,,,, +440,50,3,15758,896,2098.188,,,,,,176,102,0,,,,, +440,48,0,15759,896,2098.188,,,,,,176,64,127,,,,,V +440,49,1,15757,896,2098.292,,,,,,144,40,0,,,,, +440,51,1,15760,921,2098.292,26,32.0,B4,pp,8,144,71,8,,,,, +440,51,1,15760,921,2098.401,,,,,,144,71,0,,,,, +440,52,1,15761,947,2098.401,25,32.0,G1,pp,8,144,31,8,,,,, +440,52,1,15761,947,2098.506,,,,,,144,31,0,,,,, +440,53,1,15762,972,2098.506,26,32.0,A#1,pp,8,144,34,8,,,,, +440,54,1,15763,972,2098.506,32,32.0,E2,pp,8,144,40,8,,,,, +440,53,1,15762,972,2098.615,,,,,,144,34,0,,,,, +440,55,1,15764,998,2098.615,26,32.0,D#6,pp,8,144,87,8,,,,, +440,54,1,15763,972,2098.64,,,,,,144,40,0,,,,, +440,55,1,15764,998,2098.723,,,,,,144,87,0,,,,, +440,56,1,15765,1024,2098.723,,,,,,176,102,0,,,,, +440,57,3,15766,1024,2098.723,,,,,,176,102,0,,,,, +440,58,3,15767,1152,2099.259,128,8.0,G#1,p,11,144,32,11,,,,, +440,58,3,15767,1152,2099.795,,,,,,144,32,0,,,,, +440,59,1,15768,1280,2099.795,128,8.0,F6,pp,8,144,89,8,,,,, +440,60,1,15769,1280,2099.795,128,8.0,C#7,pp,8,144,97,8,,,,, +440,61,3,15770,1280,2099.795,,,,,,176,102,0,,,,, +440,62,3,15771,1318,2099.954,26,32.0,A1,pp,8,144,33,8,,,,, +440,62,3,15771,1318,2100.063,,,,,,144,33,0,,,,, +440,63,3,15772,1344,2100.063,25,32.0,A#5,p-,10,144,82,10,,,,, +440,63,3,15772,1344,2100.167,,,,,,144,82,0,,,,, +440,64,3,15773,1369,2100.167,39,32.0,F1,p+,12,144,29,12,,,,, +440,59,1,15768,1280,2100.331,,,,,,144,89,0,,,,, +440,60,1,15769,1280,2100.331,,,,,,144,97,0,,,,, +440,64,3,15773,1369,2100.331,,,,,,144,29,0,,,,, +440,65,1,15774,1408,2100.331,128,8.0,C2,pp,8,144,36,8,,,,, +440,66,1,15775,1408,2100.331,128,8.0,A#2,pp,8,144,46,8,,,,, +440,67,3,15776,1408,2100.331,25,32.0,A#5,mp+,15,144,82,15,,,,, +440,68,3,15777,1408,2100.331,32,32.0,F6,mp+,15,144,89,15,,,,, +440,67,3,15776,1408,2100.435,,,,,,144,82,0,,,,, +440,69,3,15778,1433,2100.435,26,32.0,A2,mf-,16,144,45,16,,,,, +440,70,3,15779,1433,2100.435,32,32.0,E3,mf-,16,144,52,16,,,,, +440,68,3,15777,1408,2100.464,,,,,,144,89,0,,,,, +440,69,3,15778,1433,2100.544,,,,,,144,45,0,,,,, +440,71,3,15780,1459,2100.544,38,32.0,C#6,mf+,18,144,85,18,,,,, +440,70,3,15779,1433,2100.569,,,,,,144,52,0,,,,, +440,71,3,15780,1459,2100.703,,,,,,144,85,0,,,,, +440,72,3,15781,1497,2100.703,39,32.0,A2,f+,21,144,45,21,,,,, +440,73,3,15782,1497,2100.703,32,32.0,E3,f+,21,144,52,21,,,,, +440,73,3,15782,1497,2100.837,,,,,,144,52,0,,,,, +440,65,1,15774,1408,2100.866,,,,,,144,36,0,,,,, +440,66,1,15775,1408,2100.866,,,,,,144,46,0,,,,, +440,72,3,15781,1497,2100.866,,,,,,144,45,0,,,,, +441,0,0,15783,0,2100.866,,,,,,,,,441,,,, +441,1,1,15784,0,2100.866,,,,,,176,102,0,,,,, +441,2,3,15785,0,2100.866,38,32.0,F1,fff,24,144,29,23,,,,, +441,3,3,15786,0,2100.866,32,32.0,A1,fff,24,144,33,23,,,,, +441,4,3,15787,0,2100.866,32,32.0,E2,fff,24,144,40,23,,,,, +441,3,3,15786,0,2101.0,,,,,,144,33,0,,,,, +441,4,3,15787,0,2101.0,,,,,,144,40,0,,,,, +441,2,3,15785,0,2101.025,,,,,,144,29,0,,,,, +441,5,3,15788,38,2101.025,26,32.0,A#5,fff,24,144,82,23,,,,, +441,5,3,15788,38,2101.134,,,,,,144,82,0,,,,, +441,6,3,15789,64,2101.134,38,32.0,F1,mp,14,144,29,14,,,,, +441,7,3,15790,64,2101.134,32,32.0,E2,mp,14,144,40,14,,,,, +441,7,3,15790,64,2101.268,,,,,,144,40,0,,,,, +441,6,3,15789,64,2101.293,,,,,,144,29,0,,,,, +441,8,0,15791,102,2101.293,,,,,,176,64,0,,,,,^ +441,9,3,15792,102,2101.293,26,32.0,A#4,mp,14,144,70,14,,,,, +441,9,3,15792,102,2101.402,,,,,,144,70,0,,,,, +441,10,3,15793,128,2101.402,,,,,,176,102,0,,,,, +441,12,3,15794,213,2101.758,43,16.0,G#1,pp,8,144,32,8,,,,, +441,11,0,15795,213,2101.758,,,,,,176,64,127,,,,,V +441,12,3,15794,213,2101.938,,,,,,144,32,0,,,,, +441,13,1,15796,256,2101.938,64,16.0,F6,pp,8,144,89,8,,,,, +441,14,3,15797,256,2101.938,,,,,,176,102,0,,,,, +441,13,1,15796,256,2102.206,,,,,,144,89,0,,,,, +441,15,1,15798,320,2102.206,42,16.0,F6,pp,8,144,89,8,,,,, +441,16,3,15799,320,2102.206,42,16.0,C2,pp,8,144,36,8,,,,, +441,17,3,15800,320,2102.206,64,16.0,A#2,pp,8,144,46,8,,,,, +441,15,1,15798,320,2102.381,,,,,,144,89,0,,,,, +441,16,3,15799,320,2102.381,,,,,,144,36,0,,,,, +441,17,3,15800,320,2102.381,,,,,,144,46,0,,,,, +441,18,1,15801,362,2102.381,43,16.0,F6,pp,8,144,89,8,,,,, +441,19,3,15802,362,2102.381,64,16.0,C2,pp,8,144,36,8,,,,, +441,20,3,15803,362,2102.381,64,16.0,A#2,pp,8,144,46,8,,,,, +441,18,1,15801,362,2102.561,,,,,,144,89,0,,,,, +441,21,1,15804,405,2102.561,64,16.0,E7,pp,8,144,100,8,,,,, +441,19,3,15802,362,2102.649,,,,,,144,36,0,,,,, +441,20,3,15803,362,2102.649,,,,,,144,46,0,,,,, +441,22,3,15805,426,2102.649,,,,,,176,102,0,,,,, +441,21,1,15804,405,2102.829,,,,,,144,100,0,,,,, +441,23,1,15806,469,2102.829,43,16.0,A#5,pp,8,144,82,8,,,,, +441,23,1,15806,469,2103.009,,,,,,144,82,0,,,,, +441,24,1,15807,512,2103.009,256,4.0,E7,pp,8,144,100,8,,,,, +441,25,3,15808,512,2103.009,,,,,,176,102,0,,,,, +441,26,1,15809,768,2104.081,85,8.0,E7,,,,,,,,,, +441,24,1,15807,512,2104.436,,,,,,144,100,0,,,,, +441,27,1,15810,853,2104.436,43,16.0,A#5,pp,8,144,82,8,,,,, +441,27,1,15810,853,2104.616,,,,,,144,82,0,,,,, +441,28,1,15811,896,2104.616,25,32.0,F6,mp,14,144,89,14,,,,, +441,29,1,15812,896,2104.616,32,32.0,C#7,mp,14,144,97,14,,,,, +441,30,1,15813,896,2104.616,32,32.0,E7,mp,14,144,100,14,,,,, +441,31,3,15814,896,2104.616,128,8.0,G#1,pp,8,144,32,8,,,,, +441,32,3,15815,896,2104.616,128,8.0,C2,pp,8,144,36,8,,,,, +441,33,3,15816,896,2104.616,128,8.0,A#2,pp,8,144,46,8,,,,, +441,28,1,15811,896,2104.721,,,,,,144,89,0,,,,, +441,34,1,15817,921,2104.721,26,32.0,E2,mp,14,144,40,14,,,,, +441,29,1,15812,896,2104.75,,,,,,144,97,0,,,,, +441,30,1,15813,896,2104.75,,,,,,144,100,0,,,,, +441,34,1,15817,921,2104.83,,,,,,144,40,0,,,,, +441,35,1,15818,947,2104.83,25,32.0,A#6,mp,14,144,94,14,,,,, +441,35,1,15818,947,2104.934,,,,,,144,94,0,,,,, +441,36,1,15819,972,2104.934,26,32.0,A1,mp,14,144,33,14,,,,, +441,36,1,15819,972,2105.043,,,,,,144,33,0,,,,, +441,37,1,15820,998,2105.043,26,32.0,F1,mp,14,144,29,14,,,,, +441,31,3,15814,896,2105.152,,,,,,144,32,0,,,,, +441,32,3,15815,896,2105.152,,,,,,144,36,0,,,,, +441,33,3,15816,896,2105.152,,,,,,144,46,0,,,,, +441,37,1,15820,998,2105.152,,,,,,144,29,0,,,,, +441,38,3,15821,1024,2105.152,384,4.0,G#2,pp,8,144,44,8,,,,, +441,39,1,15822,1024,2105.152,,,,,,176,102,0,,,,, +441,40,1,15823,1075,2105.365,25,32.0,C#7,ppp,5,144,97,5,,,,, +441,40,1,15823,1075,2105.47,,,,,,144,97,0,,,,, +441,41,1,15824,1100,2105.47,26,32.0,E2,ppp,5,144,40,5,,,,, +441,41,1,15824,1100,2105.579,,,,,,144,40,0,,,,, +441,42,1,15825,1126,2105.579,26,32.0,A#5,ppp+,6,144,82,6,,,,, +441,42,1,15825,1126,2105.688,,,,,,144,82,0,,,,, +441,43,1,15826,1152,2105.688,25,32.0,A1,ppp+,6,144,33,6,,,,, +441,43,1,15826,1152,2105.792,,,,,,144,33,0,,,,, +441,44,1,15827,1177,2105.792,39,32.0,C#7,ppp+,6,144,97,6,,,,, +441,44,1,15827,1177,2105.956,,,,,,144,97,0,,,,, +441,45,1,15828,1216,2105.956,25,32.0,E2,ppp+,6,144,40,6,,,,, +441,45,1,15828,1216,2106.06,,,,,,144,40,0,,,,, +441,46,1,15829,1241,2106.06,39,32.0,A1,pp-,7,144,33,7,,,,, +441,46,1,15829,1241,2106.223,,,,,,144,33,0,,,,, +441,47,1,15830,1280,2106.223,28,32.0,E2,pp-,7,144,40,7,,,,, +441,47,1,15830,1280,2106.341,,,,,,144,40,0,,,,, +441,48,1,15831,1308,2106.341,28,32.0,C#6,pp-,7,144,85,7,,,,, +441,48,1,15831,1308,2106.458,,,,,,144,85,0,,,,, +441,49,1,15832,1336,2106.458,43,32.0,A1,pp,8,144,33,8,,,,, +441,49,1,15832,1336,2106.638,,,,,,144,33,0,,,,, +441,50,1,15833,1379,2106.638,29,32.0,E2,pp,8,144,40,8,,,,, +441,38,3,15821,1024,2106.759,,,,,,144,44,0,,,,, +441,50,1,15833,1379,2106.759,,,,,,144,40,0,,,,, +441,51,3,15834,1408,2106.759,128,8.0,C#2,pp,8,144,37,8,,,,, +441,52,1,15835,1408,2106.759,28,32.0,A#4,pp,8,144,70,8,,,,, +441,52,1,15835,1408,2106.876,,,,,,144,70,0,,,,, +441,53,1,15836,1436,2106.876,28,32.0,A1,pp+,9,144,33,9,,,,, +441,53,1,15836,1436,2106.993,,,,,,144,33,0,,,,, +441,54,1,15837,1464,2106.993,43,32.0,F1,pp+,9,144,29,9,,,,, +441,54,1,15837,1464,2107.173,,,,,,144,29,0,,,,, +441,55,1,15838,1507,2107.173,29,32.0,A#3,pp+,9,144,58,9,,,,, +441,51,3,15834,1408,2107.295,,,,,,144,37,0,,,,, +441,55,1,15838,1507,2107.295,,,,,,144,58,0,,,,, +442,0,0,15839,0,2107.295,,,,,,,,,442,,,, +442,1,1,15840,0,2107.295,128,8.0,D3,pp,8,144,50,8,,,,, +442,2,1,15841,0,2107.295,128,8.0,B3,p,11,144,59,11,,,,, +442,3,3,15842,0,2107.295,42,32.0,A1,p-,10,144,33,10,,,,, +442,3,3,15842,0,2107.471,,,,,,144,33,0,,,,, +442,4,3,15843,42,2107.471,29,32.0,E2,p-,10,144,40,10,,,,, +442,4,3,15843,42,2107.592,,,,,,144,40,0,,,,, +442,5,3,15844,71,2107.592,28,32.0,A1,p,11,144,33,11,,,,, +442,5,3,15844,71,2107.709,,,,,,144,33,0,,,,, +442,6,3,15845,99,2107.709,29,32.0,F1,p,11,144,29,11,,,,, +442,1,1,15840,0,2107.831,,,,,,144,50,0,,,,, +442,2,1,15841,0,2107.831,,,,,,144,59,0,,,,, +442,6,3,15845,99,2107.831,,,,,,144,29,0,,,,, +442,7,3,15846,128,2107.831,42,32.0,A1,p,11,144,33,11,,,,, +442,8,1,15847,128,2107.831,128,8.0,G#2,pp,8,144,44,8,,,,, +442,7,3,15846,128,2108.006,,,,,,144,33,0,,,,, +442,9,3,15848,170,2108.006,43,32.0,E2,p+,12,144,40,12,,,,, +442,9,3,15848,170,2108.186,,,,,,144,40,0,,,,, +442,10,3,15849,213,2108.186,43,32.0,F1,p+,12,144,29,12,,,,, +442,8,1,15847,128,2108.366,,,,,,144,44,0,,,,, +442,10,3,15849,213,2108.366,,,,,,144,29,0,,,,, +442,11,1,15850,256,2108.366,,,,,,176,102,0,,,,, +442,12,3,15851,256,2108.366,,,,,,176,102,0,,,,, +442,13,1,15852,768,2110.509,256,4.0,B3,mp,14,144,59,14,,,,, +442,14,3,15853,768,2110.509,,,,,,176,102,0,,,,, +442,15,3,15854,832,2110.777,48,32.0,C#2,mp+,15,144,37,15,,,,, +442,15,3,15854,832,2110.978,,,,,,144,37,0,,,,, +442,16,3,15855,880,2110.978,48,32.0,D3,mf-,16,144,50,16,,,,, +442,16,3,15855,880,2111.179,,,,,,144,50,0,,,,, +442,17,3,15856,928,2111.179,32,32.0,G#2,mf-,16,144,44,16,,,,, +442,17,3,15856,928,2111.313,,,,,,144,44,0,,,,, +442,18,0,15857,960,2111.313,,,,,,176,64,0,,,,,^ +442,19,3,15858,960,2111.313,64,16.0,C#2,mf,17,144,37,17,,,,, +442,20,3,15859,960,2111.313,64,16.0,G#2,mf,17,144,44,17,,,,, +442,21,3,15860,960,2111.313,64,16.0,D3,mf,17,144,50,17,,,,, +442,13,1,15852,768,2111.581,,,,,,144,59,0,,,,, +442,19,3,15858,960,2111.581,,,,,,144,37,0,,,,, +442,20,3,15859,960,2111.581,,,,,,144,44,0,,,,, +442,21,3,15860,960,2111.581,,,,,,144,50,0,,,,, +442,22,1,15861,1024,2111.581,,,,,,176,102,0,,,,, +442,23,3,15862,1024,2111.581,,,,,,176,102,0,,,,, +442,24,0,15863,1024,2111.581,,,,,,,,,,6074,,, +442,26,1,15864,1088,2111.848,25,32.0,E4,pp,8,144,64,8,,,,, +442,25,0,15865,1088,2111.848,,,,,,176,64,127,,,,,V +442,26,1,15864,1088,2111.953,,,,,,144,64,0,,,,, +442,27,1,15866,1113,2111.953,26,32.0,B6,pp,8,144,95,8,,,,, +442,27,1,15866,1113,2112.062,,,,,,144,95,0,,,,, +442,28,1,15867,1139,2112.062,25,32.0,G3,pp,8,144,55,8,,,,, +442,28,1,15867,1139,2112.166,,,,,,144,55,0,,,,, +442,29,1,15868,1164,2112.166,26,32.0,A#3,pp,8,144,58,8,,,,, +442,30,1,15869,1164,2112.166,32,32.0,E4,pp,8,144,64,8,,,,, +442,31,1,15870,1164,2112.166,32,32.0,B6,pp,8,144,95,8,,,,, +442,29,1,15868,1164,2112.275,,,,,,144,58,0,,,,, +442,32,1,15871,1190,2112.275,26,32.0,D#7,pp,8,144,99,8,,,,, +442,30,1,15869,1164,2112.3,,,,,,144,64,0,,,,, +442,31,1,15870,1164,2112.3,,,,,,144,95,0,,,,, +442,32,1,15871,1190,2112.384,,,,,,144,99,0,,,,, +442,33,1,15872,1216,2112.384,,,,,,176,102,0,,,,, +442,34,1,15873,1248,2112.518,51,16.0,D4,pp,8,144,62,8,,,,, +442,35,1,15874,1248,2112.518,64,16.0,B4,pp,8,144,71,8,,,,, +442,36,3,15875,1248,2112.518,51,16.0,F2,pp,8,144,41,8,,,,, +442,34,1,15873,1248,2112.731,,,,,,144,62,0,,,,, +442,36,3,15875,1248,2112.731,,,,,,144,41,0,,,,, +442,37,1,15876,1299,2112.731,51,16.0,B5,pp,8,144,83,8,,,,, +442,38,3,15877,1299,2112.731,51,16.0,F#2,pp,8,144,42,8,,,,, +442,39,3,15878,1299,2112.731,64,16.0,D3,pp,8,144,50,8,,,,, +442,35,1,15874,1248,2112.786,,,,,,144,71,0,,,,, +442,37,1,15876,1299,2112.945,,,,,,144,83,0,,,,, +442,38,3,15877,1299,2112.945,,,,,,144,42,0,,,,, +442,40,1,15879,1350,2112.945,51,16.0,B4,pp,8,144,71,8,,,,, +442,41,3,15880,1350,2112.945,51,16.0,F2,pp,8,144,41,8,,,,, +442,42,3,15881,1350,2112.945,64,16.0,F#2,pp,8,144,42,8,,,,, +442,39,3,15878,1299,2112.999,,,,,,144,50,0,,,,, +442,40,1,15879,1350,2113.158,,,,,,144,71,0,,,,, +442,41,3,15880,1350,2113.158,,,,,,144,41,0,,,,, +442,42,3,15881,1350,2113.158,,,,,,144,42,0,,,,, +442,43,1,15882,1401,2113.158,51,16.0,B5,pp,8,144,83,8,,,,, +442,44,3,15883,1401,2113.158,51,16.0,F1,pp,8,144,29,8,,,,, +442,45,3,15884,1401,2113.158,64,16.0,F#2,pp,8,144,42,8,,,,, +442,43,1,15882,1401,2113.372,,,,,,144,83,0,,,,, +442,44,3,15883,1401,2113.372,,,,,,144,29,0,,,,, +442,45,3,15884,1401,2113.372,,,,,,144,42,0,,,,, +442,46,1,15885,1452,2113.372,52,16.0,D4,pp,8,144,62,8,,,,, +442,47,1,15886,1452,2113.372,64,16.0,A#4,pp,8,144,70,8,,,,, +442,48,1,15887,1452,2113.372,64,16.0,B4,pp,8,144,71,8,,,,, +442,49,3,15888,1452,2113.372,52,16.0,F1,pp,8,144,29,8,,,,, +442,50,3,15889,1452,2113.372,64,16.0,F#2,pp,8,144,42,8,,,,, +442,51,0,15890,1504,2113.506,,,,,,176,64,0,,,,,^ +442,46,1,15885,1452,2113.589,,,,,,144,62,0,,,,, +442,49,3,15888,1452,2113.589,,,,,,144,29,0,,,,, +442,52,1,15891,1504,2113.589,,,,,,176,102,0,,,,, +442,53,3,15892,1504,2113.589,,,,,,176,102,0,,,,, +442,47,1,15886,1452,2113.64,,,,,,144,70,0,,,,, +442,48,1,15887,1452,2113.64,,,,,,144,71,0,,,,, +442,50,3,15889,1452,2113.64,,,,,,144,42,0,,,,, +443,0,0,15893,0,2113.723,,,,,,,,,443,,,, +443,2,1,15894,0,2113.723,256,4.0,C#7,fff,24,144,97,23,,,,, +443,3,3,15895,0,2113.723,,,,,,176,102,0,,,,, +443,1,0,15896,0,2113.806,,,,,,176,64,127,,,,,V +443,2,1,15894,0,2114.795,,,,,,144,97,0,,,,, +443,4,1,15897,256,2114.795,,,,,,176,102,0,,,,, +443,5,3,15898,256,2114.795,,,,,,176,102,0,,,,, +443,6,1,15899,341,2115.151,,,,,,176,102,0,,,,, +443,7,0,15900,426,2115.506,,,,,,176,64,0,,,,,^ +443,8,1,15901,426,2115.506,,,,,,176,102,0,,,,, +443,9,3,15902,426,2115.506,22,32.0,A1,fff,24,144,33,23,,,,, +443,9,3,15902,426,2115.598,,,,,,144,33,0,,,,, +443,10,3,15903,448,2115.598,21,32.0,E2,fff,24,144,40,23,,,,, +443,10,3,15903,448,2115.686,,,,,,144,40,0,,,,, +443,11,3,15904,469,2115.686,21,32.0,F1,fff,24,144,29,23,,,,, +443,12,3,15905,469,2115.686,32,32.0,A1,fff,24,144,33,23,,,,, +443,13,3,15906,469,2115.686,32,32.0,E2,fff,24,144,40,23,,,,, +443,11,3,15904,469,2115.774,,,,,,144,29,0,,,,, +443,12,3,15905,469,2115.774,,,,,,144,33,0,,,,, +443,13,3,15906,469,2115.774,,,,,,144,40,0,,,,, +443,14,1,15907,490,2115.774,22,32.0,A#4,fff,24,144,70,23,,,,, +443,15,3,15908,490,2115.774,22,32.0,F1,fff,24,144,29,23,,,,, +443,16,3,15909,490,2115.774,32,32.0,A1,fff,24,144,33,23,,,,, +443,17,3,15910,490,2115.774,32,32.0,E2,fff,24,144,40,23,,,,, +443,14,1,15907,490,2115.866,,,,,,144,70,0,,,,, +443,15,3,15908,490,2115.866,,,,,,144,29,0,,,,, +443,18,1,15911,512,2115.866,64,16.0,E3,ff,22,144,52,22,,,,, +443,19,1,15912,512,2115.866,64,16.0,B3,ff,22,144,59,22,,,,, +443,20,3,15913,512,2115.866,,,,,,176,102,0,,,,, +443,16,3,15909,490,2115.908,,,,,,144,33,0,,,,, +443,17,3,15910,490,2115.908,,,,,,144,40,0,,,,, +443,18,1,15911,512,2115.954,,,,,,144,52,0,,,,, +443,21,3,15914,533,2115.954,21,32.0,E3,mp,14,144,52,14,,,,, +443,22,3,15915,554,2116.042,22,32.0,A#3,mp-,13,144,58,13,,,,, +443,19,1,15912,512,2116.134,,,,,,144,59,0,,,,, +443,21,3,15914,533,2116.134,,,,,,144,52,0,,,,, +443,22,3,15915,554,2116.134,,,,,,144,58,0,,,,, +443,23,1,15916,576,2116.134,,,,,,176,102,0,,,,, +443,24,3,15917,576,2116.134,21,32.0,C#4,p+,12,144,61,12,,,,, +443,24,3,15917,576,2116.222,,,,,,144,61,0,,,,, +443,25,3,15918,597,2116.222,21,32.0,A2,p,11,144,45,11,,,,, +443,25,3,15918,597,2116.31,,,,,,144,45,0,,,,, +443,26,3,15919,618,2116.31,22,32.0,F2,p-,10,144,41,10,,,,, +443,26,3,15919,618,2116.402,,,,,,144,41,0,,,,, +443,27,1,15920,640,2116.402,,,,,,176,102,0,,,,, +443,28,3,15921,640,2116.402,32,32.0,A2,pp,8,144,45,8,,,,, +443,29,0,15922,652,2116.452,,,,,,176,64,127,,,,,V +443,28,3,15921,640,2116.536,,,,,,144,45,0,,,,, +443,30,3,15923,672,2116.536,32,32.0,E3,pp-,7,144,52,7,,,,, +443,30,3,15923,672,2116.67,,,,,,144,52,0,,,,, +443,31,3,15924,704,2116.67,64,16.0,F1,ppp,5,144,29,5,,,,, +443,31,3,15924,704,2116.938,,,,,,144,29,0,,,,, +443,32,1,15925,768,2116.938,,,,,,176,102,0,,,,, +443,33,3,15926,768,2116.938,,,,,,176,102,0,,,,, +443,34,0,15927,1024,2117.966,,,,,,176,64,0,,,,,^ +443,35,1,15928,1024,2118.009,102,8.0,A#5,pp,8,144,82,8,,,,, +443,36,1,15929,1024,2118.009,128,8.0,B6,pp,8,144,95,8,,,,, +443,37,3,15930,1024,2118.009,102,8.0,F2,pp,8,144,41,8,,,,, +443,38,3,15931,1024,2118.009,128,8.0,F#2,pp,8,144,42,8,,,,, +443,39,3,15932,1024,2118.009,128,8.0,D3,pp,8,144,50,8,,,,, +443,40,0,15933,1075,2118.266,,,,,,176,64,127,,,,,V +443,35,1,15928,1024,2118.436,,,,,,144,82,0,,,,, +443,37,3,15930,1024,2118.436,,,,,,144,41,0,,,,, +443,38,3,15931,1024,2118.436,,,,,,144,42,0,,,,, +443,41,1,15934,1126,2118.436,154,8.0,D4,pp,8,144,62,8,,,,, +443,42,1,15935,1126,2118.436,128,8.0,A#4,pp,8,144,70,8,,,,, +443,43,1,15936,1126,2118.436,128,8.0,B4,pp,8,144,71,8,,,,, +443,44,3,15937,1126,2118.436,154,8.0,F1,pp,8,144,29,8,,,,, +443,45,3,15938,1126,2118.436,128,8.0,F#2,pp,8,144,42,8,,,,, +443,36,1,15929,1024,2118.545,,,,,,144,95,0,,,,, +443,39,3,15932,1024,2118.545,,,,,,144,50,0,,,,, +443,42,1,15935,1126,2118.972,,,,,,144,70,0,,,,, +443,43,1,15936,1126,2118.972,,,,,,144,71,0,,,,, +443,45,3,15938,1126,2118.972,,,,,,144,42,0,,,,, +443,41,1,15934,1126,2119.081,,,,,,144,62,0,,,,, +443,44,3,15937,1126,2119.081,,,,,,144,29,0,,,,, +443,46,1,15939,1280,2119.081,256,4.0,E3,p,11,144,52,11,,,,, +443,47,1,15940,1280,2119.081,256,4.0,B3,p,11,144,59,11,,,,, +443,48,3,15941,1280,2119.081,256,4.0,C#2,pp,8,144,37,8,,,,, +443,49,3,15942,1280,2119.081,256,4.0,G#2,pp,8,144,44,8,,,,, +443,50,3,15943,1280,2119.081,256,4.0,D3,pp,8,144,50,8,,,,, +443,48,3,15941,1280,2120.152,,,,,,144,37,0,,,,, +443,49,3,15942,1280,2120.152,,,,,,144,44,0,,,,, +443,50,3,15943,1280,2120.152,,,,,,144,50,0,,,,, +444,0,0,15944,0,2120.152,,,,,,,,,444,,,, +444,1,1,15945,0,2120.152,256,4.0,E3,,,,,,,,,, +444,2,1,15946,0,2120.152,256,4.0,B3,,,,,,,,,, +444,3,3,15947,0,2120.152,,,,,,176,102,0,,,,, +444,4,3,15948,64,2120.42,192,8.0,G#2,p,11,144,44,11,,,,, +443,46,1,15939,1280,2121.223,,,,,,144,52,0,,,,, +443,47,1,15940,1280,2121.223,,,,,,144,59,0,,,,, +444,5,1,15949,256,2121.223,256,4.0,E3,p,11,144,52,11,,,,, +444,6,1,15950,256,2121.223,256,4.0,B3,p,11,144,59,11,,,,, +444,7,3,15951,256,2121.223,128,8.0,G#2,,,,,,,,,, +444,4,3,15948,64,2121.759,,,,,,144,44,0,,,,, +444,8,3,15952,384,2121.759,128,8.0,C#2,pp,8,144,37,8,,,,, +444,9,3,15953,384,2121.759,128,8.0,G#2,pp,8,144,44,8,,,,, +444,10,3,15954,384,2121.759,128,8.0,D3,pp,8,144,50,8,,,,, +444,5,1,15949,256,2122.295,,,,,,144,52,0,,,,, +444,6,1,15950,256,2122.295,,,,,,144,59,0,,,,, +444,8,3,15952,384,2122.295,,,,,,144,37,0,,,,, +444,9,3,15953,384,2122.295,,,,,,144,44,0,,,,, +444,10,3,15954,384,2122.295,,,,,,144,50,0,,,,, +444,11,1,15955,512,2122.295,,,,,,176,102,0,,,,, +444,12,3,15956,512,2122.295,25,32.0,E2,pp,8,144,40,8,,,,, +444,12,3,15956,512,2122.399,,,,,,144,40,0,,,,, +444,13,3,15957,537,2122.399,26,32.0,B4,pp,8,144,71,8,,,,, +444,13,3,15957,537,2122.508,,,,,,144,71,0,,,,, +444,14,3,15958,563,2122.508,25,32.0,G1,pp,8,144,31,8,,,,, +444,14,3,15958,563,2122.613,,,,,,144,31,0,,,,, +444,15,3,15959,588,2122.613,26,32.0,A#1,pp,8,144,34,8,,,,, +444,16,3,15960,588,2122.613,32,32.0,E2,pp,8,144,40,8,,,,, +444,15,3,15959,588,2122.722,,,,,,144,34,0,,,,, +444,17,3,15961,614,2122.722,26,32.0,D#6,pp,8,144,87,8,,,,, +444,16,3,15960,588,2122.747,,,,,,144,40,0,,,,, +444,17,3,15961,614,2122.831,,,,,,144,87,0,,,,, +444,18,3,15962,640,2122.831,,,,,,176,102,0,,,,, +444,19,1,15963,704,2123.098,76,16.0,D4,p,11,144,62,11,,,,, +444,20,1,15964,704,2123.098,64,16.0,B4,p,11,144,71,11,,,,, +444,21,3,15965,704,2123.098,76,16.0,F1,p,11,144,29,11,,,,, +444,20,1,15964,704,2123.366,,,,,,144,71,0,,,,, +444,19,1,15963,704,2123.416,,,,,,144,62,0,,,,, +444,21,3,15965,704,2123.416,,,,,,144,29,0,,,,, +444,22,1,15966,780,2123.416,52,16.0,D4,p-,10,144,62,10,,,,, +444,23,1,15967,780,2123.416,64,16.0,B4,p-,10,144,71,10,,,,, +444,24,3,15968,780,2123.416,52,16.0,F1,p-,10,144,29,10,,,,, +444,22,1,15966,780,2123.634,,,,,,144,62,0,,,,, +444,23,1,15967,780,2123.634,,,,,,144,71,0,,,,, +444,24,3,15968,780,2123.634,,,,,,144,29,0,,,,, +444,25,1,15969,832,2123.634,51,16.0,D4,pp+,9,144,62,9,,,,, +444,26,1,15970,832,2123.634,64,16.0,B4,pp+,9,144,71,9,,,,, +444,27,3,15971,832,2123.634,102,8.0,F1,pp+,9,144,29,9,,,,, +444,28,3,15972,832,2123.634,128,8.0,F#2,pp+,9,144,42,9,,,,, +444,25,1,15969,832,2123.848,,,,,,144,62,0,,,,, +444,26,1,15970,832,2123.848,,,,,,144,71,0,,,,, +444,29,1,15973,883,2123.848,51,16.0,D4,pp,8,144,62,8,,,,, +444,30,1,15974,883,2123.848,64,16.0,A#4,pp,8,144,70,8,,,,, +444,31,1,15975,883,2123.848,64,16.0,B4,pp,8,144,71,8,,,,, +444,27,3,15971,832,2124.061,,,,,,144,29,0,,,,, +444,28,3,15972,832,2124.061,,,,,,144,42,0,,,,, +444,29,1,15973,883,2124.061,,,,,,144,62,0,,,,, +444,30,1,15974,883,2124.061,,,,,,144,70,0,,,,, +444,31,1,15975,883,2124.061,,,,,,144,71,0,,,,, +444,32,0,15976,934,2124.061,,,,,,176,64,0,,,,,^ +444,33,3,15977,934,2124.061,26,32.0,F1,pp-,7,144,29,7,,,,, +444,34,3,15978,934,2124.061,32,32.0,F#2,pp-,7,144,42,7,,,,, +444,35,1,15979,934,2124.061,26,32.0,D4,pp-,7,144,62,7,,,,, +444,36,1,15980,934,2124.061,32,32.0,A#4,pp-,7,144,70,7,,,,, +444,37,1,15981,934,2124.061,32,32.0,B4,pp-,7,144,71,7,,,,, +444,33,3,15977,934,2124.17,,,,,,144,29,0,,,,, +444,35,1,15979,934,2124.17,,,,,,144,62,0,,,,, +444,38,1,15982,960,2124.17,,,,,,176,102,0,,,,, +444,39,3,15983,960,2124.17,,,,,,176,102,0,,,,, +444,40,0,15984,960,2124.17,,,,,,,,,,6075,,, +444,34,3,15978,934,2124.195,,,,,,144,42,0,,,,, +444,36,1,15980,934,2124.195,,,,,,144,70,0,,,,, +444,37,1,15981,934,2124.195,,,,,,144,71,0,,,,, +444,42,1,15985,1024,2124.438,,,,,,176,102,0,,,,, +444,43,3,15986,1024,2124.438,,,,,,176,102,0,,,,, +444,41,0,15987,1024,2124.438,,,,,,176,64,127,,,,,V +444,44,1,15988,1088,2124.706,64,16.0,G#4,fff,24,144,68,23,,,,, +444,45,3,15989,1088,2124.706,64,16.0,F2,fff,24,144,41,23,,,,, +444,46,3,15990,1088,2124.706,64,16.0,C#3,fff,24,144,49,23,,,,, +444,44,1,15988,1088,2124.973,,,,,,144,68,0,,,,, +444,45,3,15989,1088,2124.973,,,,,,144,41,0,,,,, +444,46,3,15990,1088,2124.973,,,,,,144,49,0,,,,, +444,47,1,15991,1152,2124.973,96,16.0,G#4,fff,24,144,68,23,,,,, +444,48,3,15992,1152,2124.973,96,16.0,D1,fff,24,144,26,23,,,,, +444,47,1,15991,1152,2125.375,,,,,,144,68,0,,,,, +444,49,1,15993,1248,2125.375,32,32.0,G#4,fff,24,144,68,23,,,,, +444,50,1,15994,1248,2125.375,32,32.0,A5,fff,24,144,81,23,,,,, +444,51,3,15995,1248,2125.375,32,32.0,F2,fff,24,144,41,23,,,,, +444,52,3,15996,1248,2125.375,32,32.0,C#3,fff,24,144,49,23,,,,, +444,48,3,15992,1152,2125.45,,,,,,144,26,0,,,,, +444,49,1,15993,1248,2125.509,,,,,,144,68,0,,,,, +444,50,1,15994,1248,2125.509,,,,,,144,81,0,,,,, +444,51,3,15995,1248,2125.509,,,,,,144,41,0,,,,, +444,52,3,15996,1248,2125.509,,,,,,144,49,0,,,,, +445,0,0,15997,0,2125.509,,,,,,,,,445,,,, +445,1,0,15998,0,2125.509,,,,,,176,64,0,,,,,^ +445,2,1,15999,0,2125.509,,,,,,176,102,0,,,,, +445,3,3,16000,0,2125.509,,,,,,176,102,0,,,,, +445,4,3,16001,32,2125.643,21,32.0,F1,ff,22,144,29,22,,,,, +445,4,3,16001,32,2125.731,,,,,,144,29,0,,,,, +445,5,3,16002,53,2125.731,21,32.0,G#2,f+,21,144,44,21,,,,, +445,5,3,16002,53,2125.819,,,,,,144,44,0,,,,, +445,6,3,16003,74,2125.819,32,32.0,C#2,f+,21,144,37,21,,,,, +445,6,3,16003,74,2125.953,,,,,,144,37,0,,,,, +445,7,3,16004,106,2125.953,22,32.0,G#2,f,20,144,44,20,,,,, +445,7,3,16004,106,2126.045,,,,,,144,44,0,,,,, +445,8,3,16005,128,2126.045,32,32.0,F1,f-,19,144,29,19,,,,, +445,8,3,16005,128,2126.179,,,,,,144,29,0,,,,, +445,10,3,16006,160,2126.179,21,32.0,C#2,mf+,18,144,37,18,,,,, +445,9,0,16007,160,2126.179,,,,,,176,64,127,,,,,V +445,10,3,16006,160,2126.267,,,,,,144,37,0,,,,, +445,11,3,16008,181,2126.267,21,32.0,F1,mf,17,144,29,17,,,,, +445,11,3,16008,181,2126.355,,,,,,144,29,0,,,,, +445,12,3,16009,202,2126.355,22,32.0,G#2,mf,17,144,44,17,,,,, +445,12,3,16009,202,2126.447,,,,,,144,44,0,,,,, +445,13,3,16010,224,2126.447,21,32.0,C#2,mf-,16,144,37,16,,,,, +445,13,3,16010,224,2126.535,,,,,,144,37,0,,,,, +445,14,3,16011,245,2126.535,21,32.0,G#2,mp+,15,144,44,15,,,,, +445,15,3,16012,245,2126.535,32,32.0,A3,mp+,15,144,57,15,,,,, +445,14,3,16011,245,2126.622,,,,,,144,44,0,,,,, +445,16,3,16013,266,2126.622,22,32.0,D1,mp+,15,144,26,15,,,,, +445,15,3,16012,245,2126.668,,,,,,144,57,0,,,,, +445,16,3,16013,266,2126.714,,,,,,144,26,0,,,,, +445,17,3,16014,288,2126.714,32,32.0,F1,mp,14,144,29,14,,,,, +445,17,3,16014,288,2126.848,,,,,,144,29,0,,,,, +445,18,3,16015,320,2126.848,32,32.0,C#2,mp,14,144,37,14,,,,, +445,18,3,16015,320,2126.982,,,,,,144,37,0,,,,, +445,19,3,16016,352,2126.982,32,32.0,G#2,mp,14,144,44,14,,,,, +445,19,3,16016,352,2127.116,,,,,,144,44,0,,,,, +445,20,0,16017,384,2127.116,,,,,,176,64,0,,,,,^ +445,21,1,16018,384,2127.116,128,8.0,B3,p,11,144,59,11,,,,, +445,22,3,16019,384,2127.116,32,32.0,D1,f,20,144,26,20,,,,, +445,23,3,16020,384,2127.116,32,32.0,F1,f,20,144,29,20,,,,, +445,24,3,16021,384,2127.116,32,32.0,C#2,f,20,144,37,20,,,,, +445,25,3,16022,384,2127.116,32,32.0,G#2,f,20,144,44,20,,,,, +445,22,3,16019,384,2127.25,,,,,,144,26,0,,,,, +445,23,3,16020,384,2127.25,,,,,,144,29,0,,,,, +445,24,3,16021,384,2127.25,,,,,,144,37,0,,,,, +445,25,3,16022,384,2127.25,,,,,,144,44,0,,,,, +445,26,3,16023,416,2127.25,32,32.0,A3,f,20,144,57,20,,,,, +445,26,3,16023,416,2127.384,,,,,,144,57,0,,,,, +445,28,3,16024,,2127.384,,8.0,G#3,p,11,144,56,11,,,,g, +445,28,3,16024,,2127.434,,,,,,144,56,0,,,,, +445,29,3,16025,448,2127.459,85,8.0,F2,p,11,144,41,11,,,,, +445,27,0,16026,448,2127.459,,,,,,176,64,127,,,,,V +445,21,1,16018,384,2127.652,,,,,,144,59,0,,,,, +445,30,1,16027,512,2127.727,,,,,,176,102,0,,,,, +445,29,3,16025,448,2127.815,,,,,,144,41,0,,,,, +445,31,3,16028,533,2127.815,21,32.0,G#3,p,11,144,56,11,,,,, +445,31,3,16028,533,2127.903,,,,,,144,56,0,,,,, +445,32,3,16029,554,2127.903,22,32.0,F2,p,11,144,41,11,,,,, +445,32,3,16029,554,2127.995,,,,,,144,41,0,,,,, +445,33,3,16030,576,2127.995,21,32.0,C#3,p,11,144,49,11,,,,, +445,33,3,16030,576,2128.083,,,,,,144,49,0,,,,, +445,34,3,16031,597,2128.083,21,32.0,G#3,p,11,144,56,11,,,,, +445,34,3,16031,597,2128.171,,,,,,144,56,0,,,,, +445,35,3,16032,618,2128.171,,,,,,176,102,0,,,,, +445,36,3,16033,704,2128.531,,,,,,176,102,0,,,,, +445,37,1,16034,768,2128.798,128,8.0,B5,p,11,144,83,11,,,,, +445,39,0,16035,800,2128.878,,,,,,176,64,0,,,,,^ +445,38,3,16036,789,2128.886,21,32.0,D2,p,11,144,38,11,,,,, +445,38,3,16036,789,2128.974,,,,,,144,38,0,,,,, +445,41,3,16037,,2128.974,,8.0,A6,pp,8,144,93,8,,,,g, +445,41,3,16037,,2129.024,,,,,,144,93,0,,,,, +445,42,3,16038,,2129.049,,8.0,F2,pp,8,144,41,8,,,,g, +445,42,3,16038,,2129.099,,,,,,144,41,0,,,,, +445,43,3,16039,810,2129.124,22,32.0,G#3,p,11,144,56,11,,,,, +445,40,0,16040,810,2129.178,,,,,,176,64,127,,,,,V +445,43,3,16039,810,2129.216,,,,,,144,56,0,,,,, +445,44,3,16041,832,2129.216,64,16.0,D3,p,11,144,50,11,,,,, +445,37,1,16034,768,2129.334,,,,,,144,83,0,,,,, +445,44,3,16041,832,2129.484,,,,,,144,50,0,,,,, +445,45,1,16042,896,2129.484,,,,,,176,102,0,,,,, +445,46,3,16043,896,2129.484,25,32.0,F1,p,11,144,29,11,,,,, +445,46,3,16043,896,2129.589,,,,,,144,29,0,,,,, +445,47,3,16044,921,2129.589,39,32.0,G#4,p,11,144,68,11,,,,, +445,47,3,16044,921,2129.752,,,,,,144,68,0,,,,, +445,48,3,16045,960,2129.752,25,32.0,D1,p-,10,144,26,10,,,,, +445,48,3,16045,960,2129.857,,,,,,144,26,0,,,,, +445,49,3,16046,985,2129.857,39,32.0,C#2,p-,10,144,37,10,,,,, +445,49,3,16046,985,2130.02,,,,,,144,37,0,,,,, +445,50,1,16047,1024,2130.02,,,,,,176,102,0,,,,, +445,51,3,16048,1024,2130.02,38,32.0,G#4,p-,10,144,68,10,,,,, +445,51,3,16048,1024,2130.179,,,,,,144,68,0,,,,, +445,52,3,16049,1062,2130.179,26,32.0,D1,pp+,9,144,26,9,,,,, +445,52,3,16049,1062,2130.288,,,,,,144,26,0,,,,, +445,53,3,16050,1088,2130.288,28,32.0,C#2,pp+,9,144,37,9,,,,, +445,53,3,16050,1088,2130.405,,,,,,144,37,0,,,,, +445,54,3,16051,1116,2130.405,28,32.0,G#4,pp+,9,144,68,9,,,,, +445,55,3,16052,1116,2130.405,32,32.0,A5,pp+,9,144,81,9,,,,, +445,54,3,16051,1116,2130.522,,,,,,144,68,0,,,,, +445,56,3,16053,1144,2130.522,43,32.0,D1,pp,8,144,26,8,,,,, +445,55,3,16052,1116,2130.539,,,,,,144,81,0,,,,, +445,56,3,16053,1144,2130.702,,,,,,144,26,0,,,,, +445,57,3,16054,1187,2130.702,29,32.0,G#4,pp,8,144,68,8,,,,, +445,58,3,16055,1187,2130.702,32,32.0,A5,pp,8,144,81,8,,,,, +445,57,3,16054,1187,2130.823,,,,,,144,68,0,,,,, +445,59,3,16056,1216,2130.823,25,32.0,F1,pp,8,144,29,8,,,,, +445,58,3,16055,1187,2130.836,,,,,,144,81,0,,,,, +445,59,3,16056,1216,2130.928,,,,,,144,29,0,,,,, +445,60,3,16057,1241,2130.928,26,32.0,D1,pp-,7,144,26,7,,,,, +445,61,3,16058,1241,2130.928,32,32.0,C#2,pp-,7,144,37,7,,,,, +445,60,3,16057,1241,2131.037,,,,,,144,26,0,,,,, +445,62,3,16059,1267,2131.037,25,32.0,G#4,pp-,7,144,68,7,,,,, +445,61,3,16058,1241,2131.062,,,,,,144,37,0,,,,, +445,63,1,16060,1280,2131.091,,,,,,176,102,0,,,,, +445,62,3,16059,1267,2131.141,,,,,,144,68,0,,,,, +445,64,3,16061,1292,2131.141,26,32.0,D1,pp-,7,144,26,7,,,,, +445,65,3,16062,1292,2131.141,32,32.0,F1,pp-,7,144,29,7,,,,, +445,66,3,16063,1292,2131.141,32,32.0,C#2,pp-,7,144,37,7,,,,, +445,69,0,16064,1344,2131.209,,,,,,176,64,0,,,,,^ +445,64,3,16061,1292,2131.25,,,,,,144,26,0,,,,, +445,67,3,16065,1318,2131.25,26,32.0,G#4,pp-,7,144,68,7,,,,, +445,68,3,16066,1318,2131.25,32,32.0,A5,pp-,7,144,81,7,,,,, +445,65,3,16062,1292,2131.275,,,,,,144,29,0,,,,, +445,66,3,16063,1292,2131.275,,,,,,144,37,0,,,,, +445,67,3,16065,1318,2131.359,,,,,,144,68,0,,,,, +445,71,3,16067,1344,2131.359,,,,,,176,102,0,,,,, +445,68,3,16066,1318,2131.384,,,,,,144,81,0,,,,, +445,72,1,16068,1356,2131.409,52,16.0,D3,pp,8,144,50,8,,,,, +445,73,1,16069,1356,2131.409,64,16.0,A#3,pp,8,144,58,8,,,,, +445,74,1,16070,1356,2131.409,64,16.0,B3,pp,8,144,59,8,,,,, +445,70,0,16071,1344,2131.509,,,,,,176,64,127,,,,,V +445,72,1,16068,1356,2131.627,,,,,,144,50,0,,,,, +445,73,1,16069,1356,2131.627,,,,,,144,58,0,,,,, +445,74,1,16070,1356,2131.627,,,,,,144,59,0,,,,, +445,75,1,16072,1408,2131.627,51,16.0,F1,ppp+,6,144,29,6,,,,, +445,76,1,16073,1408,2131.627,64,16.0,D3,ppp+,6,144,50,6,,,,, +445,77,1,16074,1408,2131.627,64,16.0,A#3,ppp+,6,144,58,6,,,,, +445,78,1,16075,1408,2131.627,64,16.0,B3,ppp+,6,144,59,6,,,,, +445,75,1,16072,1408,2131.84,,,,,,144,29,0,,,,, +445,76,1,16073,1408,2131.84,,,,,,144,50,0,,,,, +445,77,1,16074,1408,2131.84,,,,,,144,58,0,,,,, +445,78,1,16075,1408,2131.84,,,,,,144,59,0,,,,, +445,79,1,16076,1459,2131.84,77,16.0,F1,ppp,5,144,29,5,,,,, +445,80,1,16077,1459,2131.84,64,16.0,F2,ppp,5,144,41,5,,,,, +445,81,1,16078,1459,2131.84,64,16.0,D3,ppp,5,144,50,5,,,,, +445,82,1,16079,1459,2131.84,64,16.0,A#3,ppp,5,144,58,5,,,,, +445,83,1,16080,1459,2131.84,64,16.0,B3,ppp,5,144,59,5,,,,, +445,84,0,16081,1496,2131.995,,,,,,176,64,0,,,,,^ +445,80,1,16077,1459,2132.108,,,,,,144,41,0,,,,, +445,81,1,16078,1459,2132.108,,,,,,144,50,0,,,,, +445,82,1,16079,1459,2132.108,,,,,,144,58,0,,,,, +445,83,1,16080,1459,2132.108,,,,,,144,59,0,,,,, +445,79,1,16076,1459,2132.163,,,,,,144,29,0,,,,, +446,0,0,16082,0,2132.163,,,,,,,,,446,,,, +446,1,1,16083,0,2132.163,,,,,,176,102,0,,,,, +446,2,3,16084,0,2132.163,256,4.0,F2,pp,8,144,41,8,,,,, +446,3,0,16085,54,2132.389,,,,,,176,64,127,,,,,V +446,4,1,16086,128,2132.698,128,8.0,G#2,pp,8,144,44,8,,,,, +446,5,1,16087,128,2132.698,128,8.0,C4,pp,8,144,60,8,,,,, +446,6,1,16088,256,2133.234,25,32.0,E3,pp,8,144,52,8,,,,, +446,7,3,16089,256,2133.234,768,2.0,F2,,,,,,,,,, +446,6,1,16088,256,2133.339,,,,,,144,52,0,,,,, +446,8,1,16090,281,2133.339,26,32.0,B4,pp,8,144,71,8,,,,, +446,8,1,16090,281,2133.448,,,,,,144,71,0,,,,, +446,9,1,16091,307,2133.448,25,32.0,G1,pp,8,144,31,8,,,,, +446,4,1,16086,128,2133.459,,,,,,144,44,0,,,,, +446,5,1,16087,128,2133.459,,,,,,144,60,0,,,,, +446,9,1,16091,307,2133.552,,,,,,144,31,0,,,,, +446,10,1,16092,332,2133.552,26,32.0,A#1,pp,8,144,34,8,,,,, +446,11,1,16093,332,2133.552,32,32.0,E2,pp,8,144,40,8,,,,, +446,10,1,16092,332,2133.661,,,,,,144,34,0,,,,, +446,12,1,16094,358,2133.661,26,32.0,D#6,pp,8,144,87,8,,,,, +446,11,1,16093,332,2133.686,,,,,,144,40,0,,,,, +446,12,1,16094,358,2133.77,,,,,,144,87,0,,,,, +446,13,1,16095,384,2133.77,,,,,,176,102,0,,,,, +446,14,1,16096,512,2134.306,,,,,,176,102,0,,,,, +446,15,0,16097,896,2135.913,,,,,,176,64,0,,,,,^ +446,17,1,16098,1024,2136.448,,,,,,176,102,0,,,,, +446,18,3,16099,1024,2136.448,64,16.0,F2,fff,24,144,41,23,,,,, +446,19,3,16100,1024,2136.448,64,16.0,C#3,fff,24,144,49,23,,,,, +446,16,0,16101,1024,2136.448,,,,,,176,64,127,,,,,V +446,20,1,16102,1040,2136.515,16,64.0,G#3,fff,24,144,56,23,,,,, +446,20,1,16102,1040,2136.582,,,,,,144,56,0,,,,, +446,21,1,16103,1056,2136.582,16,64.0,A4,fff,24,144,69,23,,,,, +446,22,0,16104,1072,2136.633,,,,,,176,64,0,,,,,^ +446,18,3,16099,1024,2136.649,,,,,,144,41,0,,,,, +446,19,3,16100,1024,2136.649,,,,,,144,49,0,,,,, +446,21,1,16103,1056,2136.649,,,,,,144,69,0,,,,, +446,23,1,16105,1072,2136.649,16,64.0,D2,fff,24,144,38,23,,,,, +446,24,1,16106,1072,2136.649,16,64.0,F2,fff,24,144,41,23,,,,, +446,25,1,16107,1072,2136.649,16,64.0,C#3,fff,24,144,49,23,,,,, +446,26,1,16108,1072,2136.649,16,64.0,G#3,fff,24,144,56,23,,,,, +446,2,3,16084,0,2136.673,,,,,,144,41,0,,,,, +446,23,1,16105,1072,2136.716,,,,,,144,38,0,,,,, +446,26,1,16108,1072,2136.716,,,,,,144,56,0,,,,, +446,27,1,16109,1088,2136.716,192,8.0,G#4,pp,8,144,68,8,,,,, +446,28,3,16110,1088,2136.716,,,,,,176,102,0,,,,, +446,24,1,16106,1072,2136.716,,,,,,144,41,0,,,,, +446,25,1,16107,1072,2136.716,,,,,,144,49,0,,,,, +446,29,0,16111,1136,2136.933,,,,,,176,64,127,,,,,V +447,0,0,16112,0,2137.52,,,,,,,,,447,,,, +447,1,1,16113,0,2137.52,,,,,,176,102,0,,,,, +447,2,3,16114,0,2137.52,,,,,,176,102,0,,,,, +446,27,1,16109,1088,2137.52,,,,,,144,68,0,,,,, +447,3,1,16115,256,2138.591,,,,,,176,102,0,,,,, +447,4,1,16116,288,2138.725,,,,,,176,102,0,,,,, +447,5,1,16117,320,2138.859,21,32.0,F6,ppp,5,144,89,5,,,,, +447,5,1,16117,320,2138.947,,,,,,144,89,0,,,,, +447,6,1,16118,341,2138.947,21,32.0,E7,ppp,5,144,100,5,,,,, +447,6,1,16118,341,2139.035,,,,,,144,100,0,,,,, +447,7,1,16119,362,2139.035,32,32.0,A#5,ppp,5,144,82,5,,,,, +447,7,1,16119,362,2139.169,,,,,,144,82,0,,,,, +447,8,1,16120,394,2139.169,22,32.0,E7,ppp,5,144,100,5,,,,, +447,8,1,16120,394,2139.261,,,,,,144,100,0,,,,, +447,9,1,16121,416,2139.261,32,32.0,F6,ppp,5,144,89,5,,,,, +447,9,1,16121,416,2139.395,,,,,,144,89,0,,,,, +447,10,1,16122,448,2139.395,32,32.0,A#5,ppp,5,144,82,5,,,,, +447,10,1,16122,448,2139.529,,,,,,144,82,0,,,,, +447,11,1,16123,480,2139.529,64,16.0,E7,ppp,5,144,100,5,,,,, +447,12,3,16124,512,2139.663,64,16.0,D1,pp,8,144,26,8,,,,, +447,13,3,16125,512,2139.663,64,16.0,F4,pp,8,144,65,8,,,,, +447,14,3,16126,512,2139.663,64,16.0,G#4,pp,8,144,68,8,,,,, +447,15,1,16127,544,2139.797,,,,,,176,102,0,,,,, +447,11,1,16123,480,2139.797,,,,,,144,100,0,,,,, +447,13,3,16125,512,2139.931,,,,,,144,65,0,,,,, +447,16,3,16128,576,2139.931,192,8.0,A#3,pp,8,144,58,8,,,,, +447,17,3,16129,576,2139.931,128,8.0,F4,pp,8,144,65,8,,,,, +447,12,3,16124,512,2139.931,,,,,,144,26,0,,,,, +447,14,3,16126,512,2139.931,,,,,,144,68,0,,,,, +447,18,1,16130,768,2140.734,,,,,,176,102,0,,,,, +447,19,3,16131,768,2140.734,256,4.0,A#3,,,,,,,,,, +447,20,3,16132,768,2140.734,256,4.0,F4,,,,,,,,,, +447,17,3,16129,576,2141.538,,,,,,144,65,0,,,,, +447,16,3,16128,576,2141.806,,,,,,144,58,0,,,,, +447,21,3,16133,1024,2141.806,,,,,,176,102,0,,,,, +447,22,3,16134,1109,2142.161,28,32.0,C#2,pp,8,144,37,8,,,,, +447,22,3,16134,1109,2142.278,,,,,,144,37,0,,,,, +447,23,3,16135,1137,2142.278,29,32.0,D3,mp-,13,144,50,13,,,,, +447,23,3,16135,1137,2142.4,,,,,,144,50,0,,,,, +447,24,3,16136,1166,2142.4,28,32.0,G#2,mf,17,144,44,17,,,,, +447,24,3,16136,1166,2142.517,,,,,,144,44,0,,,,, +447,25,3,16137,1194,2142.517,29,32.0,A0,ff,22,144,21,22,,,,, +447,26,3,16138,1194,2142.517,32,32.0,C#2,ff,22,144,37,22,,,,, +447,27,3,16139,1194,2142.517,32,32.0,G#2,ff,22,144,44,22,,,,, +447,28,3,16140,1194,2142.517,32,32.0,D3,ff,22,144,50,22,,,,, +447,25,3,16137,1194,2142.638,,,,,,144,21,0,,,,, +447,30,0,16141,1223,2142.638,,,,,,176,64,0,,,,,^ +447,29,3,16142,1223,2142.638,28,32.0,F1,ff,22,144,29,22,,,,, +447,26,3,16138,1194,2142.651,,,,,,144,37,0,,,,, +447,27,3,16139,1194,2142.651,,,,,,144,44,0,,,,, +447,28,3,16140,1194,2142.651,,,,,,144,50,0,,,,, +447,29,3,16142,1223,2142.756,,,,,,144,29,0,,,,, +447,31,3,16143,1251,2142.756,,,,,,176,102,0,,,,, +448,0,0,16144,0,2142.877,,,,,,,,,448,,,, +448,1,1,16145,0,2142.877,85,8.0,G#2,mp,14,144,44,14,,,,, +448,2,1,16146,0,2142.877,128,8.0,D3,mp,14,144,50,14,,,,, +448,3,3,16147,0,2142.877,85,8.0,A0,mp,14,144,21,14,,,,, +448,4,3,16148,0,2142.877,128,8.0,F1,mp,14,144,29,14,,,,, +448,1,1,16145,0,2143.233,,,,,,144,44,0,,,,, +448,2,1,16146,0,2143.233,,,,,,144,50,0,,,,, +448,3,3,16147,0,2143.233,,,,,,144,21,0,,,,, +448,4,3,16148,0,2143.233,,,,,,144,29,0,,,,, +448,6,1,16149,85,2143.233,128,8.0,G#2,pp,8,144,44,8,,,,, +448,7,1,16150,85,2143.233,128,8.0,D3,pp,8,144,50,8,,,,, +448,8,3,16151,85,2143.233,128,8.0,A0,pp,8,144,21,8,,,,, +448,9,3,16152,85,2143.233,128,8.0,F1,pp,8,144,29,8,,,,, +448,5,0,16153,85,2143.233,,,,,,176,64,127,,,,,V +448,6,1,16149,85,2143.768,,,,,,144,44,0,,,,, +448,7,1,16150,85,2143.768,,,,,,144,50,0,,,,, +448,8,3,16151,85,2143.768,,,,,,144,21,0,,,,, +448,9,3,16152,85,2143.768,,,,,,144,29,0,,,,, +448,10,1,16154,213,2143.768,43,16.0,G#2,pp,8,144,44,8,,,,, +448,11,1,16155,213,2143.768,64,16.0,D3,pp,8,144,50,8,,,,, +448,12,3,16156,213,2143.768,43,16.0,A0,pp,8,144,21,8,,,,, +448,13,3,16157,213,2143.768,64,16.0,F1,pp,8,144,29,8,,,,, +448,14,1,16158,256,2143.948,256,4.0,G#2,,,,,,,,,, +448,15,1,16159,256,2143.948,256,4.0,D3,,,,,,,,,, +448,16,3,16160,256,2143.948,256,4.0,A0,,,,,,,,,, +448,17,3,16161,256,2143.948,256,4.0,F1,,,,,,,,,, +448,10,1,16154,213,2145.02,,,,,,144,44,0,,,,, +448,12,3,16156,213,2145.02,,,,,,144,21,0,,,,, +448,18,1,16162,512,2145.02,256,4.0,G#4,pp,8,144,68,8,,,,, +448,19,3,16163,512,2145.02,256,4.0,D1,pp,8,144,26,8,,,,, +448,20,3,16164,512,2145.02,256,4.0,F2,pp,8,144,41,8,,,,, +448,11,1,16155,213,2145.108,,,,,,144,50,0,,,,, +448,13,3,16157,213,2145.108,,,,,,144,29,0,,,,, +448,18,1,16162,512,2146.091,,,,,,144,68,0,,,,, +448,19,3,16163,512,2146.091,,,,,,144,26,0,,,,, +448,20,3,16164,512,2146.091,,,,,,144,41,0,,,,, +448,21,0,16165,768,2146.091,,,,,,176,64,0,,,,,^ +448,22,1,16166,768,2146.091,,,,,,176,102,0,,,,, +448,23,3,16167,768,2146.091,,,,,,176,102,0,,,,, +448,25,1,16168,896,2146.627,128,8.0,A#3,p,11,144,58,11,,,,, +448,26,1,16169,896,2146.627,128,8.0,F4,p,11,144,65,11,,,,, +448,27,3,16170,896,2146.627,42,16.0,G#1,p,11,144,32,11,,,,, +448,24,0,16171,896,2146.627,,,,,,176,64,127,,,,,V +448,27,3,16170,896,2146.803,,,,,,144,32,0,,,,, +448,28,3,16172,938,2146.803,86,8.0,C2,p,11,144,36,11,,,,, +448,25,1,16168,896,2147.163,,,,,,144,58,0,,,,, +448,26,1,16169,896,2147.163,,,,,,144,65,0,,,,, +448,28,3,16172,938,2147.163,,,,,,144,36,0,,,,, +448,29,1,16173,1024,2147.163,,,,,,176,102,0,,,,, +448,30,3,16174,1024,2147.163,,,,,,176,102,0,,,,, +448,31,1,16175,1152,2147.698,96,16.0,G#4,p,11,144,68,11,,,,, +448,32,3,16176,1152,2147.698,32,32.0,D1,p,11,144,26,11,,,,, +448,33,3,16177,1152,2147.698,32,32.0,F2,p,11,144,41,11,,,,, +448,32,3,16176,1152,2147.832,,,,,,144,26,0,,,,, +448,33,3,16177,1152,2147.832,,,,,,144,41,0,,,,, +448,34,3,16178,1184,2147.832,32,32.0,C#3,p,11,144,49,11,,,,, +448,34,3,16178,1184,2147.966,,,,,,144,49,0,,,,, +448,35,3,16179,1216,2147.966,64,16.0,D1,p,11,144,26,11,,,,, +448,36,1,16180,1248,2148.1,32,32.0,A4,p,11,144,69,11,,,,, +448,31,1,16175,1152,2148.1,,,,,,144,68,0,,,,, +448,36,1,16180,1248,2148.234,,,,,,144,69,0,,,,, +449,0,0,16181,0,2148.234,,,,,,,,,449,,,, +449,3,0,16182,613,2148.234,,,,,,176,64,0,,,,,^ +449,1,1,16183,0,2148.234,,,,,,176,102,0,,,,, +449,2,3,16184,0,2148.234,,,,,,176,102,0,,,,, +449,4,0,16185,613,2148.234,,,,,,,,,,6076,,, +448,35,3,16179,1216,2148.234,,,,,,144,26,0,,,,, +449,6,1,16186,768,2148.883,512,2.0,A#3,pp,8,144,58,8,,,,, +449,7,1,16187,768,2148.883,512,2.0,F4,pp,8,144,65,8,,,,, +449,8,3,16188,768,2148.883,512,2.0,G#1,pp,8,144,32,8,,,,, +449,9,3,16189,768,2148.883,512,2.0,C2,pp,8,144,36,8,,,,, +449,5,0,16190,768,2148.883,,,,,,176,64,127,,,,,V +449,6,1,16186,768,2151.026,,,,,,144,58,0,,,,, +449,7,1,16187,768,2151.026,,,,,,144,65,0,,,,, +449,8,3,16188,768,2151.026,,,,,,144,32,0,,,,, +449,9,3,16189,768,2151.026,,,,,,144,36,0,,,,, +450,0,0,16191,0,2151.026,,,,,,,,,450,,,, +450,1,1,16192,0,2151.026,42,16.0,A#3,pp,8,144,58,8,,,,, +450,2,1,16193,0,2151.026,64,16.0,F4,pp,8,144,65,8,,,,, +450,3,3,16194,0,2151.026,64,16.0,C3,pp,8,144,48,8,,,,, +450,1,1,16192,0,2151.201,,,,,,144,58,0,,,,, +450,4,1,16195,42,2151.201,86,8.0,E5,pp,8,144,76,8,,,,, +450,2,1,16193,0,2151.294,,,,,,144,65,0,,,,, +450,3,3,16194,0,2151.294,,,,,,144,48,0,,,,, +450,5,3,16196,64,2151.294,64,16.0,E3,p,11,144,52,11,,,,, +450,6,3,16197,64,2151.294,64,16.0,B3,p,11,144,59,11,,,,, +450,4,1,16195,42,2151.561,,,,,,144,76,0,,,,, +450,5,3,16196,64,2151.561,,,,,,144,52,0,,,,, +450,6,3,16197,64,2151.561,,,,,,144,59,0,,,,, +450,7,1,16198,128,2151.561,,,,,,176,102,0,,,,, +450,8,3,16199,128,2151.561,25,32.0,E3,p,11,144,52,11,,,,, +450,8,3,16199,128,2151.666,,,,,,144,52,0,,,,, +450,9,3,16200,153,2151.666,26,32.0,B4,p,11,144,71,11,,,,, +450,9,3,16200,153,2151.775,,,,,,144,71,0,,,,, +450,10,3,16201,179,2151.775,25,32.0,G2,p,11,144,43,11,,,,, +450,10,3,16201,179,2151.879,,,,,,144,43,0,,,,, +450,11,3,16202,204,2151.879,26,32.0,A#2,p,11,144,46,11,,,,, +450,12,3,16203,204,2151.879,32,32.0,E3,p,11,144,52,11,,,,, +450,11,3,16202,204,2151.988,,,,,,144,46,0,,,,, +450,13,3,16204,230,2151.988,26,32.0,D#6,p,11,144,87,11,,,,, +450,12,3,16203,204,2152.013,,,,,,144,52,0,,,,, +450,13,3,16204,230,2152.097,,,,,,144,87,0,,,,, +450,14,0,16205,256,2152.097,,,,,,176,64,0,,,,,^ +450,15,1,16206,256,2152.097,896,2.0,E3,mp,14,144,52,14,,,,, +450,16,1,16207,256,2152.097,512,2.0,B3,mp,14,144,59,14,,,,, +450,17,3,16208,256,2152.097,896,2.0,G#1,mp,14,144,32,14,,,,, +450,18,0,16209,491,2153.081,,,,,,176,64,127,,,,,V +450,16,1,16207,256,2154.24,,,,,,144,59,0,,,,, +450,15,1,16206,256,2155.847,,,,,,144,52,0,,,,, +450,17,3,16208,256,2155.847,,,,,,144,32,0,,,,, +450,19,1,16210,1152,2155.847,64,16.0,A#3,pp,8,144,58,8,,,,, +450,20,1,16211,1152,2155.847,64,16.0,F4,pp,8,144,65,8,,,,, +450,21,3,16212,1152,2155.847,128,8.0,G#1,pp,8,144,32,8,,,,, +450,22,3,16213,1152,2155.847,128,8.0,C2,pp,8,144,36,8,,,,, +450,19,1,16210,1152,2156.115,,,,,,144,58,0,,,,, +450,20,1,16211,1152,2156.115,,,,,,144,65,0,,,,, +450,23,1,16214,1216,2156.115,64,16.0,E5,pp,8,144,76,8,,,,, +450,21,3,16212,1152,2156.383,,,,,,144,32,0,,,,, +450,22,3,16213,1152,2156.383,,,,,,144,36,0,,,,, +450,23,1,16214,1216,2156.383,,,,,,144,76,0,,,,, +451,0,0,16215,0,2156.383,,,,,,,,,451,,,, +451,1,1,16216,0,2156.383,,,,,,176,102,0,,,,, +451,2,3,16217,0,2156.383,,,,,,176,102,0,,,,, +451,3,1,16218,256,2157.454,256,4.0,F4,pp,8,144,65,8,,,,, +451,4,1,16219,256,2157.454,256,4.0,E5,pp,8,144,76,8,,,,, +451,5,3,16220,256,2157.454,192,8.0,G#1,pp,8,144,32,8,,,,, +451,6,3,16221,256,2157.454,128,8.0,C2,pp,8,144,36,8,,,,, +451,7,3,16222,256,2157.454,128,8.0,A#2,pp,8,144,46,8,,,,, +451,6,3,16221,256,2157.99,,,,,,144,36,0,,,,, +451,7,3,16222,256,2157.99,,,,,,144,46,0,,,,, +451,5,3,16220,256,2158.258,,,,,,144,32,0,,,,, +451,8,3,16223,448,2158.258,64,16.0,F2,p,11,144,41,11,,,,, +451,9,3,16224,448,2158.258,64,16.0,F#2,p,11,144,42,11,,,,, +451,3,1,16218,256,2158.526,,,,,,144,65,0,,,,, +451,4,1,16219,256,2158.526,,,,,,144,76,0,,,,, +451,8,3,16223,448,2158.526,,,,,,144,41,0,,,,, +451,9,3,16224,448,2158.526,,,,,,144,42,0,,,,, +451,10,1,16225,512,2158.526,768,2.0,C6,p,11,144,84,11,,,,, +451,11,3,16226,512,2158.526,768,2.0,F2,p,11,144,41,11,,,,, +451,12,3,16227,512,2158.526,512,2.0,F#2,p,11,144,42,11,,,,, +451,12,3,16227,512,2160.669,,,,,,144,42,0,,,,, +451,10,1,16225,512,2161.74,,,,,,144,84,0,,,,, +451,11,3,16226,512,2161.74,,,,,,144,41,0,,,,, +452,0,0,16228,0,2161.74,,,,,,,,,452,,,, +452,1,1,16229,0,2161.74,512,2.0,F4,p,11,144,65,11,,,,, +452,2,1,16230,0,2161.74,512,2.0,E5,p,11,144,76,11,,,,, +452,3,3,16231,0,2161.74,512,2.0,G#1,p,11,144,32,11,,,,, +452,4,3,16232,0,2161.74,512,2.0,C2,p,11,144,36,11,,,,, +452,5,3,16233,0,2161.74,512,2.0,A#2,p,11,144,46,11,,,,, +452,1,1,16229,0,2163.883,,,,,,144,65,0,,,,, +452,2,1,16230,0,2163.883,,,,,,144,76,0,,,,, +452,3,3,16231,0,2163.883,,,,,,144,32,0,,,,, +452,4,3,16232,0,2163.883,,,,,,144,36,0,,,,, +452,5,3,16233,0,2163.883,,,,,,144,46,0,,,,, +452,6,1,16234,512,2163.883,,,,,,176,102,0,,,,, +452,7,3,16235,512,2163.883,,,,,,176,102,0,,,,, +452,8,1,16236,736,2164.82,32,32.0,F4,p,11,144,65,11,,,,, +452,9,1,16237,736,2164.82,32,32.0,E5,p,11,144,76,11,,,,, +452,10,3,16238,736,2164.82,32,32.0,G#1,p,11,144,32,11,,,,, +452,11,3,16239,736,2164.82,32,32.0,C2,p,11,144,36,11,,,,, +452,12,3,16240,736,2164.82,32,32.0,A#2,p,11,144,46,11,,,,, +452,8,1,16236,736,2164.954,,,,,,144,65,0,,,,, +452,9,1,16237,736,2164.954,,,,,,144,76,0,,,,, +452,10,3,16238,736,2164.954,,,,,,144,32,0,,,,, +452,11,3,16239,736,2164.954,,,,,,144,36,0,,,,, +452,12,3,16240,736,2164.954,,,,,,144,46,0,,,,, +452,13,1,16241,768,2164.954,128,8.0,C6,pp,8,144,84,8,,,,, +452,14,3,16242,768,2164.954,128,8.0,F2,pp,8,144,41,8,,,,, +452,15,3,16243,768,2164.954,128,8.0,F#2,pp,8,144,42,8,,,,, +452,16,1,16244,896,2165.49,128,8.0,E3,p,11,144,52,11,,,,, +452,17,1,16245,896,2165.49,128,8.0,B3,p,11,144,59,11,,,,, +452,18,3,16246,896,2165.49,128,8.0,G#1,p,11,144,32,11,,,,, +452,13,1,16241,768,2165.565,,,,,,144,84,0,,,,, +452,14,3,16242,768,2165.565,,,,,,144,41,0,,,,, +452,15,3,16243,768,2165.565,,,,,,144,42,0,,,,, +452,19,1,16247,1024,2166.026,192,8.0,E3,,,,,,,,,, +452,20,1,16248,1024,2166.026,128,8.0,B3,,,,,,,,,, +452,21,3,16249,1024,2166.026,192,8.0,G#1,,,,,,,,,, +452,17,1,16245,896,2166.711,,,,,,144,59,0,,,,, +452,22,1,16250,1216,2166.829,64,16.0,C6,pp,8,144,84,8,,,,, +452,23,3,16251,1216,2166.829,64,16.0,F2,pp,8,144,41,8,,,,, +452,24,3,16252,1216,2166.829,64,16.0,F#2,pp,8,144,42,8,,,,, +452,16,1,16244,896,2166.979,,,,,,144,52,0,,,,, +452,18,3,16246,896,2166.979,,,,,,144,32,0,,,,, +453,0,0,16253,0,2167.097,,,,,,,,,453,,,, +453,1,1,16254,0,2167.097,768,2.0,C6,,,,,,,,,, +453,2,3,16255,0,2167.097,768,2.0,F2,,,,,,,,,, +453,3,3,16256,0,2167.097,512,2.0,F#2,,,,,,,,,, +452,24,3,16252,1216,2169.24,,,,,,144,42,0,,,,, +452,22,1,16250,1216,2170.311,,,,,,144,84,0,,,,, +452,23,3,16251,1216,2170.311,,,,,,144,41,0,,,,, +453,4,1,16257,768,2170.311,512,2.0,F4,pp,8,144,65,8,,,,, +453,5,1,16258,768,2170.311,512,2.0,E5,pp,8,144,76,8,,,,, +453,6,3,16259,768,2170.311,512,2.0,G#1,pp,8,144,32,8,,,,, +453,7,3,16260,768,2170.311,512,2.0,C2,pp,8,144,36,8,,,,, +453,8,3,16261,768,2170.311,512,2.0,A#2,pp,8,144,46,8,,,,, +454,0,0,16262,0,2172.454,,,,,,,,,454,,,, +454,1,1,16263,0,2172.454,256,4.0,F4,,,,,,,,,, +454,2,1,16264,0,2172.454,256,4.0,E5,,,,,,,,,, +454,3,3,16265,0,2172.454,256,4.0,G#1,,,,,,,,,, +454,4,3,16266,0,2172.454,256,4.0,C2,,,,,,,,,, +454,5,3,16267,0,2172.454,256,4.0,A#2,,,,,,,,,, +453,4,1,16257,768,2173.526,,,,,,144,65,0,,,,, +453,5,1,16258,768,2173.526,,,,,,144,76,0,,,,, +453,6,3,16259,768,2173.526,,,,,,144,32,0,,,,, +453,7,3,16260,768,2173.526,,,,,,144,36,0,,,,, +453,8,3,16261,768,2173.526,,,,,,144,46,0,,,,, +454,6,1,16268,256,2173.526,256,4.0,E3,pp,8,144,52,8,,,,, +454,7,1,16269,256,2173.526,256,4.0,B3,pp,8,144,59,8,,,,, +454,8,3,16270,256,2173.526,256,4.0,G#1,pp,8,144,32,8,,,,, +454,6,1,16268,256,2174.597,,,,,,144,52,0,,,,, +454,7,1,16269,256,2174.597,,,,,,144,59,0,,,,, +454,8,3,16270,256,2174.597,,,,,,144,32,0,,,,, +454,9,1,16271,512,2174.597,768,2.0,F4,ppp,5,144,65,5,,,,, +454,10,1,16272,512,2174.597,512,2.0,E5,ppp,5,144,76,5,,,,, +454,11,3,16273,512,2174.597,768,2.0,G#1,ppp,5,144,32,5,,,,, +454,12,3,16274,512,2174.597,512,2.0,C2,ppp,5,144,36,5,,,,, +454,13,3,16275,512,2174.597,512,2.0,A#2,ppp,5,144,46,5,,,,, +454,10,1,16272,512,2176.74,,,,,,144,76,0,,,,, +454,12,3,16274,512,2176.74,,,,,,144,36,0,,,,, +454,13,3,16275,512,2176.74,,,,,,144,46,0,,,,, +454,9,1,16271,512,2177.811,,,,,,144,65,0,,,,, +454,11,3,16273,512,2177.811,,,,,,144,32,0,,,,, +455,0,0,16276,0,2177.811,,,,,,,,,455,,,, +455,1,1,16277,0,2177.811,512,2.0,E3,pp,8,144,52,8,,,,, +455,2,1,16278,0,2177.811,512,2.0,B3,pp,8,144,59,8,,,,, +455,3,3,16279,0,2177.811,512,2.0,G#1,pp,8,144,32,8,,,,, +455,1,1,16277,0,2179.954,,,,,,144,52,0,,,,, +455,2,1,16278,0,2179.954,,,,,,144,59,0,,,,, +455,3,3,16279,0,2179.954,,,,,,144,32,0,,,,, +455,4,1,16280,512,2179.954,512,2.0,C6,ppp,5,144,84,5,,,,, +455,5,3,16281,512,2179.954,512,2.0,F2,ppp,5,144,41,5,,,,, +455,6,3,16282,512,2179.954,512,2.0,F#2,ppp,5,144,42,5,,,,, +455,4,1,16280,512,2182.097,,,,,,144,84,0,,,,, +455,5,3,16281,512,2182.097,,,,,,144,41,0,,,,, +455,6,3,16282,512,2182.097,,,,,,144,42,0,,,,, +455,7,1,16283,1024,2182.097,1024,1.0,E3,ppp,5,144,52,5,,,,, +455,8,1,16284,1024,2182.097,1024,1.0,B3,ppp,5,144,59,5,,,,, +455,9,3,16285,1024,2182.097,1024,1.0,G#1,ppp,5,144,32,5,,,,, +455,10,0,16286,2047,2186.231,,,,,,176,64,0,,,,,^ +455,7,1,16283,1024,2186.383,,,,,,144,52,0,,,,, +455,8,1,16284,1024,2186.383,,,,,,144,59,0,,,,, +455,9,3,16285,1024,2186.383,,,,,,144,32,0,,,,, +456,0,0,16287,0,2186.383,,,,,,,,,456,,,, +456,1,0,16288,0,2186.383,,,,,,,,,,6077,,, +456,3,1,16289,0,2186.383,768,2.0,E3,ppp,5,144,52,5,,,,, +456,4,1,16290,0,2186.383,512,2.0,B3,ppp,5,144,59,5,,,,, +456,5,3,16291,0,2186.383,768,2.0,G#1,ppp,5,144,32,5,,,,, +456,2,0,16292,0,2186.531,,,,,,176,64,127,,,,,V +456,4,1,16290,0,2188.526,,,,,,144,59,0,,,,, +456,3,1,16289,0,2189.597,,,,,,144,52,0,,,,, +456,5,3,16291,0,2189.597,,,,,,144,32,0,,,,, +456,6,1,16293,768,2189.597,,,,,,176,102,0,,,,, +456,7,3,16294,768,2189.597,,,,,,176,102,0,,,,, +456,8,1,16295,992,2190.535,32,32.0,E3,p,11,144,52,11,,,,, +456,9,1,16296,992,2190.535,32,32.0,B3,p,11,144,59,11,,,,, +456,10,3,16297,992,2190.535,32,32.0,G#1,p,11,144,32,11,,,,, +456,8,1,16295,992,2190.669,,,,,,144,52,0,,,,, +456,9,1,16296,992,2190.669,,,,,,144,59,0,,,,, +456,10,3,16297,992,2190.669,,,,,,144,32,0,,,,, +456,11,1,16298,1024,2190.669,192,8.0,E3,mf,17,144,52,17,,,,, +456,12,1,16299,1024,2190.669,128,8.0,B3,mf,17,144,59,17,,,,, +456,13,1,16300,1024,2190.669,128,8.0,C4,mf,17,144,60,17,,,,, +456,14,3,16301,1024,2190.669,192,8.0,G#1,mf,17,144,32,17,,,,, +456,12,1,16299,1024,2191.204,,,,,,144,59,0,,,,, +456,13,1,16300,1024,2191.204,,,,,,144,60,0,,,,, +456,11,1,16298,1024,2191.472,,,,,,144,52,0,,,,, +456,14,3,16301,1024,2191.472,,,,,,144,32,0,,,,, +456,15,0,16302,1216,2191.472,,,,,,176,64,0,,,,,^ +456,16,1,16303,1216,2191.472,,,,,,176,102,0,,,,, +456,17,3,16304,1216,2191.472,,,,,,176,102,0,,,,, +456,18,1,16305,1280,2191.74,32,32.0,E3,mf,17,144,52,17,,,,, +456,19,1,16306,1280,2191.74,32,32.0,B3,mf,17,144,59,17,,,,, +456,20,1,16307,1280,2191.74,32,32.0,C4,mf,17,144,60,17,,,,, +456,21,3,16308,1280,2191.74,32,32.0,C#1,mf,17,144,25,17,,,,, +456,22,3,16309,1280,2191.74,32,32.0,G#1,mf,17,144,32,17,,,,, +456,18,1,16305,1280,2191.874,,,,,,144,52,0,,,,, +456,19,1,16306,1280,2191.874,,,,,,144,59,0,,,,, +456,20,1,16307,1280,2191.874,,,,,,144,60,0,,,,, +456,21,3,16308,1280,2191.874,,,,,,144,25,0,,,,, +456,22,3,16309,1280,2191.874,,,,,,144,32,0,,,,, +456,24,1,16310,1312,2191.874,224,8.0,E3,ppp,5,144,52,5,,,,, +456,25,1,16311,1312,2191.874,128,8.0,B3,ppp,5,144,59,5,,,,, +456,26,1,16312,1312,2191.874,128,8.0,C4,ppp,5,144,60,5,,,,, +456,27,3,16313,1312,2191.874,224,8.0,C#1,ppp,5,144,25,5,,,,, +456,28,3,16314,1312,2191.874,128,8.0,G#1,ppp,5,144,32,5,,,,, +456,23,0,16315,1312,2191.874,,,,,,176,64,127,,,,,V +456,25,1,16311,1312,2192.41,,,,,,144,59,0,,,,, +456,26,1,16312,1312,2192.41,,,,,,144,60,0,,,,, +456,28,3,16314,1312,2192.41,,,,,,144,32,0,,,,, +456,24,1,16310,1312,2192.811,,,,,,144,52,0,,,,, +456,27,3,16313,1312,2192.811,,,,,,144,25,0,,,,, +456,29,1,16316,1536,2192.811,512,2.0,A4,pp,8,144,69,8,,,,, +456,30,1,16317,1536,2192.811,512,2.0,C6,pp,8,144,84,8,,,,, +456,31,3,16318,1536,2192.811,512,2.0,F1,pp,8,144,29,8,,,,, +456,32,3,16319,1536,2192.811,512,2.0,F#2,pp,8,144,42,8,,,,, +456,29,1,16316,1536,2194.954,,,,,,144,69,0,,,,, +456,30,1,16317,1536,2194.954,,,,,,144,84,0,,,,, +456,31,3,16318,1536,2194.954,,,,,,144,29,0,,,,, +456,32,3,16319,1536,2194.954,,,,,,144,42,0,,,,, +457,0,0,16320,0,2194.954,,,,,,,,,457,,,, +457,1,1,16321,0,2194.954,,,,,,176,102,0,,,,, +457,2,3,16322,0,2194.954,,,,,,176,102,0,,,,, +457,3,3,16323,42,2195.13,43,16.0,E4,ff,22,144,64,22,,,,, +457,3,3,16323,42,2195.31,,,,,,144,64,0,,,,, +457,4,3,16324,85,2195.31,43,16.0,B5,ff,22,144,83,22,,,,, +457,4,3,16324,85,2195.49,,,,,,144,83,0,,,,, +457,5,3,16325,128,2195.49,42,16.0,G2,ff,22,144,43,22,,,,, +457,5,3,16325,128,2195.666,,,,,,144,43,0,,,,, +457,6,1,16326,170,2195.666,43,16.0,B5,ff,22,144,83,22,,,,, +457,7,3,16327,170,2195.666,43,16.0,G2,ff,22,144,43,22,,,,, +457,8,3,16328,170,2195.666,64,16.0,A#2,ff,22,144,46,22,,,,, +457,9,3,16329,170,2195.666,64,16.0,E3,ff,22,144,52,22,,,,, +457,6,1,16326,170,2195.846,,,,,,144,83,0,,,,, +457,7,3,16327,170,2195.846,,,,,,144,43,0,,,,, +457,10,1,16330,213,2195.846,43,16.0,D#7,ff,22,144,99,22,,,,, +457,11,3,16331,213,2195.846,,,,,,176,102,0,,,,, +457,8,3,16328,170,2195.934,,,,,,144,46,0,,,,, +457,9,3,16329,170,2195.934,,,,,,144,52,0,,,,, +457,10,1,16330,213,2196.026,,,,,,144,99,0,,,,, +457,12,1,16332,256,2196.026,,,,,,176,102,0,,,,, +457,13,3,16333,256,2196.026,,,,,,176,102,0,,,,, +457,14,1,16334,1280,2200.311,256,4.0,A4,pp,8,144,69,8,,,,, +457,15,1,16335,1280,2200.311,256,4.0,C6,pp,8,144,84,8,,,,, +457,16,3,16336,1280,2200.311,256,4.0,F2,pp,8,144,41,8,,,,, +457,17,3,16337,1280,2200.311,256,4.0,F#2,pp,8,144,42,8,,,,, +457,14,1,16334,1280,2201.383,,,,,,144,69,0,,,,, +457,15,1,16335,1280,2201.383,,,,,,144,84,0,,,,, +457,16,3,16336,1280,2201.383,,,,,,144,41,0,,,,, +457,17,3,16337,1280,2201.383,,,,,,144,42,0,,,,, +457,18,0,16338,1536,2201.383,,,,,,176,64,0,,,,,^ +457,19,1,16339,1536,2201.383,512,2.0,C#4,ppp,5,144,61,5,,,,, +457,20,1,16340,1536,2201.383,512,2.0,A4,ppp,5,144,69,5,,,,, +457,21,3,16341,1536,2201.383,512,2.0,F1,ppp,5,144,29,5,,,,, +457,22,3,16342,1536,2201.383,512,2.0,F#2,ppp,5,144,42,5,,,,, +457,23,0,16343,1707,2202.099,,,,,,176,64,127,,,,,V +458,0,0,16344,0,2203.526,,,,,,,,,458,,,, +458,1,1,16345,0,2203.526,1024,1.0,C#4,,,,,,,,,, +458,2,1,16346,0,2203.526,1024,1.0,A4,,,,,,,,,, +458,3,3,16347,0,2203.526,1024,1.0,F1,,,,,,,,,, +458,4,3,16348,0,2203.526,1024,1.0,F#2,,,,,,,,,, +458,5,0,16349,1024,2207.661,,,,,,176,64,0,,,,,^ +457,21,3,16341,1536,2207.811,,,,,,144,29,0,,,,, +458,7,1,16350,1024,2207.811,1024,1.0,C#4,,,,,,,,,, +458,8,1,16351,1024,2207.811,1024,1.0,A4,,,,,,,,,, +458,9,3,16352,1024,2207.811,1024,1.0,F#2,,,,,,,,,, +458,6,0,16353,1024,2207.961,,,,,,176,64,127,,,,,V +458,10,0,16354,2038,2212.055,,,,,,176,64,0,,,,,^ +457,19,1,16339,1536,2212.097,,,,,,144,61,0,,,,, +457,20,1,16340,1536,2212.097,,,,,,144,69,0,,,,, +457,22,3,16342,1536,2212.097,,,,,,144,42,0,,,,, diff --git a/src/cwtest/cfg/preset_sel/score/20220423/temp_m197_half_pedal.csv b/src/cwtest/cfg/preset_sel/score/20220423/temp_m197_half_pedal.csv new file mode 100644 index 0000000..0600113 --- /dev/null +++ b/src/cwtest/cfg/preset_sel/score/20220423/temp_m197_half_pedal.csv @@ -0,0 +1,27211 @@ +meas,index,voice,loc,tick,sec,dur,rval,sci_pitch,dmark,dlevel,status,d0,d1,bar,section,bpm,grace,pedal +1,0,0,0,0,0,,,,,,,,,1,,,, +1,1,0,0,0,0,,,,,,,,,,5918,,, +1,2,0,0,0,0,,,,,,,,,,,84,, +1,3,0,0,0,0,,,,,,,,,,,84,, +1,5,1,0,,0,,8,F4,p,11,144,65,11,,,,g, +1,4,0,1,0,0,,,,,,176,64,127,,,,,V +1,5,1,0,,0.05,,,,,,144,65,0,,,,, +1,6,1,2,,0.075,,8,D#4,mp,14,144,63,14,,,,g, +1,6,1,2,,0.125,,,,,,144,63,0,,,,, +1,7,1,3,,0.15,,8,A2,mf-,16,144,45,16,,,,g, +1,7,1,3,,0.2,,,,,,144,45,0,,,,, +1,8,1,4,,0.225,,8,F#1,f-,19,144,30,19,,,,g, +1,8,1,4,,0.275,,,,,,144,30,0,,,,, +1,9,1,5,,0.3,,8,C#2,f+,21,144,37,21,,,,g, +1,9,1,5,,0.35,,,,,,144,37,0,,,,, +1,10,1,6,,0.375,,8,F4,fff,24,144,65,23,,,,g, +1,10,1,6,,0.425,,,,,,144,65,0,,,,, +1,11,1,7,0,0.45,1024,1,D#6,ff,22,144,87,22,,,,, +1,12,3,8,0,0.45,1024,1,C2,f,20,144,36,20,,,,, +1,13,3,9,0,0.45,1024,1,A#2,pp,8,144,46,8,,,,, +1,14,1,10,1024,1.879,,,,,,176,102,0,,,,, +1,15,3,11,1024,1.879,1536,1,C2,,,,,,,,,, +1,16,3,12,1024,1.879,1024,1,A#2,,,,,,,,,, +1,11,1,7,0,2.329,,,,,,144,87,0,,,,, +1,17,1,13,1536,2.593,,,,,,176,102,0,,,,, +1,13,3,9,0,3.757,,,,,,144,46,0,,,,, +2,0,0,14,0,4.021,,,,,,,,,2,,,, +2,1,1,15,0,4.021,2048,0.5,C#6,pp,8,144,85,8,,,,, +2,2,3,16,0,4.021,,,,,,176,102,0,,,,, +1,12,3,8,0,4.471,,,,,,144,36,0,,,,, +2,1,1,15,0,6.879,,,,,,144,85,0,,,,, +2,3,1,17,2048,6.879,2048,0.5,E7,f,20,144,100,20,,,,, +2,3,1,17,2048,9.736,,,,,,144,100,0,,,,, +3,0,0,18,0,9.736,,,,,,,,,3,,,, +3,1,1,19,0,9.736,,,,,,176,102,0,,,,, +3,2,3,20,0,9.736,,,,,,176,102,0,,,,, +4,0,0,21,0,13.307,,,,,,,,,4,,,, +4,1,1,22,0,13.307,256,4,G#5,ff,22,144,80,22,,,,, +4,2,3,23,0,13.307,,,,,,176,102,0,,,,, +4,1,1,22,0,13.664,,,,,,144,80,0,,,,, +4,3,1,24,256,13.664,2048,0.5,A6,ff+,23,144,93,23,,,,, +4,3,1,24,256,16.296,,,,,,144,93,0,,,,, +4,4,1,25,,16.296,,8,A6,ff+,23,144,93,23,,,,g, +4,5,1,26,,16.371,,8,C2,ff+,23,144,36,23,,,,g, +4,5,1,26,,16.421,,,,,,144,36,0,,,,, +4,6,1,27,,16.446,,8,F#4,ff+,23,144,66,23,,,,g, +4,6,1,27,,16.496,,,,,,144,66,0,,,,, +4,4,1,25,,16.521,,,,,,144,93,0,,,,, +4,7,1,28,2304,16.521,256,4,F#4,ff,22,144,66,22,,,,, +4,7,1,28,2304,16.879,,,,,,144,66,0,,,,, +5,0,0,29,0,16.879,,,,,,,,,5,,,, +5,1,1,30,0,16.879,1920,1,E7,f,20,144,100,20,,,,, +5,2,3,31,0,16.879,,,,,,176,102,0,,,,, +5,1,1,30,0,19.557,,,,,,144,100,0,,,,, +5,3,1,32,1920,19.557,128,8,G#6,p,11,144,92,11,,,,, +5,4,3,33,1920,19.557,128,8,A2,pp,8,144,45,8,,,,, +5,3,1,32,1920,19.736,,,,,,144,92,0,,,,, +6,0,0,34,0,19.736,,,,,,,,,6,,,, +6,1,1,35,0,19.736,,,,,,176,102,0,,,,, +6,2,3,36,0,19.736,512,2,A2,,,,,,,,,, +6,3,1,37,192,20.004,64,16,G5,p,11,144,79,11,,,,, +6,4,1,38,256,20.093,256,4,G5,,,,,,,,,, +5,4,3,33,1920,20.45,,,,,,144,45,0,,,,, +6,5,1,39,512,20.45,2048,0.5,G5,,,,,,,,,, +6,6,3,40,512,20.45,2048,0.5,A#2,pp,8,144,46,8,,,,, +6,7,1,41,,22.857,,8,C2,p,11,144,36,11,,,,g, +6,7,1,41,,22.907,,,,,,144,36,0,,,,, +6,8,1,42,,22.932,,8,A5,mp-,13,144,81,13,,,,g, +6,8,1,42,,22.982,,,,,,144,81,0,,,,, +6,9,1,43,,23.007,,8,E6,mp+,15,144,88,15,,,,g, +6,9,1,43,,23.057,,,,,,144,88,0,,,,, +6,10,1,44,,23.082,,8,F#3,mf+,18,144,54,18,,,,g, +6,10,1,44,,23.132,,,,,,144,54,0,,,,, +6,11,1,45,,23.157,,8,G#5,f,20,144,80,20,,,,g, +6,11,1,45,,23.207,,,,,,144,80,0,,,,, +7,2,0,46,0,23.207,,,,,,176,64,0,,,,,^ +6,12,1,47,,23.232,,8,A5,ff,22,144,81,22,,,,g, +6,12,1,47,,23.282,,,,,,144,81,0,,,,, +6,3,1,37,192,23.307,,,,,,144,79,0,,,,, +6,6,3,40,512,23.307,,,,,,144,46,0,,,,, +7,0,0,48,0,23.307,,,,,,,,,7,,,, +7,1,0,49,0,23.307,,,,,,,,,,5919,,, +7,9,1,50,0,23.307,2048,0.5,D3,ppp,5,144,50,5,,,,, +7,10,1,51,0,23.307,2048,0.5,E3,ppp,5,144,52,5,,,,, +7,11,3,52,0,23.307,3072,0.5,C1,ff,22,144,24,22,,,,, +7,2,0,53,0,23.507,,,,,,176,64,127,,,,,V +7,12,1,54,2048,26.164,256,4,D3,,,,,,,,,, +7,13,1,55,2048,26.164,256,4,E3,,,,,,,,,, +7,16,0,56,2314,26.385,,,,,,176,64,0,,,,,^ +7,9,1,50,0,26.521,,,,,,144,50,0,,,,, +7,10,1,51,0,26.521,,,,,,144,52,0,,,,, +7,14,1,57,2304,26.521,768,2,C6,ppp,5,144,84,5,,,,, +7,15,1,58,2304,26.521,512,2,F6,ppp,5,144,89,5,,,,, +7,16,0,59,2314,26.685,,,,,,176,64,127,,,,,V +7,15,1,58,2304,27.236,,,,,,144,89,0,,,,, +8,0,0,60,0,27.593,,,,,,,,,8,,,, +8,1,1,61,0,27.593,,,,,,176,102,0,,,,, +8,2,3,62,0,27.593,3072,0.5,C1,,,,,,,,,, +8,3,3,63,0,27.593,2048,0.5,A3,p,11,144,57,11,,,,, +7,14,1,57,2304,27.593,,,,,,144,84,0,,,,, +8,4,0,64,42,27.651,,,,,,176,64,0,,,,,^ +8,6,1,65,341,28.069,171,4,C#6,ppp,5,144,85,5,,,,, +8,5,0,66,341,28.069,,,,,,176,64,127,,,,,V +8,7,1,67,512,28.307,512,2,C#6,,,,,,,,,, +8,6,1,65,341,29.021,,,,,,144,85,0,,,,, +8,8,1,68,1024,29.021,,,,,,176,102,0,,,,, +8,9,1,69,1280,29.379,256,4,G#2,p,11,144,44,11,,,,, +8,9,1,69,1280,29.736,,,,,,144,44,0,,,,, +8,10,1,70,1536,29.736,341,2,A#3,pp+,9,144,58,9,,,,, +8,11,1,71,1877,30.211,85,8,A#3,,,,,,,,,, +8,10,1,70,1536,30.33,,,,,,144,58,0,,,,, +8,12,1,72,1962,30.33,43,16,C#7,ppp,5,144,97,5,,,,, +8,12,1,72,1962,30.39,,,,,,144,97,0,,,,, +8,13,1,73,2005,30.39,43,16,A#2,ppp,5,144,46,5,,,,, +8,13,1,73,2005,30.45,,,,,,144,46,0,,,,, +8,14,1,74,2048,30.45,341,2,E2,ppp+,6,144,40,6,,,,, +8,14,1,74,2048,30.926,,,,,,144,40,0,,,,, +8,15,1,75,2389,30.926,341,2,C#6,pp,8,144,85,8,,,,, +8,15,1,75,2389,31.401,,,,,,144,85,0,,,,, +8,16,1,76,2730,31.401,342,2,C5,ppp,5,144,72,5,,,,, +8,16,1,76,2730,31.879,,,,,,144,72,0,,,,, +9,0,0,77,0,31.879,,,,,,,,,9,,,, +9,1,0,78,0,31.879,,,,,,176,64,0,,,,,^ +9,2,1,79,0,31.879,,,,,,176,102,0,,,,, +9,3,3,80,0,31.879,1024,1,C1,,,,,,,,,, +9,4,3,81,0,31.879,1024,1,A3,,,,,,,,,, +9,5,0,82,588,32.699,,,,,,176,64,127,,,,,V +9,6,3,83,1024,33.307,1024,1,C1,,,,,,,,,, +9,7,3,84,1024,33.307,1024,1,G#1,ppp,5,144,32,5,,,,, +9,8,3,85,1024,33.307,1024,1,A3,,,,,,,,,, +8,3,3,63,0,34.021,,,,,,144,57,0,,,,, +9,10,1,86,,34.286,,8,E3,p,11,144,52,11,,,,g, +9,10,1,86,,34.336,,,,,,144,52,0,,,,, +9,11,1,87,,34.361,,8,A#3,p+,12,144,58,12,,,,g, +9,11,1,87,,34.411,,,,,,144,58,0,,,,, +9,12,1,88,,34.436,,8,C6,p+,12,144,84,12,,,,g, +9,12,1,88,,34.486,,,,,,144,84,0,,,,, +9,13,1,89,,34.511,,8,C#7,mp-,13,144,97,13,,,,g, +9,9,0,90,1889,34.514,,,,,,176,64,0,,,,,^ +9,13,1,89,,34.561,,,,,,144,97,0,,,,, +9,14,1,91,,34.586,,8,G#2,mp-,13,144,44,13,,,,g, +9,14,1,91,,34.636,,,,,,144,44,0,,,,, +9,15,1,92,,34.661,,8,A#4,mp,14,144,70,14,,,,g, +9,15,1,92,,34.711,,,,,,144,70,0,,,,, +9,16,1,93,2048,34.736,512,2,E4,mp,14,144,64,14,,,,, +9,17,3,94,2048,34.736,512,2,C1,,,,,,,,,, +9,18,3,95,2048,34.736,512,2,G#1,,,,,,,,,, +9,19,3,96,2048,34.736,512,2,A3,,,,,,,,,, +7,11,3,52,0,35.45,,,,,,144,24,0,,,,, +9,20,1,97,2560,35.45,512,2,E4,,,,,,,,,, +9,21,1,98,2560,35.45,512,2,E5,ff,22,144,76,22,,,,, +9,22,3,99,2560,35.45,0,8,A3,,,,,,,,,, +9,23,3,100,2560,35.45,512,2,A3,ff,22,144,57,22,,,,, +9,7,3,84,1024,35.45,,,,,,144,32,0,,,,, +9,21,1,98,2560,36.164,,,,,,144,76,0,,,,, +9,23,3,100,2560,36.164,,,,,,144,57,0,,,,, +10,0,0,101,0,36.164,,,,,,,,,10,,,, +10,1,1,102,0,36.164,1536,1,E4,,,,,,,,,, +10,2,1,103,0,36.164,1024,1,G#4,ff,22,144,68,22,,,,, +10,3,3,104,0,36.164,384,4,C#2,ppp,5,144,37,5,,,,, +10,3,3,104,0,36.7,,,,,,144,37,0,,,,, +10,4,3,105,384,36.7,384,4,B1,ppp,5,144,35,5,,,,, +10,4,3,105,384,37.236,,,,,,144,35,0,,,,, +10,6,3,106,768,37.236,768,2,A4,f,20,144,69,20,,,,, +10,5,0,107,768,37.236,,,,,,176,64,127,,,,,V +10,6,3,106,768,37.286,,,,,,144,69,0,,,,, +10,2,1,103,0,37.593,,,,,,144,68,0,,,,, +10,7,1,108,1536,38.307,,,,,,176,102,0,,,,, +10,8,3,109,1536,38.307,,,,,,176,102,0,,,,, +10,10,0,111,1680,38.435,,,,,,176,64,0,,,,,^ +10,,,112,1790,38.735,,,,,,176,64,127,,,,,V +9,16,1,93,2048,39.914,,,,,,144,64,0,,,,, +10,11,1,113,,40.45,,8,C#2,f,20,144,37,20,,,,g, +10,12,1,114,,40.45,,8,F#2,f,20,144,42,20,,,,g, +10,13,1,115,,40.45,,8,E4,f,20,144,64,20,,,,g, +10,11,1,113,,40.5,,,,,,144,37,0,,,,, +10,12,1,114,,40.5,,,,,,144,42,0,,,,, +10,13,1,115,,40.5,,,,,,144,64,0,,,,, +10,14,1,116,,40.525,,8,D3,f,20,144,50,20,,,,g, +10,15,1,117,,40.525,,8,F5,f,20,144,77,20,,,,g, +10,14,1,116,,40.575,,,,,,144,50,0,,,,, +10,15,1,117,,40.575,,,,,,144,77,0,,,,, +10,16,1,118,,40.6,,8,A4,f,20,144,69,20,,,,g, +10,16,1,118,,40.65,,,,,,144,69,0,,,,, +10,17,1,119,,40.675,,8,A2,f,20,144,45,20,,,,g, +10,18,1,120,,40.675,,8,C#3,f,20,144,49,20,,,,g, +10,19,1,121,,40.675,,8,F7,f,20,144,101,20,,,,g, +10,17,1,119,,40.725,,,,,,144,45,0,,,,, +10,18,1,120,,40.725,,,,,,144,49,0,,,,, +10,19,1,121,,40.725,,,,,,144,101,0,,,,, +10,20,1,122,,40.75,,8,F4,f,20,144,65,20,,,,g, +10,20,1,122,,40.8,,,,,,144,65,0,,,,, +10,21,1,123,,40.825,,8,G7,f,20,144,103,20,,,,g, +10,21,1,123,,40.875,,,,,,144,103,0,,,,, +10,,,124,3071,41.124,,,,,,176,64,0,,,,,^ +11,0,0,125,0,41.275,,,,,,,,,11,,,, +11,2,1,126,0,41.275,2048,0.5,C7,mp,14,144,96,14,,,,, +11,3,3,127,0,41.275,,,,,,176,102,0,,,,, +11,1,0,128,0,41.424,,,,,,176,64,127,,,,,V +11,4,0,129,1008,42.681,,,,,,176,64,0,,,,,^ +11,6,1,130,,43.907,,8,A#2,mp,14,144,46,14,,,,g, +11,6,1,130,,43.957,,,,,,144,46,0,,,,, +11,7,1,131,,43.982,,8,G#1,ppp,5,144,32,5,,,,g, +11,7,1,131,,44.032,,,,,,144,32,0,,,,, +11,8,1,132,,44.057,,8,F4,mf,17,144,65,17,,,,g, +11,8,1,132,,44.107,,,,,,144,65,0,,,,, +11,9,1,133,2048,44.132,1536,1,C#6,f,20,144,85,20,,,,, +11,5,0,134,2048,44.132,,,,,,176,64,127,,,,,V +11,2,1,126,0,44.957,,,,,,144,96,0,,,,, +12,0,0,135,0,46.275,,,,,,,,,12,,,, +12,1,0,136,0,46.275,,,,,,,,,,,116,, +12,2,0,137,0,46.275,,,,,,,,,,,116,, +12,3,1,138,0,46.275,256,4,C#6,,,,,,,,,, +12,4,3,139,0,46.275,,,,,,176,102,0,,,,, +12,5,1,140,,46.642,,8,G#5,ppp,5,144,80,5,,,,g, +12,5,1,140,,46.692,,,,,,144,80,0,,,,, +12,6,1,141,,46.717,,8,D4,ppp,5,144,62,5,,,,g, +12,6,1,141,,46.767,,,,,,144,62,0,,,,, +11,9,1,133,2048,46.792,,,,,,144,85,0,,,,, +12,7,1,142,256,46.792,96,16,F#6,pp,8,144,90,8,,,,, +12,8,3,143,256,46.792,,,,,,176,102,0,,,,, +12,9,3,144,288,46.857,32,32,A2,pp,8,144,45,8,,,,, +12,9,3,144,288,46.922,,,,,,144,45,0,,,,, +12,10,3,145,320,46.922,32,32,A3,pp,8,144,57,8,,,,, +12,7,1,142,256,46.986,,,,,,144,90,0,,,,, +12,10,3,145,320,46.986,,,,,,144,57,0,,,,, +12,11,1,146,352,46.986,32,32,G7,ppp,5,144,103,5,,,,, +12,12,3,147,352,46.986,32,32,D2,pp,8,144,38,8,,,,, +12,11,1,146,352,47.051,,,,,,144,103,0,,,,, +12,12,3,147,352,47.051,,,,,,144,38,0,,,,, +12,13,1,148,384,47.051,,,,,,176,102,0,,,,, +12,14,3,149,384,47.051,,,,,,176,102,0,,,,, +12,15,0,150,384,47.051,,,,,,,,,,5920,,, +12,16,0,151,512,47.309,,,,,,176,64,0,,,,,^ +12,17,1,152,512,47.309,85,8,B3,pp,8,144,59,8,,,,, +12,18,3,153,512,47.309,768,2,A#2,pp,8,144,46,8,,,,, +12,19,3,154,512,47.309,512,2,E3,pp,8,144,52,8,,,,, +12,17,1,152,512,47.481,,,,,,144,59,0,,,,, +12,20,1,155,597,47.481,,,,,,176,102,0,,,,, +12,21,1,156,682,47.653,86,8,F6,pp,8,144,89,8,,,,, +12,22,1,157,682,47.653,128,8,A#7,pp,8,144,106,8,,,,, +12,21,1,156,682,47.827,,,,,,144,89,0,,,,, +12,23,1,158,768,47.827,85,8,F#5,pp,8,144,78,8,,,,, +12,22,1,157,682,47.912,,,,,,144,106,0,,,,, +12,23,1,158,768,47.998,,,,,,144,78,0,,,,, +12,24,1,159,853,47.998,85,8,B2,pp,8,144,47,8,,,,, +12,24,1,159,853,48.17,,,,,,144,47,0,,,,, +12,25,1,160,938,48.17,43,16,D#4,mp,14,144,63,14,,,,, +12,26,1,161,938,48.17,64,16,G#4,mp,14,144,68,14,,,,, +12,25,1,160,938,48.257,,,,,,144,63,0,,,,, +12,27,1,162,981,48.257,43,16,F4,mp+,15,144,65,15,,,,, +12,28,1,163,981,48.257,64,16,G#4,,,,,,,,,, +12,27,1,162,981,48.344,,,,,,144,65,0,,,,, +12,29,1,164,1024,48.344,85,8,C#2,mf,17,144,37,17,,,,, +12,30,1,165,1024,48.344,128,8,A2,mf,17,144,45,17,,,,, +12,31,1,166,1024,48.344,128,8,C3,mf,17,144,48,17,,,,, +12,26,1,161,938,48.429,,,,,,144,68,0,,,,, +12,29,1,164,1024,48.516,,,,,,144,37,0,,,,, +12,32,1,167,1109,48.516,43,16,B1,pp,8,144,35,8,,,,, +12,32,1,167,1109,48.603,,,,,,144,35,0,,,,, +12,33,1,168,1152,48.603,42,16,D3,pp+,9,144,50,9,,,,, +12,30,1,165,1024,48.603,,,,,,144,45,0,,,,, +12,31,1,166,1024,48.603,,,,,,144,48,0,,,,, +12,33,1,168,1152,48.687,,,,,,144,50,0,,,,, +12,34,1,169,1194,48.687,86,8,A4,p,11,144,69,11,,,,, +12,35,1,170,1280,48.861,170,4,A4,,,,,,,,,, +12,36,3,171,1280,48.861,170,4,A#2,,,,,,,,,, +12,37,3,172,1280,48.861,256,4,E3,,,,,,,,,, +12,19,3,154,512,48.861,,,,,,144,52,0,,,,, +12,34,1,169,1194,49.205,,,,,,144,69,0,,,,, +12,38,1,173,1450,49.205,43,16,A4,pp,8,144,69,8,,,,, +12,39,1,174,1450,49.205,64,16,C#5,pp,8,144,73,8,,,,, +12,40,3,175,1450,49.205,86,8,C#3,mp,14,144,49,14,,,,, +12,18,3,153,512,49.205,,,,,,144,46,0,,,,, +12,38,1,173,1450,49.292,,,,,,144,69,0,,,,, +12,41,1,176,1493,49.292,43,16,F#3,pp,8,144,54,8,,,,, +12,42,1,177,1493,49.292,64,16,C#5,,,,,,,,,, +12,41,1,176,1493,49.378,,,,,,144,54,0,,,,, +12,43,1,178,1536,49.378,42,16,G#4,pp-,7,144,68,7,,,,, +12,44,1,179,1536,49.378,64,16,C#5,,,,,,,,,, +12,45,3,180,1536,49.378,85,8,C#3,,,,,,,,,, +12,46,3,181,1536,49.378,128,8,D3,mp,14,144,50,14,,,,, +12,43,1,178,1536,49.463,,,,,,144,68,0,,,,, +12,47,1,182,1578,49.463,43,16,C#5,,,,,,,,,, +12,48,1,183,1621,49.55,43,16,A4,ppp,5,144,69,5,,,,, +12,49,1,184,1621,49.55,64,16,C#5,,,,,,,,,, +12,50,3,185,1621,49.55,85,8,C#3,,,,,,,,,, +12,48,1,183,1621,49.637,,,,,,144,69,0,,,,, +12,51,1,186,1664,49.637,85,8,C#5,,,,,,,,,, +12,52,1,187,1664,49.637,128,8,E5,pp+,9,144,76,9,,,,, +12,53,1,188,1664,49.637,128,8,F#5,pp+,9,144,78,9,,,,, +12,46,3,181,1536,49.637,,,,,,144,50,0,,,,, +12,54,3,189,1706,49.722,43,16,C#3,,,,,,,,,, +12,55,1,190,1749,49.809,43,16,G#4,ppp,5,144,68,5,,,,, +12,56,1,191,1749,49.809,64,16,F7,mf,17,144,101,17,,,,, +12,57,3,192,1749,49.809,43,16,F3,mp,14,144,53,14,,,,, +12,40,3,175,1450,49.809,,,,,,144,49,0,,,,, +13,0,0,194,0,49.896,,,,,,,,,13,,,, +13,1,0,195,0,49.896,,,,,,,,,,,174,, +13,2,1,196,0,49.896,128,8,G#4,,,,,,,,,, +13,3,3,197,0,49.896,128,8,F3,,,,,,,,,, +12,52,1,187,1664,49.896,,,,,,144,76,0,,,,, +12,53,1,188,1664,49.896,,,,,,144,78,0,,,,, +12,56,1,191,1749,49.938,,,,,,144,101,0,,,,, +12,39,1,174,1450,49.981,,,,,,144,73,0,,,,, +13,5,1,198,128,50.068,,,,,,176,102,0,,,,, +13,6,3,199,128,50.068,192,8,D2,mp,14,144,38,14,,,,, +13,7,3,200,128,50.068,128,8,F3,,,,,,,,,, +13,4,0,201,128,50.068,,,,,,176,64,127,,,,,V +12,55,1,190,1749,50.068,,,,,,144,68,0,,,,, +12,57,3,192,1749,50.241,,,,,,144,53,0,,,,, +13,6,3,199,128,50.327,,,,,,144,38,0,,,,, +14,0,0,202,0,50.327,,,,,,,,,14,,,, +14,1,0,203,0,50.327,,,,,,,,,,,116,, +14,2,1,204,0,50.327,512,2,D4,ppp,5,144,62,5,,,,, +14,3,1,205,0,50.327,512,2,E5,p,11,144,76,11,,,,, +14,4,2,206,0,50.327,,,,,,176,102,0,,,,, +14,5,3,207,0,50.327,512,2,B1,pp,8,144,35,8,,,,, +14,6,3,208,0,50.327,512,2,B2,pp,8,144,47,8,,,,, +14,7,3,209,0,50.327,512,2,C3,pp,8,144,48,8,,,,, +14,8,4,210,0,50.327,,,,,,176,102,0,,,,, +14,9,4,211,102,50.533,154,8,A1,mf,17,144,33,17,,,,, +14,10,2,212,256,50.844,,,,,,176,102,0,,,,, +14,11,4,213,256,50.844,51,16,A1,,,,,,,,,, +14,9,4,211,102,50.947,,,,,,144,33,0,,,,, +14,12,2,214,307,50.947,205,4,D6,mp,14,144,86,14,,,,, +14,13,2,215,307,50.947,256,4,G6,f,20,144,91,20,,,,, +14,14,4,216,307,50.947,205,4,C1,pp,8,144,24,8,,,,, +14,17,3,217,,51.211,,8,A3,pp,8,144,57,8,,,,g, +14,17,3,217,,51.261,,,,,,144,57,0,,,,, +14,18,3,218,,51.286,,8,D3,p,11,144,50,11,,,,g, +14,21,0,219,573,51.334,,,,,,176,64,0,,,,,^ +14,18,3,218,,51.336,,,,,,144,50,0,,,,, +14,2,1,204,0,51.361,,,,,,144,62,0,,,,, +14,3,1,205,0,51.361,,,,,,144,76,0,,,,, +14,5,3,207,0,51.361,,,,,,144,35,0,,,,, +14,6,3,208,0,51.361,,,,,,144,47,0,,,,, +14,7,3,209,0,51.361,,,,,,144,48,0,,,,, +14,12,2,214,307,51.361,,,,,,144,86,0,,,,, +14,14,4,216,307,51.361,,,,,,144,24,0,,,,, +14,15,1,220,512,51.361,,,,,,176,102,0,,,,, +14,16,2,221,512,51.361,,,,,,176,102,0,,,,, +14,19,3,222,512,51.361,256,4,C#2,f,20,144,37,20,,,,, +14,20,4,223,512,51.361,1536,1,A#1,fff,24,144,34,23,,,,, +14,13,2,215,307,51.464,,,,,,144,91,0,,,,, +14,21,0,224,573,51.634,,,,,,176,64,127,,,,,V +14,20,4,223,512,51.878,,,,,,144,34,0,,,,, +14,22,2,225,768,51.878,,,,,,176,102,0,,,,, +14,23,3,226,768,51.878,85,8,A#1,mp,14,144,34,14,,,,, +14,24,3,227,768,51.878,128,8,C#2,,,,,,,,,, +14,25,3,228,768,51.878,128,8,A#2,mp,14,144,46,14,,,,, +14,26,2,229,853,52.05,85,8,A#6,mf,17,144,94,17,,,,, +14,27,3,230,853,52.05,85,8,B1,mp+,15,144,35,15,,,,, +14,19,3,222,512,52.137,,,,,,144,37,0,,,,, +14,25,3,228,768,52.137,,,,,,144,46,0,,,,, +14,26,2,229,853,52.222,,,,,,144,94,0,,,,, +14,27,3,230,853,52.222,,,,,,144,35,0,,,,, +14,28,2,231,938,52.222,86,8,F6,mf-,16,144,89,16,,,,, +14,29,3,232,938,52.222,,,,,,176,102,0,,,,, +14,30,0,233,943,52.232,,,,,,176,64,0,,,,,^ +14,31,2,234,1024,52.396,128,8,F6,,,,,,,,,, +14,32,3,235,1024,52.396,,,,,,176,102,0,,,,, +14,28,2,231,938,52.654,,,,,,144,89,0,,,,, +14,33,2,236,1152,52.654,128,8,A4,mp,14,144,69,14,,,,, +14,34,2,237,1280,52.913,768,2,A4,,,,,,,,,, +14,35,3,238,1536,53.43,512,2,G#3,p,11,144,56,11,,,,, +15,0,0,239,0,54.465,,,,,,,,,15,,,, +15,1,1,240,0,54.465,,,,,,176,102,0,,,,, +15,2,2,241,0,54.465,512,2,A4,,,,,,,,,, +15,3,3,242,0,54.465,256,4,G#3,,,,,,,,,, +15,4,4,243,0,54.465,2048,0.5,A#1,,,,,,,,,, +14,35,3,238,1536,54.982,,,,,,144,56,0,,,,, +15,5,1,244,256,54.982,512,2,E5,p,11,144,76,11,,,,, +15,6,3,245,256,54.982,256,4,F#4,p,11,144,66,11,,,,, +15,6,3,245,256,55.499,,,,,,144,66,0,,,,, +15,7,2,246,512,55.499,1536,1,C#1,mf,17,144,25,17,,,,, +15,8,3,247,512,55.499,256,4,B1,mf,17,144,35,17,,,,, +14,33,2,236,1152,55.499,,,,,,144,69,0,,,,, +15,8,3,247,512,56.016,,,,,,144,35,0,,,,, +15,9,1,248,768,56.016,128,8,D1,mf,17,144,26,17,,,,, +15,10,3,249,768,56.016,256,4,F#3,p-,10,144,54,10,,,,, +15,5,1,244,256,56.016,,,,,,144,76,0,,,,, +15,9,1,248,768,56.275,,,,,,144,26,0,,,,, +15,11,1,250,896,56.275,128,8,A#5,pp,8,144,82,8,,,,, +15,10,3,249,768,56.534,,,,,,144,54,0,,,,, +15,11,1,250,896,56.534,,,,,,144,82,0,,,,, +15,12,1,251,1024,56.534,,,,,,176,102,0,,,,, +15,13,3,252,1024,56.534,,,,,,176,102,0,,,,, +15,14,1,253,1408,57.309,384,4,A5,pp,8,144,81,8,,,,, +15,16,1,254,,57.935,,8,F#5,pp-,7,144,78,7,,,,g, +15,15,1,255,,57.935,,8,F#4,pp-,7,144,66,7,,,,g, +15,16,1,254,,57.985,,,,,,144,78,0,,,,, +15,15,1,255,,57.985,,,,,,144,66,0,,,,, +15,18,1,256,,58.01,,8,G#4,pp-,7,144,68,7,,,,g, +15,17,1,257,,58.01,,8,F#4,,,,,,,,,g, +15,18,1,256,,58.06,,,,,,144,68,0,,,,, +15,14,1,253,1408,58.085,,,,,,144,81,0,,,,, +15,19,1,258,1792,58.085,256,4,F#4,,,,,,,,,, +15,20,3,259,1792,58.085,256,4,B2,p,11,144,47,11,,,,, +16,0,0,260,0,58.603,,,,,,,,,16,,,, +16,1,1,261,0,58.603,384,4,F#4,,,,,,,,,, +16,2,2,262,0,58.603,,,,,,176,102,0,,,,, +16,3,3,263,0,58.603,384,4,B2,,,,,,,,,, +16,4,4,264,0,58.603,2048,0.5,A#1,,,,,,,,,, +15,7,2,246,512,58.603,,,,,,144,25,0,,,,, +16,5,1,265,384,59.378,384,4,A#6,ppp-,4,144,94,4,,,,, +16,6,3,266,384,59.378,,,,,,176,102,0,,,,, +15,20,3,259,1792,59.378,,,,,,144,47,0,,,,, +16,7,3,267,512,59.637,,,,,,176,102,0,,,,, +16,5,1,265,384,60.154,,,,,,144,94,0,,,,, +16,9,1,268,768,60.154,,,,,,176,102,0,,,,, +16,10,2,269,768,60.154,,,,,,176,102,0,,,,, +16,8,0,270,768,60.154,,,,,,176,64,127,,,,,V +16,11,1,271,1024,60.672,,,,,,176,102,0,,,,, +16,12,2,272,1024,60.672,1024,1,C#5,fff,24,144,73,23,,,,, +16,13,3,273,1024,60.672,256,4,A#3,f,20,144,58,20,,,,, +16,14,1,274,1109,60.843,171,4,E5,p,11,144,76,11,,,,, +16,14,1,274,1109,61.189,,,,,,144,76,0,,,,, +16,15,1,275,1280,61.189,,,,,,176,102,0,,,,, +16,16,3,276,1280,61.189,85,8,A#3,,,,,,,,,, +16,17,1,277,1365,61.361,171,4,C#7,ff,22,144,97,22,,,,, +16,18,3,278,1365,61.361,171,4,F#1,f,20,144,30,20,,,,, +16,13,3,273,1024,61.361,,,,,,144,58,0,,,,, +16,17,1,277,1365,61.706,,,,,,144,97,0,,,,, +16,18,3,278,1365,61.706,,,,,,144,30,0,,,,, +16,19,1,279,1536,61.706,,,,,,176,102,0,,,,, +16,20,3,280,1536,61.706,,,,,,176,102,0,,,,, +16,21,3,281,1706,62.05,342,2,G3,mp,14,144,55,14,,,,, +16,22,0,282,2047,62.538,,,,,,176,64,0,,,,,^ +16,21,3,281,1706,62.741,,,,,,144,55,0,,,,, +17,0,0,283,0,62.741,,,,,,,,,17,,,, +17,1,0,284,0,62.741,,,,,,,,,,5921,,, +17,2,1,285,0,62.741,,,,,,176,102,0,,,,, +17,3,2,286,0,62.741,,,,,,176,102,0,,,,, +17,4,3,287,0,62.741,128,8,A#2,p,11,144,46,11,,,,, +17,5,4,288,0,62.741,512,2,G#1,mf,17,144,32,17,,,,, +17,6,4,289,0,62.741,512,2,F#2,pp,8,144,42,8,,,,, +16,12,2,272,1024,62.741,,,,,,144,73,0,,,,, +14,23,3,226,768,62.741,,,,,,144,34,0,,,,, +17,7,1,290,128,62.999,128,8,D2,pp,8,144,38,8,,,,, +17,8,2,291,128,62.999,,,,,,176,102,0,,,,, +17,9,3,292,128,62.999,128,8,A#2,,,,,,,,,, +17,10,3,293,128,62.999,128,8,D3,pp,8,144,50,8,,,,, +17,4,3,287,0,63.258,,,,,,144,46,0,,,,, +17,7,1,290,128,63.258,,,,,,144,38,0,,,,, +17,11,1,294,256,63.258,256,4,F#1,mp,14,144,30,14,,,,, +17,12,2,295,256,63.258,,,,,,176,102,0,,,,, +17,13,3,296,256,63.258,128,8,D3,,,,,,,,,, +17,10,3,293,128,63.516,,,,,,144,50,0,,,,, +17,14,3,297,384,63.516,,,,,,176,102,0,,,,, +17,11,1,294,256,63.775,,,,,,144,30,0,,,,, +17,15,1,298,512,63.775,512,2,E4,f,20,144,64,20,,,,, +17,16,2,299,512,63.775,,,,,,176,102,0,,,,, +17,17,3,300,512,63.775,,,,,,176,102,0,,,,, +17,18,4,301,512,63.775,128,8,G#1,,,,,,,,,, +17,19,4,302,512,63.775,128,8,F#2,,,,,,,,,, +17,5,4,288,0,64.034,,,,,,144,32,0,,,,, +17,6,4,289,0,64.034,,,,,,144,42,0,,,,, +17,20,4,303,640,64.034,128,8,C#3,ppp-,4,144,49,4,,,,, +17,20,4,303,640,64.292,,,,,,144,49,0,,,,, +17,21,2,304,768,64.292,128,8,F#4,ppp,5,144,66,5,,,,, +17,22,4,305,768,64.292,256,4,G2,f,20,144,43,20,,,,, +17,21,2,304,768,64.551,,,,,,144,66,0,,,,, +17,24,2,306,896,64.551,64,16,D#5,ppp,5,144,75,5,,,,, +17,23,0,307,896,64.551,,,,,,176,64,127,,,,,V +17,24,2,306,896,64.68,,,,,,144,75,0,,,,, +17,25,2,308,960,64.68,64,16,F7,p,11,144,101,11,,,,, +17,15,1,298,512,64.809,,,,,,144,64,0,,,,, +17,22,4,305,768,64.809,,,,,,144,43,0,,,,, +17,25,2,308,960,64.809,,,,,,144,101,0,,,,, +18,0,0,309,0,64.809,,,,,,,,,18,,,, +18,1,0,310,0,64.809,,,,,,,,,,,174,, +18,2,1,311,0,64.809,128,8,D7,mf-,16,144,98,16,,,,, +18,3,3,312,0,64.809,,,,,,176,102,0,,,,, +18,4,0,313,128,64.832,,,,,,176,64,0,,,,,^ +18,2,1,311,0,64.982,,,,,,144,98,0,,,,, +18,5,1,314,128,64.982,192,8,F#4,p,11,144,66,11,,,,, +18,4,0,315,128,65.132,,,,,,176,64,127,,,,,V +18,5,1,314,128,65.241,,,,,,144,66,0,,,,, +19,0,0,316,0,65.241,,,,,,,,,19,,,, +19,1,0,317,0,65.241,,,,,,,,,,,116,, +19,2,1,318,0,65.241,,,,,,176,102,0,,,,, +19,3,3,319,0,65.241,128,8,B2,mp+,15,144,47,15,,,,, +19,3,3,319,0,65.499,,,,,,144,47,0,,,,, +19,4,3,320,128,65.499,128,8,G#3,mf+,18,144,56,18,,,,, +19,4,3,320,128,65.758,,,,,,144,56,0,,,,, +19,5,3,321,256,65.758,128,8,D2,ff,22,144,38,22,,,,, +19,5,3,321,256,66.016,,,,,,144,38,0,,,,, +19,6,3,322,384,66.016,128,8,A#5,ff,22,144,82,22,,,,, +19,6,3,322,384,66.275,,,,,,144,82,0,,,,, +20,0,0,323,0,66.275,,,,,,,,,20,,,, +20,2,0,324,0,66.275,,,,,,176,64,0,,,,,^ +20,1,0,325,0,66.275,,,,,,,,,,5922,,, +20,3,1,326,0,66.275,,,,,,176,102,0,,,,, +20,4,2,327,0,66.275,512,2,G#4,ff,22,144,68,22,,,,, +20,5,3,328,0,66.275,,,,,,176,102,0,,,,, +20,6,4,329,0,66.275,256,4,B1,ppp,5,144,35,5,,,,, +20,7,1,330,96,66.469,32,32,F5,pp,8,144,77,8,,,,, +20,7,1,330,96,66.534,,,,,,144,77,0,,,,, +20,8,1,331,128,66.534,16,64,F#2,ppp+,6,144,42,6,,,,, +20,8,1,331,128,66.566,,,,,,144,42,0,,,,, +20,9,1,332,144,66.566,16,64,C#3,ppp+,6,144,49,6,,,,, +20,9,1,332,144,66.598,,,,,,144,49,0,,,,, +20,10,1,333,160,66.598,96,16,D#5,ppp,5,144,75,5,,,,, +20,11,1,334,256,66.792,128,8,D#5,,,,,,,,,, +20,12,3,335,256,66.792,512,2,A#2,ff,22,144,46,22,,,,, +20,13,4,336,256,66.792,,,,,,176,102,0,,,,, +20,6,4,329,0,66.792,,,,,,144,35,0,,,,, +20,14,4,337,341,66.964,85,8,E3,p,11,144,52,11,,,,, +20,10,1,333,160,67.051,,,,,,144,75,0,,,,, +20,15,1,338,384,67.051,,,,,,176,102,0,,,,, +20,14,4,337,341,67.136,,,,,,144,52,0,,,,, +20,17,4,339,426,67.136,86,8,A#3,p+,12,144,58,12,,,,, +20,16,0,340,426,67.136,,,,,,176,64,127,,,,,V +20,17,4,339,426,67.309,,,,,,144,58,0,,,,, +20,18,1,341,512,67.309,1536,1,C6,mf,17,144,84,17,,,,, +20,19,2,342,512,67.309,768,2,G#4,,,,,,,,,, +20,20,4,343,512,67.309,,,,,,176,102,0,,,,, +20,21,3,344,768,67.827,85,8,A#2,,,,,,,,,, +20,22,3,345,768,67.827,128,8,D3,pp,8,144,50,8,,,,, +20,23,4,346,768,67.827,256,4,C1,pp,8,144,24,8,,,,, +20,12,3,335,256,67.998,,,,,,144,46,0,,,,, +20,24,3,347,853,67.998,85,8,A4,f,20,144,69,20,,,,, +20,22,3,345,768,68.085,,,,,,144,50,0,,,,, +20,24,3,347,853,68.17,,,,,,144,69,0,,,,, +20,25,3,348,938,68.17,171,4,E5,fff,24,144,76,23,,,,, +20,23,4,346,768,68.344,,,,,,144,24,0,,,,, +20,26,4,349,1024,68.344,,,,,,176,102,0,,,,, +20,25,3,348,938,68.516,,,,,,144,76,0,,,,, +20,27,3,350,1109,68.516,171,4,D7,fff,24,144,98,23,,,,, +20,28,0,351,1280,68.711,,,,,,176,64,0,,,,,^ +20,4,2,327,0,68.861,,,,,,144,68,0,,,,, +20,27,3,350,1109,68.861,,,,,,144,98,0,,,,, +20,29,2,352,1280,68.861,768,2,F#5,fff,24,144,78,23,,,,, +20,30,3,353,1280,68.861,256,4,D5,fff,24,144,74,23,,,,, +20,28,0,354,1280,69.011,,,,,,176,64,127,,,,,V +20,30,3,353,1280,69.378,,,,,,144,74,0,,,,, +20,31,3,355,1536,69.378,,,,,,176,102,0,,,,, +20,32,0,356,2047,70.411,,,,,,176,64,0,,,,,^ +20,18,1,341,512,70.413,,,,,,144,84,0,,,,, +21,0,0,357,0,70.413,,,,,,,,,21,,,, +21,1,1,358,0,70.413,,,,,,176,102,0,,,,, +21,2,2,359,0,70.413,1792,1,F#5,,,,,,,,,, +21,3,3,360,0,70.413,256,4,A#1,mp,14,144,34,14,,,,, +21,4,3,361,0,70.413,256,4,G#2,mp,14,144,44,14,,,,, +21,5,4,362,0,70.413,,,,,,176,102,0,,,,, +21,3,3,360,0,70.93,,,,,,144,34,0,,,,, +21,4,3,361,0,70.93,,,,,,144,44,0,,,,, +21,6,3,363,256,70.93,,,,,,176,102,0,,,,, +21,7,0,364,288,70.995,,,,,,176,64,127,,,,,V +21,9,3,365,,71.072,,8,F#1,f,20,144,30,20,,,,g, +21,9,3,365,,71.122,,,,,,144,30,0,,,,, +21,10,3,366,,71.147,,8,G3,mf+,18,144,55,18,,,,g, +21,10,3,366,,71.197,,,,,,144,55,0,,,,, +21,11,3,367,,71.222,,8,A#2,mp+,15,144,46,15,,,,g, +21,11,3,367,,71.272,,,,,,144,46,0,,,,, +21,12,3,368,,71.297,,8,F#1,p+,12,144,30,12,,,,g, +21,12,3,368,,71.347,,,,,,144,30,0,,,,, +21,13,3,369,,71.372,,8,D6,p-,10,144,86,10,,,,g, +21,13,3,369,,71.422,,,,,,144,86,0,,,,, +21,8,0,370,512,71.447,,,,,,176,64,0,,,,,^ +21,14,3,371,512,71.447,,,,,,176,102,0,,,,, +21,15,4,372,512,71.447,1536,1,A#1,pp,8,144,34,8,,,,, +21,16,3,373,1024,72.482,,,,,,176,102,0,,,,, +21,17,3,374,1194,72.825,86,8,F#3,p,11,144,54,11,,,,, +21,18,3,375,1194,72.825,128,8,A3,p,11,144,57,11,,,,, +21,19,3,376,1280,72.999,512,2,F#3,,,,,,,,,, +21,20,3,377,1280,72.999,512,2,A3,,,,,,,,,, +21,21,1,378,1536,73.516,,,,,,176,102,0,,,,, +21,22,1,379,1621,73.688,171,4,G#3,p,11,144,56,11,,,,, +20,29,2,352,1280,74.034,,,,,,144,78,0,,,,, +21,23,1,380,1792,74.034,170,4,G#3,,,,,,,,,, +21,24,2,381,1792,74.034,,,,,,176,102,0,,,,, +21,25,3,382,1792,74.034,170,4,B2,ppp,5,144,47,5,,,,, +21,26,3,383,1792,74.034,256,4,F#3,,,,,,,,,, +21,27,3,384,1792,74.034,256,4,A3,,,,,,,,,, +21,22,1,379,1621,74.377,,,,,,144,56,0,,,,, +21,28,1,385,1962,74.377,,,,,,176,102,0,,,,, +21,29,3,386,1962,74.377,86,8,B2,,,,,,,,,, +21,30,3,387,1962,74.377,128,8,F#3,,,,,,,,,, +21,31,2,388,1984,74.422,32,32,C#2,pp,8,144,37,8,,,,, +21,31,2,388,1984,74.486,,,,,,144,37,0,,,,, +21,32,2,389,2016,74.486,32,32,F4,pp,8,144,65,8,,,,, +21,32,2,389,2016,74.551,,,,,,144,65,0,,,,, +22,0,0,390,0,74.551,,,,,,,,,22,,,, +22,1,1,391,0,74.551,,,,,,176,102,0,,,,, +22,2,3,392,0,74.551,768,2,B2,,,,,,,,,, +22,3,3,393,0,74.551,512,2,F#3,,,,,,,,,, +22,4,4,394,0,74.551,768,2,A#1,,,,,,,,,, +21,18,3,375,1194,74.636,,,,,,144,57,0,,,,, +21,17,3,374,1194,75.844,,,,,,144,54,0,,,,, +22,5,3,395,768,76.103,1536,1,B2,,,,,,,,,, +22,6,3,396,768,76.103,1024,1,D3,ppp,5,144,50,5,,,,, +22,7,4,397,768,76.103,1536,1,A#1,,,,,,,,,, +22,6,3,396,768,78.172,,,,,,144,50,0,,,,, +23,0,0,398,0,79.206,,,,,,,,,23,,,, +23,1,0,399,0,79.206,,,,,,,,,,,112,, +23,2,0,400,0,79.206,,,,,,,,,,5923,,, +23,3,0,401,0,79.206,,,,,,,,,,,112,, +23,5,1,402,0,79.206,512,2,A#6,fff,24,144,94,23,,,,, +23,6,2,403,0,79.206,1536,1,D#4,ppp,5,144,63,5,,,,, +23,7,3,404,0,79.206,,,,,,176,102,0,,,,, +23,8,4,405,0,79.206,,,,,,176,102,0,,,,, +23,4,0,406,0,79.206,,,,,,176,64,127,,,,,V +21,25,3,382,1792,79.206,,,,,,144,47,0,,,,, +21,15,4,372,512,79.206,,,,,,144,34,0,,,,, +23,9,4,407,256,79.742,1024,1,A1,ff,22,144,33,22,,,,, +23,10,3,408,384,80.01,128,8,A#3,mf,17,144,58,17,,,,, +23,10,3,408,384,80.277,,,,,,144,58,0,,,,, +23,11,1,409,512,80.277,128,8,A#6,,,,,,,,,, +23,12,3,410,512,80.277,2048,0.5,E3,mf+,18,144,52,18,,,,, +23,13,0,411,640,80.395,,,,,,176,64,0,,,,,^ +23,5,1,402,0,80.545,,,,,,144,94,0,,,,, +23,14,1,412,640,80.545,128,8,D2,f,20,144,38,20,,,,, +23,13,0,413,640,80.695,,,,,,176,64,127,,,,,V +23,15,1,414,768,80.813,512,2,D2,,,,,,,,,, +23,14,1,412,640,81.885,,,,,,144,38,0,,,,, +23,16,1,415,1280,81.885,,,,,,176,102,0,,,,, +23,17,4,416,1280,81.885,128,8,A1,,,,,,,,,, +23,18,0,417,1408,82.152,,,,,,176,64,0,,,,,^ +23,19,4,418,1408,82.152,128,8,G6,ff,22,144,91,22,,,,, +23,9,4,407,256,82.152,,,,,,144,33,0,,,,, +23,19,4,418,1408,82.42,,,,,,144,91,0,,,,, +23,20,1,419,1536,82.42,,,,,,176,102,0,,,,, +23,21,2,420,1536,82.42,,,,,,176,102,0,,,,, +23,22,4,421,1536,82.42,,,,,,176,102,0,,,,, +23,6,2,403,0,82.42,,,,,,144,63,0,,,,, +23,23,2,422,1664,82.688,42,16,C#2,mp,14,144,37,14,,,,, +23,23,2,422,1664,82.776,,,,,,144,37,0,,,,, +23,24,2,423,1706,82.776,43,16,B1,mp,14,144,35,14,,,,, +23,24,2,423,1706,82.866,,,,,,144,35,0,,,,, +23,25,2,424,1749,82.866,43,16,F6,mp,14,144,89,14,,,,, +23,25,2,424,1749,82.956,,,,,,144,89,0,,,,, +23,26,1,425,1792,82.956,,,,,,176,102,0,,,,, +23,27,2,426,1792,82.956,76,16,A4,mp,14,144,69,14,,,,, +23,27,2,426,1792,83.115,,,,,,144,69,0,,,,, +23,29,2,427,1868,83.115,77,16,D4,mf,17,144,62,17,,,,, +23,28,0,428,1868,83.115,,,,,,176,64,127,,,,,V +23,30,1,429,1920,83.224,64,16,D5,p,11,144,74,11,,,,, +23,29,2,427,1868,83.276,,,,,,144,62,0,,,,, +23,31,2,430,1945,83.276,77,16,C#3,f-,19,144,49,19,,,,, +23,32,1,431,1984,83.358,64,16,F3,ff,22,144,53,22,,,,, +23,33,1,432,1984,83.358,64,16,D5,,,,,,,,,, +23,31,2,430,1945,83.437,,,,,,144,49,0,,,,, +23,34,2,433,2022,83.437,26,32,G#2,pp,8,144,44,8,,,,, +23,35,2,434,2022,83.437,32,32,F7,ff,22,144,101,22,,,,, +23,30,1,429,1920,83.492,,,,,,144,74,0,,,,, +23,34,2,433,2022,83.492,,,,,,144,44,0,,,,, +23,36,1,435,2048,83.492,512,2,F3,,,,,,,,,, +23,37,1,436,2048,83.492,512,2,C4,ff,22,144,60,22,,,,, +23,38,1,437,2048,83.492,512,2,E6,pp,8,144,88,8,,,,, +23,39,2,438,2048,83.492,,,,,,176,102,0,,,,, +23,40,4,439,2048,83.492,,,,,,176,102,0,,,,, +23,35,2,434,2022,83.504,,,,,,144,101,0,,,,, +23,41,4,440,2099,83.598,77,16,B2,f,20,144,47,20,,,,, +23,42,4,441,2099,83.598,64,16,D5,f,20,144,74,20,,,,, +23,43,0,442,2176,83.61,,,,,,176,64,0,,,,,^ +23,42,4,441,2099,83.732,,,,,,144,74,0,,,,, +23,41,4,440,2099,83.76,,,,,,144,47,0,,,,, +23,44,4,443,2176,83.76,64,16,D3,mp,14,144,50,14,,,,, +23,45,4,444,2240,83.894,64,16,C2,pp,8,144,36,8,,,,, +23,46,4,445,2240,83.894,64,16,D3,,,,,,,,,, +23,43,0,446,2176,83.91,,,,,,176,64,127,,,,,V +23,44,4,443,2176,84.027,,,,,,144,50,0,,,,, +23,45,4,444,2240,84.027,,,,,,144,36,0,,,,, +23,47,2,447,2304,84.027,128,8,A4,ff,22,144,69,22,,,,, +23,48,4,448,2304,84.027,,,,,,176,102,0,,,,, +23,47,2,447,2304,84.295,,,,,,144,69,0,,,,, +23,49,2,449,2432,84.295,128,8,F7,ff,22,144,101,22,,,,, +23,50,0,450,2559,84.561,,,,,,176,64,0,,,,,^ +23,49,2,449,2432,84.563,,,,,,144,101,0,,,,, +24,0,0,451,0,84.563,,,,,,,,,24,,,, +24,1,0,452,0,84.563,,,,,,,,,,5924,,, +24,2,1,453,0,84.563,170,4,E2,p,11,144,40,11,,,,, +24,3,2,454,0,84.563,1024,1,F#5,p,11,144,78,11,,,,, +24,4,2,455,0,84.563,1024,1,C6,ff,22,144,84,22,,,,, +24,5,3,456,0,84.563,256,4,G1,p,11,144,31,11,,,,, +24,6,4,457,0,84.563,768,2,C#2,f,20,144,37,20,,,,, +23,32,1,431,1984,84.563,,,,,,144,53,0,,,,, +23,37,1,436,2048,84.563,,,,,,144,60,0,,,,, +23,38,1,437,2048,84.563,,,,,,144,88,0,,,,, +23,12,3,410,512,84.563,,,,,,144,52,0,,,,, +24,2,1,453,0,84.919,,,,,,144,40,0,,,,, +24,8,1,458,170,84.919,171,4,F#6,p,11,144,90,11,,,,, +24,7,0,459,170,84.919,,,,,,176,64,127,,,,,V +24,9,3,460,256,85.099,,,,,,176,102,0,,,,, +24,5,3,456,0,85.099,,,,,,144,31,0,,,,, +24,8,1,458,170,85.277,,,,,,144,90,0,,,,, +24,10,1,461,341,85.277,43,16,A5,pp,8,144,81,8,,,,, +24,10,1,461,341,85.367,,,,,,144,81,0,,,,, +24,11,1,462,384,85.367,42,16,F#7,pp,8,144,102,8,,,,, +24,11,1,462,384,85.455,,,,,,144,102,0,,,,, +24,12,1,463,426,85.455,86,8,G#3,p,11,144,56,11,,,,, +24,12,1,463,426,85.635,,,,,,144,56,0,,,,, +24,13,1,464,512,85.635,341,2,A4,f,20,144,69,20,,,,, +24,14,3,465,512,85.635,,,,,,176,102,0,,,,, +24,15,4,466,768,86.17,128,8,C#2,,,,,,,,,, +24,13,1,464,512,86.348,,,,,,144,69,0,,,,, +24,16,1,467,853,86.348,341,2,C4,mf,17,144,60,17,,,,, +24,17,4,468,896,86.438,128,8,B1,p,11,144,35,11,,,,, +24,6,4,457,0,86.438,,,,,,144,37,0,,,,, +24,18,2,469,1024,86.706,512,2,A5,ppp,5,144,81,5,,,,, +24,19,2,470,1024,86.706,512,2,D#6,ppp,5,144,87,5,,,,, +24,20,2,471,1024,86.706,512,2,C#7,ff,22,144,97,22,,,,, +24,21,3,472,1024,86.706,,,,,,176,102,0,,,,, +24,22,4,473,1024,86.706,512,2,B1,,,,,,,,,, +24,3,2,454,0,86.706,,,,,,144,78,0,,,,, +24,4,2,455,0,86.706,,,,,,144,84,0,,,,, +24,23,1,474,1194,87.062,342,2,E2,mp-,13,144,40,13,,,,, +24,16,1,467,853,87.062,,,,,,144,60,0,,,,, +24,24,0,475,1536,87.627,,,,,,176,64,0,,,,,^ +24,18,2,469,1024,87.777,,,,,,144,81,0,,,,, +24,19,2,470,1024,87.777,,,,,,144,87,0,,,,, +24,20,2,471,1024,87.777,,,,,,144,97,0,,,,, +24,23,1,474,1194,87.777,,,,,,144,40,0,,,,, +24,25,1,476,1536,87.777,,,,,,176,102,0,,,,, +24,26,2,477,1536,87.777,85,8,G#2,p,11,144,44,11,,,,, +24,27,3,478,1536,87.777,,,,,,176,102,0,,,,, +24,28,4,479,1536,87.777,256,4,B1,,,,,,,,,, +24,24,0,480,1536,87.927,,,,,,176,64,127,,,,,V +24,26,2,477,1536,87.955,,,,,,144,44,0,,,,, +24,29,2,481,1621,87.955,171,4,F#6,p+,12,144,90,12,,,,, +24,29,2,481,1621,88.313,,,,,,144,90,0,,,,, +24,30,1,482,1792,88.313,768,2,A4,ff,22,144,69,22,,,,, +24,31,2,483,1792,88.313,170,4,C4,ff,22,144,60,22,,,,, +24,32,3,484,1792,88.313,512,2,G#3,ppp,5,144,56,5,,,,, +24,33,4,485,1792,88.313,,,,,,176,102,0,,,,, +24,17,4,468,896,88.313,,,,,,144,35,0,,,,, +24,30,1,482,1792,88.669,,,,,,144,69,0,,,,, +24,31,2,483,1792,88.669,,,,,,144,60,0,,,,, +24,34,2,486,1962,88.669,171,4,A4,f,20,144,69,20,,,,, +24,35,2,487,2133,89.027,43,16,E3,mf,17,144,52,17,,,,, +24,35,2,487,2133,89.117,,,,,,144,52,0,,,,, +24,36,2,488,2176,89.117,85,8,F#5,mf,17,144,78,17,,,,, +24,36,2,488,2176,89.295,,,,,,144,78,0,,,,, +24,37,2,489,2261,89.295,43,16,G#1,mf,17,144,32,17,,,,, +24,38,2,490,2304,89.385,128,8,G#1,,,,,,,,,, +24,39,3,491,2304,89.385,128,8,G#3,,,,,,,,,, +24,37,2,489,2261,89.652,,,,,,144,32,0,,,,, +24,40,2,492,2432,89.652,128,8,D4,ppp,5,144,62,5,,,,, +24,41,3,493,2432,89.652,128,8,C3,pp,8,144,48,8,,,,, +24,42,3,494,2432,89.652,128,8,G#3,,,,,,,,,, +24,40,2,492,2432,89.92,,,,,,144,62,0,,,,, +25,0,0,495,0,89.92,,,,,,,,,25,,,, +25,1,0,496,0,89.92,,,,,,176,64,0,,,,,^ +25,2,1,497,0,89.92,512,2,A4,,,,,,,,,, +25,3,2,498,0,89.92,,,,,,176,102,0,,,,, +25,4,3,499,0,89.92,128,8,C3,,,,,,,,,, +25,5,3,500,0,89.92,128,8,G#3,,,,,,,,,, +25,6,4,501,0,89.92,1024,1,A#1,pp-,7,144,34,7,,,,, +25,7,3,502,128,90.188,128,8,E2,ppp,5,144,40,5,,,,, +25,8,3,503,128,90.188,128,8,G#3,,,,,,,,,, +24,41,3,493,2432,90.188,,,,,,144,48,0,,,,, +25,9,3,504,256,90.456,384,4,E2,,,,,,,,,, +25,10,3,505,256,90.456,256,4,G#3,,,,,,,,,, +25,11,1,506,512,90.992,128,8,A4,,,,,,,,,, +24,32,3,484,1792,90.992,,,,,,144,56,0,,,,, +25,7,3,502,128,91.26,,,,,,144,40,0,,,,, +25,12,1,507,640,91.26,384,4,A4,pp,8,144,69,8,,,,, +25,13,1,508,640,91.26,256,4,C6,pp,8,144,84,8,,,,, +25,14,3,509,640,91.26,,,,,,176,102,0,,,,, +24,34,2,486,1962,91.26,,,,,,144,69,0,,,,, +25,15,3,510,768,91.527,,,,,,176,102,0,,,,, +25,16,1,511,1024,92.063,1024,1,A4,,,,,,,,,, +25,17,1,512,1024,92.063,1024,1,C6,,,,,,,,,, +25,18,2,513,1024,92.063,,,,,,176,102,0,,,,, +25,19,3,514,1024,92.063,,,,,,176,102,0,,,,, +25,20,4,515,1024,92.063,1536,1,A#1,,,,,,,,,, +25,21,3,516,1280,92.599,,,,,,176,102,0,,,,, +25,22,2,517,1536,93.135,512,2,G#2,mp,14,144,44,14,,,,, +25,23,3,518,1536,93.135,256,4,C#1,ppp,5,144,25,5,,,,, +25,24,3,519,1792,93.67,128,8,C#1,,,,,,,,,, +25,13,1,508,640,93.938,,,,,,144,84,0,,,,, +25,23,3,518,1536,93.938,,,,,,144,25,0,,,,, +25,25,3,520,1920,93.938,42,16,A#2,ppp,5,144,46,5,,,,, +25,25,3,520,1920,94.026,,,,,,144,46,0,,,,, +25,26,3,521,1962,94.026,43,16,C#2,ppp+,6,144,37,6,,,,, +25,26,3,521,1962,94.116,,,,,,144,37,0,,,,, +25,28,3,522,2005,94.116,43,16,E6,pp,8,144,88,8,,,,, +25,12,1,507,640,94.206,,,,,,144,69,0,,,,, +25,22,2,517,1536,94.206,,,,,,144,44,0,,,,, +25,27,2,523,2048,94.206,,,,,,176,102,0,,,,, +25,29,1,524,,94.206,,8,E3,mf,17,144,52,17,,,,g, +25,29,1,524,,94.256,,,,,,144,52,0,,,,, +25,30,1,525,2048,94.281,341,2,A#3,mf,17,144,58,17,,,,, +25,31,3,526,2048,94.281,512,2,E6,,,,,,,,,, +25,30,1,525,2048,94.995,,,,,,144,58,0,,,,, +25,32,1,527,2389,94.995,171,4,A#2,mp,14,144,46,14,,,,, +25,6,4,501,0,95.277,,,,,,144,34,0,,,,, +25,28,3,522,2005,95.277,,,,,,144,88,0,,,,, +26,0,0,528,0,95.352,,,,,,,,,26,,,, +26,1,1,529,0,95.352,256,4,A#2,,,,,,,,,, +26,2,2,530,0,95.352,,,,,,176,102,0,,,,, +26,3,3,531,0,95.352,,,,,,176,102,0,,,,, +26,4,4,532,0,95.352,512,2,F#3,p,11,144,54,11,,,,, +26,5,1,533,256,95.888,1024,1,G#3,pp,8,144,56,8,,,,, +26,6,3,534,256,95.888,512,2,F#1,p,11,144,30,11,,,,, +25,32,1,527,2389,95.963,,,,,,144,46,0,,,,, +26,7,4,535,512,96.424,512,2,C1,p,11,144,24,11,,,,, +26,4,4,532,0,96.499,,,,,,144,54,0,,,,, +26,6,3,534,256,96.96,,,,,,144,30,0,,,,, +26,8,3,536,768,96.96,256,4,G2,ppp,5,144,43,5,,,,, +26,7,4,535,512,97.495,,,,,,144,24,0,,,,, +26,8,3,536,768,97.495,,,,,,144,43,0,,,,, +26,9,2,537,1024,97.495,,,,,,176,102,0,,,,, +26,10,3,538,1024,97.495,,,,,,176,102,0,,,,, +26,11,4,539,1024,97.495,,,,,,176,102,0,,,,, +26,13,2,540,1152,97.763,128,8,F#4,pp,8,144,66,8,,,,, +26,14,2,541,1152,97.763,128,8,D#5,pp,8,144,75,8,,,,, +26,15,2,542,1152,97.763,128,8,C#7,pp,8,144,97,8,,,,, +26,12,0,543,1152,97.763,,,,,,176,64,127,,,,,V +26,14,2,541,1152,98.031,,,,,,144,75,0,,,,, +26,15,2,542,1152,98.031,,,,,,144,97,0,,,,, +26,16,1,544,1280,98.031,128,8,G#3,,,,,,,,,, +26,17,2,545,1280,98.031,128,8,F#4,,,,,,,,,, +26,18,4,546,1280,98.031,128,8,F#1,pp,8,144,30,8,,,,, +26,5,1,533,256,98.299,,,,,,144,56,0,,,,, +26,18,4,546,1280,98.299,,,,,,144,30,0,,,,, +26,19,0,547,1408,98.299,,,,,,176,64,0,,,,,^ +26,20,1,548,1408,98.299,128,8,C5,ppp,5,144,72,5,,,,, +26,21,2,549,1408,98.299,128,8,G#3,p,11,144,56,11,,,,, +26,22,4,550,1408,98.299,,,,,,176,102,0,,,,, +26,13,2,540,1152,98.299,,,,,,144,66,0,,,,, +26,20,1,548,1408,98.567,,,,,,144,72,0,,,,, +26,23,1,551,1536,98.567,,,,,,176,102,0,,,,, +26,24,2,552,1536,98.567,256,4,G#3,,,,,,,,,, +26,25,4,553,1536,98.567,,,,,,176,102,0,,,,, +26,26,4,554,1600,98.701,192,8,A#1,p,11,144,34,11,,,,, +26,26,4,554,1600,99.102,,,,,,144,34,0,,,,, +26,27,1,555,1792,99.102,512,2,E4,mf,17,144,64,17,,,,, +26,28,2,556,1792,99.102,,,,,,176,102,0,,,,, +26,29,4,557,1792,99.102,256,4,B2,p,11,144,47,11,,,,, +26,21,2,549,1408,99.102,,,,,,144,56,0,,,,, +26,30,2,558,2048,99.638,,,,,,176,102,0,,,,, +26,31,3,559,2048,99.638,,,,,,176,102,0,,,,, +26,32,4,560,2048,99.638,128,8,B2,,,,,,,,,, +26,39,3,561,,99.724,,8,E5,ppp,5,144,76,5,,,,g, +26,39,3,561,,99.774,,,,,,144,76,0,,,,, +26,40,3,562,,99.799,,8,C#2,ppp+,6,144,37,6,,,,g, +26,33,3,563,2133,99.816,171,4,D3,p,11,144,50,11,,,,, +26,40,3,562,,99.849,,,,,,144,37,0,,,,, +26,41,3,564,,99.874,,8,G#3,pp,8,144,56,8,,,,g, +26,29,4,557,1792,99.906,,,,,,144,47,0,,,,, +26,34,4,565,2176,99.906,128,8,D2,p,11,144,38,11,,,,, +26,41,3,564,,99.924,,,,,,144,56,0,,,,, +26,42,3,566,,99.949,,8,A#2,p-,10,144,46,10,,,,g, +26,42,3,566,,99.999,,,,,,144,46,0,,,,, +26,43,3,567,,100.024,,8,C5,p,11,144,72,11,,,,g, +26,43,3,567,,100.074,,,,,,144,72,0,,,,, +26,44,3,568,,100.099,,8,C#1,pp,8,144,25,8,,,,g, +26,44,3,568,,100.149,,,,,,144,25,0,,,,, +26,27,1,555,1792,100.174,,,,,,144,64,0,,,,, +26,33,3,563,2133,100.174,,,,,,144,50,0,,,,, +26,36,1,569,2304,100.174,256,4,D6,p,11,144,86,11,,,,, +26,37,3,570,2304,100.174,,,,,,176,102,0,,,,, +26,38,4,571,2304,100.174,256,4,D2,,,,,,,,,, +26,35,0,572,2304,100.174,,,,,,176,64,127,,,,,V +26,34,4,565,2176,100.71,,,,,,144,38,0,,,,, +26,36,1,569,2304,100.71,,,,,,144,86,0,,,,, +27,0,0,573,0,100.71,,,,,,,,,27,,,, +27,1,0,574,0,100.71,,,,,,,,,,5925,,, +27,2,1,575,0,100.71,256,4,E6,p,11,144,88,11,,,,, +27,3,2,576,0,100.71,512,2,F#3,p,11,144,54,11,,,,, +27,4,3,577,0,100.71,1024,1,G#3,ppp,5,144,56,5,,,,, +27,5,4,578,0,100.71,512,2,C3,ppp,5,144,48,5,,,,, +27,6,0,579,9,100.728,,,,,,176,64,0,,,,,^ +27,7,1,580,256,101.245,768,2,C6,p,11,144,84,11,,,,, +27,8,1,581,256,101.245,512,2,E6,,,,,,,,,, +27,3,2,576,0,101.781,,,,,,144,54,0,,,,, +27,9,2,582,512,101.781,512,2,D#4,pp,8,144,63,8,,,,, +27,10,4,583,512,101.781,64,16,C3,,,,,,,,,, +27,5,4,578,0,101.915,,,,,,144,48,0,,,,, +27,11,4,584,576,101.915,,,,,,176,102,0,,,,, +27,12,4,585,768,102.317,,,,,,176,102,0,,,,, +27,2,1,575,0,102.317,,,,,,144,88,0,,,,, +27,4,3,577,0,102.852,,,,,,144,56,0,,,,, +27,7,1,580,256,102.852,,,,,,144,84,0,,,,, +27,9,2,582,512,102.852,,,,,,144,63,0,,,,, +27,13,1,586,1024,102.852,,,,,,176,102,0,,,,, +27,14,2,587,1024,102.852,,,,,,176,102,0,,,,, +27,15,3,588,1024,102.852,,,,,,176,102,0,,,,, +27,16,4,589,1024,102.852,256,4,C1,ppp,5,144,24,5,,,,, +27,16,4,589,1024,103.388,,,,,,144,24,0,,,,, +27,17,4,590,1280,103.388,256,4,A#1,ppp,5,144,34,5,,,,, +27,18,2,591,1536,103.924,1024,1,F#4,ppp,5,144,66,5,,,,, +27,19,3,592,1536,103.924,256,4,G#2,ppp,5,144,44,5,,,,, +27,20,4,593,1536,103.924,1024,1,A#1,,,,,,,,,, +27,19,3,592,1536,104.46,,,,,,144,44,0,,,,, +27,21,3,594,1792,104.46,128,8,C4,pp-,7,144,60,7,,,,, +27,21,3,594,1792,104.727,,,,,,144,60,0,,,,, +27,22,3,595,1920,104.727,,,,,,176,102,0,,,,, +27,24,3,596,2005,104.905,43,16,A#2,ppp,5,144,46,5,,,,, +27,23,0,597,2005,104.905,,,,,,176,64,127,,,,,V +27,24,3,596,2005,104.995,,,,,,144,46,0,,,,, +27,25,1,598,2048,104.995,256,4,F#6,ppp,5,144,90,5,,,,, +27,26,3,599,2048,104.995,42,16,F#1,ppp,5,144,30,5,,,,, +27,28,0,600,2133,105.023,,,,,,176,64,0,,,,,^ +27,26,3,599,2048,105.083,,,,,,144,30,0,,,,, +27,27,3,601,2090,105.083,43,16,G3,ppp,5,144,55,5,,,,, +27,27,3,601,2090,105.173,,,,,,144,55,0,,,,, +27,29,3,602,2133,105.173,43,16,D7,ppp,5,144,98,5,,,,, +27,29,3,602,2133,105.263,,,,,,144,98,0,,,,, +27,30,3,603,2176,105.263,128,8,A#2,ppp,5,144,46,5,,,,, +27,28,0,604,2133,105.323,,,,,,176,64,127,,,,,V +27,31,1,605,2304,105.531,256,4,E4,ppp,5,144,64,5,,,,, +27,32,1,606,2304,105.531,256,4,F#6,,,,,,,,,, +27,33,3,607,2304,105.531,128,8,A#2,,,,,,,,,, +27,34,0,608,2432,105.799,,,,,,176,64,0,,,,,^ +27,35,3,609,2432,105.799,85,8,E5,ppp,5,144,76,5,,,,, +27,30,3,603,2176,105.799,,,,,,144,46,0,,,,, +27,18,2,591,1536,105.977,,,,,,144,66,0,,,,, +27,36,3,610,2517,105.977,43,16,F#4,p,11,144,66,11,,,,, +27,37,3,611,2517,105.977,64,16,E5,,,,,,,,,, +28,0,0,612,0,106.067,,,,,,,,,28,,,, +28,1,1,613,0,106.067,64,16,A4,ppp,5,144,69,5,,,,, +28,2,2,614,0,106.067,,,,,,176,102,0,,,,, +28,3,3,615,0,106.067,64,16,F#4,,,,,,,,,, +28,4,4,616,0,106.067,256,4,F#2,ppp,5,144,42,5,,,,, +27,17,4,590,1280,106.067,,,,,,144,34,0,,,,, +27,25,1,598,2048,106.067,,,,,,144,90,0,,,,, +27,31,1,605,2304,106.067,,,,,,144,64,0,,,,, +27,35,3,609,2432,106.111,,,,,,144,76,0,,,,, +27,36,3,610,2517,106.201,,,,,,144,66,0,,,,, +28,1,1,613,0,106.201,,,,,,144,69,0,,,,, +28,6,1,617,64,106.201,,,,,,176,102,0,,,,, +28,7,2,618,64,106.201,,,,,,176,102,0,,,,, +28,8,3,619,64,106.201,,,,,,176,102,0,,,,, +28,5,0,620,64,106.201,,,,,,176,64,127,,,,,V +28,9,1,621,128,106.335,128,8,D7,ppp,5,144,98,5,,,,, +28,9,1,621,128,106.602,,,,,,144,98,0,,,,, +28,10,1,622,256,106.602,,,,,,176,102,0,,,,, +28,11,2,623,256,106.602,,,,,,176,102,0,,,,, +28,12,3,624,256,106.602,,,,,,176,102,0,,,,, +28,13,4,625,256,106.602,128,8,G3,ppp,5,144,55,5,,,,, +28,4,4,616,0,106.602,,,,,,144,42,0,,,,, +28,13,4,625,256,106.87,,,,,,144,55,0,,,,, +28,14,4,626,384,106.87,,,,,,176,102,0,,,,, +28,15,1,627,512,107.138,,,,,,176,102,0,,,,, +28,16,2,628,512,107.138,128,8,A#2,ppp,5,144,46,5,,,,, +28,17,3,629,512,107.138,512,2,D2,ppp,5,144,38,5,,,,, +28,18,4,630,512,107.138,128,8,E2,ppp,5,144,40,5,,,,, +28,16,2,628,512,107.406,,,,,,144,46,0,,,,, +28,18,4,630,512,107.406,,,,,,144,40,0,,,,, +28,19,2,631,640,107.406,128,8,D6,ppp+,6,144,86,6,,,,, +28,20,4,632,640,107.406,128,8,G#1,ppp+,6,144,32,6,,,,, +28,19,2,631,640,107.674,,,,,,144,86,0,,,,, +28,20,4,632,640,107.674,,,,,,144,32,0,,,,, +28,21,0,633,768,107.674,,,,,,176,64,0,,,,,^ +28,22,2,634,768,107.674,,,,,,176,102,0,,,,, +28,23,4,635,768,107.674,,,,,,176,102,0,,,,, +28,24,1,636,1024,108.21,,,,,,176,102,0,,,,, +28,25,2,637,1024,108.21,,,,,,176,102,0,,,,, +28,26,3,638,1024,108.21,1536,1,D2,,,,,,,,,, +28,27,4,639,1024,108.21,,,,,,176,102,0,,,,, +28,29,1,640,1194,108.565,86,8,D4,p,11,144,62,11,,,,, +28,28,0,641,1194,108.565,,,,,,176,64,127,,,,,V +28,29,1,640,1194,108.745,,,,,,144,62,0,,,,, +28,30,1,642,1280,108.745,85,8,C2,p+,12,144,36,12,,,,, +28,30,1,642,1280,108.923,,,,,,144,36,0,,,,, +28,31,1,643,1365,108.923,85,8,D#5,p,11,144,75,11,,,,, +28,31,1,643,1365,109.101,,,,,,144,75,0,,,,, +28,32,0,644,1450,109.101,,,,,,176,64,0,,,,,^ +28,33,1,645,1450,109.101,86,8,D4,p,11,144,62,11,,,,, +28,33,1,645,1450,109.281,,,,,,144,62,0,,,,, +28,34,1,646,1536,109.281,512,2,G#4,ppp,5,144,68,5,,,,, +28,35,4,647,1536,109.281,512,2,A#2,p,11,144,46,11,,,,, +28,34,1,646,1536,110.352,,,,,,144,68,0,,,,, +28,37,1,648,2048,110.352,,,,,,176,102,0,,,,, +28,38,2,649,2048,110.352,256,4,G#2,ppp,5,144,44,5,,,,, +28,39,4,650,2048,110.352,512,2,A#2,,,,,,,,,, +28,40,4,651,2048,110.352,512,2,B2,ppp,5,144,47,5,,,,, +28,41,4,652,2048,110.352,512,2,F#3,ppp,5,144,54,5,,,,, +28,36,0,653,2048,110.352,,,,,,176,64,127,,,,,V +28,42,1,654,2304,110.888,256,4,A4,ppp,5,144,69,5,,,,, +28,43,2,655,2304,110.888,64,16,G#2,,,,,,,,,, +28,38,2,649,2048,111.022,,,,,,144,44,0,,,,, +28,44,2,656,2368,111.022,192,8,F#6,ppp+,6,144,90,6,,,,, +28,45,0,657,2559,111.407,,,,,,176,64,0,,,,,^ +28,35,4,647,1536,111.424,,,,,,144,46,0,,,,, +28,40,4,651,2048,111.424,,,,,,144,47,0,,,,, +28,41,4,652,2048,111.424,,,,,,144,54,0,,,,, +29,0,0,658,0,111.424,,,,,,,,,29,,,, +29,1,1,659,0,111.424,,,,,,176,102,0,,,,, +29,2,2,660,0,111.424,128,8,F#6,,,,,,,,,, +29,3,3,661,0,111.424,,,,,,176,102,0,,,,, +29,4,4,662,0,111.424,,,,,,176,102,0,,,,, +29,5,0,663,0,111.424,,,,,,,,,,5926,,, +28,42,1,654,2304,111.424,,,,,,144,69,0,,,,, +28,17,3,629,512,111.424,,,,,,144,38,0,,,,, +29,7,2,664,128,111.692,,,,,,176,102,0,,,,, +29,8,4,665,128,111.692,128,8,C4,p,11,144,60,11,,,,, +28,44,2,656,2368,111.692,,,,,,144,90,0,,,,, +29,6,0,666,128,111.707,,,,,,176,64,127,,,,,V +29,9,1,667,256,111.96,,,,,,176,102,0,,,,, +29,10,2,668,256,111.96,,,,,,176,102,0,,,,, +29,11,3,669,256,111.96,,,,,,176,102,0,,,,, +29,12,4,670,256,111.96,192,8,C4,,,,,,,,,, +29,13,1,671,341,112.137,85,8,F#5,pp,8,144,78,8,,,,, +29,14,3,672,341,112.137,85,8,F#2,ppp,5,144,42,5,,,,, +29,13,1,671,341,112.315,,,,,,144,78,0,,,,, +29,14,3,672,341,112.315,,,,,,144,42,0,,,,, +29,15,1,673,426,112.315,86,8,D#6,pp+,9,144,87,9,,,,, +29,16,3,674,426,112.315,86,8,C2,ppp,5,144,36,5,,,,, +29,17,4,675,448,112.361,64,16,E2,ppp,5,144,40,5,,,,, +29,8,4,665,128,112.361,,,,,,144,60,0,,,,, +29,15,1,673,426,112.495,,,,,,144,87,0,,,,, +29,16,3,674,426,112.495,,,,,,144,36,0,,,,, +29,18,0,676,512,112.495,,,,,,176,64,0,,,,,^ +29,19,1,677,512,112.495,,,,,,176,102,0,,,,, +29,20,2,678,512,112.495,,,,,,176,102,0,,,,, +29,21,3,679,512,112.495,,,,,,176,102,0,,,,, +29,22,4,680,512,112.495,128,8,C2,mp,14,144,36,14,,,,, +29,23,4,681,512,112.495,128,8,E2,,,,,,,,,, +29,24,1,682,597,112.673,171,4,A4,pp+,9,144,69,9,,,,, +29,17,4,675,448,112.763,,,,,,144,40,0,,,,, +29,22,4,680,512,112.763,,,,,,144,36,0,,,,, +29,25,4,683,640,112.763,,,,,,176,102,0,,,,, +29,26,3,684,682,112.851,86,8,D4,mp,14,144,62,14,,,,, +29,24,1,682,597,113.031,,,,,,144,69,0,,,,, +29,26,3,684,682,113.031,,,,,,144,62,0,,,,, +29,27,1,685,768,113.031,85,8,E4,pp+,9,144,64,9,,,,, +29,28,3,686,768,113.031,85,8,F#4,mf,17,144,66,17,,,,, +29,29,3,687,768,113.031,128,8,A4,mf,17,144,69,17,,,,, +29,30,4,688,768,113.031,,,,,,176,102,0,,,,, +29,27,1,685,768,113.209,,,,,,144,64,0,,,,, +29,28,3,686,768,113.209,,,,,,144,66,0,,,,, +29,31,1,689,853,113.209,,,,,,176,102,0,,,,, +29,32,3,690,853,113.209,85,8,C2,f,20,144,36,20,,,,, +29,29,3,687,768,113.299,,,,,,144,69,0,,,,, +29,32,3,690,853,113.387,,,,,,144,36,0,,,,, +29,33,3,691,938,113.387,,,,,,176,102,0,,,,, +29,34,1,692,1024,113.567,256,4,G#4,pp+,9,144,68,9,,,,, +29,35,3,693,,113.567,,8,A#1,f,20,144,34,20,,,,g, +29,35,3,693,,113.617,,,,,,144,34,0,,,,, +29,36,3,694,,113.642,,8,C1,f,20,144,24,20,,,,g, +29,36,3,694,,113.692,,,,,,144,24,0,,,,, +29,37,3,695,1024,113.717,512,2,F#3,f,20,144,54,20,,,,, +29,38,4,696,1024,113.717,,,,,,176,102,0,,,,, +29,34,1,692,1024,114.102,,,,,,144,68,0,,,,, +29,39,1,697,1280,114.252,,,,,,176,102,0,,,,, +29,40,4,698,1280,114.252,64,16,F#1,ppp,5,144,30,5,,,,, +29,41,4,699,1280,114.252,64,16,C2,ppp,5,144,36,5,,,,, +29,40,4,698,1280,114.386,,,,,,144,30,0,,,,, +29,41,4,699,1280,114.386,,,,,,144,36,0,,,,, +29,42,4,700,1344,114.386,,,,,,176,102,0,,,,, +29,43,4,701,1472,114.654,64,16,F#1,ppp,5,144,30,5,,,,, +29,37,3,695,1024,114.788,,,,,,144,54,0,,,,, +30,0,0,702,0,114.788,,,,,,,,,30,,,, +30,1,1,703,0,114.788,512,2,E3,pp,8,144,52,8,,,,, +30,2,3,704,0,114.788,256,4,F#2,ppp+,6,144,42,6,,,,, +30,3,4,705,0,114.788,32,32,F#1,,,,,,,,,, +29,43,4,701,1472,114.855,,,,,,144,30,0,,,,, +30,4,4,706,32,114.855,96,16,G3,pp,8,144,55,8,,,,, +30,4,4,706,32,115.056,,,,,,144,55,0,,,,, +30,5,4,707,128,115.056,128,8,E5,pp,8,144,76,8,,,,, +30,6,3,708,256,115.324,64,16,F#2,,,,,,,,,, +30,7,4,709,256,115.324,64,16,E5,,,,,,,,,, +30,8,3,710,320,115.458,192,8,E4,ppp,5,144,64,5,,,,, +30,9,4,711,320,115.458,192,8,D7,pppp,2,144,98,2,,,,, +30,2,3,704,0,115.608,,,,,,144,42,0,,,,, +30,5,4,707,128,115.608,,,,,,144,76,0,,,,, +30,9,4,711,320,115.86,,,,,,144,98,0,,,,, +30,10,1,712,512,115.86,512,2,E6,pppp,2,144,88,2,,,,, +30,11,3,713,512,115.86,128,8,E4,,,,,,,,,, +30,12,4,714,512,115.86,,,,,,176,102,0,,,,, +30,1,1,703,0,116.01,,,,,,144,52,0,,,,, +30,13,3,715,640,116.127,128,8,A4,ppp+,6,144,69,6,,,,, +30,8,3,710,320,116.127,,,,,,144,64,0,,,,, +30,14,3,716,768,116.395,256,4,A4,,,,,,,,,, +30,15,4,717,768,116.395,,,,,,176,102,0,,,,, +30,13,3,715,640,116.931,,,,,,144,69,0,,,,, +30,16,1,718,1024,116.931,128,8,E6,,,,,,,,,, +30,17,3,719,1024,116.931,128,8,G#4,ppp,5,144,68,5,,,,, +30,18,0,720,1024,116.931,,,,,,,,,,5927,,, +30,10,1,712,512,117.199,,,,,,144,88,0,,,,, +30,17,3,719,1024,117.199,,,,,,144,68,0,,,,, +30,19,1,721,1152,117.199,,,,,,176,102,0,,,,, +30,20,3,722,1152,117.199,,,,,,176,102,0,,,,, +30,24,3,723,,117.392,,8,D4,ppp,5,144,62,5,,,,g, +30,23,3,724,,117.392,,8,F#3,ppp,5,144,54,5,,,,g, +30,24,3,723,,117.442,,,,,,144,62,0,,,,, +30,23,3,724,,117.442,,,,,,144,54,0,,,,, +30,21,1,725,1280,117.467,,,,,,176,102,0,,,,, +30,22,1,726,1280,117.467,,,,,,176,102,0,,,,, +30,25,3,727,1280,117.467,,,,,,176,102,0,,,,, +30,28,4,728,,117.852,,8,C3,s,0,144,48,0,,,,g, +30,28,4,728,,117.902,,,,,,144,48,0,,,,, +30,30,1,729,,117.927,,8,C6,ppp,5,144,84,5,,,,g, +30,29,1,730,,117.927,,8,F#5,ppp,5,144,78,5,,,,g, +30,27,3,731,,117.927,,8,F#3,,,,,,,,,g, +30,26,3,732,,117.927,,8,F3,ppp,5,144,53,5,,,,g, +30,30,1,729,,117.977,,,,,,144,84,0,,,,, +30,29,1,730,,117.977,,,,,,144,78,0,,,,, +30,26,3,732,,117.977,,,,,,144,53,0,,,,, +31,0,0,733,0,118.002,,,,,,,,,31,,,, +31,1,1,734,0,118.002,,,,,,176,102,0,,,,, +31,2,2,735,0,118.002,1024,1,C3,mf,17,144,48,17,,,,, +31,3,3,736,0,118.002,102,8,C#3,mf,17,144,49,17,,,,, +31,4,3,737,0,118.002,128,8,E3,mf,17,144,52,17,,,,, +31,5,4,738,0,118.002,51,16,G#2,mf,17,144,44,17,,,,, +31,6,1,739,25,118.055,26,32,C4,f,20,144,60,20,,,,, +31,5,4,738,0,118.109,,,,,,144,44,0,,,,, +31,6,1,739,25,118.109,,,,,,144,60,0,,,,, +31,7,1,740,51,118.109,51,16,A4,f,20,144,69,20,,,,, +31,8,4,741,51,118.109,,,,,,176,102,0,,,,, +31,3,3,736,0,118.216,,,,,,144,49,0,,,,, +31,7,1,740,51,118.216,,,,,,144,69,0,,,,, +31,9,1,742,102,118.216,,,,,,176,102,0,,,,, +31,10,3,743,102,118.216,102,8,G#2,f,20,144,44,20,,,,, +31,11,4,744,102,118.216,51,16,E2,f,20,144,40,20,,,,, +31,4,3,737,0,118.27,,,,,,144,52,0,,,,, +31,11,4,744,102,118.323,,,,,,144,40,0,,,,, +31,12,4,745,153,118.323,,,,,,176,102,0,,,,, +31,13,1,746,204,118.429,,,,,,176,102,0,,,,, +31,14,3,747,204,118.429,52,16,C#4,f,20,144,61,20,,,,, +31,15,4,748,204,118.429,,,,,,176,102,0,,,,, +31,10,3,743,102,118.429,,,,,,144,44,0,,,,, +31,14,3,747,204,118.538,,,,,,144,61,0,,,,, +31,16,1,749,256,118.538,25,32,A#4,p,11,144,70,11,,,,, +31,17,3,750,256,118.538,128,8,A4,p,11,144,69,11,,,,, +31,18,4,751,256,118.538,,,,,,176,102,0,,,,, +31,16,1,749,256,118.59,,,,,,144,70,0,,,,, +31,19,1,752,281,118.59,26,32,C#4,p+,12,144,61,12,,,,, +31,19,1,752,281,118.645,,,,,,144,61,0,,,,, +31,20,1,753,307,118.645,102,8,C5,mp,14,144,72,14,,,,, +31,17,3,750,256,118.806,,,,,,144,69,0,,,,, +31,21,3,754,384,118.806,,,,,,176,102,0,,,,, +31,20,1,753,307,118.858,,,,,,144,72,0,,,,, +31,22,1,755,409,118.858,103,8,A#4,f,20,144,70,20,,,,, +31,22,1,755,409,119.074,,,,,,144,70,0,,,,, +31,23,1,756,512,119.074,,,,,,176,102,0,,,,, +31,24,3,757,512,119.074,256,4,E3,mf,17,144,52,17,,,,, +31,25,4,758,512,119.074,128,8,B1,pp,8,144,35,8,,,,, +31,25,4,758,512,119.342,,,,,,144,35,0,,,,, +31,26,4,759,640,119.342,,,,,,176,102,0,,,,, +31,28,3,760,768,119.61,256,4,C#2,f,20,144,37,20,,,,, +31,29,4,761,768,119.61,512,2,G#1,p,11,144,32,11,,,,, +31,27,0,762,768,119.61,,,,,,176,64,127,,,,,V +31,24,3,757,512,119.61,,,,,,144,52,0,,,,, +31,2,2,735,0,120.145,,,,,,144,48,0,,,,, +31,30,1,763,1024,120.145,256,4,C6,p,11,144,84,11,,,,, +31,31,2,764,1024,120.145,,,,,,176,102,0,,,,, +31,32,3,765,1024,120.145,1536,1,C#2,,,,,,,,,, +31,33,3,766,1024,120.145,1024,1,C3,f,20,144,48,20,,,,, +31,29,4,761,768,120.681,,,,,,144,32,0,,,,, +31,30,1,763,1024,120.681,,,,,,144,84,0,,,,, +31,38,0,767,1280,120.681,,,,,,176,64,0,,,,,^ +31,37,1,768,1280,120.681,42,16,C6,p,11,144,84,11,,,,, +31,34,1,769,,120.681,,8,C6,,,,,,,,,g, +31,35,1,770,,120.756,,8,A#3,mp+,15,144,58,15,,,,g, +31,35,1,770,,120.806,,,,,,144,58,0,,,,, +31,36,1,771,,120.831,,8,G#1,f,20,144,32,20,,,,g, +31,36,1,771,,120.881,,,,,,144,32,0,,,,, +31,39,3,772,,120.906,,8,C#7,f,20,144,97,20,,,,g, +31,39,3,772,,120.956,,,,,,144,97,0,,,,, +31,40,4,773,1280,120.981,,,,,,176,102,0,,,,, +31,37,1,768,1280,121.037,,,,,,144,84,0,,,,, +31,41,1,774,1322,121.069,43,16,C#4,mp,14,144,61,14,,,,, +31,42,0,775,1322,121.069,,,,,,176,64,127,,,,,V +31,43,1,776,1365,121.159,171,4,C#4,,,,,,,,,, +31,44,1,777,1536,121.517,85,8,C#4,,,,,,,,,, +31,45,4,778,1536,121.517,,,,,,176,102,0,,,,, +31,46,1,779,1621,121.695,171,4,E3,mp+,15,144,52,15,,,,, +31,41,1,774,1322,121.695,,,,,,144,61,0,,,,, +31,47,1,780,1792,122.052,128,8,E3,,,,,,,,,, +31,48,4,781,1792,122.052,,,,,,176,102,0,,,,, +31,49,1,782,1920,122.32,128,8,A#5,p,11,144,82,11,,,,, +31,50,4,783,1920,122.32,128,8,G#2,f,20,144,44,20,,,,, +31,46,1,779,1621,122.32,,,,,,144,52,0,,,,, +31,33,3,766,1024,122.513,,,,,,144,48,0,,,,, +31,51,1,784,2048,122.588,170,4,A#5,,,,,,,,,, +31,52,2,785,2048,122.588,256,4,C#2,p,11,144,37,11,,,,, +31,53,4,786,2048,122.588,512,2,G#2,,,,,,,,,, +31,54,1,787,2218,122.944,86,8,G#1,p,11,144,32,11,,,,, +31,55,1,788,2304,123.124,256,4,G#1,,,,,,,,,, +31,56,2,789,2304,123.124,85,8,C#2,,,,,,,,,, +31,49,1,782,1920,123.244,,,,,,144,82,0,,,,, +31,57,2,790,2389,123.302,171,4,A4,mp,14,144,69,14,,,,, +31,52,2,785,2048,123.377,,,,,,144,37,0,,,,, +32,1,0,791,0,123.51,,,,,,176,64,0,,,,,^ +31,57,2,790,2389,123.66,,,,,,144,69,0,,,,, +32,0,0,792,0,123.66,,,,,,,,,32,,,, +32,2,1,793,0,123.66,512,2,C#3,mf,17,144,49,17,,,,, +32,3,2,794,0,123.66,,,,,,176,102,0,,,,, +32,4,3,795,0,123.66,1536,1,B1,mf,17,144,35,17,,,,, +32,5,4,796,0,123.66,256,4,G#2,,,,,,,,,, +31,54,1,787,2218,123.66,,,,,,144,32,0,,,,, +31,28,3,760,768,123.66,,,,,,144,37,0,,,,, +32,1,0,797,0,123.81,,,,,,176,64,127,,,,,V +32,6,2,798,170,124.015,86,8,D3,mf,17,144,50,17,,,,, +32,7,2,799,256,124.195,512,2,D3,,,,,,,,,, +32,8,4,800,256,124.195,85,8,G#2,,,,,,,,,, +32,9,4,801,341,124.373,171,4,F#6,ff,22,144,90,22,,,,, +31,50,4,783,1920,124.673,,,,,,144,44,0,,,,, +32,9,4,801,341,124.731,,,,,,144,90,0,,,,, +32,10,1,802,512,124.731,85,8,C#3,,,,,,,,,, +32,11,4,803,512,124.731,,,,,,176,102,0,,,,, +32,12,1,804,597,124.909,171,4,C5,f,20,144,72,20,,,,, +32,2,1,793,0,124.909,,,,,,144,49,0,,,,, +32,13,0,805,729,125.185,,,,,,176,64,0,,,,,^ +32,12,1,804,597,125.267,,,,,,144,72,0,,,,, +32,14,1,806,768,125.267,,,,,,176,102,0,,,,, +32,15,2,807,768,125.267,85,8,D3,,,,,,,,,, +32,16,4,808,768,125.267,,,,,,176,102,0,,,,, +32,17,2,809,853,125.445,171,4,B0,f,20,144,23,20,,,,, +32,6,2,798,170,125.445,,,,,,144,50,0,,,,, +32,17,2,809,853,125.802,,,,,,144,23,0,,,,, +32,18,2,810,1024,125.802,,,,,,176,102,0,,,,, +32,19,4,811,1024,125.802,,,,,,176,102,0,,,,, +32,20,2,812,1194,126.158,342,2,E3,f,20,144,52,20,,,,, +32,21,4,813,1194,126.158,86,8,F3,p,11,144,53,11,,,,, +32,21,4,813,1194,126.338,,,,,,144,53,0,,,,, +32,22,4,814,1280,126.338,,,,,,176,102,0,,,,, +32,23,4,815,1365,126.516,43,16,C#3,p,11,144,49,11,,,,, +32,23,4,815,1365,126.606,,,,,,144,49,0,,,,, +32,24,4,816,1408,126.606,42,16,D4,mf-,16,144,62,16,,,,, +32,24,4,816,1408,126.694,,,,,,144,62,0,,,,, +32,25,4,817,1450,126.694,43,16,F3,f,20,144,53,20,,,,, +32,25,4,817,1450,126.784,,,,,,144,53,0,,,,, +32,26,4,818,1493,126.784,21,32,A5,mf,17,144,81,17,,,,, +32,26,4,818,1493,126.828,,,,,,144,81,0,,,,, +32,27,4,819,1514,126.828,22,32,B0,mp,14,144,23,14,,,,, +32,27,4,819,1514,126.874,,,,,,144,23,0,,,,, +33,0,0,820,0,126.874,,,,,,,,,33,,,, +33,1,0,821,0,126.874,,,,,,,,,,5928,,, +33,2,1,822,0,126.874,,,,,,176,102,0,,,,, +33,4,1,823,0,126.874,1024,1,E5,p,11,144,76,11,,,,, +33,5,2,824,0,126.874,1024,1,G3,p,11,144,55,11,,,,, +33,6,3,825,0,126.874,0,8,F1,p,11,,,,,,,, +33,7,3,826,0,126.874,0,8,C3,p,11,,,,,,,, +33,3,1,827,,126.874,,8,A5,p,11,144,81,11,,,,g, +32,20,2,812,1194,126.874,,,,,,144,52,0,,,,, +32,4,3,795,0,126.874,,,,,,144,35,0,,,,, +33,3,1,827,,126.924,,,,,,144,81,0,,,,, +33,8,3,828,0,126.949,768,2,D4,mf,17,144,62,17,,,,, +33,9,4,829,0,126.949,1024,1,D#3,mf,17,144,51,17,,,,, +33,10,3,830,768,128.556,170,4,D4,,,,,,,,,, +33,12,3,831,938,128.912,86,8,C#3,f,20,144,49,20,,,,, +33,11,0,832,938,128.912,,,,,,176,64,127,,,,,V +33,8,3,828,0,128.987,,,,,,144,62,0,,,,, +33,13,1,833,1024,129.092,768,2,G#5,mp,14,144,80,14,,,,, +33,14,2,834,1024,129.092,384,4,G3,,,,,,,,,, +33,15,3,835,1024,129.092,1024,1,C#3,,,,,,,,,, +33,16,4,836,1024,129.092,1024,1,A#1,mp,14,144,34,14,,,,, +33,4,1,823,0,129.092,,,,,,144,76,0,,,,, +33,9,4,829,0,129.167,,,,,,144,51,0,,,,, +33,17,2,837,1408,129.895,128,8,B3,p,11,144,59,11,,,,, +33,5,2,824,0,129.895,,,,,,144,55,0,,,,, +33,18,2,838,1536,130.163,512,2,B3,,,,,,,,,, +33,19,1,839,1792,130.699,256,4,F#5,ppp,5,144,78,5,,,,, +33,20,1,840,1792,130.699,256,4,G#5,,,,,,,,,, +33,19,1,839,1792,131.235,,,,,,144,78,0,,,,, +34,0,0,841,0,131.235,,,,,,,,,34,,,, +34,1,1,842,0,131.235,256,4,G#5,,,,,,,,,, +34,2,2,843,0,131.235,512,2,B3,,,,,,,,,, +34,3,3,844,0,131.235,2048,0.5,C#3,,,,,,,,,, +34,4,4,845,0,131.235,2048,0.5,A#1,,,,,,,,,, +34,5,0,846,256,131.77,,,,,,176,64,0,,,,,^ +34,6,1,847,256,131.77,,,,,,176,102,0,,,,, +33,13,1,833,1024,131.77,,,,,,144,80,0,,,,, +34,7,1,848,512,132.306,1024,1,A5,pppp,2,144,81,2,,,,, +34,8,2,849,512,132.306,1536,1,A#3,f,20,144,58,20,,,,, +34,9,2,850,512,132.306,1024,1,B3,,,,,,,,,, +34,10,2,851,512,132.306,1024,1,A4,ff,22,144,69,22,,,,, +34,11,0,852,704,132.708,,,,,,176,64,127,,,,,V +34,7,1,848,512,134.449,,,,,,144,81,0,,,,, +34,12,1,853,1536,134.449,,,,,,176,102,0,,,,, +34,10,2,851,512,135.52,,,,,,144,69,0,,,,, +35,0,0,854,0,135.52,,,,,,,,,35,,,, +35,1,0,855,0,135.52,,,,,,176,64,0,,,,,^ +35,2,1,856,0,135.52,,,,,,176,102,0,,,,, +35,3,2,857,0,135.52,768,2,A#3,,,,,,,,,, +35,4,2,858,0,135.52,512,2,B3,,,,,,,,,, +35,5,2,859,0,135.52,512,2,A4,,,,,,,,,, +35,6,3,860,0,135.52,,,,,,176,102,0,,,,, +35,7,4,861,0,135.52,1024,1,C3,p,11,144,48,11,,,,, +35,8,4,862,0,135.52,1024,1,G#3,ppp,5,144,56,5,,,,, +33,17,2,837,1408,135.52,,,,,,144,59,0,,,,, +33,16,4,836,1024,135.52,,,,,,144,34,0,,,,, +33,12,3,831,938,135.52,,,,,,144,49,0,,,,, +35,9,3,863,256,136.056,,,,,,176,102,0,,,,, +35,11,3,864,426,136.412,86,8,G#2,f,20,144,44,20,,,,, +35,10,0,865,426,136.412,,,,,,176,64,127,,,,,V +35,12,1,866,512,136.592,,,,,,176,102,0,,,,, +35,13,3,867,512,136.592,128,8,G#2,,,,,,,,,, +35,11,3,864,426,136.86,,,,,,144,44,0,,,,, +35,14,1,868,640,136.86,128,8,A5,ff,22,144,81,22,,,,, +35,15,3,869,640,136.86,128,8,A#4,mf,17,144,70,17,,,,, +35,19,0,870,810,137.065,,,,,,176,64,0,,,,,^ +35,16,1,871,768,137.127,1792,1,A5,,,,,,,,,, +35,17,2,872,768,137.127,,,,,,176,102,0,,,,, +35,18,3,873,768,137.127,42,16,A#4,,,,,,,,,, +34,8,2,849,512,137.127,,,,,,144,58,0,,,,, +35,15,3,869,640,137.215,,,,,,144,70,0,,,,, +35,20,3,874,810,137.215,43,16,C6,mf+,18,144,84,18,,,,, +35,20,3,874,810,137.305,,,,,,144,84,0,,,,, +35,21,3,875,853,137.305,43,16,E3,f-,19,144,52,19,,,,, +35,19,0,876,810,137.365,,,,,,176,64,127,,,,,V +35,21,3,875,853,137.395,,,,,,144,52,0,,,,, +35,22,3,877,896,137.395,42,16,C#4,f,20,144,61,20,,,,, +35,22,3,877,896,137.483,,,,,,144,61,0,,,,, +35,23,3,878,938,137.483,43,16,A#5,f+,21,144,82,21,,,,, +35,25,0,879,1024,137.513,,,,,,176,64,0,,,,,^ +35,23,3,878,938,137.573,,,,,,144,82,0,,,,, +35,24,3,880,981,137.573,43,16,G#1,ff,22,144,32,22,,,,, +35,7,4,861,0,137.663,,,,,,144,48,0,,,,, +35,8,4,862,0,137.663,,,,,,144,56,0,,,,, +35,24,3,880,981,137.663,,,,,,144,32,0,,,,, +35,26,2,881,1024,137.663,512,2,E5,p,11,144,76,11,,,,, +35,27,2,882,1024,137.663,512,2,C6,ff,22,144,84,22,,,,, +35,28,3,883,1024,137.663,,,,,,176,102,0,,,,, +35,29,4,884,1024,137.663,,,,,,176,102,0,,,,, +35,25,0,885,1024,137.813,,,,,,176,64,127,,,,,V +35,30,3,886,1280,138.199,,,,,,176,102,0,,,,, +35,31,3,887,1365,138.377,85,8,C#6,ppp,5,144,85,5,,,,, +35,32,3,888,1365,138.377,128,8,A6,ppp,5,144,93,5,,,,, +35,31,3,887,1365,138.555,,,,,,144,85,0,,,,, +35,33,3,889,1450,138.555,86,8,F#2,ppp,5,144,42,5,,,,, +35,34,3,890,1450,138.555,128,8,D#5,ppp,5,144,75,5,,,,, +35,32,3,888,1365,138.645,,,,,,144,93,0,,,,, +35,26,2,881,1024,138.735,,,,,,144,76,0,,,,, +35,33,3,889,1450,138.735,,,,,,144,42,0,,,,, +35,35,2,891,1536,138.735,85,8,C6,,,,,,,,,, +35,36,3,892,1536,138.735,,,,,,176,102,0,,,,, +35,37,4,893,1536,138.735,1024,1,D3,fff,24,144,50,23,,,,, +35,34,3,890,1450,138.822,,,,,,144,75,0,,,,, +35,40,0,894,1663,138.85,,,,,,176,64,0,,,,,^ +35,27,2,882,1024,138.912,,,,,,144,84,0,,,,, +35,38,2,895,1621,138.912,171,4,C#4,fff,24,144,61,23,,,,, +35,39,3,896,1621,138.912,85,8,A#2,ppp,5,144,46,5,,,,, +35,39,3,896,1621,139.09,,,,,,144,46,0,,,,, +35,41,3,897,1706,139.09,,,,,,176,102,0,,,,, +35,40,0,898,1663,139.15,,,,,,176,64,127,,,,,V +35,42,2,899,1792,139.27,768,2,C#4,,,,,,,,,, +35,43,3,900,1792,139.27,,,,,,176,102,0,,,,, +35,44,3,901,2304,140.342,256,4,C4,ff,22,144,60,22,,,,, +36,0,0,902,0,140.877,,,,,,,,,36,,,, +36,1,1,903,0,140.877,1792,1,A5,,,,,,,,,, +36,2,2,904,0,140.877,2048,0.5,C#4,,,,,,,,,, +36,3,2,905,0,140.877,2048,0.5,C#7,fff,24,144,97,23,,,,, +36,4,3,906,0,140.877,2048,0.5,C4,,,,,,,,,, +36,5,4,907,0,140.877,2048,0.5,D3,,,,,,,,,, +36,6,1,908,1792,144.627,170,4,A5,,,,,,,,,, +35,14,1,868,640,144.983,,,,,,144,81,0,,,,, +36,7,1,909,1962,144.983,86,8,F3,f,20,144,53,20,,,,, +35,37,4,893,1536,145.163,,,,,,144,50,0,,,,, +35,38,2,895,1621,145.163,,,,,,144,61,0,,,,, +36,3,2,905,0,145.163,,,,,,144,97,0,,,,, +36,8,1,910,2048,145.163,512,2,F3,,,,,,,,,, +36,9,2,911,2048,145.163,,,,,,176,102,0,,,,, +36,10,3,912,2048,145.163,,,,,,176,102,0,,,,, +36,11,4,913,2048,145.163,,,,,,176,102,0,,,,, +35,44,3,901,2304,145.163,,,,,,144,60,0,,,,, +37,0,0,914,0,146.235,,,,,,,,,37,,,, +37,1,1,915,0,146.235,1024,1,F3,,,,,,,,,, +37,2,2,916,0,146.235,,,,,,176,102,0,,,,, +37,3,3,917,0,146.235,,,,,,176,102,0,,,,, +37,4,4,918,0,146.235,,,,,,176,102,0,,,,, +37,5,4,919,512,147.306,,,,,,176,102,0,,,,, +37,6,1,920,1024,148.377,1536,1,F3,,,,,,,,,, +37,7,2,921,1024,148.377,256,4,F7,ff,22,144,101,22,,,,, +37,8,3,922,1024,148.377,,,,,,176,102,0,,,,, +37,9,4,923,1024,148.377,512,2,E2,f,20,144,40,20,,,,, +37,7,2,921,1024,148.913,,,,,,144,101,0,,,,, +37,10,3,924,1280,148.913,,,,,,176,102,0,,,,, +37,11,2,925,1280,148.913,,,,,,176,102,0,,,,, +37,12,3,926,1365,149.091,43,16,E3,f,20,144,52,20,,,,, +37,13,3,927,1408,149.181,128,8,F#2,f,20,144,42,20,,,,, +37,14,3,928,1408,149.181,128,8,E3,,,,,,,,,, +37,15,0,929,1450,149.269,,,,,,176,64,0,,,,,^ +37,9,4,923,1024,149.449,,,,,,144,40,0,,,,, +37,12,3,926,1365,149.449,,,,,,144,52,0,,,,, +37,13,3,927,1408,149.449,,,,,,144,42,0,,,,, +37,16,3,930,1536,149.449,1024,1,E3,f,20,144,52,20,,,,, +37,17,2,931,1536,149.449,128,8,A4,mp,14,144,69,14,,,,, +37,18,4,932,1536,149.449,,,,,,176,102,0,,,,, +37,17,2,931,1536,149.717,,,,,,144,69,0,,,,, +37,19,2,933,1664,149.717,,,,,,176,102,0,,,,, +37,20,0,934,1719,149.832,,,,,,176,64,127,,,,,V +37,21,2,935,1792,149.985,,,,,,176,102,0,,,,, +37,22,2,936,2048,150.52,,,,,,176,102,0,,,,, +37,23,4,937,2048,150.52,512,2,B2,pp,8,144,47,8,,,,, +38,0,0,938,0,151.592,,,,,,,,,38,,,, +38,1,1,939,0,151.592,2048,0.5,F3,,,,,,,,,, +38,2,2,940,0,151.592,2048,0.5,E3,,,,,,,,,, +38,3,3,941,0,151.592,,,,,,176,102,0,,,,, +38,4,4,942,0,151.592,2048,0.5,B2,,,,,,,,,, +37,16,3,930,1536,152.127,,,,,,144,52,0,,,,, +38,5,1,943,2048,155.877,128,8,F3,,,,,,,,,, +38,6,2,944,2048,155.877,512,2,E3,,,,,,,,,, +38,7,3,945,2048,155.877,128,8,F#2,pp,8,144,42,8,,,,, +38,8,4,946,2048,155.877,128,8,B2,,,,,,,,,, +36,7,1,909,1962,156.145,,,,,,144,53,0,,,,, +37,23,4,937,2048,156.145,,,,,,144,47,0,,,,, +38,7,3,945,2048,156.145,,,,,,144,42,0,,,,, +38,9,0,947,2176,156.145,,,,,,176,64,0,,,,,^ +38,10,1,948,,156.145,,8,A#6,pp,8,144,94,8,,,,g, +38,10,1,948,,156.195,,,,,,144,94,0,,,,, +38,11,1,949,,156.22,,8,G#4,pp-,7,144,68,7,,,,g, +38,11,1,949,,156.27,,,,,,144,68,0,,,,, +38,12,1,950,2176,156.295,128,8,E4,mf,17,144,64,17,,,,, +38,13,3,951,2176,156.295,,,,,,176,102,0,,,,, +38,16,4,952,2176,156.295,,,,,,176,102,0,,,,, +38,12,1,950,2176,156.563,,,,,,144,64,0,,,,, +38,14,4,953,,156.563,,8,B0,ppp,5,144,23,5,,,,g, +38,14,4,953,,156.613,,,,,,144,23,0,,,,, +38,15,4,954,,156.638,,8,E3,s,0,144,52,0,,,,g, +38,15,4,954,,156.688,,,,,,144,52,0,,,,, +38,17,1,955,,156.713,,8,F#6,p,11,144,90,11,,,,g, +38,17,1,955,,156.763,,,,,,144,90,0,,,,, +38,18,1,956,,156.788,,8,E2,p,11,144,40,11,,,,g, +38,18,1,956,,156.838,,,,,,144,40,0,,,,, +38,19,1,957,2304,156.863,128,8,G#4,mp,14,144,68,14,,,,, +38,20,1,958,2304,156.863,128,8,F#5,p,11,144,78,11,,,,, +38,21,3,959,2304,156.863,,,,,,176,102,0,,,,, +38,22,4,960,2304,156.863,,,,,,176,102,0,,,,, +38,19,1,957,2304,157.131,,,,,,144,68,0,,,,, +38,23,1,961,2432,157.131,128,8,F#5,,,,,,,,,, +39,0,0,962,0,157.399,,,,,,,,,39,,,, +39,1,1,963,0,157.399,2048,0.5,F#5,,,,,,,,,, +39,2,2,964,0,157.399,2048,0.5,E3,,,,,,,,,, +39,3,3,965,0,157.399,,,,,,176,102,0,,,,, +39,4,4,966,0,157.399,,,,,,176,102,0,,,,, +39,6,4,967,256,157.935,1792,1,F#4,f,20,144,66,20,,,,, +39,5,0,968,256,157.935,,,,,,176,64,127,,,,,V +39,7,3,969,,160.924,,8,D4,mp,14,144,62,14,,,,g, +39,7,3,969,,160.974,,,,,,144,62,0,,,,, +39,8,3,970,,160.999,,8,A5,p,11,144,81,11,,,,g, +39,8,3,970,,161.049,,,,,,144,81,0,,,,, +39,9,3,971,,161.074,,8,B0,pp,8,144,23,8,,,,g, +39,9,3,971,,161.124,,,,,,144,23,0,,,,, +39,10,3,972,1792,161.149,256,4,C#3,ppp,5,144,49,5,,,,, +39,11,0,973,2047,161.534,,,,,,176,64,0,,,,,^ +39,10,3,972,1792,161.685,,,,,,144,49,0,,,,, +40,0,0,974,0,161.685,,,,,,,,,40,,,, +40,1,0,975,0,161.685,,,,,,,,,,5929,,, +40,3,1,976,0,161.685,153,8,G4,pp,8,144,67,8,,,,, +40,4,2,977,0,161.685,25,32,C7,pp,8,144,96,8,,,,, +40,5,2,978,0,161.685,32,32,A7,pp,8,144,105,8,,,,, +40,6,3,979,0,161.685,512,2,D#4,p,11,144,63,11,,,,, +40,7,4,980,0,161.685,,,,,,176,102,0,,,,, +40,4,2,977,0,161.737,,,,,,144,96,0,,,,, +40,8,2,981,25,161.737,77,16,E7,pp+,9,144,100,9,,,,, +40,5,2,978,0,161.752,,,,,,144,105,0,,,,, +40,2,0,982,0,161.834,,,,,,176,64,127,,,,,V +40,8,2,981,25,161.898,,,,,,144,100,0,,,,, +40,9,2,983,102,161.898,154,8,G#3,p,11,144,56,11,,,,, +40,3,1,976,0,162.005,,,,,,144,67,0,,,,, +40,10,1,984,153,162.005,103,8,B4,p,11,144,71,11,,,,, +39,6,4,967,256,162.135,,,,,,144,66,0,,,,, +38,20,1,958,2304,162.135,,,,,,144,78,0,,,,, +40,11,1,985,256,162.22,51,16,B4,,,,,,,,,, +40,12,2,986,256,162.22,51,16,G#3,,,,,,,,,, +40,9,2,983,102,162.327,,,,,,144,56,0,,,,, +40,10,1,984,153,162.327,,,,,,144,71,0,,,,, +40,13,0,987,307,162.327,,,,,,176,64,0,,,,,^ +40,14,1,988,307,162.327,205,4,A6,pp,8,144,93,8,,,,, +40,15,2,989,307,162.327,205,4,D5,p,11,144,74,11,,,,, +40,14,1,988,307,162.756,,,,,,144,93,0,,,,, +40,15,2,989,307,162.756,,,,,,144,74,0,,,,, +40,16,1,990,512,162.756,,,,,,176,102,0,,,,, +40,17,2,991,512,162.756,51,16,C#4,pp,8,144,61,8,,,,, +40,18,3,992,512,162.756,170,4,D#4,,,,,,,,,, +40,19,4,993,512,162.756,,,,,,176,102,0,,,,, +40,17,2,991,512,162.863,,,,,,144,61,0,,,,, +40,20,2,994,563,162.863,51,16,D5,pp,8,144,74,8,,,,, +40,20,2,994,563,162.969,,,,,,144,74,0,,,,, +40,21,4,995,614,162.969,154,8,C3,p,11,144,48,11,,,,, +40,22,2,996,614,162.969,154,8,C6,p,11,144,84,11,,,,, +40,23,3,997,682,163.112,86,8,C#7,mf,17,144,97,17,,,,, +40,6,3,979,0,163.112,,,,,,144,63,0,,,,, +40,23,3,997,682,163.292,,,,,,144,97,0,,,,, +40,24,3,998,768,163.292,,,,,,176,102,0,,,,, +40,25,4,999,768,163.292,51,16,C3,,,,,,,,,, +40,26,2,1000,768,163.292,51,16,C6,,,,,,,,,, +40,21,4,995,614,163.398,,,,,,144,48,0,,,,, +40,22,2,996,614,163.398,,,,,,144,84,0,,,,, +40,27,4,1001,819,163.398,205,4,C#3,p,11,144,49,11,,,,, +40,28,2,1002,819,163.398,205,4,D#5,p,11,144,75,11,,,,, +40,27,4,1001,819,163.827,,,,,,144,49,0,,,,, +40,28,2,1002,819,163.827,,,,,,144,75,0,,,,, +40,29,1,1003,1024,163.827,,,,,,176,102,0,,,,, +40,30,2,1004,1024,163.827,512,2,E6,p,11,144,88,11,,,,, +40,31,2,1005,1024,163.827,512,2,A6,p,11,144,93,11,,,,, +40,32,3,1006,1024,163.827,,,,,,176,102,0,,,,, +40,33,4,1007,1024,163.827,0,8,G3,p,11,,,,,,,, +40,34,4,1008,1024,163.827,0,8,C3,p,11,,,,,,,, +40,35,4,1009,1024,163.827,0,8,B3,p,11,,,,,,,, +40,36,4,1010,1024,163.827,,,,,,176,102,0,,,,, +40,37,4,1011,1109,164.005,171,4,F2,f,20,144,41,20,,,,, +40,38,4,1012,1280,164.363,256,4,F2,,,,,,,,,, +40,30,2,1004,1024,164.899,,,,,,144,88,0,,,,, +40,31,2,1005,1024,164.899,,,,,,144,93,0,,,,, +40,37,4,1011,1109,164.899,,,,,,144,41,0,,,,, +40,39,2,1013,1536,164.899,,,,,,176,102,0,,,,, +40,40,4,1014,1536,164.899,512,2,G#2,pp,8,144,44,8,,,,, +40,41,4,1015,1536,164.899,512,2,F#3,pp,8,144,54,8,,,,, +40,40,4,1014,1536,165.97,,,,,,144,44,0,,,,, +40,41,4,1015,1536,165.97,,,,,,144,54,0,,,,, +41,0,0,1016,0,165.97,,,,,,,,,41,,,, +41,1,0,1017,0,165.97,,,,,,,,,,5930,,, +41,3,1,1018,0,165.97,0,8,C6,pp,8,144,84,8,,,,, +41,4,1,1019,0,165.97,0,8,E3,pp+,9,,,,,,,, +41,5,1,1020,0,165.97,0,8,F5,p,11,,,,,,,, +41,6,1,1021,0,165.97,170,8,C6,,,,,,,,,, +41,7,2,1022,0,165.97,0,8,A7,fff,24,144,105,23,,,,, +41,8,2,1023,0,165.97,1024,1,A7,,,,,,,,,, +41,9,3,1024,0,165.97,0,8,G#5,pp,8,,,,,,,, +41,10,3,1025,0,165.97,0,8,C3,pp+,9,,,,,,,, +41,11,3,1026,0,165.97,0,8,D#4,p,11,,,,,,,, +41,12,3,1027,0,165.97,85,8,B3,p,11,144,59,11,,,,, +41,13,4,1028,0,165.97,2048,0.5,G2,p,11,144,43,11,,,,, +41,2,0,1029,0,165.97,,,,,,176,64,127,,,,,V +41,12,3,1027,0,166.148,,,,,,144,59,0,,,,, +41,13,4,1028,0,166.148,,,,,,144,43,0,,,,, +41,14,3,1030,85,166.148,171,4,G2,p,11,144,43,11,,,,, +41,3,1,1018,0,166.326,,,,,,144,84,0,,,,, +41,15,1,1031,170,166.326,29,32,D4,p,11,144,62,11,,,,, +41,15,1,1031,170,166.387,,,,,,144,62,0,,,,, +41,16,1,1032,199,166.387,28,32,E6,p+,12,144,88,12,,,,, +41,19,0,1033,256,166.445,,,,,,176,64,0,,,,,^ +41,16,1,1032,199,166.445,,,,,,144,88,0,,,,, +41,17,1,1034,227,166.445,29,32,C#3,mp,14,144,49,14,,,,, +41,17,1,1034,227,166.506,,,,,,144,49,0,,,,, +41,18,1,1035,256,166.506,,,,,,176,102,0,,,,, +41,20,3,1036,256,166.506,,,,,,176,102,0,,,,, +41,21,1,1037,341,166.684,0,8,C7,mp,14,,,,,,,, +41,22,1,1038,341,166.684,171,4,E7,mp,14,144,100,14,,,,, +41,23,0,1039,341,166.745,,,,,,176,64,127,,,,,V +41,22,1,1038,341,167.042,,,,,,144,100,0,,,,, +41,24,1,1040,512,167.042,1536,1,C6,ff,22,144,84,22,,,,, +41,25,3,1041,512,167.042,,,,,,176,102,0,,,,, +41,7,2,1022,0,168.113,,,,,,144,105,0,,,,, +41,26,2,1042,1024,168.113,,,,,,176,102,0,,,,, +41,27,3,1043,1024,168.113,,,,,,176,102,0,,,,, +41,28,3,1044,1280,168.649,,,,,,176,102,0,,,,, +41,29,3,1045,1365,168.827,171,4,F1,fff,24,144,29,23,,,,, +41,29,3,1045,1365,169.185,,,,,,144,29,0,,,,, +41,30,2,1046,1536,169.185,,,,,,176,102,0,,,,, +41,31,3,1047,1536,169.185,170,4,D#3,fff,24,144,51,23,,,,, +41,31,3,1047,1536,169.54,,,,,,144,51,0,,,,, +41,32,2,1048,1706,169.54,171,4,C#6,ff,22,144,85,22,,,,, +41,33,3,1049,1706,169.54,171,4,G#3,mf,17,144,56,17,,,,, +41,32,2,1048,1706,169.898,,,,,,144,85,0,,,,, +41,33,3,1049,1706,169.898,,,,,,144,56,0,,,,, +41,34,2,1050,1877,169.898,171,4,C#4,mp,14,144,61,14,,,,, +41,35,3,1051,1877,169.898,171,4,G#1,ff,22,144,32,22,,,,, +41,36,3,1052,1877,169.898,256,4,F#2,p,11,144,42,11,,,,, +41,37,0,1053,2047,170.104,,,,,,176,64,0,,,,,^ +41,14,3,1030,85,170.256,,,,,,144,43,0,,,,, +41,24,1,1040,512,170.256,,,,,,144,84,0,,,,, +41,34,2,1050,1877,170.256,,,,,,144,61,0,,,,, +42,0,0,1054,0,170.256,,,,,,,,,42,,,, +42,1,1,1055,0,170.256,1024,1,D#6,f,20,144,87,20,,,,, +42,2,1,1056,0,170.256,1024,1,E6,f,20,,,,,,,, +42,3,2,1057,0,170.256,21,32,E6,f,20,144,88,20,,,,, +42,4,3,1058,0,170.256,256,4,G#1,,,,,,,,,, +42,5,4,1059,0,170.256,1024,1,C2,f,20,144,36,20,,,,, +42,6,2,1060,21,170.3,21,32,D4,f,20,144,62,20,,,,, +42,6,2,1060,21,170.344,,,,,,144,62,0,,,,, +42,7,2,1061,42,170.344,22,32,F2,f,20,144,41,20,,,,, +42,8,2,1062,42,170.344,32,32,C#3,f,20,144,49,20,,,,, +42,7,2,1061,42,170.39,,,,,,144,41,0,,,,, +42,9,2,1063,64,170.39,192,8,C6,ff,22,144,84,22,,,,, +42,10,2,1064,64,170.39,128,8,C#6,f,20,144,85,20,,,,, +41,37,0,1065,2047,170.404,,,,,,176,64,127,,,,,V +42,8,2,1062,42,170.411,,,,,,144,49,0,,,,, +41,36,3,1052,1877,170.434,,,,,,144,42,0,,,,, +42,11,2,1066,256,170.792,768,2,C6,,,,,,,,,, +42,12,2,1067,256,170.792,512,2,C#6,,,,,,,,,, +42,13,3,1068,256,170.792,170,4,G#1,,,,,,,,,, +41,35,3,1051,1877,171.147,,,,,,144,32,0,,,,, +42,14,3,1069,426,171.147,86,8,A#5,mp,14,144,82,14,,,,, +42,15,3,1070,512,171.327,384,4,A#5,,,,,,,,,, +42,10,2,1064,64,171.729,,,,,,144,85,0,,,,, +42,16,3,1071,896,172.131,32,32,C6,f,20,144,84,20,,,,, +42,14,3,1069,426,172.131,,,,,,144,82,0,,,,, +42,16,3,1071,896,172.198,,,,,,144,84,0,,,,, +42,17,3,1072,928,172.198,32,32,E3,mp,14,144,52,14,,,,, +42,17,3,1072,928,172.265,,,,,,144,52,0,,,,, +42,18,3,1073,960,172.265,32,32,A#5,pp,8,144,82,8,,,,, +42,18,3,1073,960,172.332,,,,,,144,82,0,,,,, +42,19,0,1074,992,172.332,,,,,,176,64,0,,,,,^ +42,20,3,1075,992,172.332,,,,,,176,102,0,,,,, +42,5,4,1059,0,172.399,,,,,,144,36,0,,,,, +42,21,1,1076,1024,172.399,42,16,C6,ff,22,144,84,22,,,,, +42,22,2,1077,1024,172.399,1024,1,D#5,ff,22,144,75,22,,,,, +42,23,3,1078,1024,172.399,42,16,B1,pp,8,144,35,8,,,,, +42,24,4,1079,1024,172.399,42,16,C2,pp,8,144,36,8,,,,, +42,1,1,1055,0,172.399,,,,,,144,87,0,,,,, +42,3,2,1057,0,172.399,,,,,,144,88,0,,,,, +42,9,2,1063,64,172.399,,,,,,144,84,0,,,,, +42,21,1,1076,1024,172.487,,,,,,144,84,0,,,,, +42,23,3,1078,1024,172.487,,,,,,144,35,0,,,,, +42,24,4,1079,1024,172.487,,,,,,144,36,0,,,,, +42,25,1,1080,1066,172.487,43,16,C#4,ff+,23,144,61,23,,,,, +42,26,1,1081,1066,172.487,64,16,E4,ff+,23,144,64,23,,,,, +42,27,3,1082,1066,172.487,,,,,,176,102,0,,,,, +42,28,4,1083,1066,172.487,,,,,,176,102,0,,,,, +42,25,1,1080,1066,172.577,,,,,,144,61,0,,,,, +42,29,1,1084,1109,172.577,43,16,A4,mf,17,144,69,17,,,,, +42,30,1,1085,1109,172.577,64,16,A#5,mf,17,144,82,17,,,,, +42,26,1,1081,1066,172.621,,,,,,144,64,0,,,,, +42,29,1,1084,1109,172.667,,,,,,144,69,0,,,,, +42,31,1,1086,1152,172.667,128,8,G#4,mf,17,144,68,17,,,,, +42,32,4,1087,1152,172.667,128,8,E3,p,11,144,52,11,,,,, +42,30,1,1085,1109,172.711,,,,,,144,82,0,,,,, +42,33,3,1088,1194,172.755,86,8,F3,p,11,144,53,11,,,,, +42,31,1,1086,1152,172.935,,,,,,144,68,0,,,,, +42,35,1,1089,1280,172.935,,,,,,176,102,0,,,,, +42,36,3,1090,1280,172.935,512,2,F3,,,,,,,,,, +42,37,4,1091,1280,172.935,256,4,E3,,,,,,,,,, +42,34,0,1092,1280,172.935,,,,,,176,64,127,,,,,V +42,38,1,1093,1344,173.069,192,8,D4,ff,22,144,62,22,,,,, +42,32,4,1087,1152,173.47,,,,,,144,52,0,,,,, +42,39,1,1094,1536,173.47,512,2,D4,,,,,,,,,, +42,40,4,1095,1536,173.47,,,,,,176,102,0,,,,, +42,41,4,1096,1600,173.604,192,8,G2,p,11,144,43,11,,,,, +42,42,3,1097,1792,174.006,128,8,F3,,,,,,,,,, +42,43,4,1098,1792,174.006,32,32,G2,,,,,,,,,, +42,41,4,1096,1600,174.073,,,,,,144,43,0,,,,, +42,44,4,1099,1824,174.073,96,16,A0,ppp,5,144,21,5,,,,, +42,33,3,1088,1194,174.274,,,,,,144,53,0,,,,, +42,44,4,1099,1824,174.274,,,,,,144,21,0,,,,, +42,45,0,1100,1920,174.274,,,,,,176,64,0,,,,,^ +42,46,3,1101,1920,174.274,,,,,,176,102,0,,,,, +42,47,4,1102,1920,174.274,,,,,,176,102,0,,,,, +42,22,2,1077,1024,174.542,,,,,,144,75,0,,,,, +43,0,0,1103,0,174.542,,,,,,,,,43,,,, +43,1,1,1104,0,174.542,,,,,,176,102,0,,,,, +43,2,2,1105,0,174.542,0,8,F5,pp,8,,,,,,,, +43,3,2,1106,0,174.542,512,2,D#4,p,11,144,63,11,,,,, +43,4,3,1107,0,174.542,0,8,C2,mp,14,,,,,,,, +43,5,3,1108,0,174.542,512,2,D4,mp,14,144,62,14,,,,, +43,6,3,1109,0,174.542,512,2,D#5,mp,14,144,75,14,,,,, +43,7,4,1110,0,174.542,512,2,E1,pp,8,144,28,8,,,,, +43,8,4,1111,0,174.542,512,2,G1,pp,8,144,31,8,,,,, +42,38,1,1093,1344,174.81,,,,,,144,62,0,,,,, +43,6,3,1109,0,175.613,,,,,,144,75,0,,,,, +43,7,4,1110,0,175.613,,,,,,144,28,0,,,,, +43,8,4,1111,0,175.613,,,,,,144,31,0,,,,, +43,9,1,1112,512,175.613,128,8,D4,,,,,,,,,, +43,10,2,1113,512,175.613,170,4,D#4,,,,,,,,,, +43,11,3,1114,512,175.613,,,,,,176,102,0,,,,, +43,12,4,1115,512,175.613,,,,,,176,102,0,,,,, +43,13,1,1116,640,175.881,128,8,E6,ff,22,144,88,22,,,,, +43,3,2,1106,0,175.969,,,,,,144,63,0,,,,, +43,5,3,1108,0,175.969,,,,,,144,62,0,,,,, +43,14,2,1117,682,175.969,86,8,G#5,mp,14,144,80,14,,,,, +43,15,4,1118,682,175.969,86,8,C3,pp,8,144,48,8,,,,, +43,16,1,1119,768,176.149,384,4,E6,,,,,,,,,, +43,17,2,1120,768,176.149,256,4,G#5,,,,,,,,,, +43,18,4,1121,768,176.149,256,4,C3,,,,,,,,,, +43,15,4,1118,682,176.685,,,,,,144,48,0,,,,, +43,19,2,1122,1024,176.685,256,4,D#5,p,11,144,75,11,,,,, +43,20,2,1123,1024,176.685,256,4,G#5,,,,,,,,,, +43,21,3,1124,1024,176.685,32,32,C#4,pp,8,144,61,8,,,,, +43,22,4,1125,1024,176.685,256,4,C#2,mp,14,144,37,14,,,,, +43,21,3,1124,1024,176.752,,,,,,144,61,0,,,,, +43,23,3,1126,1056,176.752,64,16,G#1,pp,8,144,32,8,,,,, +43,23,3,1126,1056,176.885,,,,,,144,32,0,,,,, +43,24,3,1127,1120,176.885,,,,,,176,102,0,,,,, +43,25,1,1128,1152,176.952,64,16,A#5,ppp,5,144,82,5,,,,, +43,26,1,1129,1152,176.952,64,16,E6,,,,,,,,,, +43,25,1,1128,1152,177.086,,,,,,144,82,0,,,,, +43,28,1,1130,1216,177.086,64,16,C6,ppp,5,144,84,5,,,,, +43,29,1,1131,1216,177.086,64,16,E6,,,,,,,,,, +43,30,3,1132,1216,177.086,64,16,G#3,pp,8,144,56,8,,,,, +43,27,0,1133,1216,177.086,,,,,,176,64,127,,,,,V +43,22,4,1125,1024,177.22,,,,,,144,37,0,,,,, +43,13,1,1116,640,177.22,,,,,,144,88,0,,,,, +43,28,1,1130,1216,177.22,,,,,,144,84,0,,,,, +43,30,3,1132,1216,177.22,,,,,,144,56,0,,,,, +43,31,1,1134,1280,177.22,,,,,,176,102,0,,,,, +43,32,2,1135,1280,177.22,85,8,D#5,,,,,,,,,, +43,33,2,1136,1280,177.22,128,8,G#5,,,,,,,,,, +43,34,3,1137,1280,177.22,85,8,C3,ppp,5,144,48,5,,,,, +43,35,3,1138,1280,177.22,128,8,E3,ppp,5,144,52,5,,,,, +43,36,4,1139,1280,177.22,,,,,,176,102,0,,,,, +43,37,0,1140,1365,177.248,,,,,,176,64,0,,,,,^ +43,19,2,1122,1024,177.398,,,,,,144,75,0,,,,, +43,34,3,1137,1280,177.398,,,,,,144,48,0,,,,, +43,38,2,1141,1365,177.398,,,,,,176,102,0,,,,, +43,39,3,1142,1365,177.398,171,4,A0,mf,17,144,21,17,,,,, +43,40,3,1143,1365,177.398,256,4,G#1,mf,17,144,32,17,,,,, +43,41,3,1144,1365,177.398,256,4,E2,mf,17,144,40,17,,,,, +43,42,3,1145,1365,177.398,256,4,B2,mf,17,144,47,17,,,,, +43,14,2,1117,682,177.488,,,,,,144,80,0,,,,, +43,35,3,1138,1280,177.488,,,,,,144,52,0,,,,, +43,37,0,1146,1365,177.548,,,,,,176,64,127,,,,,V +43,43,1,1147,1536,177.756,,,,,,176,102,0,,,,, +43,44,2,1148,1536,177.756,,,,,,176,102,0,,,,, +43,45,3,1149,1536,177.756,170,4,A0,,,,,,,,,, +43,46,3,1150,1536,177.756,256,4,G#1,,,,,,,,,, +43,47,3,1151,1536,177.756,256,4,E2,,,,,,,,,, +43,48,3,1152,1536,177.756,256,4,B2,,,,,,,,,, +43,49,4,1153,1536,177.756,,,,,,176,102,0,,,,, +43,50,0,1154,1706,177.962,,,,,,176,64,0,,,,,^ +43,39,3,1142,1365,178.112,,,,,,144,21,0,,,,, +43,51,2,1155,1706,178.112,342,2,G7,mf,17,144,103,17,,,,, +43,52,3,1156,1706,178.112,342,2,B1,mp,14,144,35,14,,,,, +43,50,0,1157,1706,178.262,,,,,,176,64,127,,,,,V +43,40,3,1143,1365,178.47,,,,,,144,32,0,,,,, +43,41,3,1144,1365,178.47,,,,,,144,40,0,,,,, +43,42,3,1145,1365,178.47,,,,,,144,47,0,,,,, +43,53,0,1158,2047,178.676,,,,,,176,64,0,,,,,^ +43,51,2,1155,1706,178.827,,,,,,144,103,0,,,,, +43,52,3,1156,1706,178.827,,,,,,144,35,0,,,,, +44,0,0,1159,0,178.827,,,,,,,,,44,,,, +44,1,0,1160,0,178.827,,,,,,,,,,5931,,, +44,3,1,1161,0,178.827,512,2,D#5,f,20,144,75,20,,,,, +44,4,2,1162,0,178.827,0,8,A7,mf,17,,,,,,,, +44,5,2,1163,0,178.827,512,2,D#4,pp,8,144,63,8,,,,, +44,6,3,1164,0,178.827,,,,,,176,102,0,,,,, +44,7,4,1165,0,178.827,,,,,,176,102,0,,,,, +44,2,0,1166,0,178.976,,,,,,176,64,127,,,,,V +44,8,4,1167,256,179.363,,,,,,176,102,0,,,,, +44,9,3,1168,384,179.631,128,8,D4,mf,17,144,62,17,,,,, +44,10,4,1169,384,179.631,128,8,C4,ppp,5,144,60,5,,,,, +44,10,4,1169,384,179.899,,,,,,144,60,0,,,,, +44,11,1,1170,512,179.899,,,,,,176,102,0,,,,, +44,12,2,1171,512,179.899,,,,,,176,102,0,,,,, +44,13,3,1172,512,179.899,170,4,D4,,,,,,,,,, +44,14,4,1173,512,179.899,,,,,,176,102,0,,,,, +44,3,1,1161,0,179.899,,,,,,144,75,0,,,,, +44,5,2,1163,0,179.899,,,,,,144,63,0,,,,, +44,9,3,1168,384,180.255,,,,,,144,62,0,,,,, +44,15,3,1174,682,180.255,86,8,C#2,mf,17,144,37,17,,,,, +44,16,3,1175,768,180.435,512,2,C#2,,,,,,,,,, +44,17,2,1176,1024,180.97,,,,,,176,102,0,,,,, +44,18,1,1177,1280,181.506,,,,,,176,102,0,,,,, +44,19,3,1178,1280,181.506,85,8,C#2,,,,,,,,,, +44,20,4,1179,1280,181.506,85,8,C1,pp,8,144,24,8,,,,, +44,15,3,1174,682,181.684,,,,,,144,37,0,,,,, +44,20,4,1179,1280,181.684,,,,,,144,24,0,,,,, +44,21,0,1180,1365,181.684,,,,,,176,64,0,,,,,^ +44,22,1,1181,1365,181.684,171,4,C#6,pp,8,144,85,8,,,,, +44,23,3,1182,1365,181.684,171,4,B3,p,11,144,59,11,,,,, +44,24,4,1183,1365,181.684,171,4,B2,f,20,144,47,20,,,,, +44,23,3,1182,1365,182.042,,,,,,144,59,0,,,,, +44,26,1,1184,1536,182.042,512,2,C#6,,,,,,,,,, +44,27,3,1185,1536,182.042,,,,,,176,102,0,,,,, +44,28,4,1186,1536,182.042,170,4,B2,,,,,,,,,, +44,25,0,1187,1536,182.042,,,,,,176,64,127,,,,,V +44,24,4,1183,1365,182.397,,,,,,144,47,0,,,,, +44,29,4,1188,1706,182.397,171,4,C2,ff,22,144,36,22,,,,, +44,29,4,1188,1706,182.755,,,,,,144,36,0,,,,, +44,30,4,1189,1877,182.755,171,4,G7,ff,22,144,103,22,,,,, +44,31,0,1190,2047,183.111,,,,,,176,64,0,,,,,^ +44,30,4,1189,1877,183.113,,,,,,144,103,0,,,,, +45,0,0,1191,0,183.113,,,,,,,,,45,,,, +45,1,1,1192,0,183.113,384,4,C#6,,,,,,,,,, +45,2,2,1193,0,183.113,1024,1,G3,f,20,144,55,20,,,,, +45,3,3,1194,0,183.113,32,32,C3,mp,14,144,48,14,,,,, +45,4,4,1195,0,183.113,128,8,G2,pp,8,144,43,8,,,,, +45,3,3,1194,0,183.18,,,,,,144,48,0,,,,, +45,5,3,1196,32,183.18,224,8,C#3,mp,14,144,49,14,,,,, +45,4,4,1195,0,183.381,,,,,,144,43,0,,,,, +45,6,4,1197,128,183.381,,,,,,176,102,0,,,,, +45,5,3,1196,32,183.649,,,,,,144,49,0,,,,, +45,7,3,1198,256,183.649,,,,,,176,102,0,,,,, +45,8,4,1199,256,183.649,,,,,,176,102,0,,,,, +44,22,1,1181,1365,183.917,,,,,,144,85,0,,,,, +45,9,1,1200,384,183.917,,,,,,176,102,0,,,,, +45,10,3,1201,384,183.917,128,8,F#2,p,11,144,42,11,,,,, +45,11,3,1202,384,183.917,128,8,F#3,p,11,144,54,11,,,,, +45,12,4,1203,384,183.917,128,8,C#1,mf,17,144,25,17,,,,, +45,13,1,1204,512,184.185,,,,,,176,102,0,,,,, +45,14,3,1205,512,184.185,768,2,F#2,,,,,,,,,, +45,15,3,1206,512,184.185,512,2,F#3,,,,,,,,,, +45,16,4,1207,512,184.185,512,2,C#1,,,,,,,,,, +45,12,4,1203,384,185.256,,,,,,144,25,0,,,,, +45,17,1,1208,1024,185.256,128,8,D#5,p,11,144,75,11,,,,, +45,18,2,1209,1024,185.256,128,8,G3,,,,,,,,,, +45,19,4,1210,1024,185.256,128,8,A#2,mf,17,144,46,17,,,,, +45,2,2,1193,0,185.524,,,,,,144,55,0,,,,, +45,11,3,1202,384,185.524,,,,,,144,54,0,,,,, +45,17,1,1208,1024,185.524,,,,,,144,75,0,,,,, +45,19,4,1210,1024,185.524,,,,,,144,46,0,,,,, +45,20,1,1211,1152,185.524,128,8,C#2,pp,8,144,37,8,,,,, +45,21,2,1212,1152,185.524,,,,,,176,102,0,,,,, +45,22,4,1213,1152,185.524,,,,,,176,102,0,,,,, +45,23,1,1214,1280,185.792,128,8,C#2,,,,,,,,,, +45,24,2,1215,1280,185.792,,,,,,176,102,0,,,,, +45,25,3,1216,1280,185.792,128,8,F#2,,,,,,,,,, +45,26,3,1217,1280,185.792,128,8,F#3,,,,,,,,,, +45,27,4,1218,1280,185.792,,,,,,176,102,0,,,,, +45,10,3,1201,384,186.06,,,,,,144,42,0,,,,, +45,20,1,1211,1152,186.06,,,,,,144,37,0,,,,, +45,28,1,1219,1408,186.06,,,,,,176,102,0,,,,, +45,29,3,1220,1408,186.06,128,8,F2,ppp,5,144,41,5,,,,, +45,30,4,1221,1408,186.06,128,8,C2,ppp,5,144,36,5,,,,, +45,31,1,1222,1536,186.327,,,,,,176,102,0,,,,, +45,32,2,1223,1536,186.327,,,,,,176,102,0,,,,, +45,33,3,1224,1536,186.327,128,8,F2,,,,,,,,,, +45,34,4,1225,1536,186.327,128,8,C2,,,,,,,,,, +45,29,3,1220,1408,186.595,,,,,,144,41,0,,,,, +45,30,4,1221,1408,186.595,,,,,,144,36,0,,,,, +45,35,3,1226,1664,186.595,,,,,,176,102,0,,,,, +45,36,4,1227,1664,186.595,,,,,,176,102,0,,,,, +45,37,3,1228,1792,186.863,,,,,,176,102,0,,,,, +45,38,4,1229,1792,186.863,,,,,,176,102,0,,,,, +46,0,0,1230,0,187.399,,,,,,,,,46,,,, +46,1,0,1231,0,187.399,,,,,,,,,,5932,,, +46,2,1,1232,0,187.399,2048,0.5,D#5,pp,8,144,75,8,,,,, +46,3,2,1233,0,187.399,768,2,C5,p,11,144,72,11,,,,, +46,4,3,1234,0,187.399,1536,1,A3,p,11,144,57,11,,,,, +46,5,4,1235,0,187.399,,,,,,176,102,0,,,,, +46,3,2,1233,0,189.006,,,,,,144,72,0,,,,, +46,6,2,1236,768,189.006,768,2,E5,ppp,5,144,76,5,,,,, +46,6,2,1236,768,190.613,,,,,,144,76,0,,,,, +46,7,2,1237,1536,190.613,,,,,,176,102,0,,,,, +46,8,3,1238,1536,190.613,128,8,A3,,,,,,,,,, +46,9,4,1239,1536,190.613,128,8,C#1,pp,8,144,25,8,,,,, +46,4,3,1234,0,190.881,,,,,,144,57,0,,,,, +46,9,4,1239,1536,190.881,,,,,,144,25,0,,,,, +46,10,3,1240,1664,190.881,128,8,E3,ppp,5,144,52,5,,,,, +46,11,4,1241,1664,190.881,128,8,G#3,p,11,144,56,11,,,,, +46,12,3,1242,1792,191.149,256,4,E3,,,,,,,,,, +46,13,4,1243,1792,191.149,256,4,G#3,,,,,,,,,, +46,2,1,1232,0,191.685,,,,,,144,75,0,,,,, +46,10,3,1240,1664,191.685,,,,,,144,52,0,,,,, +46,11,4,1241,1664,191.685,,,,,,144,56,0,,,,, +47,0,0,1244,0,191.685,,,,,,,,,47,,,, +47,2,1,1245,0,191.685,1536,1,C6,mp,14,144,84,14,,,,, +47,3,2,1246,0,191.685,1536,1,F5,ff,22,144,77,22,,,,, +47,4,3,1247,0,191.685,2048,0.5,G#3,pp,8,144,56,8,,,,, +47,5,4,1248,0,191.685,,,,,,176,102,0,,,,, +47,1,0,1249,0,191.685,,,,,,176,64,127,,,,,V +47,6,0,1250,1536,194.749,,,,,,176,64,0,,,,,^ +47,2,1,1245,0,194.899,,,,,,144,84,0,,,,, +47,3,2,1246,0,194.899,,,,,,144,77,0,,,,, +47,7,1,1251,1536,194.899,,,,,,176,102,0,,,,, +47,8,2,1252,1536,194.899,512,2,A#2,p,11,144,46,11,,,,, +47,9,4,1253,1536,194.899,512,2,E2,fff,24,144,40,23,,,,, +47,6,0,1254,1536,195.049,,,,,,176,64,127,,,,,V +48,1,0,1255,0,195.82,,,,,,176,64,0,,,,,^ +47,4,3,1247,0,195.97,,,,,,144,56,0,,,,, +47,8,2,1252,1536,195.97,,,,,,144,46,0,,,,, +48,0,0,1256,0,195.97,,,,,,,,,48,,,, +48,2,1,1257,0,195.97,,,,,,176,102,0,,,,, +48,3,2,1258,0,195.97,2048,0.5,D4,pp,8,144,62,8,,,,, +48,4,3,1259,0,195.97,,,,,,176,102,0,,,,, +48,5,4,1260,0,195.97,2048,0.5,E2,,,,,,,,,, +48,1,0,1261,0,196.12,,,,,,176,64,127,,,,,V +48,6,1,1262,1024,198.113,,,,,,176,102,0,,,,, +48,7,3,1263,1024,198.113,,,,,,176,102,0,,,,, +48,8,3,1264,1152,198.381,896,2,G#2,ff,22,144,44,22,,,,, +48,9,1,1265,1792,199.72,256,4,C#3,ppp,5,144,49,5,,,,, +48,9,1,1265,1792,200.256,,,,,,144,49,0,,,,, +49,0,0,1266,0,200.256,,,,,,,,,49,,,, +49,1,1,1267,0,200.256,,,,,,176,102,0,,,,, +49,2,2,1268,0,200.256,512,2,D4,,,,,,,,,, +49,3,3,1269,0,200.256,512,2,G#2,,,,,,,,,, +49,4,4,1270,0,200.256,512,2,E2,,,,,,,,,, +47,9,4,1253,1536,201.327,,,,,,144,40,0,,,,, +48,3,2,1258,0,201.327,,,,,,144,62,0,,,,, +48,8,3,1264,1152,201.327,,,,,,144,44,0,,,,, +49,5,0,1271,512,201.327,,,,,,176,64,0,,,,,^ +49,6,1,1272,512,201.327,,,,,,176,102,0,,,,, +49,7,2,1273,512,201.327,64,16,C#3,pppp,2,144,49,2,,,,, +49,8,3,1274,512,201.327,,,,,,176,102,0,,,,, +49,9,4,1275,512,201.327,1536,1,G1,mp,14,144,31,14,,,,, +49,7,2,1273,512,201.461,,,,,,144,49,0,,,,, +49,10,2,1276,576,201.461,,,,,,176,102,0,,,,, +49,11,1,1277,640,201.595,128,8,A5,ppp,5,144,81,5,,,,, +49,12,2,1278,704,201.729,32,32,D4,mp,14,144,62,14,,,,, +49,12,2,1278,704,201.796,,,,,,144,62,0,,,,, +49,13,2,1279,736,201.796,32,32,C6,mp+,15,144,84,15,,,,, +49,11,1,1277,640,201.863,,,,,,144,81,0,,,,, +49,14,1,1280,768,201.863,192,8,F#6,p,11,144,90,11,,,,, +49,15,2,1281,768,201.863,32,32,G#5,p,11,144,80,11,,,,, +49,16,2,1282,768,201.863,32,32,C6,,,,,,,,,, +49,17,3,1283,768,201.863,96,16,B0,mp,14,144,23,14,,,,, +49,18,2,1284,800,201.93,64,16,G#5,,,,,,,,,, +49,19,2,1285,800,201.93,64,16,E6,f,20,144,88,20,,,,, +49,13,2,1279,736,201.93,,,,,,144,84,0,,,,, +49,15,2,1281,768,202.064,,,,,,144,80,0,,,,, +49,17,3,1283,768,202.064,,,,,,144,23,0,,,,, +49,19,2,1285,800,202.064,,,,,,144,88,0,,,,, +49,21,2,1286,864,202.064,96,16,D#4,f+,21,144,63,21,,,,, +49,22,3,1287,864,202.064,64,16,C#3,mp,14,144,49,14,,,,, +49,20,0,1288,864,202.064,,,,,,176,64,127,,,,,V +49,22,3,1287,864,202.198,,,,,,144,49,0,,,,, +49,23,3,1289,928,202.198,32,32,G#2,mp-,13,144,44,13,,,,, +49,14,1,1280,768,202.265,,,,,,144,90,0,,,,, +49,21,2,1286,864,202.265,,,,,,144,63,0,,,,, +49,23,3,1289,928,202.265,,,,,,144,44,0,,,,, +49,24,0,1290,960,202.265,,,,,,176,64,0,,,,,^ +49,25,1,1291,960,202.265,64,16,B3,f,20,,,,,,,, +49,26,2,1292,960,202.265,64,16,B3,f,20,144,59,20,,,,, +49,27,3,1293,960,202.265,,,,,,176,102,0,,,,, +49,28,1,1294,1024,202.399,512,2,B3,,,,,,,,,, +49,29,2,1295,1024,202.399,32,32,B3,,,,,,,,,, +49,30,3,1296,1024,202.399,,,,,,176,102,0,,,,, +49,31,2,1297,1056,202.466,96,16,A0,mp+,15,144,21,15,,,,, +49,31,2,1297,1056,202.667,,,,,,144,21,0,,,,, +49,32,2,1298,1152,202.667,64,16,G2,p,11,144,43,11,,,,, +49,32,2,1298,1152,202.801,,,,,,144,43,0,,,,, +49,33,2,1299,1216,202.801,,,,,,176,102,0,,,,, +49,34,2,1300,1280,202.935,,,,,,176,102,0,,,,, +49,26,2,1292,960,203.47,,,,,,144,59,0,,,,, +49,35,1,1301,1536,203.47,128,8,F4,pp,8,144,65,8,,,,, +49,36,2,1302,1536,203.47,,,,,,176,102,0,,,,, +49,37,3,1303,1536,203.47,512,2,C#3,f,20,144,49,20,,,,, +49,35,1,1301,1536,203.738,,,,,,144,65,0,,,,, +49,38,1,1304,1664,203.738,,,,,,176,102,0,,,,, +49,39,1,1305,1792,204.006,153,8,C5,p,11,144,72,11,,,,, +49,39,1,1305,1792,204.326,,,,,,144,72,0,,,,, +49,41,1,1306,1945,204.326,103,8,D3,p+,12,144,50,12,,,,, +49,40,0,1307,1945,204.326,,,,,,176,64,127,,,,,V +49,9,4,1275,512,204.542,,,,,,144,31,0,,,,, +50,0,0,1308,0,204.542,,,,,,,,,50,,,, +50,1,1,1309,0,204.542,51,16,D3,,,,,,,,,, +50,2,2,1310,0,204.542,2048,0.5,E6,p+,12,144,88,12,,,,, +50,3,3,1311,0,204.542,0,8,C#1,mp,14,,,,,,,, +50,4,3,1312,0,204.542,2048,0.5,C2,mf,17,144,36,17,,,,, +50,5,4,1313,0,204.542,51,16,F#6,p+,12,144,90,12,,,,, +49,37,3,1303,1536,204.542,,,,,,144,49,0,,,,, +49,41,1,1306,1945,204.648,,,,,,144,50,0,,,,, +50,5,4,1313,0,204.648,,,,,,144,90,0,,,,, +50,6,1,1314,51,204.648,153,8,C#2,mf,17,144,37,17,,,,, +50,7,4,1315,51,204.648,51,16,G1,p,11,144,31,11,,,,, +50,7,4,1315,51,204.755,,,,,,144,31,0,,,,, +50,8,4,1316,102,204.755,51,16,F4,p,11,144,65,11,,,,, +50,8,4,1316,102,204.862,,,,,,144,65,0,,,,, +50,9,4,1317,153,204.862,51,16,C3,pp,8,144,48,8,,,,, +50,6,1,1314,51,204.969,,,,,,144,37,0,,,,, +50,9,4,1317,153,204.969,,,,,,144,48,0,,,,, +50,10,0,1318,204,204.969,,,,,,176,64,0,,,,,^ +50,11,1,1319,204,204.969,52,16,E5,p+,12,144,76,12,,,,, +50,12,4,1320,204,204.969,52,16,G#1,pp-,7,144,32,7,,,,, +50,12,4,1320,204,205.077,,,,,,144,32,0,,,,, +50,13,1,1321,256,205.077,128,8,E5,,,,,,,,,, +50,14,4,1322,256,205.077,,,,,,176,102,0,,,,, +50,11,1,1319,204,205.345,,,,,,144,76,0,,,,, +50,15,1,1323,384,205.345,,,,,,176,102,0,,,,, +50,16,1,1324,512,205.613,,,,,,176,102,0,,,,, +50,17,4,1325,512,205.613,,,,,,176,102,0,,,,, +50,4,3,1312,0,206.535,,,,,,144,36,0,,,,, +50,21,2,1326,,206.535,,8,C2,pp,8,144,36,8,,,,g, +50,20,2,1327,,206.61,,8,F#5,pp,8,144,78,8,,,,g, +50,20,2,1327,,206.66,,,,,,144,78,0,,,,, +50,18,4,1328,1024,206.685,,,,,,176,102,0,,,,, +50,19,0,1329,1024,206.685,,,,,,,,,,5933,,, +50,2,2,1310,0,208.827,,,,,,144,88,0,,,,, +50,21,2,1326,,208.827,,,,,,144,36,0,,,,, +51,0,0,1330,0,208.827,,,,,,,,,51,,,, +51,1,1,1331,0,208.827,1024,1,F4,p,11,144,65,11,,,,, +51,2,1,1332,0,208.827,1024,1,G#5,pppp,2,144,80,2,,,,, +51,3,2,1333,0,208.827,1536,1,D#4,f,20,144,63,20,,,,, +51,4,3,1334,0,208.827,128,8,E4,p,11,144,64,11,,,,, +51,5,4,1335,0,208.827,1024,1,G#3,f,20,144,56,20,,,,, +51,4,3,1334,0,209.095,,,,,,144,64,0,,,,, +51,7,3,1336,128,209.095,128,8,F#3,mf,17,144,54,17,,,,, +51,6,0,1337,128,209.095,,,,,,176,64,127,,,,,V +51,8,3,1338,256,209.363,1536,1,F#3,,,,,,,,,, +51,1,1,1331,0,210.97,,,,,,144,65,0,,,,, +51,2,1,1332,0,210.97,,,,,,144,80,0,,,,, +51,5,4,1335,0,210.97,,,,,,144,56,0,,,,, +51,9,1,1339,1024,210.97,,,,,,176,102,0,,,,, +51,10,4,1340,1024,210.97,,,,,,176,102,0,,,,, +51,11,2,1341,1536,212.042,256,4,D#4,,,,,,,,,, +51,13,1,1342,,212.502,,8,D5,pp,8,144,74,8,,,,g, +51,13,1,1342,,212.552,,,,,,144,74,0,,,,, +51,3,2,1333,0,212.577,,,,,,144,63,0,,,,, +51,7,3,1336,128,212.577,,,,,,144,54,0,,,,, +51,12,0,1343,1792,212.577,,,,,,176,64,0,,,,,^ +51,14,1,1344,1792,212.577,256,4,G#5,f,20,144,80,20,,,,, +51,15,2,1345,1792,212.577,,,,,,176,102,0,,,,, +51,16,3,1346,1792,212.577,256,4,G#3,pp,8,144,56,8,,,,, +51,17,2,1347,1920,212.845,128,8,A5,f-,19,144,81,19,,,,, +51,16,3,1346,1792,213.113,,,,,,144,56,0,,,,, +51,17,2,1347,1920,213.113,,,,,,144,81,0,,,,, +52,0,0,1348,0,213.113,,,,,,,,,52,,,, +52,2,1,1349,0,213.113,512,2,G#5,,,,,,,,,, +52,3,2,1350,0,213.113,2048,0.5,A6,ff,22,144,93,22,,,,, +52,4,3,1351,0,213.113,2048,0.5,F#2,ff,22,144,42,22,,,,, +52,1,0,1352,0,213.113,,,,,,176,64,127,,,,,V +51,14,1,1344,1792,214.185,,,,,,144,80,0,,,,, +52,5,1,1353,512,214.185,768,2,D#6,ff,22,144,87,22,,,,, +52,5,1,1353,512,215.792,,,,,,144,87,0,,,,, +52,6,1,1354,1280,215.792,0,8,D4,ppp,5,,,,,,,, +52,7,1,1355,1280,215.792,768,2,A5,ppp,5,144,81,5,,,,, +52,3,2,1350,0,217.399,,,,,,144,93,0,,,,, +52,4,3,1351,0,217.399,,,,,,144,42,0,,,,, +52,7,1,1355,1280,217.399,,,,,,144,81,0,,,,, +53,0,0,1356,0,217.399,,,,,,,,,53,,,, +53,1,1,1357,0,217.399,,,,,,176,102,0,,,,, +53,2,2,1358,0,217.399,2048,0.5,A4,fff,24,144,69,23,,,,, +53,3,3,1359,0,217.399,,,,,,176,102,0,,,,, +53,4,4,1360,0,217.399,,,,,,176,102,0,,,,, +53,5,3,1361,384,218.202,128,8,C#1,mf,17,144,25,17,,,,, +53,6,3,1362,512,218.47,1536,1,C#1,,,,,,,,,, +53,7,1,1363,1024,219.542,0,8,C#3,ppp,5,,,,,,,, +53,8,1,1364,1024,219.542,0,8,C6,ppp,5,,,,,,,, +53,9,1,1365,1024,219.542,1024,1,D#5,f,20,144,75,20,,,,, +53,10,1,1366,1024,219.542,1024,1,E6,ppp,5,144,88,5,,,,, +53,11,4,1367,1024,219.542,,,,,,176,102,0,,,,, +53,12,4,1368,1536,220.613,512,2,B1,f,20,144,35,20,,,,, +53,13,0,1369,2047,221.683,,,,,,176,64,0,,,,,^ +53,2,2,1358,0,221.685,,,,,,144,69,0,,,,, +53,5,3,1361,384,221.685,,,,,,144,25,0,,,,, +53,9,1,1365,1024,221.685,,,,,,144,75,0,,,,, +53,10,1,1366,1024,221.685,,,,,,144,88,0,,,,, +53,12,4,1368,1536,221.685,,,,,,144,35,0,,,,, +54,0,0,1370,0,221.685,,,,,,,,,54,,,, +54,1,0,1371,0,221.685,,,,,,,,,,5934,,, +54,2,1,1372,0,221.685,,,,,,176,102,0,,,,, +54,3,3,1373,0,221.685,1536,1,A#2,f,20,144,46,20,,,,, +54,4,4,1374,0,221.685,2048,0.5,C2,ppp,5,144,36,5,,,,, +54,5,4,1375,0,221.685,2048,0.5,C#2,f,20,144,37,20,,,,, +54,6,3,1376,1536,224.899,128,8,A#2,,,,,,,,,, +54,3,3,1373,0,225.167,,,,,,144,46,0,,,,, +54,7,3,1377,1664,225.167,384,4,G#3,mp,14,144,56,14,,,,, +54,5,4,1375,0,225.97,,,,,,144,37,0,,,,, +55,0,0,1378,0,225.97,,,,,,,,,55,,,, +55,1,1,1379,0,225.97,,,,,,176,102,0,,,,, +55,2,2,1380,0,225.97,,,,,,176,102,0,,,,, +55,3,3,1381,0,225.97,512,2,B2,ppp,5,144,47,5,,,,, +55,4,3,1382,0,225.97,512,2,E3,p,11,144,52,11,,,,, +55,5,3,1383,0,225.97,512,2,G#3,,,,,,,,,, +55,6,4,1384,0,225.97,2048,0.5,C2,,,,,,,,,, +54,7,3,1377,1664,227.042,,,,,,144,56,0,,,,, +55,4,3,1382,0,227.042,,,,,,144,52,0,,,,, +55,7,1,1385,512,227.042,512,2,D#6,pp,8,144,87,8,,,,, +55,8,2,1386,512,227.042,192,8,C6,pp,8,144,84,8,,,,, +55,9,3,1387,512,227.042,512,2,B2,,,,,,,,,, +55,8,2,1386,512,227.444,,,,,,144,84,0,,,,, +55,10,2,1388,704,227.444,,,,,,176,102,0,,,,, +55,11,2,1389,768,227.577,256,4,B3,ff,22,144,59,22,,,,, +55,3,3,1381,0,228.113,,,,,,144,47,0,,,,, +55,7,1,1385,512,228.113,,,,,,144,87,0,,,,, +55,13,1,1390,1024,228.113,,,,,,176,102,0,,,,, +55,14,2,1391,1024,228.113,1024,1,B3,,,,,,,,,, +55,15,3,1392,1024,228.113,,,,,,176,102,0,,,,, +55,12,0,1393,1024,228.113,,,,,,176,64,127,,,,,V +54,4,4,1374,0,230.256,,,,,,144,36,0,,,,, +56,0,0,1394,0,230.256,,,,,,,,,56,,,, +56,1,1,1395,0,230.256,,,,,,176,102,0,,,,, +56,2,2,1396,0,230.256,2048,0.5,B3,,,,,,,,,, +56,3,2,1397,0,230.256,2048,0.5,E4,mp,14,144,64,14,,,,, +56,4,2,1398,0,230.256,2048,0.5,G6,pp,8,144,91,8,,,,, +56,5,3,1399,0,230.256,,,,,,176,102,0,,,,, +56,6,4,1400,0,230.256,,,,,,176,102,0,,,,, +56,7,1,1401,768,231.863,,,,,,176,102,0,,,,, +56,8,3,1402,768,231.863,256,4,F3,pp,8,144,53,8,,,,, +56,9,4,1403,768,231.863,256,4,E1,mp,14,144,28,14,,,,, +56,10,1,1404,896,232.131,0,8,C4,pppp,2,,,,,,,, +56,11,1,1405,896,232.131,0,8,D5,pppp,2,,,,,,,, +56,12,1,1406,896,232.131,,,,,,176,102,0,,,,, +56,13,1,1407,1024,232.399,,,,,,176,102,0,,,,, +56,14,3,1408,1024,232.399,1024,1,F3,,,,,,,,,, +56,15,4,1409,1024,232.399,1024,1,E1,,,,,,,,,, +57,1,0,1410,0,234.459,,,,,,176,64,0,,,,,^ +56,3,2,1397,0,234.542,,,,,,144,64,0,,,,, +56,4,2,1398,0,234.542,,,,,,144,91,0,,,,, +57,0,0,1411,0,234.542,,,,,,,,,57,,,, +57,2,1,1412,0,234.542,,,,,,176,102,0,,,,, +57,3,2,1413,0,234.542,2048,0.5,B3,,,,,,,,,, +57,4,2,1414,0,234.542,2048,0.5,G#4,pppp,2,144,68,2,,,,, +57,5,3,1415,0,234.542,2048,0.5,F3,,,,,,,,,, +57,6,4,1416,0,234.542,2048,0.5,C1,pp,8,144,24,8,,,,, +57,7,4,1417,0,234.542,2048,0.5,E1,,,,,,,,,, +57,8,1,1418,32,234.609,32,32,C#2,pp-,7,144,37,7,,,,, +57,8,1,1418,32,234.676,,,,,,144,37,0,,,,, +57,10,1,1419,64,234.676,,,,,,176,102,0,,,,, +57,9,0,1420,64,234.759,,,,,,176,64,127,,,,,V +57,11,1,1421,256,235.077,,,,,,176,102,0,,,,, +57,12,1,1422,512,235.613,,,,,,176,102,0,,,,, +57,13,1,1423,1024,236.685,,,,,,176,102,0,,,,, +57,14,0,1424,2047,238.676,,,,,,176,64,0,,,,,^ +57,4,2,1414,0,238.827,,,,,,144,68,0,,,,, +57,6,4,1416,0,238.827,,,,,,144,24,0,,,,, +55,11,2,1389,768,238.827,,,,,,144,59,0,,,,, +56,8,3,1402,768,238.827,,,,,,144,53,0,,,,, +56,9,4,1403,768,238.827,,,,,,144,28,0,,,,, +58,0,0,1425,0,238.827,,,,,,,,,58,,,, +58,1,0,1426,0,238.827,,,,,,,,,,5935,,, +58,3,1,1427,0,238.827,42,16,E5,p,11,144,76,11,,,,, +58,4,3,1428,0,238.827,,,,,,176,102,0,,,,, +58,3,1,1427,0,238.915,,,,,,144,76,0,,,,, +58,5,1,1429,42,238.915,43,16,G#3,mp,14,144,56,14,,,,, +58,2,0,1430,0,238.976,,,,,,176,64,127,,,,,V +58,5,1,1429,42,239.005,,,,,,144,56,0,,,,, +58,6,1,1431,85,239.005,43,16,C#2,mf,17,144,37,17,,,,, +58,8,0,1432,170,239.033,,,,,,176,64,0,,,,,^ +58,6,1,1431,85,239.095,,,,,,144,37,0,,,,, +58,7,1,1433,128,239.095,42,16,C6,f,20,144,84,20,,,,, +58,7,1,1433,128,239.183,,,,,,144,84,0,,,,, +58,10,1,1434,170,239.183,86,8,C#1,f,20,144,25,20,,,,, +58,9,0,1435,170,239.333,,,,,,176,64,127,,,,,V +58,10,1,1434,170,239.363,,,,,,144,25,0,,,,, +58,11,1,1436,256,239.363,,,,,,176,102,0,,,,, +58,12,3,1437,256,239.363,256,4,A#2,f,20,144,46,20,,,,, +58,13,1,1438,512,239.899,,,,,,176,102,0,,,,, +58,14,3,1439,512,239.899,85,8,A#2,,,,,,,,,, +58,12,3,1437,256,240.077,,,,,,144,46,0,,,,, +58,15,3,1440,597,240.077,171,4,E6,mf,17,144,88,17,,,,, +58,15,3,1440,597,240.435,,,,,,144,88,0,,,,, +58,16,3,1441,768,240.435,85,8,G#3,p,11,144,56,11,,,,, +58,16,3,1441,768,240.612,,,,,,144,56,0,,,,, +58,17,0,1442,853,240.612,,,,,,176,64,0,,,,,^ +58,18,3,1443,853,240.612,85,8,C6,ppp,5,144,84,5,,,,, +58,18,3,1443,853,240.79,,,,,,144,84,0,,,,, +58,19,3,1444,938,240.79,,,,,,176,102,0,,,,, +58,20,1,1445,1024,240.97,,,,,,176,102,0,,,,, +58,21,3,1446,1024,240.97,,,,,,176,102,0,,,,, +58,22,0,1447,1024,240.97,,,,,,,,,,5936,,, +58,24,1,1448,1792,242.577,,,,,,176,102,0,,,,, +58,25,3,1449,1792,242.577,128,8,G2,mf,17,144,43,17,,,,, +58,23,0,1450,1792,242.577,,,,,,176,64,127,,,,,V +58,25,3,1449,1792,242.845,,,,,,144,43,0,,,,, +58,26,1,1451,1920,242.845,32,32,D6,ppp,5,144,86,5,,,,, +58,27,3,1452,1920,242.845,64,16,A0,p-,10,144,21,10,,,,, +58,26,1,1451,1920,242.912,,,,,,144,86,0,,,,, +58,28,1,1453,1952,242.912,32,32,E2,ppp,5,144,40,5,,,,, +58,31,0,1454,2016,242.93,,,,,,176,64,0,,,,,^ +58,28,1,1453,1952,242.979,,,,,,144,40,0,,,,, +58,29,1,1455,1984,242.979,32,32,C#3,ppp,5,144,49,5,,,,, +58,30,3,1456,1984,242.979,,,,,,176,102,0,,,,, +58,27,3,1452,1920,242.979,,,,,,144,21,0,,,,, +58,29,1,1455,1984,243.046,,,,,,144,49,0,,,,, +58,32,1,1457,2016,243.046,,,,,,176,102,0,,,,, +59,0,0,1458,0,243.113,,,,,,,,,59,,,, +59,2,1,1459,0,243.113,1024,1,G#5,p,11,144,80,11,,,,, +59,3,2,1460,0,243.113,21,32,A#5,ppp,5,144,82,5,,,,, +59,4,3,1461,0,243.113,,,,,,176,102,0,,,,, +59,5,4,1462,0,243.113,1024,1,A2,fff,24,144,45,23,,,,, +59,6,4,1463,0,243.113,1024,1,C3,mp,14,144,48,14,,,,, +59,3,2,1460,0,243.157,,,,,,144,82,0,,,,, +59,7,2,1464,21,243.157,21,32,G#4,ppp+,6,144,68,6,,,,, +59,7,2,1464,21,243.201,,,,,,144,68,0,,,,, +59,8,2,1465,42,243.201,22,32,F#2,pp,8,144,42,8,,,,, +59,1,0,1466,0,243.23,,,,,,176,64,127,,,,,V +59,8,2,1465,42,243.247,,,,,,144,42,0,,,,, +59,9,2,1467,64,243.247,192,8,D3,pp,8,144,50,8,,,,, +59,10,0,1468,150,243.427,,,,,,176,64,0,,,,,^ +59,2,1,1459,0,243.649,,,,,,144,80,0,,,,, +59,9,2,1467,64,243.649,,,,,,144,50,0,,,,, +59,11,2,1469,256,243.649,0,8,G6,pppp,2,,,,,,,, +59,12,2,1470,256,243.649,128,8,G#5,mp,14,144,80,14,,,,, +59,13,2,1471,384,243.917,128,8,A0,mp+,15,144,21,15,,,,, +59,13,2,1471,384,244.185,,,,,,144,21,0,,,,, +59,14,2,1472,512,244.185,128,8,G2,mp,14,144,43,14,,,,, +59,14,2,1472,512,244.452,,,,,,144,43,0,,,,, +59,15,2,1473,640,244.452,0,8,D#4,mp-,13,,,,,,,, +59,16,2,1474,640,244.452,384,4,B3,mp-,13,144,59,13,,,,, +59,17,3,1475,768,244.72,,,,,,176,102,0,,,,, +59,18,3,1476,896,244.988,128,8,E2,ppp,5,144,40,5,,,,, +59,5,4,1462,0,245.256,,,,,,144,45,0,,,,, +59,6,4,1463,0,245.256,,,,,,144,48,0,,,,, +59,12,2,1470,256,245.256,,,,,,144,80,0,,,,, +59,19,1,1477,1024,245.256,,,,,,176,102,0,,,,, +59,20,2,1478,1024,245.256,512,2,B3,,,,,,,,,, +59,21,3,1479,1024,245.256,896,2,E2,,,,,,,,,, +59,22,4,1480,1024,245.256,,,,,,176,102,0,,,,, +59,23,2,1481,1536,246.327,128,8,B3,,,,,,,,,, +59,16,2,1474,640,246.595,,,,,,144,59,0,,,,, +59,24,2,1482,1664,246.595,64,16,G2,pp,8,144,43,8,,,,, +59,24,2,1482,1664,246.729,,,,,,144,43,0,,,,, +59,25,2,1483,1728,246.729,64,16,A1,pp-,7,144,33,7,,,,, +59,25,2,1483,1728,246.863,,,,,,144,33,0,,,,, +59,26,2,1484,1792,246.863,64,16,D#3,ppp,5,144,51,5,,,,, +59,26,2,1484,1792,246.997,,,,,,144,51,0,,,,, +59,27,2,1485,1856,246.997,,,,,,176,102,0,,,,, +59,18,3,1476,896,247.131,,,,,,144,40,0,,,,, +59,28,2,1486,1920,247.131,64,16,C5,ppp,5,144,72,5,,,,, +59,29,3,1487,1920,247.131,,,,,,176,102,0,,,,, +59,28,2,1486,1920,247.265,,,,,,144,72,0,,,,, +59,30,2,1488,1984,247.265,64,16,C#3,ppp,5,144,49,5,,,,, +59,30,2,1488,1984,247.399,,,,,,144,49,0,,,,, +60,0,0,1489,0,247.399,,,,,,,,,60,,,, +60,1,0,1490,0,247.399,,,,,,,,,,5937,,, +60,2,1,1491,0,247.399,1536,1,G#5,mp,14,144,80,14,,,,, +60,3,3,1492,0,247.399,896,2,G#4,ppp,5,144,68,5,,,,, +60,3,3,1492,0,249.274,,,,,,144,68,0,,,,, +60,4,3,1493,896,249.274,42,16,B3,ppp,5,144,59,5,,,,, +60,4,3,1493,896,249.362,,,,,,144,59,0,,,,, +60,5,3,1494,938,249.362,43,16,A2,ppp,5,144,45,5,,,,, +60,5,3,1494,938,249.452,,,,,,144,45,0,,,,, +60,6,3,1495,981,249.452,21,32,D#4,ppp,5,144,63,5,,,,, +60,6,3,1495,981,249.496,,,,,,144,63,0,,,,, +60,7,3,1496,1002,249.496,22,32,A0,ppp-,4,144,21,4,,,,, +60,7,3,1496,1002,249.542,,,,,,144,21,0,,,,, +60,8,3,1497,1024,249.542,512,2,B2,pppp,2,144,47,2,,,,, +60,2,1,1491,0,250.613,,,,,,144,80,0,,,,, +60,8,3,1497,1024,250.613,,,,,,144,47,0,,,,, +60,9,1,1498,1536,250.613,28,32,E2,p,11,144,40,11,,,,, +60,10,3,1499,1536,250.613,,,,,,176,102,0,,,,, +60,9,1,1498,1536,250.672,,,,,,144,40,0,,,,, +60,11,1,1500,1564,250.672,28,32,D5,p,11,144,74,11,,,,, +60,11,1,1500,1564,250.73,,,,,,144,74,0,,,,, +60,12,1,1501,1592,250.73,29,32,C#3,p,11,144,49,11,,,,, +60,12,1,1501,1592,250.791,,,,,,144,49,0,,,,, +60,13,1,1502,1621,250.791,28,32,C4,p,11,144,60,11,,,,, +60,13,1,1502,1621,250.85,,,,,,144,60,0,,,,, +60,14,1,1503,1649,250.85,29,32,D6,mp,14,144,86,14,,,,, +60,14,1,1503,1649,250.91,,,,,,144,86,0,,,,, +60,15,1,1504,1678,250.91,28,32,E3,mp,14,144,52,14,,,,, +60,15,1,1504,1678,250.969,,,,,,144,52,0,,,,, +60,16,1,1505,1706,250.969,43,32,C5,mp,14,144,72,14,,,,, +60,16,1,1505,1706,251.059,,,,,,144,72,0,,,,, +60,17,1,1506,1749,251.059,43,32,C#4,mp,14,144,61,14,,,,, +60,17,1,1506,1749,251.149,,,,,,144,61,0,,,,, +60,18,1,1507,1792,251.149,170,4,G#6,mf,17,144,92,17,,,,, +60,,,1508,1792,251.149,,,,,,176,64,127,,,,,V +60,18,1,1507,1792,251.505,,,,,,144,92,0,,,,, +60,19,1,1509,1962,251.505,86,8,E3,mf,17,144,52,17,,,,, +61,0,0,1510,0,251.685,,,,,,,,,61,,,, +61,,,1511,0,251.685,,,,,,176,64,0,,,,,^ +61,1,1,1512,0,251.685,85,8,E3,,,,,,,,,, +61,2,3,1513,0,251.685,,,,,,176,102,0,,,,, +61,3,4,1514,0,251.685,768,2,G2,ppp,5,144,43,5,,,,, +60,19,1,1509,1962,251.862,,,,,,144,52,0,,,,, +61,4,1,1515,85,251.862,171,4,C#4,mf,17,144,61,17,,,,, +61,4,1,1515,85,252.22,,,,,,144,61,0,,,,, +61,5,1,1516,256,252.22,170,4,G#5,f,20,144,80,20,,,,, +61,5,1,1516,256,252.576,,,,,,144,80,0,,,,, +61,6,1,1517,426,252.576,171,4,D6,f,20,144,86,20,,,,, +61,6,1,1517,426,252.934,,,,,,144,86,0,,,,, +61,7,1,1518,597,252.934,85,8,C#3,f,20,144,49,20,,,,, +61,7,1,1518,597,253.112,,,,,,144,49,0,,,,, +61,8,1,1519,682,253.112,43,16,E2,f,20,144,40,20,,,,, +61,8,1,1519,682,253.202,,,,,,144,40,0,,,,, +61,9,1,1520,725,253.202,43,16,C5,f,20,144,72,20,,,,, +61,10,0,1521,745,253.244,,,,,,176,64,127,,,,,V +61,3,4,1514,0,253.292,,,,,,144,43,0,,,,, +61,11,1,1522,768,253.292,256,4,G#5,f,20,144,80,20,,,,, +61,12,4,1523,768,253.292,128,8,B2,ppp,5,144,47,5,,,,, +61,9,1,1520,725,253.292,,,,,,144,72,0,,,,, +61,13,0,1524,896,253.36,,,,,,176,64,0,,,,,^ +61,12,4,1523,768,253.56,,,,,,144,47,0,,,,, +61,14,4,1525,896,253.56,,,,,,176,102,0,,,,, +61,13,0,1526,896,253.66,,,,,,176,64,127,,,,,V +61,15,0,1527,906,253.781,,,,,,176,64,0,,,,,^ +61,16,1,1528,1024,253.827,1024,1,G#5,,,,,,,,,, +61,17,4,1529,1024,253.827,1024,1,G#1,pp,8,144,32,8,,,,, +62,0,0,1530,0,255.97,,,,,,,,,62,,,, +62,1,1,1531,0,255.97,2048,0.5,G#5,,,,,,,,,, +62,2,2,1532,0,255.97,,,,,,176,102,0,,,,, +62,3,3,1533,0,255.97,,,,,,176,102,0,,,,, +62,4,4,1534,0,255.97,2048,0.5,G#1,,,,,,,,,, +62,5,2,1535,512,257.042,,,,,,176,102,0,,,,, +62,6,2,1536,682,257.397,29,32,A4,pppp,2,144,69,2,,,,, +62,6,2,1536,682,257.458,,,,,,144,69,0,,,,, +62,7,2,1537,711,257.458,28,32,D#4,pppp,2,144,63,2,,,,, +62,7,2,1537,711,257.517,,,,,,144,63,0,,,,, +62,8,2,1538,739,257.517,29,32,C2,pppp,2,144,36,2,,,,, +62,8,2,1538,739,257.577,,,,,,144,36,0,,,,, +62,9,2,1539,768,257.577,,,,,,176,102,0,,,,, +62,10,2,1540,1024,258.113,,,,,,176,102,0,,,,, +63,0,0,1541,0,260.256,,,,,,,,,63,,,, +63,1,1,1542,0,260.256,256,4,G#5,,,,,,,,,, +63,2,3,1543,0,260.256,1024,1,G1,pppp,2,144,31,2,,,,, +63,3,4,1544,0,260.256,1024,1,G#1,,,,,,,,,, +63,5,1,1545,,260.642,,8,A#5,pp,8,144,82,8,,,,g, +63,5,1,1545,,260.692,,,,,,144,82,0,,,,, +63,6,1,1546,,260.717,,8,G7,pp,8,144,103,8,,,,g, +63,6,1,1546,,260.767,,,,,,144,103,0,,,,, +61,11,1,1522,768,260.792,,,,,,144,80,0,,,,, +63,7,1,1547,256,260.792,512,2,E2,ppp,5,144,40,5,,,,, +63,4,0,1548,256,260.792,,,,,,176,64,127,,,,,V +63,7,1,1547,256,261.863,,,,,,144,40,0,,,,, +63,8,1,1549,768,261.863,512,2,D6,f,20,144,86,20,,,,, +61,17,4,1529,1024,262.399,,,,,,144,32,0,,,,, +63,9,3,1550,1024,262.399,,,,,,176,102,0,,,,, +63,10,4,1551,1024,262.399,,,,,,176,102,0,,,,, +63,2,3,1543,0,262.399,,,,,,144,31,0,,,,, +63,8,1,1549,768,262.935,,,,,,144,86,0,,,,, +63,11,1,1552,1280,262.935,128,8,C5,mf,17,144,72,17,,,,, +63,11,1,1552,1280,263.202,,,,,,144,72,0,,,,, +63,12,1,1553,1408,263.202,42,16,C#3,mf-,16,144,49,16,,,,, +63,12,1,1553,1408,263.29,,,,,,144,49,0,,,,, +63,13,0,1554,1450,263.29,,,,,,176,64,0,,,,,^ +63,14,1,1555,1450,263.29,,,,,,176,102,0,,,,, +63,15,1,1556,1493,263.38,43,16,C#4,mp,14,144,61,14,,,,, +63,15,1,1556,1493,263.47,,,,,,144,61,0,,,,, +63,16,1,1557,1536,263.47,512,2,G#6,mp,14,144,92,14,,,,, +63,17,3,1558,1536,263.47,,,,,,176,102,0,,,,, +63,18,3,1559,1792,264.006,256,4,D4,ppp,5,144,62,5,,,,, +63,16,1,1557,1536,264.542,,,,,,144,92,0,,,,, +64,0,0,1560,0,264.542,,,,,,,,,64,,,, +64,1,1,1561,0,264.542,2048,0.5,C#6,fff,24,144,85,23,,,,, +64,2,3,1562,0,264.542,2048,0.5,D4,,,,,,,,,, +65,0,0,1563,0,268.827,,,,,,,,,65,,,, +65,1,1,1564,0,268.827,512,2,C#6,,,,,,,,,, +65,2,3,1565,0,268.827,512,2,D4,,,,,,,,,, +64,1,1,1561,0,269.899,,,,,,144,85,0,,,,, +65,3,1,1566,512,269.899,1536,1,F#3,mp,14,144,54,14,,,,, +65,4,3,1567,512,269.899,512,2,C#3,pp,8,144,49,8,,,,, +63,18,3,1559,1792,269.899,,,,,,144,62,0,,,,, +65,5,3,1568,1024,270.97,128,8,C#3,,,,,,,,,, +65,4,3,1567,512,271.238,,,,,,144,49,0,,,,, +65,6,3,1569,1152,271.238,128,8,F3,ppp,5,144,53,5,,,,, +65,7,3,1570,1280,271.506,512,2,F3,,,,,,,,,, +65,6,3,1569,1152,272.577,,,,,,144,53,0,,,,, +65,8,3,1571,1792,272.577,,,,,,176,102,0,,,,, +66,0,0,1572,0,273.113,,,,,,,,,66,,,, +66,1,1,1573,0,273.113,1024,1,F#3,,,,,,,,,, +66,2,3,1574,0,273.113,,,,,,176,102,0,,,,, +65,3,1,1566,512,275.256,,,,,,144,54,0,,,,, +66,3,1,1575,1024,275.256,512,2,F4,ppp,5,144,65,5,,,,, +66,4,1,1576,1536,276.327,128,8,F4,,,,,,,,,, +66,3,1,1575,1024,276.595,,,,,,144,65,0,,,,, +66,5,1,1577,1664,276.595,128,8,G2,pppp,2,144,43,2,,,,, +66,6,1,1578,1792,276.863,192,8,G2,,,,,,,,,, +66,7,0,1579,1792,276.863,,,,,,,,,,5938,,, +66,10,1,1580,,277.249,,8,A#5,pp+,9,144,82,9,,,,g, +66,5,1,1577,1664,277.265,,,,,,144,43,0,,,,, +66,8,1,1581,1984,277.265,,,,,,176,102,0,,,,, +66,10,1,1580,,277.299,,,,,,144,82,0,,,,, +66,9,1,1582,,277.324,,8,F#2,pp,8,144,42,8,,,,g, +66,9,1,1582,,277.374,,,,,,144,42,0,,,,, +67,0,0,1583,0,277.399,,,,,,,,,67,,,, +67,1,1,1584,0,277.399,2048,0.5,D#5,p,11,144,75,11,,,,, +67,2,2,1585,0,277.399,170,4,G#4,pp+,9,144,68,9,,,,, +67,3,3,1586,0,277.399,,,,,,176,102,0,,,,, +67,4,4,1587,0,277.399,,,,,,176,102,0,,,,, +67,2,2,1585,0,277.755,,,,,,144,68,0,,,,, +67,5,2,1588,170,277.755,,,,,,176,102,0,,,,, +67,6,2,1589,256,277.935,0,8,A#4,ppp,5,,,,,,,, +67,7,2,1590,256,277.935,0,8,D4,ppp+,6,,,,,,,, +67,8,2,1591,256,277.935,512,2,F#5,pp,8,144,78,8,,,,, +67,9,2,1592,256,277.935,512,2,C#6,f,20,144,85,20,,,,, +67,10,3,1593,256,277.935,85,8,C2,p,11,144,36,11,,,,, +67,11,4,1594,256,277.935,128,8,E1,f,20,144,28,20,,,,, +67,12,4,1595,256,277.935,128,8,C#2,f,20,144,37,20,,,,, +67,13,0,1596,290,278.006,,,,,,176,64,127,,,,,V +67,10,3,1593,256,278.112,,,,,,144,36,0,,,,, +67,14,3,1597,341,278.112,85,8,G#2,f+,21,144,44,21,,,,, +67,11,4,1594,256,278.202,,,,,,144,28,0,,,,, +67,12,4,1595,256,278.202,,,,,,144,37,0,,,,, +67,15,4,1598,384,278.202,,,,,,176,102,0,,,,, +67,14,3,1597,341,278.29,,,,,,144,44,0,,,,, +67,16,3,1599,426,278.29,86,8,F3,mf,17,144,53,17,,,,, +67,16,3,1599,426,278.47,,,,,,144,53,0,,,,, +67,17,3,1600,512,278.47,,,,,,176,102,0,,,,, +67,18,4,1601,512,278.47,,,,,,176,102,0,,,,, +67,19,4,1602,597,278.648,85,8,E5,mf,17,144,76,17,,,,, +67,19,4,1602,597,278.826,,,,,,144,76,0,,,,, +67,20,4,1603,682,278.826,86,8,F#3,f,20,144,54,20,,,,, +67,8,2,1591,256,279.006,,,,,,144,78,0,,,,, +67,20,4,1603,682,279.006,,,,,,144,54,0,,,,, +67,21,2,1604,768,279.006,512,2,C#6,,,,,,,,,, +67,22,3,1605,768,279.006,256,4,C3,f,20,144,48,20,,,,, +67,23,4,1606,768,279.006,128,8,D#2,pp,8,144,39,8,,,,, +67,23,4,1606,768,279.274,,,,,,144,39,0,,,,, +67,24,4,1607,896,279.274,,,,,,176,102,0,,,,, +67,22,3,1605,768,279.542,,,,,,144,48,0,,,,, +67,25,3,1608,1024,279.542,128,8,G#3,mf,17,144,56,17,,,,, +67,26,4,1609,1024,279.542,256,4,A3,ppp,5,144,57,5,,,,, +67,25,3,1608,1024,279.81,,,,,,144,56,0,,,,, +67,27,3,1610,1152,279.81,,,,,,176,102,0,,,,, +67,9,2,1592,256,280.077,,,,,,144,85,0,,,,, +67,26,4,1609,1024,280.077,,,,,,144,57,0,,,,, +67,28,0,1611,1280,280.077,,,,,,176,64,0,,,,,^ +67,29,2,1612,1280,280.077,42,16,E5,mp,14,144,76,14,,,,, +67,30,3,1613,1280,280.077,102,8,C3,ff,22,144,48,22,,,,, +67,31,4,1614,1280,280.077,,,,,,176,102,0,,,,, +67,29,2,1612,1280,280.165,,,,,,144,76,0,,,,, +67,30,3,1613,1280,280.165,,,,,,144,48,0,,,,, +67,32,2,1615,1322,280.165,0,8,F4,mp,14,,,,,,,, +67,33,2,1616,1322,280.165,43,16,C3,f,20,144,48,20,,,,, +67,34,2,1617,1322,280.165,64,16,F#3,f,20,144,54,20,,,,, +67,35,2,1618,1322,280.165,64,16,G#3,f,20,144,56,20,,,,, +67,36,2,1619,1322,280.165,64,16,F4,f,20,144,65,20,,,,, +67,37,2,1620,1322,280.165,64,16,E5,f,20,144,76,20,,,,, +67,38,2,1621,1365,280.255,85,8,D4,p,11,144,62,11,,,,, +67,33,2,1616,1322,280.291,,,,,,144,48,0,,,,, +67,39,3,1622,1382,280.291,154,8,D#1,f,20,144,27,20,,,,, +67,40,3,1623,1382,280.291,128,8,C2,f,20,144,36,20,,,,, +67,34,2,1617,1322,280.299,,,,,,144,54,0,,,,, +67,35,2,1618,1322,280.299,,,,,,144,56,0,,,,, +67,36,2,1619,1322,280.299,,,,,,144,65,0,,,,, +67,37,2,1620,1322,280.299,,,,,,144,76,0,,,,, +67,38,2,1621,1365,280.433,,,,,,144,62,0,,,,, +67,41,2,1624,1450,280.433,86,8,G6,p,11,144,91,11,,,,, +67,40,3,1623,1382,280.559,,,,,,144,36,0,,,,, +67,39,3,1622,1382,280.613,,,,,,144,27,0,,,,, +67,41,2,1624,1450,280.613,,,,,,144,91,0,,,,, +67,42,3,1625,1536,280.613,,,,,,176,102,0,,,,, +67,44,2,1626,1536,280.613,102,8,A#5,p,11,144,82,11,,,,, +67,45,4,1627,1536,280.613,,,,,,176,102,0,,,,, +67,43,0,1628,1536,280.613,,,,,,176,64,127,,,,,V +67,44,2,1626,1536,280.827,,,,,,144,82,0,,,,, +67,46,3,1629,1638,280.827,102,8,B0,pp,8,144,23,8,,,,, +67,47,3,1630,1638,280.827,128,8,F#1,pp,8,144,30,8,,,,, +67,48,2,1631,1638,280.827,,,,,,176,102,0,,,,, +67,46,3,1629,1638,281.04,,,,,,144,23,0,,,,, +67,49,3,1632,1740,281.04,103,8,D3,mf,17,144,50,17,,,,, +67,47,3,1630,1638,281.094,,,,,,144,30,0,,,,, +67,49,3,1632,1740,281.256,,,,,,144,50,0,,,,, +67,50,3,1633,1843,281.256,,,,,,176,102,0,,,,, +67,51,2,1634,1843,281.256,102,8,G#4,mf-,16,144,68,16,,,,, +67,51,2,1634,1843,281.469,,,,,,144,68,0,,,,, +67,52,3,1635,1945,281.469,51,16,G#2,f,20,144,44,20,,,,, +67,53,2,1636,1945,281.469,103,8,G7,mp,14,144,103,14,,,,, +67,52,3,1635,1945,281.576,,,,,,144,44,0,,,,, +67,54,3,1637,1996,281.576,52,16,F#2,f,20,144,42,20,,,,, +67,55,0,1638,2047,281.683,,,,,,176,64,0,,,,,^ +67,53,2,1636,1945,281.685,,,,,,144,103,0,,,,, +67,54,3,1637,1996,281.685,,,,,,144,42,0,,,,, +68,0,0,1639,0,281.685,,,,,,,,,68,,,, +68,1,1,1640,0,281.685,2048,0.5,D#5,,,,,,,,,, +68,2,2,1641,0,281.685,,,,,,176,102,0,,,,, +68,3,3,1642,0,281.685,,,,,,176,102,0,,,,, +68,4,4,1643,0,281.685,,,,,,176,102,0,,,,, +68,5,2,1644,85,281.862,43,16,C3,f,20,144,48,20,,,,, +68,5,2,1644,85,281.952,,,,,,144,48,0,,,,, +68,6,2,1645,128,281.952,42,16,F4,f+,21,144,65,21,,,,, +68,7,2,1646,128,281.952,64,16,A#4,f+,21,144,70,21,,,,, +68,6,2,1645,128,282.04,,,,,,144,65,0,,,,, +68,8,2,1647,170,282.04,43,16,F#3,ff,22,144,54,22,,,,, +68,9,4,1648,170,282.04,86,8,D3,f,20,144,50,20,,,,, +68,7,2,1646,128,282.086,,,,,,144,70,0,,,,, +68,8,2,1647,170,282.13,,,,,,144,54,0,,,,, +68,10,2,1649,213,282.13,43,16,C3,ff+,23,144,48,23,,,,, +68,11,2,1650,213,282.13,64,16,G#3,ff+,23,144,56,23,,,,, +68,12,2,1651,213,282.13,64,16,E5,ff+,23,144,76,23,,,,, +68,13,2,1652,213,282.13,64,16,A#5,ff+,23,144,82,23,,,,, +68,10,2,1649,213,282.22,,,,,,144,48,0,,,,, +68,12,2,1651,213,282.22,,,,,,144,76,0,,,,, +68,14,2,1653,256,282.22,1792,1,F#4,fff,24,144,66,23,,,,, +68,15,2,1654,256,282.22,1024,1,A#4,fff,24,144,70,23,,,,, +68,16,2,1655,256,282.22,1024,1,E5,fff,24,144,76,23,,,,, +68,17,2,1656,256,282.22,1024,1,D6,fff,24,144,86,23,,,,, +68,18,3,1657,256,282.22,,,,,,176,102,0,,,,, +68,19,4,1658,256,282.22,170,4,D3,,,,,,,,,, +68,11,2,1650,213,282.264,,,,,,144,56,0,,,,, +68,13,2,1652,213,282.264,,,,,,144,82,0,,,,, +68,9,4,1648,170,282.576,,,,,,144,50,0,,,,, +68,20,4,1659,426,282.576,,,,,,176,102,0,,,,, +68,21,3,1660,512,282.756,,,,,,176,102,0,,,,, +68,22,4,1661,512,282.756,0,8,D#5,s,0,,,,,,,, +68,23,4,1662,512,282.756,256,4,B2,ppp,5,144,47,5,,,,, +68,24,4,1663,768,283.292,32,32,B2,,,,,,,,,, +68,23,4,1662,512,283.359,,,,,,144,47,0,,,,, +68,25,4,1664,800,283.359,224,8,G1,ppp,5,144,31,5,,,,, +68,26,3,1665,1024,283.827,,,,,,176,102,0,,,,, +68,27,4,1666,1024,283.827,64,16,G1,,,,,,,,,, +68,25,4,1664,800,283.961,,,,,,144,31,0,,,,, +68,28,3,1667,1088,283.961,192,8,F3,ff,22,144,53,22,,,,, +68,29,4,1668,1088,283.961,192,8,G#4,ppp,5,144,68,5,,,,, +68,30,3,1669,1280,284.363,512,2,F3,,,,,,,,,, +68,31,4,1670,1280,284.363,128,8,G#4,,,,,,,,,, +68,32,4,1671,1280,284.363,128,8,F5,mf,17,144,77,17,,,,, +68,33,4,1672,1280,284.363,128,8,F#6,ff,22,144,90,22,,,,, +68,29,4,1668,1088,284.631,,,,,,144,68,0,,,,, +68,34,4,1673,1408,284.631,128,8,F5,,,,,,,,,, +68,35,4,1674,1408,284.631,128,8,F#6,,,,,,,,,, +68,32,4,1671,1280,284.899,,,,,,144,77,0,,,,, +68,33,4,1672,1280,284.899,,,,,,144,90,0,,,,, +68,36,4,1675,1536,284.899,128,8,A3,f,20,144,57,20,,,,, +68,37,4,1676,1536,284.899,128,8,F4,ff,22,144,65,22,,,,, +68,36,4,1675,1536,285.167,,,,,,144,57,0,,,,, +68,37,4,1676,1536,285.167,,,,,,144,65,0,,,,, +68,38,4,1677,1664,285.167,128,8,G#1,f,20,144,32,20,,,,, +68,39,4,1678,1664,285.167,128,8,B1,ppp,5,144,35,5,,,,, +68,38,4,1677,1664,285.435,,,,,,144,32,0,,,,, +68,39,4,1678,1664,285.435,,,,,,144,35,0,,,,, +68,41,3,1679,1792,285.435,128,8,F3,,,,,,,,,, +68,42,4,1680,1792,285.435,85,8,F#7,ff,22,144,102,22,,,,, +68,40,0,1681,1792,285.435,,,,,,176,64,127,,,,,V +68,42,4,1680,1792,285.612,,,,,,144,102,0,,,,, +68,43,4,1682,1877,285.612,85,8,C4,ff,22,144,60,22,,,,, +68,28,3,1667,1088,285.702,,,,,,144,53,0,,,,, +68,44,3,1683,1920,285.702,128,8,C2,ff,22,144,36,22,,,,, +68,43,4,1682,1877,285.79,,,,,,144,60,0,,,,, +68,45,4,1684,1962,285.79,86,8,G#2,ff,22,144,44,22,,,,, +68,46,0,1685,2047,285.968,,,,,,176,64,0,,,,,^ +69,0,0,1686,0,285.97,,,,,,,,,69,,,, +69,1,1,1687,0,285.97,2048,0.5,D#5,,,,,,,,,, +69,2,2,1688,0,285.97,2048,0.5,F#4,,,,,,,,,, +69,3,2,1689,0,285.97,2048,0.5,A#4,,,,,,,,,, +69,4,2,1690,0,285.97,2048,0.5,E5,,,,,,,,,, +69,5,2,1691,0,285.97,2048,0.5,D6,,,,,,,,,, +69,6,3,1692,0,285.97,2048,0.5,C2,,,,,,,,,, +69,7,3,1693,0,285.97,2048,0.5,E2,f,20,144,40,20,,,,, +69,8,4,1694,0,285.97,,,,,,176,102,0,,,,, +68,45,4,1684,1962,285.97,,,,,,144,44,0,,,,, +69,9,4,1695,256,286.506,0,8,A2,mp,14,,,,,,,, +69,10,4,1696,256,286.506,1792,1,F#3,mp,14,144,54,14,,,,, +68,15,2,1654,256,288.649,,,,,,144,70,0,,,,, +68,16,2,1655,256,288.649,,,,,,144,76,0,,,,, +68,17,2,1656,256,288.649,,,,,,144,86,0,,,,, +67,1,1,1584,0,290.256,,,,,,144,75,0,,,,, +68,14,2,1653,256,290.256,,,,,,144,66,0,,,,, +70,0,0,1697,0,290.256,,,,,,,,,70,,,, +70,1,1,1698,0,290.256,,,,,,176,102,0,,,,, +70,2,2,1699,0,290.256,,,,,,176,102,0,,,,, +70,3,3,1700,0,290.256,2048,0.5,C2,,,,,,,,,, +70,4,3,1701,0,290.256,2048,0.5,E2,,,,,,,,,, +70,5,4,1702,0,290.256,768,2,F#3,,,,,,,,,, +70,6,2,1703,512,291.327,256,4,B3,ppp,5,144,59,5,,,,, +69,10,4,1696,256,291.863,,,,,,144,54,0,,,,, +70,6,2,1703,512,291.863,,,,,,144,59,0,,,,, +70,7,2,1704,768,291.863,,,,,,176,102,0,,,,, +70,8,4,1705,768,291.863,,,,,,176,102,0,,,,, +70,9,2,1706,1024,292.399,,,,,,176,102,0,,,,, +70,10,4,1707,1024,292.399,,,,,,176,102,0,,,,, +69,7,3,1693,0,294.542,,,,,,144,40,0,,,,, +71,0,0,1708,0,294.542,,,,,,,,,71,,,, +71,1,0,1709,0,294.542,,,,,,,,,,5939,,, +71,2,1,1710,0,294.542,,,,,,176,102,0,,,,, +71,3,2,1711,0,294.542,512,2,C4,pp,8,144,60,8,,,,, +71,4,3,1712,0,294.542,256,4,C#6,pp,8,144,85,8,,,,, +68,44,3,1683,1920,294.542,,,,,,144,36,0,,,,, +71,4,3,1712,0,295.077,,,,,,144,85,0,,,,, +71,5,3,1713,256,295.077,512,2,F#3,pp,8,144,54,8,,,,, +71,3,2,1711,0,295.613,,,,,,144,60,0,,,,, +71,6,2,1714,512,295.613,1024,1,F5,ppp-,4,144,77,4,,,,, +71,5,3,1713,256,296.149,,,,,,144,54,0,,,,, +71,7,3,1715,768,296.149,512,2,A2,pp+,9,144,45,9,,,,, +71,7,3,1715,768,297.22,,,,,,144,45,0,,,,, +71,8,3,1716,1280,297.22,,,,,,176,102,0,,,,, +71,9,2,1717,1536,297.756,,,,,,176,102,0,,,,, +71,6,2,1714,512,297.756,,,,,,144,77,0,,,,, +72,0,0,1718,0,298.827,,,,,,,,,72,,,, +72,1,1,1719,0,298.827,256,4,C#7,pp,8,144,97,8,,,,, +72,2,3,1720,0,298.827,,,,,,176,102,0,,,,, +72,1,1,1719,0,299.363,,,,,,144,97,0,,,,, +72,4,1,1721,256,299.363,512,2,D7,mp,14,144,98,14,,,,, +72,3,0,1722,256,299.363,,,,,,176,64,127,,,,,V +72,6,3,1723,,300.36,,8,F#3,mp+,15,144,54,15,,,,g, +72,6,3,1723,,300.41,,,,,,144,54,0,,,,, +72,4,1,1721,256,300.435,,,,,,144,98,0,,,,, +72,5,1,1724,768,300.435,32,32,F#6,p,11,144,90,11,,,,, +72,7,3,1725,768,300.435,32,32,A#2,f,20,144,46,20,,,,, +72,5,1,1724,768,300.502,,,,,,144,90,0,,,,, +72,7,3,1725,768,300.502,,,,,,144,46,0,,,,, +72,8,1,1726,800,300.502,96,16,F4,p,11,144,65,11,,,,, +72,9,3,1727,800,300.502,32,32,B3,f,20,144,59,20,,,,, +72,9,3,1727,800,300.569,,,,,,144,59,0,,,,, +72,10,3,1728,832,300.569,192,8,C4,f-,19,144,60,19,,,,, +72,8,1,1726,800,300.702,,,,,,144,65,0,,,,, +72,11,1,1729,896,300.702,,,,,,176,102,0,,,,, +72,10,3,1728,832,300.97,,,,,,144,60,0,,,,, +72,12,1,1730,1024,300.97,,,,,,176,102,0,,,,, +72,13,3,1731,1024,300.97,,,,,,176,102,0,,,,, +73,0,0,1732,0,303.113,,,,,,,,,73,,,, +73,1,1,1733,0,303.113,,,,,,176,102,0,,,,, +73,2,3,1734,0,303.113,,,,,,176,102,0,,,,, +73,3,1,1735,256,303.649,1792,1,F#7,fff,24,144,102,23,,,,, +73,3,1,1735,256,307.399,,,,,,144,102,0,,,,, +74,0,0,1736,0,307.399,,,,,,,,,74,,,, +74,1,1,1737,0,307.399,,,,,,176,102,0,,,,, +74,2,3,1738,0,307.399,,,,,,176,102,0,,,,, +74,3,3,1739,768,309.006,256,4,D#1,ppp,5,144,27,5,,,,, +74,4,3,1740,1024,309.542,1024,1,D#1,,,,,,,,,, +75,0,0,1741,0,311.685,,,,,,,,,75,,,, +75,1,1,1742,0,311.685,,,,,,176,102,0,,,,, +75,2,3,1743,0,311.685,896,2,D#1,,,,,,,,,, +74,3,3,1739,768,313.56,,,,,,144,27,0,,,,, +75,3,3,1744,896,313.56,128,8,G#2,f,20,144,44,20,,,,, +75,4,0,1745,1024,313.827,,,,,,176,64,0,,,,,^ +75,5,1,1746,1024,313.827,,,,,,176,102,0,,,,, +75,6,3,1747,1024,313.827,512,2,G#2,,,,,,,,,, +75,7,1,1748,1280,314.363,768,2,E5,mp,14,144,76,14,,,,, +75,8,3,1749,1536,314.899,128,8,G#2,,,,,,,,,, +75,3,3,1744,896,315.167,,,,,,144,44,0,,,,, +75,9,3,1750,1664,315.167,384,4,F#2,p,11,144,42,11,,,,, +75,7,1,1748,1280,315.97,,,,,,144,76,0,,,,, +75,9,3,1750,1664,315.97,,,,,,144,42,0,,,,, +76,0,0,1751,0,315.97,,,,,,,,,76,,,, +76,1,0,1752,0,315.97,,,,,,,,,,5940,,, +76,3,1,1753,0,315.97,,,,,,176,102,0,,,,, +76,4,2,1754,0,315.97,85,8,D4,mf,17,144,62,17,,,,, +76,5,3,1755,0,315.97,51,16,D7,p,11,144,98,11,,,,, +76,6,4,1756,0,315.97,,,,,,176,102,0,,,,, +76,2,0,1757,0,315.97,,,,,,176,64,127,,,,,V +76,5,3,1755,0,316.077,,,,,,144,98,0,,,,, +76,7,3,1758,51,316.077,51,16,A#1,mp+,15,144,34,15,,,,, +76,4,2,1754,0,316.148,,,,,,144,62,0,,,,, +76,8,2,1759,85,316.148,85,8,F#6,mf,17,144,90,17,,,,, +76,7,3,1758,51,316.184,,,,,,144,34,0,,,,, +76,9,3,1760,102,316.184,51,16,C3,mf+,18,144,48,18,,,,, +76,9,3,1760,102,316.29,,,,,,144,48,0,,,,, +76,10,3,1761,153,316.29,51,16,F#2,ff,22,144,42,22,,,,, +76,8,2,1759,85,316.326,,,,,,144,90,0,,,,, +76,11,2,1762,170,316.326,86,8,A#4,mf,17,144,70,17,,,,, +76,10,3,1761,153,316.397,,,,,,144,42,0,,,,, +76,12,0,1763,204,316.397,,,,,,176,64,0,,,,,^ +76,13,3,1764,204,316.397,52,16,B2,ff,22,144,47,22,,,,, +76,11,2,1762,170,316.506,,,,,,144,70,0,,,,, +76,13,3,1764,204,316.506,,,,,,144,47,0,,,,, +76,14,1,1765,,316.506,,8,A1,pp,8,144,33,8,,,,g, +76,14,1,1765,,316.556,,,,,,144,33,0,,,,, +76,15,1,1766,,316.581,,8,C#6,pp,8,144,85,8,,,,g, +76,15,1,1766,,316.631,,,,,,144,85,0,,,,, +76,16,1,1767,256,316.656,128,8,G#5,pp,8,144,80,8,,,,, +76,17,2,1768,256,316.656,,,,,,176,102,0,,,,, +76,18,3,1769,256,316.656,1792,1,A#1,f,20,144,34,20,,,,, +76,19,3,1770,256,316.656,1024,1,F#2,pp,8,144,42,8,,,,, +76,20,4,1771,256,316.656,192,8,D#2,f,20,144,39,20,,,,, +76,16,1,1767,256,316.924,,,,,,144,80,0,,,,, +76,21,1,1772,384,316.924,128,8,C6,pp+,9,144,84,9,,,,, +76,20,4,1771,256,317.058,,,,,,144,39,0,,,,, +76,22,4,1773,448,317.058,,,,,,176,102,0,,,,, +76,24,1,1774,512,317.192,85,8,A#5,mp,14,144,82,14,,,,, +76,25,1,1775,512,317.192,128,8,F#6,ff,22,144,90,22,,,,, +76,26,2,1776,512,317.192,42,16,E5,f,20,144,76,20,,,,, +76,32,4,1777,512,317.192,,,,,,176,102,0,,,,, +76,23,0,1778,512,317.192,,,,,,176,64,127,,,,,V +76,21,1,1772,384,317.192,,,,,,144,84,0,,,,, +76,26,2,1776,512,317.28,,,,,,144,76,0,,,,, +76,27,4,1779,,317.28,,8,E4,f,20,144,64,20,,,,g, +76,27,4,1779,,317.33,,,,,,144,64,0,,,,, +76,28,4,1780,,317.355,,8,C2,f,20,144,36,20,,,,g, +76,29,4,1781,,317.355,,8,D4,f,20,144,62,20,,,,g, +76,24,1,1774,512,317.37,,,,,,144,82,0,,,,, +76,28,4,1780,,317.405,,,,,,144,36,0,,,,, +76,29,4,1781,,317.405,,,,,,144,62,0,,,,, +76,19,3,1770,256,317.43,,,,,,144,42,0,,,,, +76,30,4,1782,,317.43,,8,F#2,f+,21,144,42,21,,,,g, +76,31,4,1783,,317.43,,8,E5,f+,21,144,76,21,,,,g, +76,25,1,1775,512,317.46,,,,,,144,90,0,,,,, +76,31,4,1783,,317.48,,,,,,144,76,0,,,,, +76,33,2,1784,554,317.655,43,16,F4,ff,22,144,65,22,,,,, +76,33,2,1784,554,317.745,,,,,,144,65,0,,,,, +76,34,1,1785,597,317.745,85,8,G#4,ff,22,144,68,22,,,,, +76,35,2,1786,597,317.745,43,16,F#3,ff,22,144,54,22,,,,, +76,36,4,1787,597,317.745,85,8,D#1,ff,22,144,27,22,,,,, +76,35,2,1786,597,317.835,,,,,,144,54,0,,,,, +76,37,2,1788,640,317.835,128,8,F2,ff,22,144,41,22,,,,, +76,38,2,1789,640,317.835,128,8,C3,ff,22,144,48,22,,,,, +76,34,1,1785,597,317.922,,,,,,144,68,0,,,,, +76,36,4,1787,597,317.922,,,,,,144,27,0,,,,, +76,39,1,1790,682,317.922,86,8,G7,ff,22,144,103,22,,,,, +76,40,4,1791,682,317.922,86,8,A#3,ff,22,144,58,22,,,,, +76,37,2,1788,640,318.102,,,,,,144,41,0,,,,, +76,38,2,1789,640,318.102,,,,,,144,48,0,,,,, +76,39,1,1790,682,318.102,,,,,,144,103,0,,,,, +76,40,4,1791,682,318.102,,,,,,144,58,0,,,,, +76,41,1,1792,768,318.102,,,,,,176,102,0,,,,, +76,42,2,1793,768,318.102,,,,,,176,102,0,,,,, +76,43,4,1794,768,318.102,,,,,,176,102,0,,,,, +76,44,1,1795,1024,318.638,,,,,,176,102,0,,,,, +76,45,2,1796,1024,318.638,,,,,,176,102,0,,,,, +76,46,4,1797,1024,318.638,,,,,,176,102,0,,,,, +77,0,0,1798,0,320.781,,,,,,,,,77,,,, +77,1,1,1799,0,320.781,,,,,,176,102,0,,,,, +77,2,2,1800,0,320.781,,,,,,176,102,0,,,,, +77,3,3,1801,0,320.781,1792,1,A#1,,,,,,,,,, +77,4,3,1802,0,320.781,1024,1,F#2,,,,,,,,,, +77,5,4,1803,0,320.781,,,,,,176,102,0,,,,, +77,6,0,1804,256,321.317,,,,,,176,64,0,,,,,^ +77,7,1,1805,256,321.317,51,16,F#7,p,11,144,102,11,,,,, +77,7,1,1805,256,321.423,,,,,,144,102,0,,,,, +77,8,1,1806,307,321.423,51,16,G#6,p+,12,144,92,12,,,,, +77,8,1,1806,307,321.53,,,,,,144,92,0,,,,, +77,9,1,1807,358,321.53,51,16,F2,mp,14,144,41,14,,,,, +77,9,1,1807,358,321.637,,,,,,144,41,0,,,,, +77,10,1,1808,409,321.637,,,,,,176,102,0,,,,, +77,11,1,1809,,321.852,,8,G#6,mf+,18,144,92,18,,,,g, +77,11,1,1809,,321.902,,,,,,144,92,0,,,,, +77,12,1,1810,,321.927,,8,F#7,f-,19,144,102,19,,,,g, +77,12,1,1810,,321.977,,,,,,144,102,0,,,,, +77,13,1,1811,512,322.002,1536,1,C7,f,20,144,96,20,,,,, +77,14,2,1812,512,322.002,,,,,,176,102,0,,,,, +77,15,2,1813,576,322.136,64,16,F4,pp,8,144,65,8,,,,, +77,15,2,1813,576,322.27,,,,,,144,65,0,,,,, +77,16,2,1814,640,322.27,128,8,G#3,pp,8,144,56,8,,,,, +77,16,2,1814,640,322.538,,,,,,144,56,0,,,,, +77,17,2,1815,768,322.538,,,,,,176,102,0,,,,, +77,18,2,1816,1024,323.074,,,,,,176,102,0,,,,, +77,19,2,1817,1792,324.681,,,,,,176,102,0,,,,, +77,20,3,1818,1792,324.681,170,4,A#1,,,,,,,,,, +77,21,3,1819,1792,324.681,256,4,F#2,,,,,,,,,, +77,22,4,1820,1792,324.681,,,,,,176,102,0,,,,, +77,23,2,1821,1962,325.037,86,8,D7,ppp,5,144,98,5,,,,, +77,24,3,1822,1962,325.037,86,8,F#2,,,,,,,,,, +76,18,3,1769,256,325.187,,,,,,144,34,0,,,,, +77,23,2,1821,1962,325.217,,,,,,144,98,0,,,,, +78,0,0,1823,0,325.217,,,,,,,,,78,,,, +78,1,1,1824,0,325.217,,,,,,176,102,0,,,,, +78,2,3,1825,0,325.217,1536,1,F#2,,,,,,,,,, +78,3,4,1826,0,325.217,,,,,,176,102,0,,,,, +77,13,1,1811,512,325.367,,,,,,144,96,0,,,,, +76,30,4,1782,,325.547,,,,,,144,42,0,,,,, +78,5,4,1827,768,326.824,128,8,F#3,ppp,5,144,54,5,,,,, +78,4,0,1828,768,326.824,,,,,,176,64,127,,,,,V +78,5,4,1827,768,327.092,,,,,,144,54,0,,,,, +78,6,4,1829,896,327.092,128,8,E5,ppp,5,144,76,5,,,,, +78,7,0,1830,1024,327.21,,,,,,176,64,0,,,,,^ +78,6,4,1829,896,327.36,,,,,,144,76,0,,,,, +78,9,4,1831,1024,327.36,1024,1,F1,mf,17,144,29,17,,,,, +78,8,0,1832,1024,327.51,,,,,,176,64,127,,,,,V +78,10,1,1833,1536,328.431,512,2,F4,pppp,2,144,65,2,,,,, +78,11,3,1834,1536,328.431,512,2,G3,pppp,2,144,55,2,,,,, +79,0,0,1835,0,329.502,,,,,,,,,79,,,, +79,1,1,1836,0,329.502,256,4,F4,,,,,,,,,, +79,2,3,1837,0,329.502,256,4,G3,,,,,,,,,, +79,3,4,1838,0,329.502,256,4,F1,,,,,,,,,, +78,10,1,1833,1536,330.038,,,,,,144,65,0,,,,, +78,11,3,1834,1536,330.038,,,,,,144,55,0,,,,, +79,4,0,1839,256,330.038,,,,,,176,64,0,,,,,^ +79,5,1,1840,256,330.038,256,4,F5,pppp-,1,144,77,1,,,,, +79,6,3,1841,256,330.038,256,4,E2,pppp-,1,144,40,1,,,,, +79,7,4,1842,256,330.038,1024,1,E1,pppp,2,144,28,2,,,,, +78,9,4,1831,1024,330.038,,,,,,144,29,0,,,,, +79,5,1,1840,256,330.574,,,,,,144,77,0,,,,, +79,6,3,1841,256,330.574,,,,,,144,40,0,,,,, +79,8,1,1843,512,330.574,,,,,,176,102,0,,,,, +79,9,3,1844,512,330.574,,,,,,176,102,0,,,,, +79,10,4,1845,1280,332.181,256,4,E1,,,,,,,,,, +79,13,1,1846,1536,332.717,,,,,,176,102,0,,,,, +79,14,3,1847,1536,332.717,,,,,,176,102,0,,,,, +79,15,4,1848,1536,332.717,,,,,,176,102,0,,,,, +79,11,0,1849,1536,332.717,,,,,,176,64,127,,,,,V +79,7,4,1842,256,332.717,,,,,,144,28,0,,,,, +79,16,3,1850,1621,332.895,171,4,F#2,fff,24,144,42,23,,,,, +79,12,1,1851,,332.985,,8,D4,fff,24,144,62,23,,,,g, +79,12,1,1851,,333.035,,,,,,144,62,0,,,,, +79,17,1,1852,,333.06,,8,F#7,fff,24,144,102,23,,,,g, +79,17,1,1852,,333.11,,,,,,144,102,0,,,,, +79,18,1,1853,,333.135,,8,E6,fff,24,144,88,23,,,,g, +79,18,1,1853,,333.185,,,,,,144,88,0,,,,, +79,19,1,1854,,333.21,,8,A#4,fff,24,144,70,23,,,,g, +79,19,1,1854,,333.26,,,,,,144,70,0,,,,, +79,20,1,1855,,333.285,,8,D#1,fff,24,144,27,23,,,,g, +79,20,1,1855,,333.335,,,,,,144,27,0,,,,, +79,21,1,1856,1664,333.36,,,,,,176,102,0,,,,, +79,22,1,1857,1792,333.627,,,,,,176,102,0,,,,, +79,23,3,1858,1792,333.627,256,4,F#2,,,,,,,,,, +80,0,0,1859,0,334.163,,,,,,,,,80,,,, +80,1,1,1860,0,334.163,,,,,,176,102,0,,,,, +80,2,3,1861,0,334.163,2048,0.5,F#2,,,,,,,,,, +80,3,4,1862,0,334.163,,,,,,176,102,0,,,,, +80,4,0,1863,768,335.77,,,,,,176,64,0,,,,,^ +80,5,1,1864,768,335.77,64,16,G#5,mf,17,144,80,17,,,,, +80,5,1,1864,768,335.904,,,,,,144,80,0,,,,, +80,6,1,1865,832,335.904,64,16,C7,mp-,13,144,96,13,,,,, +80,6,1,1865,832,336.038,,,,,,144,96,0,,,,, +80,7,1,1866,896,336.038,64,16,E2,pp+,9,144,40,9,,,,, +80,7,1,1866,896,336.172,,,,,,144,40,0,,,,, +80,8,1,1867,960,336.172,64,16,F1,ppp,5,144,29,5,,,,, +80,8,1,1867,960,336.306,,,,,,144,29,0,,,,, +80,9,1,1868,1024,336.306,,,,,,176,102,0,,,,, +81,0,0,1869,0,338.449,,,,,,,,,81,,,, +81,1,1,1870,0,338.449,,,,,,176,102,0,,,,, +81,2,3,1871,0,338.449,2048,0.5,F#2,,,,,,,,,, +81,3,1,1872,1024,340.592,,,,,,176,102,0,,,,, +81,4,1,1873,2048,342.735,,,,,,176,102,0,,,,, +81,5,3,1874,2048,342.735,2048,0.5,F#2,,,,,,,,,, +81,6,1,1875,3072,344.877,,,,,,176,102,0,,,,, +81,7,1,1876,4096,347.02,,,,,,176,102,0,,,,, +81,8,3,1877,4096,347.02,682,1,F#2,,,,,,,,,, +79,16,3,1850,1621,348.447,,,,,,144,42,0,,,,, +81,9,3,1878,4778,348.447,342,2,C3,ppp,5,144,48,5,,,,, +82,0,0,1879,0,349.163,,,,,,,,,82,,,, +82,1,1,1880,0,349.163,,,,,,176,102,0,,,,, +82,2,3,1881,0,349.163,256,4,C3,,,,,,,,,, +81,9,3,1878,4778,349.699,,,,,,144,48,0,,,,, +82,3,3,1882,256,349.699,256,4,B2,pppp,2,144,47,2,,,,, +82,4,1,1883,512,350.235,,,,,,176,102,0,,,,, +82,5,3,1884,512,350.235,42,16,B2,,,,,,,,,, +82,3,3,1882,256,350.322,,,,,,144,47,0,,,,, +82,6,3,1885,554,350.322,,,,,,176,102,0,,,,, +82,7,1,1886,597,350.412,43,16,A#0,pppp,2,144,22,2,,,,, +82,7,1,1886,597,350.502,,,,,,144,22,0,,,,, +82,8,1,1887,640,350.502,42,16,F#1,pppp,2,144,30,2,,,,, +82,9,3,1888,640,350.502,,,,,,176,102,0,,,,, +82,8,1,1887,640,350.59,,,,,,144,30,0,,,,, +82,10,1,1889,682,350.59,43,16,B1,pppp,2,144,35,2,,,,, +82,10,1,1889,682,350.68,,,,,,144,35,0,,,,, +82,11,1,1890,725,350.68,,,,,,176,102,0,,,,, +82,12,1,1891,768,350.77,,,,,,176,102,0,,,,, +82,13,3,1892,768,350.77,,,,,,176,102,0,,,,, +82,14,0,1893,768,350.77,,,,,,,,,,5941,,, +82,15,1,1894,1024,351.306,256,4,A#5,mf,17,144,82,17,,,,, +82,17,3,1895,,351.692,,8,G#2,s,0,144,44,0,,,,g, +82,17,3,1895,,351.742,,,,,,144,44,0,,,,, +82,16,1,1896,,351.767,,8,C#7,mf,17,144,97,17,,,,g, +82,16,1,1896,,351.817,,,,,,144,97,0,,,,, +83,0,0,1897,0,351.842,,,,,,,,,83,,,, +83,1,1,1898,0,351.842,32,32,A#5,,,,,,,,,, +83,2,2,1899,0,351.842,42,16,F#1,mp,14,144,30,14,,,,, +83,3,3,1900,0,351.842,256,4,G#1,mp,14,144,32,14,,,,, +83,4,4,1901,0,351.842,1024,1,G#2,ff,22,144,44,22,,,,, +82,15,1,1894,1024,351.909,,,,,,144,82,0,,,,, +83,5,1,1902,32,351.909,,,,,,176,102,0,,,,, +83,2,2,1899,0,351.93,,,,,,144,30,0,,,,, +83,6,2,1903,42,351.93,86,8,G3,f,20,144,55,20,,,,, +83,6,2,1903,42,352.11,,,,,,144,55,0,,,,, +83,7,2,1904,128,352.11,85,8,A0,f,20,144,21,20,,,,, +83,7,2,1904,128,352.287,,,,,,144,21,0,,,,, +83,8,2,1905,213,352.287,43,16,F5,f,20,144,77,20,,,,, +83,9,1,1906,256,352.377,768,2,E6,f,20,144,88,20,,,,, +83,10,2,1907,256,352.377,85,8,F5,,,,,,,,,, +83,11,3,1908,256,352.377,85,8,G#1,,,,,,,,,, +83,3,3,1900,0,352.555,,,,,,144,32,0,,,,, +83,12,2,1909,341,352.555,171,4,C5,pp,8,144,72,8,,,,, +83,13,2,1910,341,352.555,256,4,F5,,,,,,,,,, +83,14,3,1911,341,352.555,,,,,,176,102,0,,,,, +83,12,2,1909,341,352.913,,,,,,144,72,0,,,,, +83,15,2,1912,512,352.913,42,16,E5,pp,8,144,76,8,,,,, +83,16,2,1913,512,352.913,64,16,F5,,,,,,,,,, +83,17,3,1914,512,352.913,,,,,,176,102,0,,,,, +83,18,2,1915,554,353.001,128,8,E5,,,,,,,,,, +83,8,2,1905,213,353.225,,,,,,144,77,0,,,,, +83,15,2,1912,512,353.269,,,,,,144,76,0,,,,, +83,19,2,1916,,353.269,,8,C#7,ppp,5,144,97,5,,,,g, +83,19,2,1916,,353.319,,,,,,144,97,0,,,,, +83,20,2,1917,,353.344,,8,G#3,ppp,5,144,56,5,,,,g, +83,20,2,1917,,353.394,,,,,,144,56,0,,,,, +83,21,2,1918,,353.419,,8,D4,ppp,5,144,62,5,,,,g, +83,21,2,1918,,353.469,,,,,,144,62,0,,,,, +83,22,2,1919,682,353.494,86,8,C6,pp,8,144,84,8,,,,, +83,22,2,1919,682,353.674,,,,,,144,84,0,,,,, +83,23,2,1920,768,353.674,,,,,,176,102,0,,,,, +83,24,3,1921,768,353.674,,,,,,176,102,0,,,,, +83,25,2,1922,810,353.762,43,16,C#7,pp,8,144,97,8,,,,, +83,25,2,1922,810,353.852,,,,,,144,97,0,,,,, +83,26,2,1923,853,353.852,43,16,C5,pp+,9,144,72,9,,,,, +83,26,2,1923,853,353.942,,,,,,144,72,0,,,,, +83,27,2,1924,896,353.942,42,16,D3,pp+,9,144,50,9,,,,, +83,9,1,1906,256,353.985,,,,,,144,88,0,,,,, +83,4,4,1901,0,353.985,,,,,,144,44,0,,,,, +83,27,2,1924,896,354.03,,,,,,144,50,0,,,,, +83,28,2,1925,938,354.03,,,,,,176,102,0,,,,, +83,29,2,1926,981,354.12,43,16,C#6,p-,10,144,85,10,,,,, +83,29,2,1926,981,354.21,,,,,,144,85,0,,,,, +83,30,1,1927,1024,354.21,256,4,D4,p,11,144,62,11,,,,, +83,31,2,1928,1024,354.21,,,,,,176,102,0,,,,, +83,32,4,1929,1024,354.21,256,4,G#2,p,11,144,44,11,,,,, +84,0,0,1930,0,354.745,,,,,,,,,84,,,, +84,1,1,1931,0,354.745,512,2,D4,,,,,,,,,, +84,2,2,1932,0,354.745,,,,,,176,102,0,,,,, +84,3,3,1933,0,354.745,256,4,F3,p,11,144,53,11,,,,, +84,4,4,1934,0,354.745,1024,1,G#2,,,,,,,,,, +84,5,2,1935,128,355.013,128,8,F#1,ppp,5,144,30,5,,,,, +84,3,3,1933,0,355.281,,,,,,144,53,0,,,,, +84,6,2,1936,256,355.281,1024,1,F#1,,,,,,,,,, +84,7,3,1937,256,355.281,512,2,G1,p,11,144,31,11,,,,, +83,30,1,1927,1024,355.817,,,,,,144,62,0,,,,, +84,9,1,1938,512,355.817,85,8,F#7,ff,22,144,102,22,,,,, +84,8,0,1939,512,355.817,,,,,,176,64,127,,,,,V +84,9,1,1938,512,355.995,,,,,,144,102,0,,,,, +84,10,1,1940,597,355.995,85,8,D#1,ff,22,144,27,22,,,,, +84,10,1,1940,597,356.172,,,,,,144,27,0,,,,, +84,11,1,1941,682,356.172,86,8,A#4,ff,22,144,70,22,,,,, +84,7,3,1937,256,356.352,,,,,,144,31,0,,,,, +84,11,1,1941,682,356.352,,,,,,144,70,0,,,,, +84,12,0,1942,768,356.352,,,,,,176,64,0,,,,,^ +84,13,1,1943,768,356.352,,,,,,176,102,0,,,,, +84,14,3,1944,768,356.352,512,2,A1,pppp,2,144,33,2,,,,, +84,15,4,1945,1024,356.888,256,4,G#2,,,,,,,,,, +85,0,0,1946,0,357.424,,,,,,,,,85,,,, +85,1,1,1947,0,357.424,1024,1,G#4,p,11,144,68,11,,,,, +85,2,2,1948,0,357.424,512,2,F#1,,,,,,,,,, +85,3,3,1949,0,357.424,,,,,,176,102,0,,,,, +85,4,4,1950,0,357.424,1024,1,G#2,,,,,,,,,, +84,14,3,1944,768,357.649,,,,,,144,33,0,,,,, +85,5,2,1951,512,358.495,170,4,D3,ppp,5,144,50,5,,,,, +84,5,2,1935,128,358.72,,,,,,144,30,0,,,,, +85,5,2,1951,512,358.851,,,,,,144,50,0,,,,, +85,7,2,1952,682,358.851,171,4,G6,mf,17,144,91,17,,,,, +85,6,0,1953,682,358.851,,,,,,176,64,127,,,,,V +85,1,1,1947,0,359.209,,,,,,144,68,0,,,,, +85,7,2,1952,682,359.209,,,,,,144,91,0,,,,, +85,8,2,1954,853,359.209,171,4,G#4,mp,14,144,68,14,,,,, +85,12,4,1955,,359.492,,8,F#1,ppp,5,144,30,5,,,,g, +85,12,4,1955,,359.542,,,,,,144,30,0,,,,, +85,8,2,1954,853,359.567,,,,,,144,68,0,,,,, +85,9,1,1956,1024,359.567,256,4,C6,f,20,144,84,20,,,,, +85,10,2,1957,1024,359.567,85,8,A#5,mf,17,144,82,17,,,,, +85,11,3,1958,1024,359.567,,,,,,176,102,0,,,,, +85,13,4,1959,1024,359.567,256,4,G#2,,,,,,,,,, +85,10,2,1957,1024,359.745,,,,,,144,82,0,,,,, +85,14,2,1960,1109,359.745,85,8,D3,f-,19,144,50,19,,,,, +85,14,2,1960,1109,359.922,,,,,,144,50,0,,,,, +85,15,2,1961,1194,359.922,86,8,G#4,f+,21,144,68,21,,,,, +85,9,1,1956,1024,360.102,,,,,,144,84,0,,,,, +85,15,2,1961,1194,360.102,,,,,,144,68,0,,,,, +85,16,2,1962,,360.102,,8,G7,ff+,23,144,103,23,,,,g, +85,16,2,1962,,360.152,,,,,,144,103,0,,,,, +86,0,0,1963,0,360.177,,,,,,,,,86,,,, +86,1,1,1964,0,360.177,1024,1,A#5,fff,24,144,82,23,,,,, +86,2,1,1965,0,360.177,1024,1,F#6,fff,24,144,90,23,,,,, +86,3,3,1966,0,360.177,,,,,,176,102,0,,,,, +86,4,4,1967,0,360.177,1024,1,G#2,,,,,,,,,, +86,5,1,1968,1024,362.32,256,4,A#5,,,,,,,,,, +86,6,1,1969,1024,362.32,256,4,F#6,,,,,,,,,, +86,7,4,1970,1024,362.32,256,4,G#2,,,,,,,,,, +86,1,1,1964,0,362.856,,,,,,144,82,0,,,,, +86,2,1,1965,0,362.856,,,,,,144,90,0,,,,, +87,2,0,1971,0,362.856,,,,,,,,,87,,,, +87,0,3,1972,0,362.856,,,,,,176,102,0,,,,, +87,1,4,1973,0,362.856,128,8,G#2,,,,,,,,,, +87,5,2,1974,,362.856,,8,D4,mp,14,144,62,14,,,,g, +87,5,2,1974,,362.906,,,,,,144,62,0,,,,, +87,3,1,1975,0,362.931,85,8,E6,mp,14,144,88,14,,,,, +87,3,1,1975,0,363.109,,,,,,144,88,0,,,,, +87,4,1,1976,85,363.109,85,8,F#7,ff,22,144,102,22,,,,, +87,6,4,1977,128,363.199,128,8,C3,ff,22,144,48,22,,,,, +83,32,4,1929,1024,363.274,,,,,,144,44,0,,,,, +87,4,1,1976,85,363.287,,,,,,144,102,0,,,,, +87,7,1,1978,170,363.287,86,8,A#4,mf,17,144,70,17,,,,, +87,7,1,1978,170,363.467,,,,,,144,70,0,,,,, +87,8,1,1979,256,363.467,,,,,,176,102,0,,,,, +87,9,4,1980,,363.467,,8,D#2,p,11,144,39,11,,,,g, +87,9,4,1980,,363.517,,,,,,144,39,0,,,,, +87,10,4,1981,256,363.542,1024,1,C3,,,,,,,,,, +87,11,1,1982,512,364.077,256,4,F2,p,11,144,41,11,,,,, +87,11,1,1982,512,364.613,,,,,,144,41,0,,,,, +87,12,1,1983,768,364.613,256,4,E4,pp,8,144,64,8,,,,, +87,13,1,1984,,365.074,,8,G#5,f,20,144,80,20,,,,g, +87,13,1,1984,,365.124,,,,,,144,80,0,,,,, +87,12,1,1983,768,365.149,,,,,,144,64,0,,,,, +87,14,1,1985,1024,365.149,85,8,F#7,f,20,144,102,20,,,,, +87,14,1,1985,1024,365.327,,,,,,144,102,0,,,,, +87,15,1,1986,1109,365.327,85,8,C7,f+,21,144,96,21,,,,, +87,15,1,1986,1109,365.505,,,,,,144,96,0,,,,, +87,16,1,1987,1194,365.505,86,8,E3,f+,21,144,52,21,,,,, +87,16,1,1987,1194,365.685,,,,,,144,52,0,,,,, +87,17,3,1988,,365.685,,8,F1,mp,14,144,29,14,,,,g, +87,17,3,1988,,365.735,,,,,,144,29,0,,,,, +88,0,0,1989,0,365.76,,,,,,,,,88,,,, +88,1,1,1990,0,365.76,256,4,F#7,fff,24,144,102,23,,,,, +88,2,3,1991,0,365.76,,,,,,176,102,0,,,,, +88,3,4,1992,0,365.76,256,4,C3,,,,,,,,,, +88,1,1,1990,0,366.295,,,,,,144,102,0,,,,, +88,4,1,1993,256,366.295,,,,,,176,102,0,,,,, +88,5,3,1994,256,366.295,,,,,,176,102,0,,,,, +88,6,4,1995,256,366.295,1024,1,C3,,,,,,,,,, +88,7,1,1996,298,366.383,43,16,G#5,fff,24,144,80,23,,,,, +88,8,1,1997,341,366.473,171,4,G#5,,,,,,,,,, +88,9,1,1998,512,366.831,768,2,G#5,,,,,,,,,, +89,0,0,1999,0,368.438,,,,,,,,,89,,,, +89,1,1,2000,0,368.438,512,2,G#5,,,,,,,,,, +89,2,2,2001,0,368.438,,,,,,176,102,0,,,,, +89,3,3,2002,0,368.438,,,,,,176,102,0,,,,, +89,4,4,2003,0,368.438,1024,1,C3,,,,,,,,,, +89,5,1,2004,512,369.51,768,2,G#5,,,,,,,,,, +89,6,2,2005,512,369.51,768,2,E6,fff,24,144,88,23,,,,, +89,7,2,2006,512,369.51,512,2,C#7,fff,24,144,97,23,,,,, +89,8,3,2007,1024,370.581,,,,,,176,102,0,,,,, +89,9,4,2008,1024,370.581,,,,,,176,102,0,,,,, +89,7,2,2006,512,370.656,,,,,,144,97,0,,,,, +87,6,4,1977,128,370.731,,,,,,144,48,0,,,,, +89,10,3,2009,1109,370.759,171,4,A0,fff,24,144,21,23,,,,, +90,0,0,2010,0,371.117,,,,,,,,,90,,,, +90,1,1,2011,0,371.117,85,8,G#5,,,,,,,,,, +90,2,2,2012,0,371.117,,,,,,176,102,0,,,,, +90,3,3,2013,0,371.117,128,8,A0,,,,,,,,,, +89,6,2,2005,512,371.192,,,,,,144,88,0,,,,, +90,4,1,2014,85,371.295,171,4,C7,fff,24,144,96,23,,,,, +89,10,3,2009,1109,371.385,,,,,,144,21,0,,,,, +90,5,3,2015,128,371.385,42,16,F#2,fff,24,144,42,23,,,,, +90,5,3,2015,128,371.472,,,,,,144,42,0,,,,, +90,6,3,2016,170,371.472,43,16,G3,f+,21,144,55,21,,,,, +88,7,1,1996,298,371.52,,,,,,144,80,0,,,,, +90,6,3,2016,170,371.562,,,,,,144,55,0,,,,, +90,7,3,2017,213,371.562,43,16,F5,f-,19,144,77,19,,,,, +90,7,3,2017,213,371.652,,,,,,144,77,0,,,,, +90,8,0,2018,256,371.652,,,,,,176,64,0,,,,,^ +90,11,3,2019,,371.652,,8,A1,mp,14,144,33,14,,,,g, +90,4,1,2014,85,371.652,,,,,,144,96,0,,,,, +90,11,3,2019,,371.702,,,,,,144,33,0,,,,, +90,9,1,2020,256,371.727,256,4,G4,mp,14,144,67,14,,,,, +90,10,2,2021,256,371.727,,,,,,176,102,0,,,,, +90,12,3,2022,256,371.727,,,,,,176,102,0,,,,, +90,13,1,2023,512,372.263,85,8,G4,,,,,,,,,, +90,14,2,2024,512,372.263,768,2,D4,fff,24,144,62,23,,,,, +90,15,3,2025,512,372.263,,,,,,176,102,0,,,,, +90,16,0,2026,512,372.263,,,,,,,,,,5942,,, +90,9,1,2020,256,372.441,,,,,,144,67,0,,,,, +90,17,1,2027,597,372.441,,,,,,176,102,0,,,,, +90,18,3,2028,682,372.619,86,8,F1,fff,24,144,29,23,,,,, +90,19,1,2029,768,372.799,,,,,,176,102,0,,,,, +90,20,3,2030,768,372.799,170,4,F1,,,,,,,,,, +90,21,3,2031,938,373.155,43,16,F1,,,,,,,,,, +90,18,3,2028,682,373.245,,,,,,144,29,0,,,,, +90,22,3,2032,981,373.245,43,16,E3,f,20,144,52,20,,,,, +90,22,3,2032,981,373.335,,,,,,144,52,0,,,,, +90,23,1,2033,1024,373.335,85,8,G#5,fff,24,144,80,23,,,,, +90,24,3,2034,1024,373.335,,,,,,176,102,0,,,,, +90,23,1,2033,1024,373.512,,,,,,144,80,0,,,,, +90,25,1,2035,1109,373.512,85,8,F#7,ff,22,144,102,22,,,,, +90,25,1,2035,1109,373.69,,,,,,144,102,0,,,,, +90,26,1,2036,1194,373.69,86,8,F1,f,20,144,29,20,,,,, +90,14,2,2024,512,373.87,,,,,,144,62,0,,,,, +90,26,1,2036,1194,373.87,,,,,,144,29,0,,,,, +91,0,0,2037,0,373.87,,,,,,,,,91,,,, +91,1,1,2038,0,373.87,,,,,,176,102,0,,,,, +91,2,2,2039,0,373.87,256,4,D4,mf+,18,144,62,18,,,,, +91,3,3,2040,0,373.87,,,,,,176,102,0,,,,, +91,4,4,2041,0,373.87,51,16,G#4,mf+,18,144,68,18,,,,, +91,4,4,2041,0,373.977,,,,,,144,68,0,,,,, +91,5,4,2042,51,373.977,,,,,,176,102,0,,,,, +91,6,4,2043,102,374.084,102,8,F#6,mp+,15,144,90,15,,,,, +91,6,4,2043,102,374.297,,,,,,144,90,0,,,,, +91,7,4,2044,204,374.297,52,16,E2,mp-,13,144,40,13,,,,, +91,8,1,2045,256,374.406,256,4,E7,fff,24,144,100,23,,,,, +91,9,2,2046,256,374.406,1024,1,D4,,,,,,,,,, +91,10,3,2047,256,374.406,,,,,,176,102,0,,,,, +91,11,4,2048,256,374.406,51,16,E2,,,,,,,,,, +91,7,4,2044,204,374.513,,,,,,144,40,0,,,,, +91,12,4,2049,307,374.513,,,,,,176,102,0,,,,, +91,14,4,2050,409,374.726,103,8,F1,pp,8,144,29,8,,,,, +91,13,0,2051,409,374.726,,,,,,176,64,127,,,,,V +91,8,1,2045,256,374.942,,,,,,144,100,0,,,,, +91,14,4,2050,409,374.942,,,,,,144,29,0,,,,, +91,15,1,2052,512,374.942,170,4,G#5,ppp,5,144,80,5,,,,, +91,16,3,2053,512,374.942,,,,,,176,102,0,,,,, +91,17,4,2054,512,374.942,,,,,,176,102,0,,,,, +91,18,0,2055,576,375.076,,,,,,176,64,0,,,,,^ +91,19,3,2056,576,375.076,128,8,F4,p,11,144,65,11,,,,, +91,20,1,2057,682,375.297,86,8,C6,pppp,2,144,84,2,,,,, +91,15,1,2052,512,375.297,,,,,,144,80,0,,,,, +91,19,3,2056,576,375.344,,,,,,144,65,0,,,,, +91,21,3,2058,704,375.344,32,32,F4,pp+,9,144,65,9,,,,, +91,21,3,2058,704,375.41,,,,,,144,65,0,,,,, +91,22,3,2059,736,375.41,32,32,F#1,pp,8,144,30,8,,,,, +91,22,3,2059,736,375.477,,,,,,144,30,0,,,,, +91,23,1,2060,768,375.477,,,,,,176,102,0,,,,, +91,24,3,2061,768,375.477,,,,,,176,102,0,,,,, +91,25,4,2062,768,375.477,,,,,,176,102,0,,,,, +91,20,1,2057,682,375.477,,,,,,144,84,0,,,,, +91,26,3,2063,810,375.565,43,16,G#2,ppp,5,144,44,5,,,,, +91,27,3,2064,853,375.655,43,16,F#1,ppp,5,144,30,5,,,,, +91,26,3,2063,810,375.73,,,,,,144,44,0,,,,, +91,27,3,2064,853,375.745,,,,,,144,30,0,,,,, +91,28,3,2065,896,375.745,128,8,C3,ppp,5,144,48,5,,,,, +91,28,3,2065,896,376.013,,,,,,144,48,0,,,,, +91,29,3,2066,1024,376.013,,,,,,176,102,0,,,,, +92,0,0,2067,0,376.549,,,,,,,,,92,,,, +92,1,0,2068,0,376.549,,,,,,,,,,5943,,, +92,3,1,2069,0,376.549,,,,,,176,102,0,,,,, +92,4,3,2070,0,376.549,1024,1,F#1,fff,24,144,30,23,,,,, +92,2,0,2071,0,376.549,,,,,,176,64,127,,,,,V +91,2,2,2039,0,376.624,,,,,,144,62,0,,,,, +92,5,3,2072,1024,378.692,256,4,F#1,,,,,,,,,, +93,0,0,2073,0,379.227,,,,,,,,,93,,,, +93,1,0,2074,0,379.227,,,,,,176,64,0,,,,,^ +93,2,1,2075,0,379.227,1536,1,G#4,p,11,144,68,11,,,,, +93,3,3,2076,0,379.227,1536,1,F#1,,,,,,,,,, +93,4,1,2077,1536,382.442,768,2,G#4,,,,,,,,,, +93,5,3,2078,1536,382.442,768,2,F#1,,,,,,,,,, +93,7,3,2079,,383.974,,8,G#1,s,0,144,32,0,,,,g, +93,6,1,2080,,383.974,,8,D4,s,0,144,62,0,,,,g, +93,7,3,2079,,384.024,,,,,,144,32,0,,,,, +93,6,1,2080,,384.024,,,,,,144,62,0,,,,, +92,4,3,2070,0,384.049,,,,,,144,30,0,,,,, +93,2,1,2075,0,384.049,,,,,,144,68,0,,,,, +94,0,0,2081,0,384.049,,,,,,,,,94,,,, +94,2,1,2082,,384.049,,8,F#4,mf,17,144,66,17,,,,g, +94,6,4,2083,,384.049,,8,F3,pp,8,144,53,8,,,,g, +94,2,1,2082,,384.099,,,,,,144,66,0,,,,, +94,6,4,2083,,384.099,,,,,,144,53,0,,,,, +94,7,4,2084,,384.124,,8,C3,pp+,9,144,48,9,,,,g, +94,7,4,2084,,384.174,,,,,,144,48,0,,,,, +94,3,1,2085,,384.199,,8,F4,ff,22,144,65,22,,,,g, +94,3,1,2085,,384.249,,,,,,144,65,0,,,,, +94,8,4,2086,,384.274,,8,F#2,p,11,144,42,11,,,,g, +94,8,4,2086,,384.324,,,,,,144,42,0,,,,, +94,9,4,2087,,384.349,,8,C2,f,20,144,36,20,,,,g, +94,9,4,2087,,384.399,,,,,,144,36,0,,,,, +94,4,1,2088,0,384.499,896,2,E5,f,20,144,76,20,,,,, +94,5,3,2089,0,384.499,,,,,,176,102,0,,,,, +94,10,4,2090,0,384.499,1024,1,B0,ff,22,144,23,22,,,,, +94,11,4,2091,0,384.499,1024,1,G#1,ff,22,144,32,22,,,,, +94,1,0,2092,0,384.499,,,,,,176,64,127,,,,,V +94,11,4,2091,0,385.436,,,,,,144,32,0,,,,, +94,12,3,2093,448,385.436,64,16,G#1,ff,22,144,32,22,,,,, +94,13,3,2094,512,385.57,,,,,,176,102,0,,,,, +94,14,0,2095,896,386.257,,,,,,176,64,0,,,,,^ +94,4,1,2088,0,386.374,,,,,,144,76,0,,,,, +94,15,1,2096,896,386.374,,,,,,176,102,0,,,,, +94,16,3,2097,896,386.374,32,32,A#5,f,20,144,82,20,,,,, +94,16,3,2097,896,386.441,,,,,,144,82,0,,,,, +94,18,3,2098,928,386.441,32,32,C1,f,20,144,24,20,,,,, +94,18,3,2098,928,386.508,,,,,,144,24,0,,,,, +94,19,3,2099,960,386.508,64,16,F2,f,20,144,41,20,,,,, +94,25,0,2100,1034,386.513,,,,,,176,64,0,,,,,^ +94,17,0,2101,928,386.557,,,,,,176,64,127,,,,,V +94,20,1,2102,1024,386.642,,,,,,176,102,0,,,,, +94,21,3,2103,1024,386.642,1024,1,F2,,,,,,,,,, +94,22,3,2104,1024,386.642,1024,1,D3,f,20,144,50,20,,,,, +94,23,3,2105,1024,386.642,1024,1,C4,p,11,144,60,11,,,,, +94,24,4,2106,1024,386.642,,,,,,176,102,0,,,,, +94,10,4,2090,0,386.642,,,,,,144,23,0,,,,, +94,12,3,2093,448,386.642,,,,,,144,32,0,,,,, +94,25,0,2107,1034,386.813,,,,,,176,64,127,,,,,V +94,26,1,2108,1194,386.997,86,8,E4,mf,17,144,64,17,,,,, +94,27,1,2109,1280,387.177,768,2,E4,,,,,,,,,, +94,28,4,2110,1536,387.713,,,,,,176,102,0,,,,, +94,29,4,2111,1621,387.891,171,4,G#1,p,11,144,32,11,,,,, +94,30,4,2112,1792,388.249,256,4,G#1,,,,,,,,,, +94,31,0,2113,2047,388.783,,,,,,176,64,0,,,,,^ +95,0,0,2114,0,388.785,,,,,,,,,95,,,, +95,1,0,2115,0,388.785,,,,,,,,,,5944,,, +95,2,1,2116,0,388.785,1024,1,G#3,pp,8,144,56,8,,,,, +95,3,2,2117,0,388.785,,,,,,176,102,0,,,,, +95,4,3,2118,0,388.785,384,4,C#2,ff,22,144,37,22,,,,, +95,5,4,2119,0,388.785,25,32,C2,mp,14,144,36,14,,,,, +95,5,4,2119,0,388.837,,,,,,144,36,0,,,,, +95,6,4,2120,25,388.837,26,32,B4,f,20,144,71,20,,,,, +95,6,4,2120,25,388.891,,,,,,144,71,0,,,,, +95,7,4,2121,51,388.891,25,32,E4,f,20,144,64,20,,,,, +95,7,4,2121,51,388.944,,,,,,144,64,0,,,,, +95,8,4,2122,76,388.944,26,32,F2,f,20,144,41,20,,,,, +95,8,4,2122,76,388.998,,,,,,144,41,0,,,,, +95,9,4,2123,102,388.998,26,32,C2,f,20,144,36,20,,,,, +95,9,4,2123,102,389.052,,,,,,144,36,0,,,,, +95,10,4,2124,128,389.052,128,8,E4,f,20,144,64,20,,,,, +94,19,3,2099,960,389.235,,,,,,144,41,0,,,,, +94,22,3,2104,1024,389.235,,,,,,144,50,0,,,,, +94,23,3,2105,1024,389.235,,,,,,144,60,0,,,,, +94,26,1,2108,1194,389.235,,,,,,144,64,0,,,,, +94,29,4,2111,1621,389.235,,,,,,144,32,0,,,,, +95,11,4,2125,256,389.32,170,4,E4,,,,,,,,,, +95,12,3,2126,384,389.588,128,8,D#1,f,20,144,27,20,,,,, +95,4,3,2118,0,389.588,,,,,,144,37,0,,,,, +95,13,4,2127,426,389.676,43,16,E4,,,,,,,,,, +95,10,4,2124,128,389.766,,,,,,144,64,0,,,,, +95,14,4,2128,469,389.766,43,16,G#1,mp,14,144,32,14,,,,, +95,15,3,2129,512,389.856,1536,1,D#1,,,,,,,,,, +95,16,4,2130,512,389.856,256,4,G#1,,,,,,,,,, +95,17,4,2131,768,390.392,42,16,G#1,,,,,,,,,, +95,14,4,2128,469,390.48,,,,,,144,32,0,,,,, +95,18,4,2132,810,390.48,43,16,F3,pp,8,144,53,8,,,,, +95,19,4,2133,853,390.57,171,4,F3,,,,,,,,,, +95,18,4,2132,810,390.927,,,,,,144,53,0,,,,, +95,20,1,2134,1024,390.927,128,8,G#3,,,,,,,,,, +95,21,2,2135,1024,390.927,1024,1,B1,p,11,144,35,11,,,,, +95,22,4,2136,1024,390.927,,,,,,176,102,0,,,,, +95,23,1,2137,,391.12,,8,E4,f,20,144,64,20,,,,g, +95,23,1,2137,,391.17,,,,,,144,64,0,,,,, +95,24,1,2138,1152,391.195,85,8,C5,ppp,5,144,72,5,,,,, +95,25,1,2139,1152,391.195,128,8,A#5,f,20,144,82,20,,,,, +95,2,1,2116,0,391.195,,,,,,144,56,0,,,,, +95,24,1,2138,1152,391.373,,,,,,144,72,0,,,,, +95,26,1,2140,1237,391.373,43,16,F2,mf,17,144,41,17,,,,, +95,26,1,2140,1237,391.463,,,,,,144,41,0,,,,, +95,28,1,2141,1280,391.463,256,4,D4,p,11,144,62,11,,,,, +95,29,4,2142,1280,391.463,,,,,,176,102,0,,,,, +95,27,0,2143,1280,391.463,,,,,,176,64,127,,,,,V +95,25,1,2139,1152,391.463,,,,,,144,82,0,,,,, +95,28,1,2141,1280,391.999,,,,,,144,62,0,,,,, +95,30,1,2144,1536,391.999,512,2,F#4,mp,14,144,66,14,,,,, +95,31,1,2145,1536,391.999,512,2,A#4,fff,24,144,70,23,,,,, +95,32,4,2146,1536,391.999,256,4,A#5,mf,17,144,82,17,,,,, +95,32,4,2146,1536,392.535,,,,,,144,82,0,,,,, +95,33,4,2147,1792,392.535,256,4,E4,p,11,144,64,11,,,,, +95,34,0,2148,2047,393.068,,,,,,176,64,0,,,,,^ +95,30,1,2144,1536,393.07,,,,,,144,66,0,,,,, +95,31,1,2145,1536,393.07,,,,,,144,70,0,,,,, +95,33,4,2147,1792,393.07,,,,,,144,64,0,,,,, +96,0,0,2149,0,393.07,,,,,,,,,96,,,, +96,1,1,2150,0,393.07,,,,,,176,102,0,,,,, +96,2,2,2151,0,393.07,32,32,A#6,p,11,144,94,11,,,,, +96,3,3,2152,0,393.07,384,4,A#3,pp,8,144,58,8,,,,, +96,4,4,2153,0,393.07,,,,,,176,102,0,,,,, +95,12,3,2126,384,393.07,,,,,,144,27,0,,,,, +95,21,2,2135,1024,393.07,,,,,,144,35,0,,,,, +96,2,2,2151,0,393.137,,,,,,144,94,0,,,,, +96,5,1,2154,32,393.137,32,32,C#6,p+,12,144,85,12,,,,, +96,6,2,2155,32,393.137,32,32,F4,p+,12,144,65,12,,,,, +96,5,1,2154,32,393.204,,,,,,144,85,0,,,,, +96,6,2,2155,32,393.204,,,,,,144,65,0,,,,, +96,7,1,2156,64,393.204,32,32,C5,mp,14,144,72,14,,,,, +96,8,2,2157,64,393.204,32,32,F#4,mp,14,144,66,14,,,,, +96,7,1,2156,64,393.271,,,,,,144,72,0,,,,, +96,8,2,2157,64,393.271,,,,,,144,66,0,,,,, +96,9,1,2158,96,393.271,,,,,,176,102,0,,,,, +96,10,2,2159,96,393.271,32,32,F4,p+,12,144,65,12,,,,, +96,11,4,2160,96,393.271,32,32,G3,p,11,144,55,11,,,,, +96,10,2,2159,96,393.338,,,,,,144,65,0,,,,, +96,11,4,2160,96,393.338,,,,,,144,55,0,,,,, +96,12,1,2161,128,393.338,128,8,E7,p,11,144,100,11,,,,, +96,13,2,2162,128,393.338,128,8,D4,p,11,144,62,11,,,,, +96,14,4,2163,128,393.338,128,8,A3,ppp,5,144,57,5,,,,, +96,12,1,2161,128,393.606,,,,,,144,100,0,,,,, +96,13,2,2162,128,393.606,,,,,,144,62,0,,,,, +96,14,4,2163,128,393.606,,,,,,144,57,0,,,,, +96,15,1,2164,256,393.606,,,,,,176,102,0,,,,, +96,16,2,2165,256,393.606,,,,,,176,102,0,,,,, +96,17,4,2166,256,393.606,,,,,,176,102,0,,,,, +96,3,3,2152,0,393.874,,,,,,144,58,0,,,,, +96,19,1,2167,384,393.874,128,8,F7,ppp,5,144,101,5,,,,, +96,20,2,2168,384,393.874,128,8,A6,mp,14,144,93,14,,,,, +96,21,3,2169,384,393.874,128,8,G#4,ppp,5,144,68,5,,,,, +96,22,0,2170,384,393.874,,,,,,,,,,5945,,, +96,18,0,2171,384,393.874,,,,,,176,64,127,,,,,V +96,19,1,2167,384,394.142,,,,,,144,101,0,,,,, +96,20,2,2168,384,394.142,,,,,,144,93,0,,,,, +96,21,3,2169,384,394.142,,,,,,144,68,0,,,,, +96,23,1,2172,512,394.142,,,,,,176,102,0,,,,, +96,24,2,2173,512,394.142,,,,,,176,102,0,,,,, +96,25,3,2174,512,394.142,,,,,,176,102,0,,,,, +96,26,4,2175,512,394.142,,,,,,176,102,0,,,,, +96,27,3,2176,896,394.945,128,8,G#1,p,11,144,32,11,,,,, +96,27,3,2176,896,395.213,,,,,,144,32,0,,,,, +96,28,1,2177,1024,395.213,,,,,,176,102,0,,,,, +96,29,2,2178,1024,395.213,,,,,,176,102,0,,,,, +96,30,3,2179,1024,395.213,,,,,,176,102,0,,,,, +96,31,4,2180,1024,395.213,,,,,,176,102,0,,,,, +96,32,0,2181,1216,395.615,,,,,,176,64,0,,,,,^ +96,33,3,2182,1216,395.615,64,16,F3,ppp,5,144,53,5,,,,, +96,34,3,2183,1280,395.749,768,2,F3,,,,,,,,,, +97,0,0,2184,0,397.356,,,,,,,,,97,,,, +97,1,1,2185,0,397.356,,,,,,176,102,0,,,,, +97,2,3,2186,0,397.356,128,8,F3,,,,,,,,,, +97,3,4,2187,0,397.356,2048,0.5,D#1,ppp,5,144,27,5,,,,, +96,33,3,2182,1216,397.624,,,,,,144,53,0,,,,, +97,4,3,2188,128,397.624,,,,,,176,102,0,,,,, +97,5,3,2189,256,397.892,,,,,,176,102,0,,,,, +97,6,3,2190,1024,399.499,42,16,C3,mp,14,144,48,14,,,,, +97,6,3,2190,1024,399.587,,,,,,144,48,0,,,,, +97,7,3,2191,1066,399.587,43,16,E5,mf,17,144,76,17,,,,, +97,7,3,2191,1066,399.677,,,,,,144,76,0,,,,, +97,8,3,2192,1109,399.677,43,16,F3,f-,19,144,53,19,,,,, +97,8,3,2192,1109,399.767,,,,,,144,53,0,,,,, +97,10,3,2193,1152,399.767,128,8,C2,ff,22,144,36,22,,,,, +97,9,0,2194,1152,399.767,,,,,,176,64,127,,,,,V +97,11,3,2195,1280,400.035,768,2,C2,,,,,,,,,, +97,3,4,2187,0,401.642,,,,,,144,27,0,,,,, +97,10,3,2193,1152,401.642,,,,,,144,36,0,,,,, +98,0,0,2196,0,401.642,,,,,,,,,98,,,, +98,1,1,2197,0,401.642,,,,,,176,102,0,,,,, +98,2,3,2198,0,401.642,512,2,C2,pp,8,144,36,8,,,,, +98,3,4,2199,0,401.642,,,,,,176,102,0,,,,, +98,4,0,2200,512,402.563,,,,,,176,64,0,,,,,^ +98,5,1,2201,,402.638,,8,C#6,pp,8,144,85,8,,,,g, +98,5,1,2201,,402.688,,,,,,144,85,0,,,,, +98,2,3,2198,0,402.713,,,,,,144,36,0,,,,, +98,6,1,2202,512,402.713,128,8,E6,pp,8,144,88,8,,,,, +98,7,1,2203,512,402.713,128,8,A#6,ff,22,144,94,22,,,,, +98,8,3,2204,512,402.713,128,8,C2,ppp,5,144,36,5,,,,, +98,9,4,2205,512,402.713,,,,,,176,102,0,,,,, +98,4,0,2206,512,402.863,,,,,,176,64,127,,,,,V +98,10,0,2207,640,402.965,,,,,,176,64,0,,,,,^ +98,6,1,2202,512,402.981,,,,,,144,88,0,,,,, +98,7,1,2203,512,402.981,,,,,,144,94,0,,,,, +98,8,3,2204,512,402.981,,,,,,144,36,0,,,,, +98,11,1,2208,640,402.981,128,8,F#4,p,11,144,66,11,,,,, +98,12,3,2209,640,402.981,128,8,B1,ppp-,4,144,35,4,,,,, +98,13,4,2210,640,402.981,128,8,F#1,ppp-,4,144,30,4,,,,, +98,13,4,2210,640,403.249,,,,,,144,30,0,,,,, +98,15,1,2211,768,403.249,1024,1,F#4,,,,,,,,,, +98,16,3,2212,768,403.249,1024,1,B1,,,,,,,,,, +98,17,4,2213,768,403.249,,,,,,176,102,0,,,,, +98,14,0,2214,768,403.265,,,,,,176,64,127,,,,,V +98,18,4,2215,1024,403.785,,,,,,176,102,0,,,,, +98,19,4,2216,1216,404.186,64,16,F3,f,20,144,53,20,,,,, +98,20,4,2217,1280,404.32,768,2,F3,,,,,,,,,, +98,21,0,2218,1792,405.242,,,,,,176,64,0,,,,,^ +98,11,1,2208,640,405.392,,,,,,144,66,0,,,,, +98,22,1,2219,1792,405.392,,,,,,176,102,0,,,,, +98,23,3,2220,1792,405.392,256,4,B0,mp,14,144,23,14,,,,, +98,24,3,2221,1792,405.392,256,4,B1,,,,,,,,,, +98,21,0,2222,1792,405.542,,,,,,176,64,127,,,,,V +99,0,0,2223,0,405.927,,,,,,,,,99,,,, +99,1,1,2224,0,405.927,,,,,,176,102,0,,,,, +99,2,3,2225,0,405.927,1792,1,B0,,,,,,,,,, +99,3,3,2226,0,405.927,1024,1,B1,,,,,,,,,, +99,4,4,2227,0,405.927,2048,0.5,F3,,,,,,,,,, +99,5,1,2228,512,406.999,768,2,D4,p,11,144,62,11,,,,, +98,12,3,2209,640,408.07,,,,,,144,35,0,,,,, +99,5,1,2228,512,408.606,,,,,,144,62,0,,,,, +99,6,1,2229,1280,408.606,512,2,F4,pp-,7,144,65,7,,,,, +99,9,1,2230,,409.602,,8,C5,pp,8,144,72,8,,,,g, +99,8,1,2231,,409.602,,8,F#4,pp,8,144,66,8,,,,g, +99,9,1,2230,,409.652,,,,,,144,72,0,,,,, +99,8,1,2231,,409.652,,,,,,144,66,0,,,,, +99,6,1,2229,1280,409.677,,,,,,144,65,0,,,,, +99,7,0,2232,1792,409.677,,,,,,176,64,0,,,,,^ +99,10,1,2233,1792,409.677,,,,,,176,102,0,,,,, +99,11,3,2234,1792,409.677,,,,,,176,102,0,,,,, +98,23,3,2220,1792,409.677,,,,,,144,23,0,,,,, +100,0,0,2235,0,410.213,,,,,,,,,100,,,, +100,1,0,2236,0,410.213,,,,,,,,,,5946,,, +100,2,1,2237,0,410.213,,,,,,176,102,0,,,,, +100,3,3,2238,0,410.213,2048,0.5,D4,pp-,7,144,62,7,,,,, +100,4,3,2239,0,410.213,2048,0.5,E5,pp-,7,144,76,7,,,,, +98,19,4,2216,1216,410.213,,,,,,144,53,0,,,,, +100,5,0,2240,316,410.874,,,,,,176,64,127,,,,,V +100,6,1,2241,1792,413.963,256,4,F#7,ff,22,144,102,22,,,,, +100,6,1,2241,1792,414.499,,,,,,144,102,0,,,,, +101,0,0,2242,0,414.499,,,,,,,,,101,,,, +101,1,1,2243,0,414.499,,,,,,176,102,0,,,,, +101,2,3,2244,0,414.499,1024,1,D4,,,,,,,,,, +101,3,3,2245,0,414.499,1024,1,E5,,,,,,,,,, +101,4,4,2246,0,414.499,,,,,,176,102,0,,,,, +100,3,3,2238,0,416.642,,,,,,144,62,0,,,,, +100,4,3,2239,0,416.642,,,,,,144,76,0,,,,, +101,5,0,2247,1024,416.642,,,,,,176,64,0,,,,,^ +101,6,3,2248,1024,416.642,1024,1,A#2,ppp,5,144,46,5,,,,, +101,7,3,2249,1024,416.642,1024,1,A3,ppp,5,144,57,5,,,,, +101,8,4,2250,1024,416.642,128,8,D#1,mp,14,144,27,14,,,,, +101,9,4,2251,1024,416.642,128,8,G#1,mp,14,144,32,14,,,,, +101,8,4,2250,1024,416.91,,,,,,144,27,0,,,,, +101,9,4,2251,1024,416.91,,,,,,144,32,0,,,,, +101,10,4,2252,1152,416.91,,,,,,176,102,0,,,,, +101,11,4,2253,1280,417.177,768,2,D3,f,20,144,50,20,,,,, +101,6,3,2248,1024,418.785,,,,,,144,46,0,,,,, +101,7,3,2249,1024,418.785,,,,,,144,57,0,,,,, +101,11,4,2253,1280,418.785,,,,,,144,50,0,,,,, +102,0,0,2254,0,418.785,,,,,,,,,102,,,, +102,1,1,2255,0,418.785,256,4,D7,ppp,5,144,98,5,,,,, +102,2,1,2256,0,418.785,256,4,G7,ppp,5,144,103,5,,,,, +102,3,2,2257,0,418.785,,,,,,176,102,0,,,,, +102,4,3,2258,0,418.785,128,8,G#2,ppp,5,144,44,5,,,,, +102,4,3,2258,0,419.052,,,,,,144,44,0,,,,, +102,5,3,2259,128,419.052,,,,,,176,102,0,,,,, +102,1,1,2255,0,419.32,,,,,,144,98,0,,,,, +102,2,1,2256,0,419.32,,,,,,144,103,0,,,,, +102,6,1,2260,256,419.32,,,,,,176,102,0,,,,, +102,7,2,2261,256,419.32,,,,,,176,102,0,,,,, +102,8,3,2262,256,419.32,256,4,C3,ppp,5,144,48,5,,,,, +102,8,3,2262,256,419.856,,,,,,144,48,0,,,,, +102,9,1,2263,,419.856,,8,G#4,pp,8,144,68,8,,,,g, +102,9,1,2263,,419.906,,,,,,144,68,0,,,,, +102,10,1,2264,,419.931,,8,G#4,,,,,,,,,g, +102,11,1,2265,,420.006,,8,D5,pp-,7,144,74,7,,,,g, +102,11,1,2265,,420.056,,,,,,144,74,0,,,,, +102,12,1,2266,512,420.081,128,8,C3,ppp,5,144,48,5,,,,, +102,13,2,2267,512,420.081,,,,,,176,102,0,,,,, +102,14,3,2268,,420.081,,8,F3,ppp,5,144,53,5,,,,g, +102,14,3,2268,,420.131,,,,,,144,53,0,,,,, +102,15,3,2269,,420.156,,8,F#2,ppp,5,144,42,5,,,,g, +102,15,3,2269,,420.206,,,,,,144,42,0,,,,, +102,16,3,2270,,420.231,,8,B2,ppp,5,144,47,5,,,,g, +102,17,3,2271,,420.231,,8,F3,ppp,5,144,53,5,,,,g, +102,16,3,2270,,420.281,,,,,,144,47,0,,,,, +102,17,3,2271,,420.281,,,,,,144,53,0,,,,, +102,12,1,2266,512,420.349,,,,,,144,48,0,,,,, +102,18,3,2272,512,420.381,,,,,,176,102,0,,,,, +102,19,1,2273,640,420.649,0,8,C6,ppp,5,,,,,,,, +102,20,1,2274,640,420.649,128,8,B6,ppp,5,144,95,5,,,,, +102,20,1,2274,640,420.917,,,,,,144,95,0,,,,, +102,21,1,2275,768,420.917,,,,,,176,102,0,,,,, +102,22,2,2276,768,420.917,,,,,,176,102,0,,,,, +102,26,3,2277,,421.377,,8,F#2,s,0,144,42,0,,,,g, +102,25,3,2278,,421.377,,8,G#1,s,0,144,32,0,,,,g, +102,26,3,2277,,421.427,,,,,,144,42,0,,,,, +102,25,3,2278,,421.427,,,,,,144,32,0,,,,, +102,23,1,2279,1024,421.452,85,8,G#2,ppp,5,144,44,5,,,,, +102,24,2,2280,1024,421.452,,,,,,176,102,0,,,,, +102,27,3,2281,1024,421.452,1024,1,G#1,ppp,5,144,32,5,,,,, +102,28,3,2282,1024,421.452,1024,1,F#2,ppp,5,144,42,5,,,,, +102,23,1,2279,1024,421.63,,,,,,144,44,0,,,,, +102,29,1,2283,1109,421.63,85,8,C3,ppp,5,144,48,5,,,,, +102,28,3,2282,1024,421.808,,,,,,144,42,0,,,,, +102,29,1,2283,1109,421.808,,,,,,144,48,0,,,,, +102,30,1,2284,1194,421.808,86,8,F#2,ppp,5,144,42,5,,,,, +102,31,1,2285,1280,421.988,,,,,,176,102,0,,,,, +102,32,2,2286,1280,421.988,,,,,,176,102,0,,,,, +102,33,1,2287,,422.374,,8,F4,ppp,5,144,65,5,,,,g, +102,33,1,2287,,422.424,,,,,,144,65,0,,,,, +102,34,1,2288,,422.449,,8,F#1,ppp,5,144,30,5,,,,g, +102,34,1,2288,,422.499,,,,,,144,30,0,,,,, +102,35,1,2289,1536,422.524,768,2,D3,p,11,144,50,11,,,,, +102,36,2,2290,1536,422.524,256,4,C3,ppp,5,144,48,5,,,,, +102,36,2,2290,1536,423.06,,,,,,144,48,0,,,,, +102,37,2,2291,1792,423.06,,,,,,176,102,0,,,,, +102,41,4,2292,,423.445,,8,A2,pp,8,144,45,8,,,,g, +102,41,4,2292,,423.495,,,,,,144,45,0,,,,, +102,44,4,2293,,423.52,,8,C5,pp,8,144,72,8,,,,g, +102,43,4,2294,,423.52,,8,A#3,pp,8,144,58,8,,,,g, +102,42,4,2295,,423.52,,8,C#1,pp,8,144,25,8,,,,g, +102,44,4,2293,,423.57,,,,,,144,72,0,,,,, +102,43,4,2294,,423.57,,,,,,144,58,0,,,,, +102,42,4,2295,,423.57,,,,,,144,25,0,,,,, +102,38,2,2296,2048,423.595,,,,,,176,102,0,,,,, +102,39,3,2297,2048,423.595,,,,,,176,102,0,,,,, +102,40,0,2298,2048,423.595,,,,,,,,,,5947,,, +102,27,3,2281,1024,423.595,,,,,,144,32,0,,,,, +102,30,1,2284,1194,423.595,,,,,,144,42,0,,,,, +102,35,1,2289,1536,424.131,,,,,,144,50,0,,,,, +103,0,0,2299,0,424.131,,,,,,,,,103,,,, +103,1,0,2300,0,424.131,,,,,,,,,,,104,, +103,3,1,2301,0,424.131,128,8,D5,p,11,144,74,11,,,,, +103,4,2,2302,0,424.131,512,2,D4,f,20,144,62,20,,,,, +103,5,3,2303,0,424.131,21,32,C#4,f,20,144,61,20,,,,, +103,6,4,2304,0,424.131,,,,,,176,102,0,,,,, +103,2,0,2305,0,424.131,,,,,,176,64,127,,,,,V +103,5,3,2303,0,424.178,,,,,,144,61,0,,,,, +103,7,3,2306,21,424.178,21,32,G#1,ff,22,144,32,22,,,,, +103,7,3,2306,21,424.226,,,,,,144,32,0,,,,, +103,8,0,2307,42,424.226,,,,,,176,64,0,,,,,^ +103,9,3,2308,42,424.226,43,16,D#1,ff,22,144,27,22,,,,, +103,10,3,2309,85,424.323,171,4,D#1,,,,,,,,,, +103,3,1,2301,0,424.419,,,,,,144,74,0,,,,, +103,11,1,2310,128,424.419,,,,,,176,102,0,,,,, +103,12,1,2311,192,424.564,64,16,A4,pp,8,144,69,8,,,,, +103,13,1,2312,256,424.708,256,4,A4,,,,,,,,,, +103,14,3,2313,256,424.708,85,8,D#1,,,,,,,,,, +103,15,4,2314,256,424.708,,,,,,176,102,0,,,,, +103,16,3,2315,341,424.9,171,4,B5,p,11,144,83,11,,,,, +103,17,4,2316,341,424.9,85,8,G6,mp+,15,144,91,15,,,,, +103,18,4,2317,426,425.091,86,8,A#4,mp-,13,144,70,13,,,,, +103,9,3,2308,42,425.125,,,,,,144,27,0,,,,, +103,18,4,2317,426,425.285,,,,,,144,70,0,,,,, +103,20,1,2318,512,425.285,,,,,,176,102,0,,,,, +103,21,2,2319,512,425.285,,,,,,176,102,0,,,,, +103,22,3,2320,512,425.285,256,4,A#2,p,11,144,46,11,,,,, +103,23,4,2321,512,425.285,170,4,G2,ppp,5,144,43,5,,,,, +103,19,0,2322,512,425.285,,,,,,176,64,127,,,,,V +103,17,4,2316,341,425.391,,,,,,144,91,0,,,,, +103,24,2,2323,576,425.429,64,16,G3,p,11,144,55,11,,,,, +103,24,2,2323,576,425.573,,,,,,144,55,0,,,,, +103,25,2,2324,640,425.573,42,16,F#7,f,20,144,102,20,,,,, +103,16,3,2315,341,425.585,,,,,,144,83,0,,,,, +103,23,4,2321,512,425.668,,,,,,144,43,0,,,,, +103,25,2,2324,640,425.668,,,,,,144,102,0,,,,, +103,26,0,2325,682,425.668,,,,,,176,64,0,,,,,^ +103,27,2,2326,682,425.668,43,16,D#1,mf-,16,144,27,16,,,,, +103,28,4,2327,682,425.668,,,,,,176,102,0,,,,, +103,27,2,2326,682,425.765,,,,,,144,27,0,,,,, +103,29,2,2328,725,425.765,43,16,E6,p,11,144,88,11,,,,, +103,30,0,2329,725,425.765,,,,,,,,,,5948,,, +103,4,2,2302,0,425.81,,,,,,144,62,0,,,,, +103,12,1,2311,192,425.81,,,,,,144,69,0,,,,, +103,29,2,2328,725,425.862,,,,,,144,88,0,,,,, +103,31,1,2330,768,425.862,64,16,B5,mf,17,144,83,17,,,,, +103,32,2,2331,768,425.862,128,8,F5,p,11,144,77,11,,,,, +103,33,3,2332,768,425.862,,,,,,176,102,0,,,,, +103,34,4,2333,768,425.862,128,8,C3,ppp,5,144,48,5,,,,, +103,22,3,2320,512,425.862,,,,,,144,46,0,,,,, +103,31,1,2330,768,426.006,,,,,,144,83,0,,,,, +103,35,1,2334,832,426.006,64,16,C#5,p-,10,144,73,10,,,,, +103,32,2,2331,768,426.15,,,,,,144,77,0,,,,, +103,34,4,2333,768,426.15,,,,,,144,48,0,,,,, +103,35,1,2334,832,426.15,,,,,,144,73,0,,,,, +103,36,1,2335,896,426.15,,,,,,176,102,0,,,,, +103,37,2,2336,896,426.15,,,,,,176,102,0,,,,, +103,38,3,2337,896,426.15,128,8,G#3,mp,14,144,56,14,,,,, +103,39,4,2338,896,426.15,64,16,G3,ppp,5,144,55,5,,,,, +103,39,4,2338,896,426.294,,,,,,144,55,0,,,,, +103,40,2,2339,960,426.294,64,16,D6,pp,8,144,86,8,,,,, +103,41,4,2340,960,426.294,,,,,,176,102,0,,,,, +103,40,2,2339,960,426.439,,,,,,144,86,0,,,,, +104,0,0,2341,0,426.439,,,,,,,,,104,,,, +104,2,1,2342,,426.439,,8,C#4,ppp,5,144,61,5,,,,g, +104,2,1,2342,,426.489,,,,,,144,61,0,,,,, +104,3,1,2343,,426.514,,8,G2,ppp,5,144,43,5,,,,g, +104,3,1,2343,,426.564,,,,,,144,43,0,,,,, +104,4,1,2344,0,426.589,170,4,B5,mf,17,144,83,17,,,,, +104,5,2,2345,0,426.589,1024,1,E4,mf,17,144,64,17,,,,, +104,6,3,2346,0,426.589,384,4,G#3,,,,,,,,,, +104,7,4,2347,0,426.589,85,8,A#1,ppp,5,144,34,5,,,,, +104,1,0,2348,0,426.589,,,,,,176,64,127,,,,,V +104,7,4,2347,0,426.78,,,,,,144,34,0,,,,, +104,8,4,2349,85,426.78,85,8,D6,ppp,5,144,86,5,,,,, +104,4,1,2344,0,426.972,,,,,,144,83,0,,,,, +104,8,4,2349,85,426.972,,,,,,144,86,0,,,,, +104,9,0,2350,170,426.972,,,,,,176,64,0,,,,,^ +104,10,1,2351,170,426.972,,,,,,176,102,0,,,,, +104,11,4,2352,170,426.972,86,8,C3,ppp,5,144,48,5,,,,, +104,11,4,2352,170,427.166,,,,,,144,48,0,,,,, +104,12,1,2353,256,427.166,,,,,,176,102,0,,,,, +104,13,4,2354,256,427.166,,,,,,176,102,0,,,,, +103,38,3,2337,896,427.304,,,,,,144,56,0,,,,, +104,14,3,2355,384,427.454,,,,,,176,102,0,,,,, +104,15,1,2356,512,427.743,512,2,C5,ppp,5,144,72,5,,,,, +104,16,3,2357,512,427.743,128,8,D#2,mp,14,144,39,14,,,,, +104,17,4,2358,512,427.743,,,,,,176,102,0,,,,, +104,16,3,2357,512,428.031,,,,,,144,39,0,,,,, +104,18,3,2359,640,428.031,128,8,A5,ppp,5,144,81,5,,,,, +104,19,3,2360,640,428.031,128,8,B6,mp,14,144,95,14,,,,, +104,20,0,2361,695,428.155,,,,,,176,64,127,,,,,V +104,18,3,2359,640,428.319,,,,,,144,81,0,,,,, +104,19,3,2360,640,428.319,,,,,,144,95,0,,,,, +104,21,3,2362,768,428.319,128,8,G#2,mp,14,144,44,14,,,,, +104,22,4,2363,768,428.319,,,,,,176,102,0,,,,, +104,23,0,2364,832,428.426,,,,,,176,64,0,,,,,^ +104,24,4,2365,832,428.464,192,8,G2,pp,8,144,43,8,,,,, +104,21,3,2362,768,428.608,,,,,,144,44,0,,,,, +104,25,3,2366,896,428.608,,,,,,176,102,0,,,,, +104,26,0,2367,932,428.726,,,,,,176,64,127,,,,,V +104,15,1,2356,512,428.896,,,,,,144,72,0,,,,, +104,24,4,2365,832,428.896,,,,,,144,43,0,,,,, +105,1,0,2368,0,428.896,,,,,,176,64,0,,,,,^ +104,27,1,2369,,428.896,,8,E6,pp,8,144,88,8,,,,g, +104,27,1,2369,,428.946,,,,,,144,88,0,,,,, +104,28,1,2370,,428.971,,8,F7,pp,8,144,101,8,,,,g, +104,28,1,2370,,429.021,,,,,,144,101,0,,,,, +104,29,1,2371,,429.046,,8,A#4,pp,8,144,70,8,,,,g, +104,30,1,2372,,429.046,,8,C#5,pp,8,144,73,8,,,,g, +104,31,1,2373,,429.046,,8,A6,pp,8,144,93,8,,,,g, +104,29,1,2371,,429.096,,,,,,144,70,0,,,,, +104,30,1,2372,,429.096,,,,,,144,73,0,,,,, +104,31,1,2373,,429.096,,,,,,144,93,0,,,,, +105,0,0,2374,0,429.271,,,,,,,,,105,,,, +105,2,1,2375,0,429.271,128,8,B6,pp,8,144,95,8,,,,, +105,3,2,2376,0,429.271,1024,1,E4,,,,,,,,,, +105,4,3,2377,0,429.271,768,2,C#3,pp,8,144,49,8,,,,, +105,5,4,2378,0,429.271,1024,1,A2,pp,8,144,45,8,,,,, +105,6,4,2379,0,429.271,1024,1,G#3,pp,8,144,56,8,,,,, +105,2,1,2375,0,429.56,,,,,,144,95,0,,,,, +105,7,1,2380,128,429.56,384,4,E5,pp,8,144,76,8,,,,, +105,11,3,2381,,430.275,,,,,,176,102,0,,,,, +105,12,3,2382,,430.35,,8,G2,pp,8,144,43,8,,,,g, +105,12,3,2382,,430.4,,,,,,144,43,0,,,,, +105,8,1,2383,512,430.425,128,8,E5,,,,,,,,,, +105,7,1,2380,128,430.714,,,,,,144,76,0,,,,, +105,9,1,2384,640,430.714,,,,,,176,102,0,,,,, +105,4,3,2377,0,431.002,,,,,,144,49,0,,,,, +105,10,1,2385,768,431.002,256,4,D4,ppp,5,144,62,5,,,,, +105,13,3,2386,768,431.002,256,4,F3,ppp,5,144,53,5,,,,, +105,14,3,2387,,431.504,,8,C#2,p,11,144,37,11,,,,g, +105,14,3,2387,,431.554,,,,,,144,37,0,,,,, +105,10,1,2385,768,431.579,,,,,,144,62,0,,,,, +106,0,0,2388,0,431.579,,,,,,,,,106,,,, +106,1,1,2389,0,431.579,768,2,A4,p,11,144,69,11,,,,, +106,2,1,2390,0,431.579,512,2,D5,ppp,5,144,74,5,,,,, +106,3,2,2391,0,431.579,1024,1,E4,,,,,,,,,, +106,4,3,2392,0,431.579,768,2,F3,,,,,,,,,, +106,5,4,2393,0,431.579,768,2,A2,,,,,,,,,, +106,6,4,2394,0,431.579,512,2,G#3,,,,,,,,,, +105,6,4,2379,0,432.883,,,,,,144,56,0,,,,, +106,2,1,2390,0,432.883,,,,,,144,74,0,,,,, +106,8,3,2395,,433.16,,8,D#1,ppp,5,144,27,5,,,,g, +106,8,3,2395,,433.21,,,,,,144,27,0,,,,, +106,10,3,2396,,433.235,,8,B2,ppp,5,144,47,5,,,,g, +106,9,3,2397,,433.235,,8,C#1,ppp,5,144,25,5,,,,g, +106,10,3,2396,,433.285,,,,,,144,47,0,,,,, +106,9,3,2397,,433.285,,,,,,144,25,0,,,,, +106,7,1,2398,768,433.31,,,,,,176,102,0,,,,, +106,11,3,2399,768,433.31,256,4,A#2,ppp,5,144,46,5,,,,, +106,12,4,2400,768,433.31,,,,,,176,102,0,,,,, +105,5,4,2378,0,433.46,,,,,,144,45,0,,,,, +105,13,3,2386,768,433.46,,,,,,144,53,0,,,,, +106,1,1,2389,0,433.46,,,,,,144,69,0,,,,, +106,13,1,2401,896,433.598,128,8,F7,f,20,144,101,20,,,,, +106,13,1,2401,896,433.887,,,,,,144,101,0,,,,, +106,14,1,2402,,433.887,,8,A#6,mp,14,144,94,14,,,,g, +106,14,1,2402,,433.937,,,,,,144,94,0,,,,, +106,15,1,2403,,433.962,,8,G#1,mp,14,144,32,14,,,,g, +106,15,1,2403,,434.012,,,,,,144,32,0,,,,, +107,0,0,2404,0,434.037,,,,,,,,,107,,,, +107,1,1,2405,0,434.037,128,8,F5,pp,8,144,77,8,,,,, +107,2,2,2406,0,434.037,1024,1,E4,,,,,,,,,, +107,3,3,2407,0,434.037,512,2,A#2,,,,,,,,,, +107,4,4,2408,0,434.037,384,4,G2,pp,8,144,43,8,,,,, +107,1,1,2405,0,434.325,,,,,,144,77,0,,,,, +107,5,1,2409,128,434.325,,,,,,176,102,0,,,,, +107,6,1,2410,256,434.614,,,,,,176,102,0,,,,, +107,7,4,2411,384,434.902,128,8,F4,ppp,5,144,65,5,,,,, +107,8,0,2412,447,435.044,,,,,,176,64,127,,,,,V +107,9,1,2413,512,435.191,256,4,A5,mf,17,144,81,17,,,,, +107,10,3,2414,512,435.191,,,,,,176,102,0,,,,, +107,11,4,2415,512,435.191,256,4,B0,mf,17,144,23,17,,,,, +107,12,4,2416,512,435.191,256,4,F4,,,,,,,,,, +107,4,4,2408,0,435.277,,,,,,144,43,0,,,,, +106,11,3,2399,768,435.416,,,,,,144,46,0,,,,, +107,13,3,2417,682,435.574,342,2,C#5,mf,17,144,73,17,,,,, +107,7,4,2411,384,435.768,,,,,,144,65,0,,,,, +107,11,4,2415,512,435.768,,,,,,144,23,0,,,,, +107,14,1,2418,768,435.768,256,4,A5,,,,,,,,,, +107,15,1,2419,768,435.768,256,4,A#6,mf,17,144,94,17,,,,, +107,16,4,2420,768,435.768,256,4,C#1,mf,17,144,25,17,,,,, +104,5,2,2345,0,436.344,,,,,,144,64,0,,,,, +107,15,1,2419,768,436.344,,,,,,144,94,0,,,,, +107,16,4,2420,768,436.344,,,,,,144,25,0,,,,, +108,0,0,2421,0,436.344,,,,,,,,,108,,,, +108,1,0,2422,0,436.344,,,,,,176,64,0,,,,,^ +108,2,1,2423,0,436.344,1024,1,A5,,,,,,,,,, +108,3,2,2424,0,436.344,,,,,,176,102,0,,,,, +108,4,3,2425,0,436.344,1024,1,C#5,,,,,,,,,, +108,5,4,2426,0,436.344,1024,1,G3,f,20,144,55,20,,,,, +108,6,4,2427,0,436.344,1024,1,D4,f,20,144,62,20,,,,, +108,7,2,2428,128,436.633,128,8,F#4,mf,17,144,66,17,,,,, +108,8,2,2429,256,436.921,128,8,F#4,,,,,,,,,, +108,7,2,2428,128,437.21,,,,,,144,66,0,,,,, +108,9,2,2430,384,437.21,128,8,F4,mf,17,144,65,17,,,,, +108,10,2,2431,512,437.498,512,2,F4,,,,,,,,,, +107,9,1,2413,512,438.652,,,,,,144,81,0,,,,, +107,13,3,2417,682,438.652,,,,,,144,73,0,,,,, +108,5,4,2426,0,438.652,,,,,,144,55,0,,,,, +108,6,4,2427,0,438.652,,,,,,144,62,0,,,,, +108,9,2,2430,384,438.652,,,,,,144,65,0,,,,, +109,0,0,2432,0,438.652,,,,,,,,,109,,,, +109,1,0,2433,0,438.652,,,,,,,,,,5949,,, +109,2,1,2434,0,438.652,,,,,,176,102,0,,,,, +109,3,3,2435,0,438.652,1792,1,A2,mp,14,144,45,14,,,,, +109,4,4,2436,0,438.652,256,4,C2,ppp,5,144,36,5,,,,, +109,4,4,2436,0,439.229,,,,,,144,36,0,,,,, +109,5,4,2437,256,439.229,,,,,,176,102,0,,,,, +109,6,1,2438,512,439.806,64,16,C#7,pp,8,144,97,8,,,,, +109,7,4,2439,512,439.806,,,,,,176,102,0,,,,, +109,6,1,2438,512,439.95,,,,,,144,97,0,,,,, +109,8,1,2440,576,439.95,64,16,D3,ppp+,6,144,50,6,,,,, +109,8,1,2440,576,440.094,,,,,,144,50,0,,,,, +109,9,1,2441,640,440.094,128,8,E5,ppp,5,144,76,5,,,,, +109,9,1,2441,640,440.383,,,,,,144,76,0,,,,, +109,10,1,2442,768,440.383,,,,,,176,102,0,,,,, +109,11,4,2443,768,440.383,,,,,,176,102,0,,,,, +109,12,1,2444,896,440.671,128,8,C#6,ppp,5,144,85,5,,,,, +109,12,1,2444,896,440.96,,,,,,144,85,0,,,,, +109,13,1,2445,1024,440.96,128,8,C5,pp+,9,144,72,9,,,,, +109,13,1,2445,1024,441.248,,,,,,144,72,0,,,,, +109,14,1,2446,1152,441.248,128,8,E5,ppp,5,144,76,5,,,,, +109,14,1,2446,1152,441.537,,,,,,144,76,0,,,,, +109,15,1,2447,1280,441.537,,,,,,176,102,0,,,,, +110,0,0,2448,0,442.691,,,,,,,,,110,,,, +110,2,1,2449,0,442.691,42,16,D#2,p,11,144,39,11,,,,, +110,3,3,2450,0,442.691,1792,1,A2,,,,,,,,,, +110,4,4,2451,0,442.691,,,,,,176,102,0,,,,, +110,1,0,2452,0,442.691,,,,,,176,64,127,,,,,V +110,2,1,2449,0,442.785,,,,,,144,39,0,,,,, +110,5,1,2453,42,442.785,43,16,A#3,p-,10,144,58,10,,,,, +110,5,1,2453,42,442.882,,,,,,144,58,0,,,,, +110,6,0,2454,85,442.882,,,,,,176,64,0,,,,,^ +110,7,1,2455,85,442.882,43,16,C#3,pp,8,144,49,8,,,,, +110,7,1,2455,85,442.979,,,,,,144,49,0,,,,, +110,8,1,2456,128,442.979,,,,,,176,102,0,,,,, +110,9,4,2457,128,442.979,128,8,G#3,ff,22,144,56,22,,,,, +110,10,1,2458,256,443.268,,,,,,176,102,0,,,,, +110,11,4,2459,256,443.268,1536,1,G#3,,,,,,,,,, +110,12,1,2460,512,443.844,,,,,,176,102,0,,,,, +110,13,1,2461,768,444.421,,,,,,176,102,0,,,,, +111,0,0,2462,0,446.729,,,,,,,,,111,,,, +111,2,1,2463,0,446.729,,,,,,176,102,0,,,,, +111,3,2,2464,0,446.729,,,,,,176,102,0,,,,, +111,4,3,2465,0,446.729,170,4,F#4,ff,22,144,66,22,,,,, +111,5,4,2466,0,446.729,384,4,G#3,,,,,,,,,, +111,1,0,2467,0,446.729,,,,,,176,64,127,,,,,V +109,3,3,2435,0,446.879,,,,,,144,45,0,,,,, +111,4,3,2465,0,447.112,,,,,,144,66,0,,,,, +111,6,3,2468,170,447.112,342,2,B0,ff,22,144,23,22,,,,, +110,9,4,2457,128,447.594,,,,,,144,56,0,,,,, +111,7,2,2469,384,447.594,128,8,D5,pp,8,144,74,8,,,,, +111,8,4,2470,384,447.594,128,8,C5,f,20,144,72,20,,,,, +111,6,3,2468,170,447.883,,,,,,144,23,0,,,,, +111,7,2,2469,384,447.883,,,,,,144,74,0,,,,, +111,8,4,2470,384,447.883,,,,,,144,72,0,,,,, +111,9,1,2471,512,447.883,,,,,,176,102,0,,,,, +111,10,2,2472,512,447.883,512,2,D4,ff,22,144,62,22,,,,, +111,11,3,2473,512,447.883,,,,,,176,102,0,,,,, +111,12,4,2474,512,447.883,,,,,,176,102,0,,,,, +111,13,3,2475,682,448.266,342,2,F3,ppp,5,144,53,5,,,,, +111,14,4,2476,768,448.46,,,,,,176,102,0,,,,, +111,13,3,2475,682,449.037,,,,,,144,53,0,,,,, +111,15,1,2477,1024,449.037,128,8,F6,ff,22,144,89,22,,,,, +111,16,2,2478,1024,449.037,85,8,D4,,,,,,,,,, +111,17,3,2479,1024,449.037,256,4,F#1,ppp,5,144,30,5,,,,, +111,10,2,2472,512,449.228,,,,,,144,62,0,,,,, +111,18,0,2480,1109,449.228,,,,,,176,64,0,,,,,^ +111,19,2,2481,1109,449.228,21,32,A#6,ff,22,144,94,22,,,,, +111,19,2,2481,1109,449.276,,,,,,144,94,0,,,,, +111,20,2,2482,1130,449.276,22,32,F4,ff,22,144,65,22,,,,, +111,15,1,2477,1024,449.325,,,,,,144,89,0,,,,, +111,20,2,2482,1130,449.325,,,,,,144,65,0,,,,, +111,21,1,2483,1152,449.325,,,,,,176,102,0,,,,, +111,22,2,2484,,449.325,,8,D4,f+,21,144,62,21,,,,g, +111,22,2,2484,,449.375,,,,,,144,62,0,,,,, +111,23,2,2485,,449.4,,8,F#4,f,20,144,66,20,,,,g, +111,23,2,2485,,449.45,,,,,,144,66,0,,,,, +111,24,2,2486,,449.475,,8,F4,mf+,18,144,65,18,,,,g, +111,24,2,2486,,449.525,,,,,,144,65,0,,,,, +111,25,2,2487,1152,449.55,128,8,F#4,mf,17,144,66,17,,,,, +111,17,3,2479,1024,449.805,,,,,,144,30,0,,,,, +111,25,2,2487,1152,449.839,,,,,,144,66,0,,,,, +111,26,2,2488,,449.839,,8,E5,ff,22,144,76,22,,,,g, +111,26,2,2488,,449.889,,,,,,144,76,0,,,,, +111,27,2,2489,,449.914,,8,A#3,ff,22,144,58,22,,,,g, +111,27,2,2489,,449.964,,,,,,144,58,0,,,,, +111,28,2,2490,,449.989,,8,C#5,ff,22,144,73,22,,,,g, +111,28,2,2490,,450.039,,,,,,144,73,0,,,,, +112,0,0,2491,0,450.064,,,,,,,,,112,,,, +112,1,1,2492,0,450.064,,,,,,176,102,0,,,,, +112,2,2,2493,0,450.064,,,,,,176,102,0,,,,, +112,3,3,2494,0,450.064,85,8,F#1,,,,,,,,,, +112,4,4,2495,0,450.064,,,,,,176,102,0,,,,, +112,5,3,2496,85,450.255,171,4,G#2,ppp,5,144,44,5,,,,, +112,6,4,2497,128,450.352,128,8,A2,ff,22,144,45,22,,,,, +112,5,3,2496,85,450.641,,,,,,144,44,0,,,,, +112,7,3,2498,256,450.641,,,,,,176,102,0,,,,, +112,8,4,2499,256,450.641,384,4,A2,,,,,,,,,, +112,9,1,2500,512,451.218,,,,,,176,102,0,,,,, +112,10,2,2501,512,451.218,,,,,,176,102,0,,,,, +112,11,3,2502,512,451.218,,,,,,176,102,0,,,,, +112,6,4,2497,128,451.506,,,,,,144,45,0,,,,, +112,12,2,2503,640,451.506,128,8,D4,mf-,16,144,62,16,,,,, +112,13,4,2504,640,451.506,,,,,,176,102,0,,,,, +112,12,2,2503,640,451.794,,,,,,144,62,0,,,,, +112,14,1,2505,768,451.794,64,16,E5,mp,14,,,,,,,, +112,15,2,2506,768,451.794,32,32,E5,mp,14,144,76,14,,,,, +112,16,3,2507,768,451.794,,,,,,176,102,0,,,,, +112,17,4,2508,768,451.794,,,,,,176,102,0,,,,, +112,18,2,2509,800,451.867,32,32,A3,p,11,144,57,11,,,,, +112,18,2,2509,800,451.939,,,,,,144,57,0,,,,, +112,19,1,2510,832,451.939,64,16,F6,mf,17,144,89,17,,,,, +112,20,2,2511,832,451.939,32,32,C5,p-,10,144,72,10,,,,, +112,15,2,2506,768,451.939,,,,,,144,76,0,,,,, +112,20,2,2511,832,452.011,,,,,,144,72,0,,,,, +112,21,2,2512,864,452.011,32,32,E5,p-,10,144,76,10,,,,, +112,21,2,2512,864,452.083,,,,,,144,76,0,,,,, +112,23,1,2513,896,452.083,128,8,C#4,mf+,18,144,61,18,,,,, +112,24,2,2514,896,452.083,128,8,G#3,pp,8,144,56,8,,,,, +112,22,0,2515,896,452.083,,,,,,176,64,127,,,,,V +112,19,1,2510,832,452.083,,,,,,144,89,0,,,,, +112,25,1,2516,1024,452.371,256,4,C#4,,,,,,,,,, +112,26,2,2517,1024,452.371,256,4,G#3,,,,,,,,,, +113,0,0,2518,0,452.948,,,,,,,,,113,,,, +113,1,1,2519,0,452.948,1024,1,C#4,,,,,,,,,, +113,2,2,2520,0,452.948,341,2,G#3,,,,,,,,,, +113,3,3,2521,0,452.948,,,,,,176,102,0,,,,, +113,4,4,2522,0,452.948,,,,,,176,102,0,,,,, +112,24,2,2514,896,453.717,,,,,,144,56,0,,,,, +113,5,2,2523,341,453.717,171,4,C5,ppp-,4,144,72,4,,,,, +113,6,2,2524,512,454.102,512,2,C5,,,,,,,,,, +112,23,1,2513,896,455.256,,,,,,144,61,0,,,,, +113,7,1,2525,1024,455.256,,,,,,176,102,0,,,,, +113,8,2,2526,1024,455.256,64,16,C5,,,,,,,,,, +113,9,4,2527,1024,455.256,,,,,,176,102,0,,,,, +113,10,0,2528,1088,455.4,,,,,,176,64,0,,,,,^ +113,11,2,2529,1088,455.4,64,16,D4,ppp,5,,,,,,,, +113,12,4,2530,1088,455.4,32,32,D4,ppp,5,144,62,5,,,,, +113,13,4,2531,1120,455.472,32,32,E3,ppp,5,144,52,5,,,,, +113,13,4,2531,1120,455.544,,,,,,144,52,0,,,,, +113,14,2,2532,1152,455.544,64,16,A6,ppp,5,144,93,5,,,,, +113,15,4,2533,1152,455.544,,,,,,176,102,0,,,,, +113,12,4,2530,1088,455.544,,,,,,144,62,0,,,,, +113,5,2,2523,341,455.625,,,,,,144,72,0,,,,, +113,14,2,2532,1152,455.689,,,,,,144,93,0,,,,, +113,16,2,2534,1216,455.689,64,16,G#3,ppp,5,144,56,5,,,,, +113,16,2,2534,1216,455.833,,,,,,144,56,0,,,,, +114,0,0,2535,0,455.833,,,,,,,,,114,,,, +114,1,1,2536,0,455.833,,,,,,176,102,0,,,,, +114,2,3,2537,0,455.833,341,2,A2,ppp,5,144,45,5,,,,, +114,3,1,2538,256,456.41,42,16,B1,ppp,5,144,35,5,,,,, +114,3,1,2538,256,456.505,,,,,,144,35,0,,,,, +114,4,1,2539,298,456.505,43,16,F4,ppp,5,144,65,5,,,,, +114,4,1,2539,298,456.601,,,,,,144,65,0,,,,, +114,5,1,2540,341,456.601,21,32,D4,ppp-,4,144,62,4,,,,, +114,6,3,2541,341,456.601,,,,,,176,102,0,,,,, +114,5,1,2540,341,456.649,,,,,,144,62,0,,,,, +114,7,1,2542,362,456.649,22,32,C5,pppp,2,144,72,2,,,,, +114,7,1,2542,362,456.698,,,,,,144,72,0,,,,, +114,8,1,2543,384,456.698,,,,,,176,102,0,,,,, +114,2,3,2537,0,456.826,,,,,,144,45,0,,,,, +114,9,1,2544,512,456.987,,,,,,176,102,0,,,,, +114,10,3,2545,512,456.987,,,,,,176,102,0,,,,, +114,11,0,2546,512,456.987,,,,,,,,,,5950,,, +114,12,3,2547,640,457.275,128,8,A1,ppp,5,144,33,5,,,,, +114,13,1,2548,768,457.564,,,,,,176,102,0,,,,, +114,14,3,2549,768,457.564,512,2,A1,,,,,,,,,, +115,0,0,2550,0,458.718,,,,,,,,,115,,,, +115,1,1,2551,0,458.718,,,,,,176,102,0,,,,, +115,2,2,2552,0,458.718,,,,,,176,102,0,,,,, +115,3,3,2553,0,458.718,256,4,A1,,,,,,,,,, +114,12,3,2547,640,459.294,,,,,,144,33,0,,,,, +115,4,2,2554,256,459.294,1024,1,F6,pp,8,144,89,8,,,,, +115,5,3,2555,256,459.294,384,4,G#1,pp,8,144,32,8,,,,, +115,6,1,2556,512,459.871,,,,,,176,102,0,,,,, +115,5,3,2555,256,460.16,,,,,,144,32,0,,,,, +115,8,1,2557,640,460.16,128,8,C5,p,11,144,72,11,,,,, +115,9,3,2558,640,460.16,,,,,,176,102,0,,,,, +115,7,0,2559,640,460.16,,,,,,176,64,127,,,,,V +115,10,1,2560,768,460.448,512,2,C5,,,,,,,,,, +115,11,3,2561,768,460.448,,,,,,176,102,0,,,,, +115,12,3,2562,1024,461.025,256,4,D3,pp,8,144,50,8,,,,, +116,1,0,2563,0,461.452,,,,,,176,64,0,,,,,^ +115,4,2,2554,256,461.602,,,,,,144,89,0,,,,, +115,12,3,2562,1024,461.602,,,,,,144,50,0,,,,, +116,0,0,2564,0,461.602,,,,,,,,,116,,,, +116,2,1,2565,0,461.602,1024,1,C5,,,,,,,,,, +116,3,1,2566,0,461.602,1024,1,A5,ppp,5,144,81,5,,,,, +116,4,2,2567,0,461.602,,,,,,176,102,0,,,,, +116,5,3,2568,0,461.602,1024,1,A2,ppp,5,144,45,5,,,,, +116,6,3,2569,0,461.602,1024,1,A#3,ppp,5,144,58,5,,,,, +116,7,2,2570,42,461.697,43,16,E5,ppp,5,144,76,5,,,,, +116,1,0,2571,0,461.752,,,,,,176,64,127,,,,,V +116,8,2,2572,85,461.794,43,16,A3,ppp,5,144,57,5,,,,, +116,9,2,2573,85,461.794,64,16,E5,,,,,,,,,, +116,,,2574,128,461.885,,,,,,176,64,0,,,,,^ +116,10,2,2575,128,461.891,128,8,A3,,,,,,,,,, +116,11,2,2576,128,461.891,128,8,E5,,,,,,,,,, +116,8,2,2572,85,462.179,,,,,,144,57,0,,,,, +116,13,2,2577,256,462.179,85,8,D5,ppp,5,144,74,5,,,,, +116,12,0,2578,256,462.185,,,,,,176,64,127,,,,,V +116,7,2,2570,42,462.226,,,,,,144,76,0,,,,, +116,13,2,2577,256,462.371,,,,,,144,74,0,,,,, +116,14,2,2579,341,462.371,85,8,C1,ppp,5,144,24,5,,,,, +116,14,2,2579,341,462.562,,,,,,144,24,0,,,,, +116,15,2,2580,426,462.562,86,8,A7,ppp,5,144,105,5,,,,, +116,15,2,2580,426,462.756,,,,,,144,105,0,,,,, +116,16,0,2581,512,462.756,,,,,,176,64,0,,,,,^ +116,17,2,2582,512,462.756,768,2,G#4,ppp-,4,144,68,4,,,,, +116,18,1,2583,1024,463.91,256,4,C5,,,,,,,,,, +116,19,1,2584,1024,463.91,256,4,A5,,,,,,,,,, +116,20,3,2585,1024,463.91,256,4,A2,,,,,,,,,, +116,21,3,2586,1024,463.91,256,4,A#3,,,,,,,,,, +116,22,3,2587,,464.412,,8,F#3,mp,14,144,54,14,,,,g, +116,22,3,2587,,464.462,,,,,,144,54,0,,,,, +115,8,1,2557,640,464.487,,,,,,144,72,0,,,,, +116,3,1,2566,0,464.487,,,,,,144,81,0,,,,, +116,5,3,2568,0,464.487,,,,,,144,45,0,,,,, +116,6,3,2569,0,464.487,,,,,,144,58,0,,,,, +116,17,2,2582,512,464.487,,,,,,144,68,0,,,,, +117,0,0,2588,0,464.487,,,,,,,,,117,,,, +117,2,1,2589,0,464.487,512,2,B5,mp,14,144,83,14,,,,, +117,3,2,2590,0,464.487,170,4,C#5,ppp,5,144,73,5,,,,, +117,4,3,2591,0,464.487,1024,1,E4,p,11,144,64,11,,,,, +117,1,0,2592,0,464.487,,,,,,176,64,127,,,,,V +117,3,2,2590,0,464.87,,,,,,144,73,0,,,,, +117,5,2,2593,170,464.87,171,4,F#1,pp,8,144,30,8,,,,, +117,5,2,2593,170,465.255,,,,,,144,30,0,,,,, +117,6,2,2594,341,465.255,171,4,B6,pp,8,144,95,8,,,,, +117,7,2,2595,341,465.255,256,4,D7,mp,14,144,98,14,,,,, +117,2,1,2589,0,465.641,,,,,,144,83,0,,,,, +117,6,2,2594,341,465.641,,,,,,144,95,0,,,,, +117,8,1,2596,512,465.641,,,,,,176,102,0,,,,, +117,9,2,2597,512,465.641,170,4,A2,ppp,5,144,45,5,,,,, +117,7,2,2595,341,465.832,,,,,,144,98,0,,,,, +117,9,2,2597,512,466.024,,,,,,144,45,0,,,,, +117,10,0,2598,682,466.024,,,,,,176,64,0,,,,,^ +117,11,2,2599,682,466.024,86,8,A#2,p,11,144,46,11,,,,, +117,12,2,2600,682,466.024,128,8,F3,ppp-,4,144,53,4,,,,, +117,11,2,2599,682,466.218,,,,,,144,46,0,,,,, +117,13,2,2601,768,466.218,,,,,,176,102,0,,,,, +117,12,2,2600,682,466.312,,,,,,144,53,0,,,,, +117,4,3,2591,0,466.794,,,,,,144,64,0,,,,, +118,1,0,2602,0,466.794,,,,,,,,,,5951,,, +117,14,3,2603,,466.794,,8,F#2,pp,8,144,42,8,,,,g, +117,14,3,2603,,466.844,,,,,,144,42,0,,,,, +117,15,3,2604,,466.869,,8,D#2,pp,8,144,39,8,,,,g, +117,15,3,2604,,466.919,,,,,,144,39,0,,,,, +118,0,0,2605,0,466.944,,,,,,,,,118,,,, +118,2,1,2606,0,466.944,1024,1,B4,f,20,144,71,20,,,,, +118,3,2,2607,0,466.944,170,4,C#4,mp,14,144,61,14,,,,, +118,4,3,2608,0,466.944,85,8,C1,pp,8,144,24,8,,,,, +118,5,3,2609,0,466.944,128,8,B3,pp,8,144,59,8,,,,, +118,6,4,2610,0,466.944,1024,1,G1,mp,14,144,31,14,,,,, +118,4,3,2608,0,467.136,,,,,,144,24,0,,,,, +118,7,3,2611,85,467.136,,,,,,176,102,0,,,,, +118,5,3,2609,0,467.233,,,,,,144,59,0,,,,, +118,3,2,2607,0,467.328,,,,,,144,61,0,,,,, +118,8,2,2612,170,467.328,,,,,,176,102,0,,,,, +118,9,3,2613,170,467.328,86,8,G#1,p,11,144,32,11,,,,, +118,9,3,2613,170,467.521,,,,,,144,32,0,,,,, +118,10,2,2614,256,467.521,,,,,,176,102,0,,,,, +118,11,3,2615,256,467.521,,,,,,176,102,0,,,,, +118,12,3,2616,341,467.713,171,4,G3,pp+,9,144,55,9,,,,, +118,12,3,2616,341,468.098,,,,,,144,55,0,,,,, +118,13,2,2617,512,468.098,,,,,,176,102,0,,,,, +118,15,3,2618,512,468.098,512,2,D#1,pp,8,144,27,8,,,,, +118,14,3,2619,,468.378,,8,C#4,pp,8,144,61,8,,,,g, +118,14,3,2619,,468.428,,,,,,144,61,0,,,,, +118,17,3,2620,,468.453,,8,C#5,pp,8,144,73,8,,,,g, +118,17,3,2620,,468.503,,,,,,144,73,0,,,,, +118,18,3,2621,,468.528,,8,F3,ppp-,4,144,53,4,,,,g, +118,18,3,2621,,468.578,,,,,,144,53,0,,,,, +118,16,0,2622,736,468.603,,,,,,176,64,127,,,,,V +119,1,0,2623,0,469.102,,,,,,176,64,0,,,,,^ +118,2,1,2606,0,469.252,,,,,,144,71,0,,,,, +118,6,4,2610,0,469.252,,,,,,144,31,0,,,,, +118,15,3,2618,512,469.252,,,,,,144,27,0,,,,, +119,0,0,2624,0,469.252,,,,,,,,,119,,,, +119,2,1,2625,0,469.252,256,4,D6,f,20,144,86,20,,,,, +119,3,2,2626,0,469.252,1024,1,C#5,f,20,144,73,20,,,,, +119,4,3,2627,0,469.252,64,16,G#3,f,20,144,56,20,,,,, +119,5,4,2628,0,469.252,,,,,,176,102,0,,,,, +119,7,0,2629,128,469.391,,,,,,176,64,0,,,,,^ +119,4,3,2627,0,469.396,,,,,,144,56,0,,,,, +119,6,3,2630,64,469.396,64,16,A6,f,20,144,93,20,,,,, +119,1,0,2631,0,469.402,,,,,,176,64,127,,,,,V +119,6,3,2630,64,469.541,,,,,,144,93,0,,,,, +119,8,3,2632,128,469.541,128,8,E4,p,11,144,64,11,,,,, +119,9,0,2633,256,469.679,,,,,,176,64,0,,,,,^ +119,7,0,2634,128,469.691,,,,,,176,64,127,,,,,V +119,2,1,2625,0,469.829,,,,,,144,86,0,,,,, +119,10,1,2635,256,469.829,,,,,,176,102,0,,,,, +119,11,3,2636,256,469.829,768,2,E4,,,,,,,,,, +119,12,4,2637,256,469.829,768,2,E3,ff,22,144,52,22,,,,, +119,9,0,2638,256,469.979,,,,,,176,64,127,,,,,V +119,13,1,2639,512,470.406,,,,,,176,102,0,,,,, +120,0,0,2640,0,471.56,,,,,,,,,120,,,, +120,1,1,2641,0,471.56,,,,,,176,102,0,,,,, +120,2,2,2642,0,471.56,1024,1,C#5,,,,,,,,,, +120,3,3,2643,0,471.56,1024,1,E4,,,,,,,,,, +120,4,4,2644,0,471.56,1024,1,E3,,,,,,,,,, +121,1,0,2645,0,473.568,,,,,,176,64,0,,,,,^ +121,0,0,2646,0,473.868,,,,,,,,,121,,,, +121,2,1,2647,0,473.868,1024,1,D6,f,20,144,86,20,,,,, +121,3,3,2648,0,473.868,256,4,F#1,ff,22,144,30,22,,,,, +121,4,3,2649,0,473.868,256,4,C2,ff,22,144,36,22,,,,, +121,5,4,2650,0,473.868,1024,1,E3,,,,,,,,,, +121,1,0,2651,0,473.868,,,,,,176,64,127,,,,,V +121,3,3,2648,0,473.918,,,,,,144,30,0,,,,, +121,4,3,2649,0,473.918,,,,,,144,36,0,,,,, +119,3,2,2626,0,474.018,,,,,,144,73,0,,,,, +119,8,3,2632,128,474.018,,,,,,144,64,0,,,,, +121,6,0,2652,256,474.294,,,,,,176,64,0,,,,,^ +121,7,3,2653,256,474.444,0,8,E3,s,0,,,,,,,, +121,8,3,2654,256,474.444,,,,,,176,102,0,,,,, +121,6,0,2655,256,474.594,,,,,,176,64,127,,,,,V +121,9,3,2656,512,475.021,,,,,,176,102,0,,,,, +121,10,3,2657,768,475.598,,,,,,176,102,0,,,,, +121,11,3,2658,960,476.031,64,16,A2,ff,22,144,45,22,,,,, +122,0,0,2659,0,476.175,,,,,,,,,122,,,, +122,1,1,2660,0,476.175,512,2,D6,,,,,,,,,, +122,2,2,2661,0,476.175,,,,,,176,102,0,,,,, +122,3,3,2662,0,476.175,1024,1,A2,,,,,,,,,, +122,4,4,2663,0,476.175,1024,1,E3,,,,,,,,,, +121,2,1,2647,0,477.329,,,,,,144,86,0,,,,, +122,5,1,2664,512,477.329,512,2,A5,ff,22,144,81,22,,,,, +122,6,2,2665,512,477.329,256,4,C#7,mf,17,144,97,17,,,,, +122,6,2,2665,512,477.906,,,,,,144,97,0,,,,, +122,7,2,2666,768,477.906,256,4,D3,f,20,144,50,20,,,,, +122,7,2,2666,768,478.483,,,,,,144,50,0,,,,, +123,0,0,2667,0,478.483,,,,,,,,,123,,,, +123,1,1,2668,0,478.483,1024,1,A5,,,,,,,,,, +123,2,2,2669,0,478.483,512,2,C5,ff,22,144,72,22,,,,, +123,3,3,2670,0,478.483,192,8,A2,,,,,,,,,, +123,4,4,2671,0,478.483,256,4,E3,,,,,,,,,, +121,11,3,2658,960,478.916,,,,,,144,45,0,,,,, +123,5,3,2672,192,478.916,64,16,F7,p,11,144,101,11,,,,, +123,5,3,2672,192,479.06,,,,,,144,101,0,,,,, +123,6,3,2673,256,479.06,,,,,,176,102,0,,,,, +123,7,4,2674,256,479.06,512,2,A#1,p-,10,144,34,10,,,,, +119,12,4,2637,256,479.21,,,,,,144,52,0,,,,, +123,2,2,2669,0,479.637,,,,,,144,72,0,,,,, +123,8,2,2675,512,479.637,512,2,E5,fff,24,144,76,23,,,,, +123,9,2,2676,512,479.637,512,2,E6,f,20,144,88,20,,,,, +123,10,3,2677,512,479.637,,,,,,176,102,0,,,,, +123,7,4,2674,256,480.214,,,,,,144,34,0,,,,, +123,11,4,2678,768,480.214,256,4,F#2,pp,8,144,42,8,,,,, +124,0,0,2679,0,480.791,,,,,,,,,124,,,, +124,1,1,2680,0,480.791,1024,1,A5,,,,,,,,,, +124,2,2,2681,0,480.791,128,8,E5,,,,,,,,,, +124,3,2,2682,0,480.791,128,8,E6,,,,,,,,,, +124,4,3,2683,0,480.791,,,,,,176,102,0,,,,, +124,5,4,2684,0,480.791,192,8,F#2,,,,,,,,,, +123,8,2,2675,512,481.079,,,,,,144,76,0,,,,, +123,9,2,2676,512,481.079,,,,,,144,88,0,,,,, +124,6,0,2685,128,481.079,,,,,,176,64,0,,,,,^ +124,7,2,2686,128,481.079,64,16,C#5,f,20,144,73,20,,,,, +123,11,4,2678,768,481.223,,,,,,144,42,0,,,,, +124,7,2,2686,128,481.223,,,,,,144,73,0,,,,, +124,8,2,2687,192,481.223,64,16,A#3,mf,17,144,58,17,,,,, +124,9,4,2688,192,481.223,,,,,,176,102,0,,,,, +124,10,2,2689,256,481.368,64,16,A#3,,,,,,,,,, +124,11,4,2690,256,481.368,,,,,,176,102,0,,,,, +124,12,0,2691,256,481.368,,,,,,,,,,5952,,, +124,8,2,2687,192,481.512,,,,,,144,58,0,,,,, +124,13,2,2692,320,481.512,128,8,A5,pp,8,144,81,8,,,,, +124,13,2,2692,320,481.8,,,,,,144,81,0,,,,, +124,14,2,2693,448,481.8,64,16,F3,ppp+,6,144,53,6,,,,, +124,15,2,2694,512,481.944,64,16,F3,,,,,,,,,, +124,16,3,2695,512,481.944,,,,,,176,102,0,,,,, +124,17,4,2696,512,481.944,,,,,,176,102,0,,,,, +124,14,2,2693,448,482.089,,,,,,144,53,0,,,,, +124,18,2,2697,576,482.089,64,16,C#3,ppp,5,144,49,5,,,,, +124,19,3,2698,576,482.089,64,16,B4,ppp,5,144,71,5,,,,, +124,18,2,2697,576,482.233,,,,,,144,49,0,,,,, +124,19,3,2698,576,482.233,,,,,,144,71,0,,,,, +124,20,2,2699,640,482.233,,,,,,176,102,0,,,,, +124,21,3,2700,640,482.233,64,16,E4,ppp-,4,144,64,4,,,,, +124,21,3,2700,640,482.377,,,,,,144,64,0,,,,, +124,22,3,2701,704,482.377,64,16,F#3,pppp+,3,144,54,3,,,,, +124,22,3,2701,704,482.521,,,,,,144,54,0,,,,, +124,23,2,2702,768,482.521,,,,,,176,102,0,,,,, +124,24,3,2703,,482.521,,8,A#3,ff,22,144,58,22,,,,g, +124,24,3,2703,,482.571,,,,,,144,58,0,,,,, +124,25,3,2704,768,482.596,256,4,A2,pppp,2,144,45,2,,,,, +125,0,0,2705,0,483.173,,,,,,,,,125,,,, +125,1,1,2706,0,483.173,512,2,A5,,,,,,,,,, +125,2,2,2707,0,483.173,,,,,,176,102,0,,,,, +125,3,3,2708,0,483.173,768,2,A2,,,,,,,,,, +125,4,4,2709,0,483.173,,,,,,176,102,0,,,,, +125,5,2,2710,256,483.75,256,4,B4,ppp,5,144,71,5,,,,, +122,5,1,2664,512,484.252,,,,,,144,81,0,,,,, +125,5,2,2710,256,484.327,,,,,,144,71,0,,,,, +125,6,1,2711,512,484.327,,,,,,176,102,0,,,,, +125,7,2,2712,512,484.327,256,4,D6,ppp+,6,144,86,6,,,,, +125,8,4,2713,512,484.327,512,2,G3,f,20,144,55,20,,,,, +124,25,3,2704,768,484.904,,,,,,144,45,0,,,,, +125,7,2,2712,512,484.904,,,,,,144,86,0,,,,, +125,9,2,2714,768,484.904,32,32,F6,pppp,2,144,89,2,,,,, +125,10,2,2715,768,484.904,32,32,E7,pppp,2,144,100,2,,,,, +125,11,3,2716,768,484.904,128,8,F#2,pp,8,144,42,8,,,,, +125,9,2,2714,768,484.976,,,,,,144,89,0,,,,, +125,10,2,2715,768,484.976,,,,,,144,100,0,,,,, +125,12,2,2717,800,484.976,32,32,G#6,pppp,2,144,92,2,,,,, +125,12,2,2717,800,485.048,,,,,,144,92,0,,,,, +125,13,2,2718,832,485.048,,,,,,176,102,0,,,,, +125,15,3,2719,896,485.193,,,,,,176,102,0,,,,, +125,14,0,2720,896,485.193,,,,,,176,64,127,,,,,V +125,11,3,2716,768,485.193,,,,,,144,42,0,,,,, +126,0,0,2721,0,485.481,,,,,,,,,126,,,, +126,1,1,2722,0,485.481,,,,,,176,102,0,,,,, +126,2,2,2723,0,485.481,1024,1,F5,fff,24,144,77,23,,,,, +126,3,2,2724,0,485.481,1024,1,C6,fff,24,144,84,23,,,,, +126,4,3,2725,0,485.481,,,,,,176,102,0,,,,, +126,5,4,2726,0,485.481,768,2,G3,,,,,,,,,, +126,6,3,2727,128,485.769,128,8,F#2,pp,8,144,42,8,,,,, +126,7,3,2728,128,485.769,128,8,G#3,pp,8,144,56,8,,,,, +126,6,3,2727,128,486.058,,,,,,144,42,0,,,,, +126,7,3,2728,128,486.058,,,,,,144,56,0,,,,, +126,8,3,2729,256,486.058,768,2,G1,mf,17,144,31,17,,,,, +126,9,1,2730,512,486.635,256,4,E4,mf,17,144,64,17,,,,, +126,10,1,2731,512,486.635,256,4,G#5,mf,17,144,80,17,,,,, +126,11,1,2732,512,486.635,256,4,B5,mf,17,144,83,17,,,,, +126,12,1,2733,768,487.212,256,4,E4,,,,,,,,,, +126,13,1,2734,768,487.212,256,4,G#5,,,,,,,,,, +126,14,1,2735,768,487.212,256,4,B5,,,,,,,,,, +126,15,1,2736,768,487.212,256,4,D7,mp,14,144,98,14,,,,, +126,16,4,2737,768,487.212,256,4,F3,mp,14,144,53,14,,,,, +126,17,4,2738,768,487.212,256,4,G3,,,,,,,,,, +126,2,2,2723,0,487.789,,,,,,144,77,0,,,,, +126,3,2,2724,0,487.789,,,,,,144,84,0,,,,, +126,8,3,2729,256,487.789,,,,,,144,31,0,,,,, +126,9,1,2730,512,487.789,,,,,,144,64,0,,,,, +126,10,1,2731,512,487.789,,,,,,144,80,0,,,,, +126,11,1,2732,512,487.789,,,,,,144,83,0,,,,, +126,15,1,2736,768,487.789,,,,,,144,98,0,,,,, +127,0,0,2739,0,487.789,,,,,,,,,127,,,, +127,1,1,2740,0,487.789,,,,,,176,102,0,,,,, +127,2,3,2741,0,487.789,,,,,,176,102,0,,,,, +127,3,4,2742,0,487.789,1024,1,F3,,,,,,,,,, +127,4,4,2743,0,487.789,1024,1,G3,,,,,,,,,, +127,5,1,2744,256,488.366,256,4,B4,ppp,5,144,71,5,,,,, +127,6,3,2745,256,488.366,256,4,A#2,ppp,5,144,46,5,,,,, +127,7,1,2746,512,488.943,,,,,,176,102,0,,,,, +127,8,3,2747,512,488.943,,,,,,176,102,0,,,,, +127,5,1,2744,256,489.018,,,,,,144,71,0,,,,, +127,6,3,2745,256,489.018,,,,,,144,46,0,,,,, +127,9,1,2748,768,489.519,0,8,E7,ppp,5,,,,,,,, +127,10,1,2749,768,489.519,64,16,F4,ppp,5,144,65,5,,,,, +127,11,3,2750,768,489.519,,,,,,176,102,0,,,,, +127,10,1,2749,768,489.664,,,,,,144,65,0,,,,, +127,12,0,2751,832,489.664,,,,,,176,64,0,,,,,^ +127,13,1,2752,832,489.664,,,,,,176,102,0,,,,, +127,14,1,2753,896,489.808,,,,,,176,102,0,,,,, +127,15,3,2754,960,489.952,64,16,C3,ppp,5,144,48,5,,,,, +127,15,3,2754,960,490.096,,,,,,144,48,0,,,,, +128,0,0,2755,0,490.096,,,,,,,,,128,,,, +128,1,1,2756,0,490.096,64,16,A#3,ppp,5,144,58,5,,,,, +128,2,3,2757,0,490.096,,,,,,176,102,0,,,,, +128,3,4,2758,0,490.096,256,4,F3,,,,,,,,,, +128,4,4,2759,0,490.096,256,4,G3,,,,,,,,,, +128,1,1,2756,0,490.241,,,,,,144,58,0,,,,, +128,5,1,2760,64,490.241,128,8,G#4,ppp,5,144,68,5,,,,, +128,5,1,2760,64,490.529,,,,,,144,68,0,,,,, +128,6,1,2761,192,490.529,,,,,,176,102,0,,,,, +128,7,0,2762,192,490.529,,,,,,,,,,5953,,, +128,9,1,2763,256,490.673,256,4,G#6,f,20,144,92,20,,,,, +128,10,3,2764,256,490.673,,,,,,176,102,0,,,,, +128,11,4,2765,256,490.673,256,4,G3,,,,,,,,,, +128,8,0,2766,256,490.673,,,,,,176,64,127,,,,,V +128,12,3,2767,288,490.745,224,8,D4,fff,24,144,62,23,,,,, +126,16,4,2737,768,490.748,,,,,,144,53,0,,,,, +128,13,1,2768,512,491.25,512,2,F5,f+,21,144,77,21,,,,, +128,14,3,2769,512,491.25,512,2,D4,,,,,,,,,, +128,15,4,2770,512,491.25,,,,,,176,102,0,,,,, +128,9,1,2763,256,491.25,,,,,,144,92,0,,,,, +125,8,4,2713,512,491.325,,,,,,144,55,0,,,,, +128,16,0,2771,909,492.145,,,,,,176,64,0,,,,,^ +129,2,0,2772,0,492.404,,,,,,,,,129,,,, +129,0,3,2773,0,492.404,768,2,D4,,,,,,,,,, +129,1,4,2774,0,492.404,,,,,,176,102,0,,,,, +129,3,1,2775,0,492.404,768,2,F5,,,,,,,,,, +129,4,2,2776,0,492.404,96,16,E1,p,11,144,28,11,,,,, +129,4,2,2776,0,492.62,,,,,,144,28,0,,,,, +129,5,2,2777,96,492.62,96,16,B2,p,11,144,47,11,,,,, +129,5,2,2777,96,492.837,,,,,,144,47,0,,,,, +129,6,2,2778,192,492.837,32,32,G#5,mp,14,144,80,14,,,,, +129,6,2,2778,192,492.909,,,,,,144,80,0,,,,, +129,7,2,2779,224,492.909,32,32,A#4,mp,14,144,70,14,,,,, +129,7,2,2779,224,492.981,,,,,,144,70,0,,,,, +129,9,4,2780,256,492.981,512,2,C2,mp,14,144,36,14,,,,, +129,10,2,2781,256,492.981,,,,,,176,102,0,,,,, +129,8,0,2782,256,492.981,,,,,,176,64,127,,,,,V +129,11,2,2783,448,493.414,64,16,C#3,f,20,144,49,20,,,,, +129,12,2,2784,512,493.558,224,8,C#3,,,,,,,,,, +129,11,2,2783,448,494.063,,,,,,144,49,0,,,,, +129,13,2,2785,736,494.063,32,32,G#5,p+,12,144,80,12,,,,, +129,13,2,2785,736,494.135,,,,,,144,80,0,,,,, +129,14,3,2786,768,494.135,,,,,,176,102,0,,,,, +129,15,4,2787,768,494.135,42,16,C2,,,,,,,,,, +129,16,1,2788,768,494.135,,,,,,176,102,0,,,,, +129,17,2,2789,768,494.135,42,16,A1,p,11,144,33,11,,,,, +128,13,1,2768,512,494.135,,,,,,144,77,0,,,,, +128,12,3,2767,288,494.135,,,,,,144,62,0,,,,, +129,17,2,2789,768,494.23,,,,,,144,33,0,,,,, +129,18,0,2790,810,494.23,,,,,,176,64,0,,,,,^ +129,19,4,2791,810,494.23,43,16,C#1,pp,8,144,25,8,,,,, +129,20,2,2792,810,494.23,43,16,D5,p,11,144,74,11,,,,, +129,9,4,2780,256,494.23,,,,,,144,36,0,,,,, +129,19,4,2791,810,494.326,,,,,,144,25,0,,,,, +129,20,2,2792,810,494.326,,,,,,144,74,0,,,,, +129,21,3,2793,853,494.326,85,8,C6,pp,8,144,84,8,,,,, +129,22,4,2794,853,494.326,,,,,,176,102,0,,,,, +129,23,2,2795,853,494.326,43,16,F5,pp+,9,144,77,9,,,,, +129,23,2,2795,853,494.423,,,,,,144,77,0,,,,, +129,24,2,2796,896,494.423,42,16,C#4,pp-,7,144,61,7,,,,, +129,24,2,2796,896,494.518,,,,,,144,61,0,,,,, +129,25,3,2797,938,494.518,,,,,,176,102,0,,,,, +129,26,4,2798,938,494.518,86,8,B2,pp,8,144,47,8,,,,, +129,27,2,2799,938,494.518,43,16,A3,ppp,5,144,57,5,,,,, +129,21,3,2793,853,494.518,,,,,,144,84,0,,,,, +129,27,2,2799,938,494.615,,,,,,144,57,0,,,,, +129,31,2,2800,981,494.615,,,,,,176,102,0,,,,, +130,1,0,2801,0,494.712,,,,,,,,,,5954,,, +129,28,1,2802,,494.712,,8,C#5,ppp,5,144,73,5,,,,g, +129,26,4,2798,938,494.712,,,,,,144,47,0,,,,, +129,28,1,2802,,494.762,,,,,,144,73,0,,,,, +129,29,1,2803,,494.787,,8,A5,ppp,5,144,81,5,,,,g, +129,30,1,2804,,494.787,,8,D6,ppp,5,144,86,5,,,,g, +129,29,1,2803,,494.837,,,,,,144,81,0,,,,, +129,30,1,2804,,494.837,,,,,,144,86,0,,,,, +130,0,0,2805,0,494.937,,,,,,,,,130,,,, +130,2,1,2806,0,494.937,256,4,G#6,ppp,5,144,92,5,,,,, +130,3,1,2807,0,494.937,256,4,C7,ppp,5,144,96,5,,,,, +130,4,1,2808,0,494.937,256,4,A7,ppp,5,144,105,5,,,,, +130,5,2,2809,0,494.937,,,,,,176,102,0,,,,, +130,6,3,2810,0,494.937,,,,,,176,102,0,,,,, +130,7,4,2811,0,494.937,1024,1,D#4,ppp,5,144,63,5,,,,, +130,2,1,2806,0,495.514,,,,,,144,92,0,,,,, +130,3,1,2807,0,495.514,,,,,,144,96,0,,,,, +130,4,1,2808,0,495.514,,,,,,144,105,0,,,,, +130,8,1,2812,256,495.514,256,4,G#4,ppp,5,144,68,5,,,,, +130,9,1,2813,512,496.091,85,8,G#4,,,,,,,,,, +130,10,2,2814,512,496.091,,,,,,176,102,0,,,,, +130,8,1,2812,256,496.282,,,,,,144,68,0,,,,, +130,11,1,2815,597,496.282,171,4,E7,ppp,5,144,100,5,,,,, +130,12,2,2816,704,496.523,32,32,D5,ppp,5,144,74,5,,,,, +130,12,2,2816,704,496.595,,,,,,144,74,0,,,,, +130,13,2,2817,736,496.595,32,32,C#4,ppp,5,144,61,5,,,,, +130,13,2,2817,736,496.668,,,,,,144,61,0,,,,, +130,14,1,2818,768,496.668,,,,,,176,102,0,,,,, +130,15,2,2819,768,496.668,85,8,A2,ppp,5,144,45,5,,,,, +130,16,3,2820,768,496.668,256,4,G#1,ppp,5,144,32,5,,,,, +130,11,1,2815,597,496.668,,,,,,144,100,0,,,,, +130,15,2,2819,768,496.859,,,,,,144,45,0,,,,, +130,17,2,2821,853,496.859,,,,,,176,102,0,,,,, +130,18,2,2822,938,497.051,86,8,A#3,ppp,5,144,58,5,,,,, +130,19,1,2823,,497.169,,8,F5,ppp,5,144,77,5,,,,g, +130,19,1,2823,,497.219,,,,,,144,77,0,,,,, +130,18,2,2822,938,497.244,,,,,,144,58,0,,,,, +131,0,0,2824,0,497.244,,,,,,,,,131,,,, +131,1,1,2825,0,497.244,102,8,C#4,ppp,5,144,61,5,,,,, +131,2,3,2826,0,497.244,768,2,G#1,,,,,,,,,, +131,3,4,2827,0,497.244,170,4,D#4,,,,,,,,,, +131,1,1,2825,0,497.474,,,,,,144,61,0,,,,, +131,4,1,2828,102,497.474,51,16,G#5,ppp,5,144,80,5,,,,, +131,4,1,2828,102,497.589,,,,,,144,80,0,,,,, +131,5,1,2829,153,497.589,,,,,,176,102,0,,,,, +130,7,4,2811,0,497.628,,,,,,144,63,0,,,,, +131,7,4,2830,170,497.628,86,8,G#3,ppp,5,144,56,5,,,,, +131,6,0,2831,170,497.628,,,,,,176,64,127,,,,,V +131,8,1,2832,204,497.704,52,16,F5,ppp,5,144,77,5,,,,, +131,8,1,2832,204,497.821,,,,,,144,77,0,,,,, +131,9,4,2833,256,497.821,768,2,G#3,,,,,,,,,, +131,10,1,2834,256,497.821,51,16,D4,ppp-,4,144,62,4,,,,, +131,10,1,2834,256,497.936,,,,,,144,62,0,,,,, +131,11,1,2835,307,497.936,51,16,G#5,pppp,2,144,80,2,,,,, +131,11,1,2835,307,498.051,,,,,,144,80,0,,,,, +131,12,1,2836,358,498.051,,,,,,176,102,0,,,,, +131,13,1,2837,512,498.398,,,,,,176,102,0,,,,, +131,14,0,2838,768,498.825,,,,,,176,64,0,,,,,^ +130,16,3,2820,768,498.975,,,,,,144,32,0,,,,, +131,15,1,2839,768,498.975,256,4,F4,pppp,2,144,65,2,,,,, +131,16,1,2840,768,498.975,256,4,D5,pppp,2,144,74,2,,,,, +131,17,3,2841,768,498.975,,,,,,176,102,0,,,,, +131,22,3,2842,832,499.119,,,,,,176,102,0,,,,, +131,14,0,2843,768,499.125,,,,,,176,64,127,,,,,V +131,7,4,2830,170,499.552,,,,,,144,56,0,,,,, +131,15,1,2839,768,499.552,,,,,,144,65,0,,,,, +131,16,1,2840,768,499.552,,,,,,144,74,0,,,,, +131,18,3,2844,,499.552,,8,C5,pppp,2,144,72,2,,,,g, +131,18,3,2844,,499.602,,,,,,144,72,0,,,,, +131,19,3,2845,,499.627,,8,D#1,pppp,2,144,27,2,,,,g, +131,19,3,2845,,499.677,,,,,,144,27,0,,,,, +131,20,3,2846,,499.702,,8,B3,pppp,2,144,59,2,,,,g, +131,20,3,2846,,499.752,,,,,,144,59,0,,,,, +131,21,3,2847,,499.777,,8,F#1,pppp,2,144,30,2,,,,g, +131,21,3,2847,,499.827,,,,,,144,30,0,,,,, +132,0,0,2848,0,499.852,,,,,,,,,132,,,, +132,1,1,2849,0,499.852,,,,,,176,102,0,,,,, +132,2,3,2850,0,499.852,,,,,,176,102,0,,,,, +133,0,0,2851,0,502.16,,,,,,,,,133,,,, +133,1,1,2852,0,502.16,,,,,,176,102,0,,,,, +133,2,2,2853,0,502.16,,,,,,176,102,0,,,,, +133,3,3,2854,0,502.16,,,,,,176,102,0,,,,, +133,4,4,2855,0,502.16,,,,,,176,102,0,,,,, +133,5,0,2856,256,502.587,,,,,,176,64,0,,,,,^ +133,6,2,2857,256,502.737,768,2,C#6,fff,24,144,85,23,,,,, +133,5,0,2858,256,502.887,,,,,,176,64,127,,,,,V +133,7,1,2859,512,503.314,,,,,,176,102,0,,,,, +133,8,3,2860,512,503.314,512,2,E1,ppp,5,144,28,5,,,,, +133,9,4,2861,512,503.314,,,,,,176,102,0,,,,, +133,10,1,2862,597,503.505,171,4,B6,fff,24,144,95,23,,,,, +133,10,1,2862,597,503.891,,,,,,144,95,0,,,,, +133,11,1,2863,768,503.891,,,,,,176,102,0,,,,, +133,12,3,2864,,504.393,,8,C4,ppp,5,144,60,5,,,,g, +133,12,3,2864,,504.443,,,,,,144,60,0,,,,, +133,8,3,2860,512,504.468,,,,,,144,28,0,,,,, +134,0,0,2865,0,504.468,,,,,,,,,134,,,, +134,1,1,2866,0,504.468,,,,,,176,102,0,,,,, +134,2,2,2867,0,504.468,1024,1,C#6,,,,,,,,,, +134,3,3,2868,0,504.468,256,4,A2,p,11,144,45,11,,,,, +134,4,4,2869,0,504.468,128,8,B2,ppp,5,144,47,5,,,,, +134,4,4,2869,0,504.756,,,,,,144,47,0,,,,, +134,5,0,2870,128,504.756,,,,,,176,64,0,,,,,^ +134,6,4,2871,128,504.756,128,8,G2,ppp-,4,144,43,4,,,,, +134,3,3,2868,0,505.044,,,,,,144,45,0,,,,, +134,6,4,2871,128,505.044,,,,,,144,43,0,,,,, +134,7,3,2872,256,505.044,,,,,,176,102,0,,,,, +134,8,4,2873,256,505.044,64,16,F#1,ppp-,4,144,30,4,,,,, +134,8,4,2873,256,505.189,,,,,,144,30,0,,,,, +134,9,4,2874,320,505.189,,,,,,176,102,0,,,,, +134,10,4,2875,384,505.333,128,8,G#5,ppp,5,144,80,5,,,,, +134,11,1,2876,512,505.621,512,2,B5,ppp,5,144,83,5,,,,, +134,12,4,2877,,505.621,,8,D#1,pppp,2,144,27,2,,,,g, +134,12,4,2877,,505.671,,,,,,144,27,0,,,,, +134,13,4,2878,,505.696,,8,G#1,pppp,2,144,32,2,,,,g, +134,13,4,2878,,505.746,,,,,,144,32,0,,,,, +134,14,4,2879,512,505.771,128,8,G#5,,,,,,,,,, +134,10,4,2875,384,505.91,,,,,,144,80,0,,,,, +134,15,4,2880,640,506.06,42,16,E1,ppp,5,144,28,5,,,,, +134,15,4,2880,640,506.155,,,,,,144,28,0,,,,, +134,16,4,2881,682,506.155,43,16,F2,ppp,5,144,41,5,,,,, +134,16,4,2881,682,506.251,,,,,,144,41,0,,,,, +134,17,4,2882,725,506.251,43,16,B1,ppp,5,144,35,5,,,,, +134,20,1,2883,,506.273,,8,E5,pp-,7,144,76,7,,,,g, +134,20,1,2883,,506.323,,,,,,144,76,0,,,,, +134,17,4,2882,725,506.348,,,,,,144,35,0,,,,, +134,19,4,2884,768,506.348,256,4,C#5,pp,8,144,73,8,,,,, +134,18,0,2885,768,506.348,,,,,,176,64,127,,,,,V +135,1,0,2886,0,506.775,,,,,,176,64,0,,,,,^ +135,0,0,2887,0,506.925,,,,,,,,,135,,,, +135,3,1,2888,0,506.925,1024,1,E7,fff,24,144,100,23,,,,, +135,4,3,2889,0,506.925,682,1,A2,p,11,144,45,11,,,,, +133,6,2,2857,256,507.075,,,,,,144,85,0,,,,, +135,2,0,2890,0,507.075,,,,,,176,64,127,,,,,V +134,11,1,2876,512,507.075,,,,,,144,83,0,,,,, +134,19,4,2884,768,507.225,,,,,,144,73,0,,,,, +135,4,3,2889,0,508.462,,,,,,144,45,0,,,,, +135,5,3,2891,682,508.462,342,2,D#3,ppp,5,144,51,5,,,,, +135,6,3,2892,682,508.462,512,2,F3,pp,8,144,53,8,,,,, +135,5,3,2891,682,509.233,,,,,,144,51,0,,,,, +136,0,0,2893,0,509.233,,,,,,,,,136,,,, +136,1,1,2894,0,509.233,,,,,,176,102,0,,,,, +136,2,3,2895,0,509.233,,,,,,176,102,0,,,,, +135,3,1,2888,0,509.233,,,,,,144,100,0,,,,, +135,6,3,2892,682,509.616,,,,,,144,53,0,,,,, +136,3,1,2896,256,509.81,,,,,,176,102,0,,,,, +136,4,3,2897,256,509.81,,,,,,176,102,0,,,,, +136,5,1,2898,,510.043,,8,B6,pppp,2,144,95,2,,,,g, +136,5,1,2898,,510.093,,,,,,144,95,0,,,,, +136,7,1,2899,,510.118,,8,C7,pppp,2,144,96,2,,,,g, +136,6,1,2900,,510.118,,8,A#6,pppp,2,144,94,2,,,,g, +136,7,1,2899,,510.168,,,,,,144,96,0,,,,, +136,6,1,2900,,510.168,,,,,,144,94,0,,,,, +136,8,1,2901,426,510.193,86,8,C#7,ppp,5,144,97,5,,,,, +136,9,3,2902,426,510.193,86,8,F#4,ppp,5,144,66,5,,,,, +136,9,3,2902,426,510.237,,,,,,144,66,0,,,,, +136,11,3,2903,,510.237,,8,F#4,ppp,5,144,66,5,,,,g, +136,12,3,2904,,510.312,,8,F4,ppp,5,144,65,5,,,,g, +136,12,3,2904,,510.362,,,,,,144,65,0,,,,, +136,8,1,2901,426,510.387,,,,,,144,97,0,,,,, +136,11,3,2903,,510.387,,,,,,144,66,0,,,,, +136,10,1,2905,512,510.387,,,,,,176,102,0,,,,, +136,13,3,2906,512,510.387,,,,,,176,102,0,,,,, +136,14,1,2907,768,510.964,,,,,,176,102,0,,,,, +136,15,3,2908,768,510.964,,,,,,176,102,0,,,,, +136,16,0,2909,853,511.005,,,,,,176,64,0,,,,,^ +136,20,3,2910,,511.005,,8,G#2,pppp,2,144,44,2,,,,g, +136,20,3,2910,,511.055,,,,,,144,44,0,,,,, +136,21,3,2911,,511.08,,8,C2,pppp,2,144,36,2,,,,g, +136,18,1,2912,,511.08,,8,A#7,pppp,2,144,106,2,,,,g, +136,21,3,2911,,511.13,,,,,,144,36,0,,,,, +136,18,1,2912,,511.13,,,,,,144,106,0,,,,, +136,19,1,2913,853,511.155,171,4,E7,pppp,2,144,100,2,,,,, +136,22,3,2914,853,511.155,,,,,,176,102,0,,,,, +136,23,0,2915,853,511.155,,,,,,,,,,5955,,, +136,17,0,2916,853,511.305,,,,,,176,64,127,,,,,V +136,19,1,2913,853,511.541,,,,,,144,100,0,,,,, +137,0,0,2917,0,511.541,,,,,,,,,137,,,, +137,1,1,2918,0,511.541,,,,,,176,102,0,,,,, +137,2,3,2919,0,511.541,,,,,,176,102,0,,,,, +137,3,4,2920,0,511.541,,,,,,176,102,0,,,,, +137,4,0,2921,85,511.732,,,,,,176,64,0,,,,,^ +137,5,1,2922,85,511.732,171,4,C#7,fff,24,144,97,23,,,,, +137,5,1,2922,85,512.118,,,,,,144,97,0,,,,, +137,6,1,2923,256,512.118,,,,,,176,102,0,,,,, +137,7,3,2924,256,512.118,,,,,,176,102,0,,,,, +137,8,3,2925,426,512.501,86,8,D3,mf-,16,144,50,16,,,,, +137,9,3,2926,512,512.694,512,2,D3,,,,,,,,,, +137,10,1,2927,768,513.271,,,,,,176,102,0,,,,, +137,11,4,2928,768,513.271,,,,,,176,102,0,,,,, +137,12,1,2929,,513.485,,8,C5,ppp,5,144,72,5,,,,g, +137,12,1,2929,,513.535,,,,,,144,72,0,,,,, +137,13,1,2930,896,513.56,,,,,,176,102,0,,,,, +137,14,4,2931,896,513.56,128,8,E2,ppp,5,144,40,5,,,,, +137,14,4,2931,896,513.848,,,,,,144,40,0,,,,, +138,1,1,2932,0,513.848,,,,,,176,102,0,,,,, +137,15,3,2933,,513.848,,8,C2,ppp,5,144,36,5,,,,g, +137,15,3,2933,,513.898,,,,,,144,36,0,,,,, +137,16,3,2934,,513.923,,8,A3,ppp,5,144,57,5,,,,g, +137,16,3,2934,,513.973,,,,,,144,57,0,,,,, +137,8,3,2925,426,513.998,,,,,,144,50,0,,,,, +138,0,0,2935,0,513.998,,,,,,,,,138,,,, +138,2,2,2936,0,513.998,1536,1,C5,p,11,144,72,11,,,,, +138,3,3,2937,0,513.998,128,8,B2,ppp,5,144,47,5,,,,, +138,4,4,2938,0,513.998,512,2,G#2,fff,24,144,44,23,,,,, +138,3,3,2937,0,514.287,,,,,,144,47,0,,,,, +138,6,3,2939,128,514.287,,,,,,176,102,0,,,,, +138,5,0,2940,128,514.287,,,,,,176,64,127,,,,,V +138,7,1,2941,256,514.575,512,2,F5,p-,10,144,77,10,,,,, +138,8,3,2942,256,514.575,,,,,,176,102,0,,,,, +138,4,4,2938,0,515.152,,,,,,144,44,0,,,,, +138,9,4,2943,512,515.152,1792,1,G#2,fff,24,144,44,23,,,,, +138,10,1,2944,768,515.729,128,8,F5,,,,,,,,,, +138,11,3,2945,768,515.729,,,,,,176,102,0,,,,, +138,7,1,2941,256,516.018,,,,,,144,77,0,,,,, +138,12,1,2946,896,516.018,128,8,A#4,ppp,5,144,70,5,,,,, +138,13,1,2947,1024,516.306,384,4,A#4,,,,,,,,,, +138,14,0,2948,1408,517.171,,,,,,176,64,0,,,,,^ +138,15,1,2949,1408,517.171,,,,,,176,102,0,,,,, +138,12,1,2946,896,517.171,,,,,,144,70,0,,,,, +138,16,1,2950,1536,517.46,,,,,,176,102,0,,,,, +138,17,2,2951,1536,517.46,768,2,C5,,,,,,,,,, +138,18,3,2952,1536,517.46,,,,,,176,102,0,,,,, +138,19,1,2953,,518.614,,8,F4,ppp,5,144,65,5,,,,g, +138,19,1,2953,,518.664,,,,,,144,65,0,,,,, +138,20,1,2954,2048,518.689,256,4,G#4,p,11,144,68,11,,,,, +138,21,3,2955,2048,518.689,64,16,E3,ppp,5,144,52,5,,,,, +138,21,3,2955,2048,518.833,,,,,,144,52,0,,,,, +138,22,3,2956,2112,518.833,192,8,C5,ppp,5,144,72,5,,,,, +139,5,0,2957,9,519.136,,,,,,176,64,0,,,,,^ +138,2,2,2936,0,519.191,,,,,,144,72,0,,,,, +138,9,4,2943,512,519.191,,,,,,144,44,0,,,,, +138,23,0,2958,2303,519.263,,,,,,176,64,127,,,,,V +139,0,0,2959,0,519.266,,,,,,,,,139,,,, +139,1,1,2960,0,519.266,1024,1,G#4,,,,,,,,,, +139,2,2,2961,0,519.266,1024,1,C2,ppp,5,144,36,5,,,,, +139,3,3,2962,0,519.266,384,4,C5,,,,,,,,,, +139,4,4,2963,0,519.266,1024,1,C4,pppp,2,144,60,2,,,,, +139,5,0,2964,9,519.436,,,,,,176,64,127,,,,,V +139,6,0,2965,384,519.981,,,,,,176,64,0,,,,,^ +138,22,3,2956,2112,520.131,,,,,,144,72,0,,,,, +139,7,3,2966,384,520.131,128,8,D#1,mp,14,144,27,14,,,,, +139,8,3,2967,384,520.131,128,8,F3,ppp,5,144,53,5,,,,, +139,6,0,2968,384,520.281,,,,,,176,64,127,,,,,V +139,9,3,2969,512,520.419,512,2,D#1,,,,,,,,,, +139,10,3,2970,512,520.419,512,2,F3,,,,,,,,,, +139,11,3,2971,,521.498,,8,F#1,f,20,144,30,20,,,,g, +139,11,3,2971,,521.548,,,,,,144,30,0,,,,, +139,2,2,2961,0,521.573,,,,,,144,36,0,,,,, +140,0,0,2972,0,521.573,,,,,,,,,140,,,, +140,,,2973,0,521.573,,,,,,176,64,0,,,,,^ +140,1,1,2974,0,521.573,85,8,D6,f,20,144,86,20,,,,, +140,2,1,2975,0,521.573,128,8,E7,f,20,144,100,20,,,,, +140,3,3,2976,0,521.573,102,8,B1,f,20,144,35,20,,,,, +140,4,3,2977,0,521.573,128,8,C2,f,20,144,36,20,,,,, +138,20,1,2954,2048,521.723,,,,,,144,68,0,,,,, +139,4,4,2963,0,521.723,,,,,,144,60,0,,,,, +139,7,3,2966,384,521.723,,,,,,144,27,0,,,,, +139,8,3,2967,384,521.723,,,,,,144,53,0,,,,, +140,1,1,2974,0,521.765,,,,,,144,86,0,,,,, +140,5,1,2978,85,521.765,85,8,F#5,f,20,144,78,20,,,,, +140,6,1,2979,85,521.765,128,8,C#6,f,20,144,85,20,,,,, +140,3,3,2976,0,521.803,,,,,,144,35,0,,,,, +140,7,3,2980,102,521.803,154,8,A#3,f,20,144,58,20,,,,, +140,2,1,2975,0,521.862,,,,,,144,100,0,,,,, +140,4,3,2977,0,521.862,,,,,,144,36,0,,,,, +140,8,1,2981,170,521.956,86,8,C4,f,20,144,60,20,,,,, +140,9,1,2982,170,521.956,128,8,D#4,f,20,144,63,20,,,,, +140,10,1,2983,170,521.956,128,8,F#5,,,,,,,,,, +140,6,1,2979,85,522.053,,,,,,144,85,0,,,,, +140,8,1,2981,170,522.15,,,,,,144,60,0,,,,, +140,11,1,2984,256,522.15,85,8,G#3,mf,17,144,56,17,,,,, +140,12,3,2985,256,522.15,51,16,A#3,,,,,,,,,, +140,5,1,2978,85,522.245,,,,,,144,78,0,,,,, +140,9,1,2982,170,522.245,,,,,,144,63,0,,,,, +140,7,3,2980,102,522.265,,,,,,144,58,0,,,,, +140,13,3,2986,307,522.265,205,4,D2,mp,14,144,38,14,,,,, +140,14,1,2987,341,522.342,85,8,A4,mp,14,144,69,14,,,,, +140,11,1,2984,256,522.342,,,,,,144,56,0,,,,, +140,14,1,2987,341,522.533,,,,,,144,69,0,,,,, +140,15,1,2988,426,522.533,,,,,,176,102,0,,,,, +140,13,3,2986,307,522.727,,,,,,144,38,0,,,,, +140,16,1,2989,512,522.727,64,16,C5,ppp,5,144,72,5,,,,, +140,17,3,2990,512,522.727,,,,,,176,102,0,,,,, +140,16,1,2989,512,522.871,,,,,,144,72,0,,,,, +140,18,1,2991,576,522.871,192,8,G#5,ppp,5,144,80,5,,,,, +140,19,3,2992,576,522.871,32,32,E4,mp,14,144,64,14,,,,, +140,19,3,2992,576,522.944,,,,,,144,64,0,,,,, +140,20,3,2993,608,522.944,32,32,D3,mf,17,144,50,17,,,,, +140,20,3,2993,608,523.016,,,,,,144,50,0,,,,, +140,21,3,2994,640,523.016,128,8,F#2,mp,14,144,42,14,,,,, +140,18,1,2991,576,523.304,,,,,,144,80,0,,,,, +140,21,3,2994,640,523.304,,,,,,144,42,0,,,,, +140,22,1,2995,768,523.304,256,4,E6,mp,14,144,88,14,,,,, +140,23,3,2996,,523.304,,8,C2,pp,8,144,36,8,,,,g, +140,23,3,2996,,523.354,,,,,,144,36,0,,,,, +140,24,3,2997,768,523.379,256,4,G#2,mp,14,144,44,14,,,,, +140,26,3,2998,,523.806,,8,E5,pp,8,144,76,8,,,,g, +140,25,3,2999,,523.806,,8,C3,pp,8,144,48,8,,,,g, +140,26,3,2998,,523.856,,,,,,144,76,0,,,,, +140,25,3,2999,,523.856,,,,,,144,48,0,,,,, +140,22,1,2995,768,523.881,,,,,,144,88,0,,,,, +140,28,3,3000,,523.881,,8,G3,pp,8,144,55,8,,,,g, +140,27,3,3001,,523.881,,8,F#3,pp,8,144,54,8,,,,g, +140,28,3,3000,,523.931,,,,,,144,55,0,,,,, +140,27,3,3001,,523.931,,,,,,144,54,0,,,,, +140,24,3,2997,768,523.956,,,,,,144,44,0,,,,, +141,0,0,3002,0,523.956,,,,,,,,,141,,,, +141,1,0,3003,0,523.956,,,,,,,,,,5956,,, +141,2,1,3004,0,523.956,,,,,,176,102,0,,,,, +141,3,2,3005,0,523.956,1024,1,E4,pp,8,144,64,8,,,,, +141,4,2,3006,0,523.956,1024,1,A#4,pp,8,144,70,8,,,,, +141,5,3,3007,0,523.956,,,,,,176,102,0,,,,, +141,6,4,3008,0,523.956,1024,1,A#3,pp,8,144,58,8,,,,, +141,7,3,3009,256,524.533,,,,,,176,102,0,,,,, +141,8,3,3010,320,524.677,32,32,E1,pp,8,144,28,8,,,,, +141,8,3,3010,320,524.749,,,,,,144,28,0,,,,, +141,9,3,3011,352,524.749,32,32,B2,p-,10,144,47,10,,,,, +141,9,3,3011,352,524.821,,,,,,144,47,0,,,,, +141,10,3,3012,384,524.821,21,32,C4,p,11,144,60,11,,,,, +141,10,3,3012,384,524.869,,,,,,144,60,0,,,,, +141,11,3,3013,405,524.869,21,32,E2,p+,12,144,40,12,,,,, +141,11,3,3013,405,524.916,,,,,,144,40,0,,,,, +141,12,3,3014,426,524.916,22,32,F3,mp-,13,144,53,13,,,,, +141,12,3,3014,426,524.966,,,,,,144,53,0,,,,, +141,13,3,3015,448,524.966,32,32,G#4,mp,14,144,68,14,,,,, +141,13,3,3015,448,525.038,,,,,,144,68,0,,,,, +141,14,3,3016,480,525.038,32,32,F2,mp-,13,144,41,13,,,,, +141,14,3,3016,480,525.11,,,,,,144,41,0,,,,, +141,15,1,3017,512,525.11,,,,,,176,102,0,,,,, +141,16,3,3018,512,525.11,,,,,,176,102,0,,,,, +141,6,4,3008,0,525.301,,,,,,144,58,0,,,,, +141,17,3,3019,597,525.301,171,4,A#3,p-,10,144,58,10,,,,, +141,18,1,3020,640,525.398,384,4,G#5,p,11,144,80,11,,,,, +141,19,3,3021,768,525.687,256,4,A#3,,,,,,,,,, +142,0,0,3022,0,526.264,,,,,,,,,142,,,, +142,1,1,3023,0,526.264,128,8,G#5,,,,,,,,,, +142,2,2,3024,0,526.264,1024,1,B3,mp,14,144,59,14,,,,, +142,3,3,3025,0,526.264,1024,1,A#3,,,,,,,,,, +142,4,4,3026,0,526.264,,,,,,176,102,0,,,,, +141,3,2,3005,0,526.339,,,,,,144,64,0,,,,, +141,4,2,3006,0,526.339,,,,,,144,70,0,,,,, +142,5,1,3027,128,526.552,,,,,,176,102,0,,,,, +141,18,1,3020,640,526.627,,,,,,144,80,0,,,,, +142,6,4,3028,192,526.696,64,16,B2,ppp,5,144,47,5,,,,, +142,6,4,3028,192,526.841,,,,,,144,47,0,,,,, +142,7,1,3029,256,526.841,256,4,E6,ppp,5,144,88,5,,,,, +142,8,4,3030,256,526.841,,,,,,176,102,0,,,,, +142,7,1,3029,256,527.418,,,,,,144,88,0,,,,, +142,9,1,3031,512,527.418,128,8,F3,pppp,2,144,53,2,,,,, +142,10,4,3032,512,527.418,512,2,D2,pppp,2,144,38,2,,,,, +142,9,1,3031,512,527.706,,,,,,144,53,0,,,,, +142,11,1,3033,640,527.706,,,,,,176,102,0,,,,, +142,12,1,3034,768,527.994,,,,,,176,102,0,,,,, +143,0,0,3035,0,528.571,,,,,,,,,143,,,, +143,1,1,3036,0,528.571,,,,,,176,102,0,,,,, +143,2,2,3037,0,528.571,1024,1,B3,,,,,,,,,, +143,3,3,3038,0,528.571,,,,,,176,102,0,,,,, +143,4,4,3039,0,528.571,1024,1,D2,,,,,,,,,, +141,17,3,3019,597,528.646,,,,,,144,58,0,,,,, +144,0,0,3040,0,530.879,,,,,,,,,144,,,, +144,1,1,3041,0,530.879,,,,,,176,102,0,,,,, +144,2,3,3042,0,530.879,,,,,,176,102,0,,,,, +144,3,4,3043,0,530.879,64,16,D2,,,,,,,,,, +142,2,2,3024,0,530.954,,,,,,144,59,0,,,,, +144,4,1,3044,64,531.023,192,8,E5,pppp,2,144,76,2,,,,, +144,5,4,3045,64,531.023,,,,,,176,102,0,,,,, +144,6,0,3046,64,531.023,,,,,,,,,,5957,,, +142,10,4,3032,512,531.098,,,,,,144,38,0,,,,, +144,4,1,3044,64,531.456,,,,,,144,76,0,,,,, +144,7,1,3047,256,531.456,,,,,,176,102,0,,,,, +144,8,3,3048,256,531.456,192,8,B1,pppp,2,144,35,2,,,,, +144,9,4,3049,256,531.456,256,4,G#1,pppp,2,144,32,2,,,,, +144,8,3,3048,256,531.889,,,,,,144,35,0,,,,, +144,10,3,3050,448,531.889,64,16,A#3,ppp-,4,144,58,4,,,,, +144,10,3,3050,448,532.033,,,,,,144,58,0,,,,, +144,11,1,3051,512,532.033,,,,,,176,102,0,,,,, +144,12,3,3052,512,532.033,64,16,F#2,ppp-,4,144,42,4,,,,, +144,13,4,3053,512,532.033,384,4,G#1,,,,,,,,,, +144,12,3,3052,512,532.177,,,,,,144,42,0,,,,, +144,14,3,3054,576,532.177,192,8,D6,ppp,5,144,86,5,,,,, +144,15,1,3055,640,532.321,384,4,C1,ppp,5,144,24,5,,,,, +144,16,3,3056,768,532.61,128,8,D6,,,,,,,,,, +144,14,3,3054,576,532.898,,,,,,144,86,0,,,,, +144,17,3,3057,896,532.898,128,8,C3,ppp-,4,144,48,4,,,,, +144,18,4,3058,896,532.898,,,,,,176,102,0,,,,, +144,9,4,3049,256,532.898,,,,,,144,32,0,,,,, +144,15,1,3055,640,533.187,,,,,,144,24,0,,,,, +144,17,3,3057,896,533.187,,,,,,144,48,0,,,,, +145,2,1,3059,0,533.187,,,,,,176,102,0,,,,, +144,19,2,3060,,533.187,,8,E4,pppp,2,144,64,2,,,,g, +144,19,2,3060,,533.237,,,,,,144,64,0,,,,, +145,0,0,3061,0,533.262,,,,,,,,,145,,,, +145,3,2,3062,0,533.262,512,2,D5,ppp-,4,144,74,4,,,,, +145,4,3,3063,0,533.262,1024,1,G3,pppp,2,144,55,2,,,,, +145,5,3,3064,0,533.262,1024,1,A#3,pppp,2,144,58,2,,,,, +145,1,0,3065,0,533.262,,,,,,176,64,127,,,,,V +145,6,1,3066,256,533.839,768,2,B5,pppp,2,144,83,2,,,,, +145,3,2,3062,0,534.416,,,,,,144,74,0,,,,, +145,7,2,3067,512,534.416,256,4,G6,p,11,144,91,11,,,,, +145,7,2,3067,512,534.993,,,,,,144,91,0,,,,, +145,8,2,3068,768,534.993,128,8,G#3,ppp,5,144,56,5,,,,, +145,8,2,3068,768,535.281,,,,,,144,56,0,,,,, +145,9,2,3069,896,535.281,128,8,C6,ppp,5,144,84,5,,,,, +145,10,0,3070,1023,535.418,,,,,,176,64,0,,,,,^ +145,4,3,3063,0,535.569,,,,,,144,55,0,,,,, +145,5,3,3064,0,535.569,,,,,,144,58,0,,,,, +145,6,1,3066,256,535.569,,,,,,144,83,0,,,,, +145,9,2,3069,896,535.569,,,,,,144,84,0,,,,, +146,0,0,3071,0,535.569,,,,,,,,,146,,,, +146,2,1,3072,0,535.569,,,,,,176,102,0,,,,, +146,3,2,3073,0,535.569,512,2,G#3,p,11,144,56,11,,,,, +146,4,3,3074,0,535.569,1024,1,C2,p,11,144,36,11,,,,, +146,5,3,3075,0,535.569,1024,1,F#2,p,11,144,42,11,,,,, +146,6,3,3076,0,535.569,1024,1,D#3,p,11,144,51,11,,,,, +146,7,4,3077,0,535.569,512,2,A1,p,11,144,33,11,,,,, +146,1,0,3078,0,535.718,,,,,,176,64,127,,,,,V +146,8,0,3079,512,536.573,,,,,,176,64,0,,,,,^ +146,3,2,3073,0,536.723,,,,,,144,56,0,,,,, +146,7,4,3077,0,536.723,,,,,,144,33,0,,,,, +146,10,1,3080,512,536.723,512,2,C#5,p,11,144,73,11,,,,, +146,11,2,3081,512,536.723,512,2,E4,p,11,144,64,11,,,,, +146,12,4,3082,512,536.723,,,,,,176,102,0,,,,, +146,9,0,3083,512,536.873,,,,,,176,64,127,,,,,V +146,11,2,3081,512,537.877,,,,,,144,64,0,,,,, +147,0,0,3084,0,537.877,,,,,,,,,147,,,, +147,1,0,3085,0,537.877,,,,,,176,64,0,,,,,^ +147,2,1,3086,0,537.877,512,2,C#5,,,,,,,,,, +147,3,2,3087,0,537.877,512,2,D5,p+,12,144,74,12,,,,, +147,4,3,3088,0,537.877,512,2,C2,,,,,,,,,, +147,5,3,3089,0,537.877,512,2,F#2,,,,,,,,,, +147,6,3,3090,0,537.877,512,2,D#3,,,,,,,,,, +147,7,4,3091,0,537.877,,,,,,176,102,0,,,,, +146,4,3,3074,0,539.031,,,,,,144,36,0,,,,, +146,5,3,3075,0,539.031,,,,,,144,42,0,,,,, +146,6,3,3076,0,539.031,,,,,,144,51,0,,,,, +146,10,1,3080,512,539.031,,,,,,144,73,0,,,,, +147,3,2,3087,0,539.031,,,,,,144,74,0,,,,, +147,9,1,3092,512,539.031,,,,,,176,102,0,,,,, +147,10,2,3093,512,539.031,192,8,F#1,mf,17,144,30,17,,,,, +147,11,3,3094,512,539.031,384,4,G#1,mf,17,144,32,17,,,,, +147,12,3,3095,512,539.031,256,4,C2,mf,17,144,36,17,,,,, +147,13,3,3096,512,539.031,256,4,A2,mf,17,144,45,17,,,,, +147,14,4,3097,512,539.031,768,2,C3,mf,17,144,48,17,,,,, +147,8,0,3098,512,539.031,,,,,,176,64,127,,,,,V +147,15,0,3099,704,539.386,,,,,,176,64,0,,,,,^ +147,10,2,3093,512,539.464,,,,,,144,30,0,,,,, +147,16,2,3100,704,539.464,64,16,G1,p,11,144,31,11,,,,, +147,18,1,3101,768,539.608,,,,,,176,102,0,,,,, +147,19,2,3102,768,539.608,128,8,G1,,,,,,,,,, +147,12,3,3095,512,539.608,,,,,,144,36,0,,,,, +147,13,3,3096,512,539.608,,,,,,144,45,0,,,,, +147,17,0,3103,768,539.686,,,,,,176,64,127,,,,,V +147,16,2,3100,704,539.896,,,,,,144,31,0,,,,, +147,20,2,3104,896,539.896,384,4,A#7,ppp,5,144,106,5,,,,, +147,21,3,3105,896,539.896,384,4,G#3,mf,17,144,56,17,,,,, +147,11,3,3094,512,539.896,,,,,,144,32,0,,,,, +147,22,0,3106,1279,540.76,,,,,,176,64,0,,,,,^ +148,0,0,3107,0,540.762,,,,,,,,,148,,,, +148,1,1,3108,0,540.762,64,16,D5,ppp,5,144,74,5,,,,, +148,2,2,3109,0,540.762,256,4,A#4,ppp,5,144,70,5,,,,, +148,3,3,3110,0,540.762,512,2,D4,p,11,144,62,11,,,,, +148,4,4,3111,0,540.762,192,8,G3,pppp,2,144,55,2,,,,, +147,20,2,3104,896,540.837,,,,,,144,106,0,,,,, +147,21,3,3105,896,540.837,,,,,,144,56,0,,,,, +147,14,4,3097,512,540.837,,,,,,144,48,0,,,,, +148,1,1,3108,0,540.906,,,,,,144,74,0,,,,, +148,5,1,3112,64,540.906,,,,,,176,102,0,,,,, +148,4,4,3111,0,541.194,,,,,,144,55,0,,,,, +148,6,4,3113,192,541.194,64,16,C#4,p,11,144,61,11,,,,, +148,7,1,3114,256,541.339,,,,,,176,102,0,,,,, +148,8,2,3115,256,541.339,1024,1,A#4,,,,,,,,,, +148,9,4,3116,256,541.339,128,8,C#4,,,,,,,,,, +148,6,4,3113,192,541.627,,,,,,144,61,0,,,,, +148,10,4,3117,384,541.627,128,8,G#1,pp,8,144,32,8,,,,, +148,10,4,3117,384,541.916,,,,,,144,32,0,,,,, +148,11,3,3118,512,541.916,,,,,,176,102,0,,,,, +148,12,4,3119,512,541.916,,,,,,176,102,0,,,,, +148,13,0,3120,512,541.916,,,,,,,,,,5958,,, +148,3,3,3110,0,541.916,,,,,,144,62,0,,,,, +148,14,4,3121,597,542.107,171,4,G#1,fff,24,144,32,23,,,,, +148,15,3,3122,768,542.493,,,,,,176,102,0,,,,, +148,16,4,3123,768,542.493,512,2,G#1,,,,,,,,,, +148,2,2,3109,0,543.646,,,,,,144,70,0,,,,, +148,14,4,3121,597,543.646,,,,,,144,32,0,,,,, +149,0,0,3124,0,543.646,,,,,,,,,149,,,, +149,1,1,3125,0,543.646,256,4,E5,mf,17,144,76,17,,,,, +149,2,2,3126,0,543.646,,,,,,176,102,0,,,,, +149,3,3,3127,0,543.646,,,,,,176,102,0,,,,, +149,4,4,3128,0,543.646,,,,,,176,102,0,,,,, +149,1,1,3125,0,544.223,,,,,,144,76,0,,,,, +149,6,1,3129,,544.223,,8,E5,pp,8,144,76,8,,,,g, +149,6,1,3129,,544.273,,,,,,144,76,0,,,,, +149,7,1,3130,,544.298,,8,C2,pp-,7,144,36,7,,,,g, +149,7,1,3130,,544.348,,,,,,144,36,0,,,,, +149,8,1,3131,,544.373,,8,A7,ppp+,6,144,105,6,,,,g, +149,8,1,3131,,544.423,,,,,,144,105,0,,,,, +149,9,1,3132,,544.448,,8,E1,ppp,5,144,28,5,,,,g, +149,9,1,3132,,544.498,,,,,,144,28,0,,,,, +149,10,1,3133,,544.523,,8,C#5,p,11,144,73,11,,,,g, +149,10,1,3133,,544.573,,,,,,144,73,0,,,,, +149,11,1,3134,256,544.598,768,2,B6,mp,14,144,95,14,,,,, +149,12,2,3135,256,544.598,,,,,,176,102,0,,,,, +149,5,0,3136,256,544.598,,,,,,176,64,127,,,,,V +149,13,2,3137,512,545.175,,,,,,176,102,0,,,,, +149,14,4,3138,512,545.175,,,,,,176,102,0,,,,, +149,15,4,3139,704,545.608,64,16,A2,ppp,5,144,45,5,,,,, +149,16,4,3140,768,545.752,256,4,A2,,,,,,,,,, +149,17,1,3141,,546.329,,8,D5,mf-,16,144,74,16,,,,g, +149,11,1,3134,256,546.329,,,,,,144,95,0,,,,, +149,17,1,3141,,546.379,,,,,,144,74,0,,,,, +149,18,1,3142,,546.404,,8,A7,mf+,18,144,105,18,,,,g, +149,18,1,3142,,546.454,,,,,,144,105,0,,,,, +149,19,1,3143,,546.479,,8,C1,f-,19,144,24,19,,,,g, +149,19,1,3143,,546.529,,,,,,144,24,0,,,,, +149,20,1,3144,1024,546.554,256,4,E4,f,20,144,64,20,,,,, +149,21,3,3145,1024,546.554,,,,,,176,102,0,,,,, +149,22,4,3146,1024,546.554,170,4,A2,,,,,,,,,, +149,15,4,3139,704,546.712,,,,,,144,45,0,,,,, +149,23,3,3147,1109,546.746,171,4,F#3,mp,14,144,54,14,,,,, +149,24,0,3148,1194,546.937,,,,,,176,64,0,,,,,^ +149,25,4,3149,1194,546.937,86,8,F3,mp,14,144,53,14,,,,, +149,23,3,3147,1109,547.131,,,,,,144,54,0,,,,, +150,0,0,3150,0,547.131,,,,,,,,,150,,,, +150,1,1,3151,0,547.131,768,2,E4,,,,,,,,,, +150,2,2,3152,0,547.131,,,,,,176,102,0,,,,, +150,3,3,3153,0,547.131,170,4,D#2,mf,17,144,39,17,,,,, +150,4,4,3154,0,547.131,512,2,F3,,,,,,,,,, +150,3,3,3153,0,547.514,,,,,,144,39,0,,,,, +150,5,3,3155,170,547.514,171,4,A#5,f,20,144,82,20,,,,, +150,5,3,3155,170,547.9,,,,,,144,82,0,,,,, +150,6,3,3156,341,547.9,,,,,,176,102,0,,,,, +150,7,3,3157,512,548.285,,,,,,176,102,0,,,,, +150,8,4,3158,512,548.285,85,8,F3,,,,,,,,,, +149,25,4,3149,1194,548.476,,,,,,144,53,0,,,,, +150,9,4,3159,597,548.476,171,4,F#1,pp,8,144,30,8,,,,, +150,9,4,3159,597,548.862,,,,,,144,30,0,,,,, +150,10,1,3160,768,548.862,512,2,E4,,,,,,,,,, +150,11,2,3161,768,548.862,,,,,,176,102,0,,,,, +150,12,3,3162,768,548.862,,,,,,176,102,0,,,,, +150,13,4,3163,768,548.862,,,,,,176,102,0,,,,, +150,14,2,3164,853,549.053,171,4,F#4,mp,14,144,66,14,,,,, +150,14,2,3164,853,549.439,,,,,,144,66,0,,,,, +150,15,2,3165,1024,549.439,,,,,,176,102,0,,,,, +150,16,3,3166,1024,549.439,256,4,G#2,f,20,144,44,20,,,,, +150,17,0,3167,1156,549.736,,,,,,176,64,127,,,,,V +150,16,3,3166,1024,550.016,,,,,,144,44,0,,,,, +151,1,1,3168,0,550.016,512,2,E4,,,,,,,,,, +150,24,3,3169,,550.016,,8,C#5,mf,17,144,73,17,,,,g, +150,24,3,3169,,550.066,,,,,,144,73,0,,,,, +150,25,3,3170,,550.091,,8,A3,mf,17,144,57,17,,,,g, +150,25,3,3170,,550.141,,,,,,144,57,0,,,,, +150,26,3,3171,,550.166,,8,F#3,mf,17,144,54,17,,,,g, +150,26,3,3171,,550.216,,,,,,144,54,0,,,,, +150,18,2,3172,,550.241,,8,A#7,f,20,144,106,20,,,,g, +150,18,2,3172,,550.291,,,,,,144,106,0,,,,, +150,19,2,3173,,550.316,,8,F#5,f,20,144,78,20,,,,g, +150,19,2,3173,,550.366,,,,,,144,78,0,,,,, +150,20,2,3174,,550.391,,8,D6,f+,21,144,86,21,,,,g, +150,20,2,3174,,550.441,,,,,,144,86,0,,,,, +150,21,2,3175,,550.466,,8,D#4,f+,21,144,63,21,,,,g, +150,21,2,3175,,550.516,,,,,,144,63,0,,,,, +150,22,2,3176,,550.541,,8,A#6,ff,22,144,94,22,,,,g, +150,22,2,3176,,550.591,,,,,,144,94,0,,,,, +150,23,2,3177,,550.616,,8,G#3,ff,22,144,56,22,,,,g, +150,23,2,3177,,550.666,,,,,,144,56,0,,,,, +151,0,0,3178,0,550.691,,,,,,,,,151,,,, +151,2,2,3179,0,550.691,1024,1,D5,f,20,144,74,20,,,,, +151,3,3,3180,0,550.691,,,,,,176,102,0,,,,, +151,4,4,3181,0,550.691,,,,,,176,102,0,,,,, +149,20,1,3144,1024,551.169,,,,,,144,64,0,,,,, +151,5,1,3182,512,551.844,256,4,C5,f,20,144,72,20,,,,, +151,6,3,3183,512,551.844,,,,,,176,102,0,,,,, +151,7,4,3184,512,551.844,256,4,C1,f,20,144,24,20,,,,, +151,2,2,3179,0,552.421,,,,,,144,74,0,,,,, +151,7,4,3184,512,552.421,,,,,,144,24,0,,,,, +151,8,0,3185,768,552.421,,,,,,176,64,0,,,,,^ +151,9,1,3186,768,552.421,768,2,C5,,,,,,,,,, +151,10,1,3187,768,552.421,512,2,D5,ff,22,144,74,22,,,,, +151,11,3,3188,768,552.421,,,,,,176,102,0,,,,, +151,12,4,3189,768,552.421,256,4,D2,pp,8,144,38,8,,,,, +151,15,4,3190,,552.923,,8,C2,pp,8,144,36,8,,,,g, +151,14,4,3191,,552.923,,8,F#1,pp,8,144,30,8,,,,g, +151,15,4,3190,,552.973,,,,,,144,36,0,,,,, +151,14,4,3191,,552.973,,,,,,144,30,0,,,,, +151,13,2,3192,1024,552.998,512,2,F#4,f,20,144,66,20,,,,, +151,16,4,3193,1024,552.998,,,,,,176,102,0,,,,, +151,12,4,3189,768,553.373,,,,,,144,38,0,,,,, +151,17,4,3194,,553.425,,8,F3,mp,14,144,53,14,,,,g, +151,17,4,3194,,553.475,,,,,,144,53,0,,,,, +151,18,4,3195,,553.5,,8,A#2,mp,14,144,46,14,,,,g, +151,18,4,3195,,553.55,,,,,,144,46,0,,,,, +151,19,4,3196,1280,553.575,,,,,,176,102,0,,,,, +151,13,2,3192,1024,554.152,,,,,,144,66,0,,,,, +152,0,0,3197,0,554.152,,,,,,,,,152,,,, +152,1,1,3198,0,554.152,256,4,C5,,,,,,,,,, +152,2,1,3199,0,554.152,256,4,D5,,,,,,,,,, +152,3,2,3200,0,554.152,,,,,,176,102,0,,,,, +152,4,3,3201,0,554.152,256,4,D#3,ff,22,144,51,22,,,,, +152,8,3,3202,,554.579,,8,B5,f,20,144,83,20,,,,g, +152,8,3,3202,,554.629,,,,,,144,83,0,,,,, +152,9,3,3203,,554.654,,8,F#2,f,20,144,42,20,,,,g, +151,10,1,3187,768,554.671,,,,,,144,74,0,,,,, +152,9,3,3203,,554.704,,,,,,144,42,0,,,,, +152,4,3,3201,0,554.729,,,,,,144,51,0,,,,, +152,5,1,3204,256,554.729,64,16,C5,,,,,,,,,, +152,6,1,3205,256,554.729,64,16,D5,,,,,,,,,, +152,7,2,3206,256,554.729,64,16,G#2,ff,22,144,44,22,,,,, +152,10,3,3207,256,554.729,1024,1,A3,mp,14,144,57,14,,,,, +152,7,2,3206,256,554.873,,,,,,144,44,0,,,,, +152,11,1,3208,320,554.873,,,,,,176,102,0,,,,, +152,12,2,3209,320,554.873,21,32,A#7,mf+,18,144,106,18,,,,, +152,12,2,3209,320,554.921,,,,,,144,106,0,,,,, +152,13,2,3210,341,554.921,21,32,D7,mf,17,144,98,17,,,,, +152,14,2,3211,362,554.968,22,32,G#3,mp+,15,144,56,15,,,,, +152,14,2,3211,362,555.018,,,,,,144,56,0,,,,, +152,15,1,3212,384,555.018,,,,,,176,102,0,,,,, +152,16,2,3213,384,555.018,128,8,D#4,mp,14,144,63,14,,,,, +152,13,2,3210,341,555.193,,,,,,144,98,0,,,,, +151,5,1,3182,512,555.248,,,,,,144,72,0,,,,, +152,18,1,3214,512,555.306,,,,,,176,102,0,,,,, +152,19,2,3215,512,555.306,768,2,D#4,,,,,,,,,, +152,17,0,3216,512,555.306,,,,,,176,64,127,,,,,V +152,20,1,3217,768,555.883,,,,,,176,102,0,,,,, +152,21,1,3218,853,556.075,171,4,A#6,pp,8,144,94,8,,,,, +152,22,1,3219,853,556.075,256,4,C#7,pp,8,144,97,8,,,,, +152,21,1,3218,853,556.46,,,,,,144,94,0,,,,, +152,23,1,3220,1024,556.46,,,,,,176,102,0,,,,, +152,22,1,3219,853,556.651,,,,,,144,97,0,,,,, +152,24,1,3221,1109,556.651,171,4,F#4,pp,8,144,66,8,,,,, +152,16,2,3213,384,557.037,,,,,,144,63,0,,,,, +152,24,1,3221,1109,557.037,,,,,,144,66,0,,,,, +152,25,0,3222,1280,557.037,,,,,,176,64,0,,,,,^ +152,26,1,3223,1280,557.037,256,4,G#3,f,20,144,56,20,,,,, +152,27,2,3224,1280,557.037,,,,,,176,102,0,,,,, +152,28,3,3225,1280,557.037,85,8,A3,,,,,,,,,, +152,29,3,3226,1365,557.228,85,8,F4,ppp,5,144,65,5,,,,, +152,29,3,3226,1365,557.42,,,,,,144,65,0,,,,, +152,30,3,3227,1450,557.42,,,,,,176,102,0,,,,, +152,10,3,3207,256,557.453,,,,,,144,57,0,,,,, +152,26,1,3223,1280,557.614,,,,,,144,56,0,,,,, +153,0,0,3228,0,557.614,,,,,,,,,153,,,, +153,1,0,3229,0,557.614,,,,,,,,,,5959,,, +153,2,1,3230,0,557.614,,,,,,176,102,0,,,,, +153,3,2,3231,0,557.614,256,4,C#5,p,11,144,73,11,,,,, +153,4,3,3232,0,557.614,128,8,C2,ff,22,144,36,22,,,,, +153,5,4,3233,0,557.614,1536,1,D#1,ff,22,144,27,22,,,,, +153,4,3,3232,0,557.902,,,,,,144,36,0,,,,, +153,6,3,3234,128,557.902,128,8,A4,ff,22,144,69,22,,,,, +153,7,1,3235,170,557.997,86,8,C5,ppp,5,144,72,5,,,,, +153,3,2,3231,0,558.191,,,,,,144,73,0,,,,, +153,6,3,3234,128,558.191,,,,,,144,69,0,,,,, +153,8,1,3236,256,558.191,256,4,C5,,,,,,,,,, +153,9,2,3237,256,558.191,256,4,E6,f,20,144,88,20,,,,, +153,10,2,3238,256,558.191,256,4,D7,p,11,144,98,11,,,,, +153,11,3,3239,256,558.191,,,,,,176,102,0,,,,, +153,13,1,3240,512,558.768,1024,1,C5,,,,,,,,,, +153,14,2,3241,512,558.768,1024,1,C4,p,11,144,60,11,,,,, +153,15,3,3242,512,558.768,,,,,,176,102,0,,,,, +153,12,0,3243,512,558.768,,,,,,176,64,127,,,,,V +153,9,2,3237,256,559.443,,,,,,144,88,0,,,,, +153,10,2,3238,256,559.443,,,,,,144,98,0,,,,, +153,16,0,3244,1535,561.073,,,,,,176,64,0,,,,,^ +153,14,2,3241,512,561.075,,,,,,144,60,0,,,,, +154,0,0,3245,0,561.075,,,,,,,,,154,,,, +154,1,1,3246,0,561.075,384,4,C5,,,,,,,,,, +154,2,2,3247,0,561.075,,,,,,176,102,0,,,,, +154,3,3,3248,0,561.075,128,8,G1,p,11,144,31,11,,,,, +154,4,4,3249,0,561.075,1024,1,C1,f,20,144,24,20,,,,, +154,5,4,3250,0,561.075,1024,1,D#1,,,,,,,,,, +154,3,3,3248,0,561.364,,,,,,144,31,0,,,,, +154,6,3,3251,128,561.364,128,8,C3,p-,10,144,48,10,,,,, +154,7,3,3252,256,561.652,128,8,C3,,,,,,,,,, +154,6,3,3251,128,561.941,,,,,,144,48,0,,,,, +154,8,1,3253,,561.941,,8,E5,pppp,2,144,76,2,,,,g, +154,8,1,3253,,561.991,,,,,,144,76,0,,,,, +154,9,1,3254,384,562.016,64,16,E4,pp,8,144,64,8,,,,, +154,10,2,3255,384,562.016,64,16,D#3,mf,17,144,51,17,,,,, +154,11,2,3256,384,562.016,64,16,G#3,mf,17,144,56,17,,,,, +154,12,3,3257,384,562.016,64,16,G#1,pp,8,144,32,8,,,,, +154,9,1,3254,384,562.16,,,,,,144,64,0,,,,, +154,10,2,3255,384,562.16,,,,,,144,51,0,,,,, +154,11,2,3256,384,562.16,,,,,,144,56,0,,,,, +154,12,3,3257,384,562.16,,,,,,144,32,0,,,,, +154,13,1,3258,448,562.16,,,,,,176,102,0,,,,, +154,14,2,3259,448,562.16,64,16,A7,mf,17,144,105,17,,,,, +154,15,3,3260,448,562.16,,,,,,176,102,0,,,,, +154,14,2,3259,448,562.304,,,,,,144,105,0,,,,, +154,16,1,3261,,562.304,,8,A7,mp-,13,144,105,13,,,,g, +154,16,1,3261,,562.354,,,,,,144,105,0,,,,, +154,17,1,3262,512,562.379,512,2,E4,p,11,144,64,11,,,,, +154,18,2,3263,512,562.379,,,,,,176,102,0,,,,, +154,19,3,3264,512,562.379,128,8,C3,pp,8,144,48,8,,,,, +154,20,3,3265,512,562.379,128,8,F#3,pp,8,144,54,8,,,,, +153,7,1,3235,170,562.616,,,,,,144,72,0,,,,, +154,19,3,3264,512,562.668,,,,,,144,48,0,,,,, +154,20,3,3265,512,562.668,,,,,,144,54,0,,,,, +154,21,3,3266,640,562.668,,,,,,176,102,0,,,,, +154,22,3,3267,768,562.956,,,,,,176,102,0,,,,, +154,4,4,3249,0,563.383,,,,,,144,24,0,,,,, +154,17,1,3262,512,563.533,,,,,,144,64,0,,,,, +154,23,1,3268,1024,563.533,512,2,D#3,ff,22,144,51,22,,,,, +154,24,3,3269,1024,563.533,128,8,G#2,pp,8,144,44,8,,,,, +154,25,3,3270,1024,563.533,128,8,A#2,pp,8,144,46,8,,,,, +154,26,4,3271,1024,563.533,512,2,F#1,ff,22,144,30,22,,,,, +154,24,3,3269,1024,563.821,,,,,,144,44,0,,,,, +154,25,3,3270,1024,563.821,,,,,,144,46,0,,,,, +154,27,3,3272,1152,563.821,128,8,C#4,pp,8,144,61,8,,,,, +153,5,4,3233,0,564.058,,,,,,144,27,0,,,,, +154,27,3,3272,1152,564.11,,,,,,144,61,0,,,,, +154,28,2,3273,1280,564.11,128,8,B5,ppp,5,144,83,5,,,,, +154,29,3,3274,1280,564.11,256,4,E2,f,20,144,40,20,,,,, +154,28,2,3273,1280,564.398,,,,,,144,83,0,,,,, +154,30,2,3275,1408,564.398,64,16,C7,p,11,144,96,11,,,,, +154,31,2,3276,1408,564.398,64,16,D7,ppp,5,144,98,5,,,,, +154,30,2,3275,1408,564.543,,,,,,144,96,0,,,,, +154,31,2,3276,1408,564.543,,,,,,144,98,0,,,,, +154,32,2,3277,1472,564.543,64,16,D5,p,11,144,74,11,,,,, +154,32,2,3277,1472,564.687,,,,,,144,74,0,,,,, +155,0,0,3278,0,564.687,,,,,,,,,155,,,, +155,1,1,3279,0,564.687,1536,1,E4,p,11,144,64,11,,,,, +155,2,3,3280,0,564.687,1536,1,G#2,ff,22,144,44,22,,,,, +155,3,4,3281,0,564.687,768,2,F#1,,,,,,,,,, +154,23,1,3268,1024,564.687,,,,,,144,51,0,,,,, +154,29,3,3274,1280,564.687,,,,,,144,40,0,,,,, +154,26,4,3271,1024,566.418,,,,,,144,30,0,,,,, +155,4,4,3282,768,566.418,768,2,B3,mp,14,144,59,14,,,,, +155,5,0,3283,1050,567.053,,,,,,176,64,127,,,,,V +155,1,1,3279,0,568.148,,,,,,144,64,0,,,,, +155,2,3,3280,0,568.148,,,,,,144,44,0,,,,, +156,0,0,3284,0,568.148,,,,,,,,,156,,,, +156,1,1,3285,0,568.148,,,,,,176,102,0,,,,, +156,2,2,3286,0,568.148,,,,,,176,102,0,,,,, +156,3,3,3287,0,568.148,,,,,,176,102,0,,,,, +156,4,4,3288,0,568.148,1536,1,B3,,,,,,,,,, +156,5,1,3289,384,569.014,128,8,A#4,f,20,144,70,20,,,,, +156,5,1,3289,384,569.302,,,,,,144,70,0,,,,, +156,6,1,3290,512,569.302,128,8,E7,f+,21,144,100,21,,,,, +156,7,2,3291,512,569.302,,,,,,176,102,0,,,,, +156,8,3,3292,512,569.302,,,,,,176,102,0,,,,, +156,6,1,3290,512,569.591,,,,,,144,100,0,,,,, +156,9,1,3293,640,569.591,128,8,A4,f,20,144,69,20,,,,, +156,9,1,3293,640,569.879,,,,,,144,69,0,,,,, +156,10,0,3294,768,569.879,,,,,,176,64,0,,,,,^ +156,11,1,3295,768,569.879,256,4,F#2,f,20,144,42,20,,,,, +156,12,3,3296,768,569.879,,,,,,176,102,0,,,,, +156,13,3,3297,819,569.994,51,16,C2,mf+,18,144,36,18,,,,, +156,13,3,3297,819,570.109,,,,,,144,36,0,,,,, +156,14,3,3298,870,570.109,51,16,G#2,mf-,16,144,44,16,,,,, +156,14,3,3298,870,570.224,,,,,,144,44,0,,,,, +156,15,3,3299,921,570.224,51,16,A3,mp,14,144,57,14,,,,, +156,15,3,3299,921,570.339,,,,,,144,57,0,,,,, +156,16,3,3300,972,570.339,,,,,,176,102,0,,,,, +156,17,1,3301,1024,570.456,,,,,,176,102,0,,,,, +156,18,3,3302,1024,570.456,,,,,,176,102,0,,,,, +156,11,1,3295,768,570.456,,,,,,144,42,0,,,,, +156,23,3,3303,,570.958,,8,A#3,pppp,2,144,58,2,,,,g, +156,23,3,3303,,571.008,,,,,,144,58,0,,,,, +156,20,1,3304,1280,571.033,,,,,,176,102,0,,,,, +156,21,2,3305,1280,571.033,256,4,E5,ff,22,144,76,22,,,,, +156,22,2,3306,1280,571.033,256,4,A5,mf,17,144,81,17,,,,, +156,24,3,3307,1280,571.033,128,8,A2,mp,14,144,45,14,,,,, +156,25,3,3308,1280,571.033,128,8,C3,mp,14,144,48,14,,,,, +156,19,0,3309,1280,571.033,,,,,,176,64,127,,,,,V +156,26,3,3310,1408,571.321,128,8,C#1,mp+,15,144,25,15,,,,, +156,27,3,3311,1408,571.321,128,8,F3,mp+,15,144,53,15,,,,, +156,24,3,3307,1280,571.396,,,,,,144,45,0,,,,, +156,25,3,3308,1280,571.396,,,,,,144,48,0,,,,, +156,26,3,3310,1408,571.61,,,,,,144,25,0,,,,, +156,27,3,3311,1408,571.61,,,,,,144,53,0,,,,, +157,0,0,3312,0,571.61,,,,,,,,,157,,,, +157,1,1,3313,0,571.61,128,8,G4,pp,8,144,67,8,,,,, +157,2,1,3314,0,571.61,128,8,D5,pp,8,144,74,8,,,,, +157,3,2,3315,0,571.61,192,8,E5,,,,,,,,,, +157,4,3,3316,0,571.61,1024,1,D#3,p,11,144,51,11,,,,, +157,5,4,3317,0,571.61,256,4,B3,,,,,,,,,, +156,22,2,3306,1280,571.685,,,,,,144,81,0,,,,, +157,2,1,3314,0,571.898,,,,,,144,74,0,,,,, +157,6,1,3318,128,571.898,128,8,G4,,,,,,,,,, +157,7,1,3319,128,571.898,128,8,G#4,pp-,7,144,68,7,,,,, +157,8,2,3320,192,572.043,64,16,B1,ff,22,144,35,22,,,,, +156,21,2,3305,1280,572.118,,,,,,144,76,0,,,,, +157,9,0,3321,256,572.187,,,,,,176,64,0,,,,,^ +157,10,1,3322,256,572.187,,,,,,176,102,0,,,,, +157,11,2,3323,256,572.187,512,2,B1,,,,,,,,,, +157,12,4,3324,256,572.187,256,4,G3,f,20,144,55,20,,,,, +157,1,1,3313,0,572.187,,,,,,144,67,0,,,,, +157,7,1,3319,128,572.187,,,,,,144,68,0,,,,, +155,4,4,3282,768,572.337,,,,,,144,59,0,,,,, +157,13,1,3325,384,572.475,128,8,C#4,p,11,144,61,11,,,,, +157,14,1,3326,,572.689,,8,G#5,p,11,144,80,11,,,,g, +157,14,1,3326,,572.739,,,,,,144,80,0,,,,, +157,13,1,3325,384,572.764,,,,,,144,61,0,,,,, +157,15,1,3327,512,572.764,128,8,A1,p,11,144,33,11,,,,, +157,16,4,3328,512,572.764,256,4,G3,,,,,,,,,, +157,17,4,3329,512,572.764,256,4,A3,pp,8,144,57,8,,,,, +157,15,1,3327,512,573.052,,,,,,144,33,0,,,,, +157,18,1,3330,640,573.052,128,8,F2,p,11,144,41,11,,,,, +157,17,4,3329,512,573.341,,,,,,144,57,0,,,,, +157,18,1,3330,640,573.341,,,,,,144,41,0,,,,, +157,19,1,3331,768,573.341,768,2,C#4,mp,14,144,61,14,,,,, +157,20,2,3332,768,573.341,768,2,B1,,,,,,,,,, +157,21,4,3333,768,573.341,768,2,G3,,,,,,,,,, +157,22,3,3334,1024,573.918,256,4,C1,mf,17,144,24,17,,,,, +157,23,3,3335,1024,573.918,256,4,G#1,mf,17,144,32,17,,,,, +157,24,3,3336,1024,573.918,256,4,D#3,,,,,,,,,, +157,23,3,3335,1024,574.494,,,,,,144,32,0,,,,, +157,26,3,3337,1280,574.494,256,4,C1,,,,,,,,,, +157,27,3,3338,1280,574.494,256,4,D#3,,,,,,,,,, +157,25,0,3339,1280,574.494,,,,,,176,64,127,,,,,V +158,0,0,3340,0,575.071,,,,,,,,,158,,,, +158,1,1,3341,0,575.071,256,4,C#4,,,,,,,,,, +158,2,2,3342,0,575.071,256,4,B1,,,,,,,,,, +158,3,3,3343,0,575.071,256,4,C1,,,,,,,,,, +158,4,3,3344,0,575.071,256,4,D#3,,,,,,,,,, +158,5,4,3345,0,575.071,256,4,G3,,,,,,,,,, +157,19,1,3331,768,575.648,,,,,,144,61,0,,,,, +157,4,3,3316,0,575.648,,,,,,144,51,0,,,,, +157,8,2,3320,192,575.648,,,,,,144,35,0,,,,, +157,22,3,3334,1024,575.648,,,,,,144,24,0,,,,, +158,6,1,3346,256,575.648,170,4,C#5,mp,14,144,73,14,,,,, +158,7,1,3347,256,575.648,256,4,D6,mp,14,144,86,14,,,,, +158,8,2,3348,256,575.648,,,,,,176,102,0,,,,, +158,9,3,3349,256,575.648,,,,,,176,102,0,,,,, +158,10,4,3350,256,575.648,170,4,G3,,,,,,,,,, +158,11,4,3351,256,575.648,256,4,G#3,f,20,144,56,20,,,,, +158,12,0,3352,426,575.881,,,,,,176,64,0,,,,,^ +157,12,4,3324,256,576.031,,,,,,144,55,0,,,,, +158,6,1,3346,256,576.031,,,,,,144,73,0,,,,, +158,13,1,3353,426,576.031,,,,,,176,102,0,,,,, +158,14,4,3354,426,576.031,171,4,F#2,f,20,144,42,20,,,,, +158,15,4,3355,426,576.031,256,4,A2,f,20,144,45,20,,,,, +158,16,4,3356,426,576.031,256,4,F3,f,20,144,53,20,,,,, +158,17,4,3357,426,576.031,256,4,A#3,f,20,144,58,20,,,,, +158,12,0,3358,426,576.181,,,,,,176,64,127,,,,,V +158,7,1,3347,256,576.225,,,,,,144,86,0,,,,, +158,11,4,3351,256,576.225,,,,,,144,56,0,,,,, +158,18,2,3359,512,576.225,,,,,,176,102,0,,,,, +158,,,3360,607,576.289,,,,,,176,64,0,,,,,^ +158,14,4,3354,426,576.417,,,,,,144,42,0,,,,, +158,19,1,3361,597,576.417,85,8,G#4,mp,14,144,68,14,,,,, +158,20,4,3362,597,576.417,171,4,E2,f-,19,144,40,19,,,,, +158,21,4,3363,597,576.417,256,4,A#2,f-,19,144,46,19,,,,, +158,22,4,3364,597,576.417,256,4,E3,f-,19,144,52,19,,,,, +158,,,3365,607,576.589,,,,,,176,64,127,,,,,V +158,23,1,3366,682,576.608,86,8,F2,mp+,15,144,41,15,,,,, +158,15,4,3355,426,576.608,,,,,,144,45,0,,,,, +158,16,4,3356,426,576.608,,,,,,144,53,0,,,,, +158,17,4,3357,426,576.608,,,,,,144,58,0,,,,, +158,19,1,3361,597,576.608,,,,,,144,68,0,,,,, +158,23,1,3366,682,576.802,,,,,,144,41,0,,,,, +158,24,1,3367,768,576.802,256,4,B6,mf,17,144,95,17,,,,, +158,25,2,3368,768,576.802,192,8,D4,mf,17,144,62,17,,,,, +158,26,2,3369,768,576.802,128,8,E6,mf,17,144,88,17,,,,, +158,27,3,3370,768,576.802,,,,,,176,102,0,,,,, +158,28,4,3371,768,576.802,192,8,F#3,f-,19,144,54,19,,,,, +158,20,4,3362,597,576.802,,,,,,144,40,0,,,,, +158,29,0,3372,814,576.906,,,,,,176,64,0,,,,,^ +158,21,4,3363,597,576.994,,,,,,144,46,0,,,,, +158,22,4,3364,597,576.994,,,,,,144,52,0,,,,, +158,26,2,3369,768,577.091,,,,,,144,88,0,,,,, +158,25,2,3368,768,577.235,,,,,,144,62,0,,,,, +158,28,4,3371,768,577.235,,,,,,144,54,0,,,,, +158,30,2,3373,960,577.235,,,,,,176,102,0,,,,, +158,31,4,3374,960,577.235,64,16,A#2,ff,22,144,46,22,,,,, +158,32,4,3375,960,577.235,64,16,C#3,ff,22,144,49,22,,,,, +158,24,1,3367,768,577.379,,,,,,144,95,0,,,,, +158,33,1,3376,1024,577.379,,,,,,176,102,0,,,,, +158,34,2,3377,1024,577.379,,,,,,176,102,0,,,,, +158,35,4,3378,1024,577.379,128,8,A#2,,,,,,,,,, +158,36,4,3379,1024,577.379,128,8,C#3,,,,,,,,,, +158,37,0,3380,1024,577.379,,,,,,,,,,5960,,, +158,31,4,3374,960,577.668,,,,,,144,46,0,,,,, +158,32,4,3375,960,577.668,,,,,,144,49,0,,,,, +158,38,4,3381,1152,577.668,128,8,A0,ff+,23,144,21,23,,,,, +159,0,0,3382,0,577.956,,,,,,,,,159,,,, +159,1,1,3383,0,577.956,,,,,,176,102,0,,,,, +159,2,3,3384,0,577.956,512,2,B3,p,11,144,59,11,,,,, +159,3,4,3385,0,577.956,1024,1,A0,,,,,,,,,, +159,4,3,3386,512,579.11,128,8,B3,,,,,,,,,, +159,2,3,3384,0,579.398,,,,,,144,59,0,,,,, +159,6,3,3387,640,579.398,128,8,A2,mf,17,144,45,17,,,,, +159,7,3,3388,640,579.398,128,8,G3,pp,8,144,55,8,,,,, +159,5,0,3389,640,579.398,,,,,,176,64,127,,,,,V +159,8,3,3390,768,579.687,256,4,A2,,,,,,,,,, +159,9,3,3391,768,579.687,256,4,G3,,,,,,,,,, +159,6,3,3387,640,580.264,,,,,,144,45,0,,,,, +159,7,3,3388,640,580.264,,,,,,144,55,0,,,,, +160,0,0,3392,0,580.264,,,,,,,,,160,,,, +160,1,1,3393,0,580.264,64,16,G#3,p,11,144,56,11,,,,, +160,2,2,3394,0,580.264,1024,1,A6,mf,17,144,93,17,,,,, +160,3,3,3395,0,580.264,,,,,,176,102,0,,,,, +160,4,4,3396,0,580.264,1024,1,A0,,,,,,,,,, +160,1,1,3393,0,580.408,,,,,,144,56,0,,,,, +160,5,1,3397,64,580.408,64,16,A1,mp-,13,144,33,13,,,,, +160,5,1,3397,64,580.552,,,,,,144,33,0,,,,, +160,6,1,3398,128,580.552,64,16,D4,mp,14,144,62,14,,,,, +160,6,1,3398,128,580.696,,,,,,144,62,0,,,,, +160,7,1,3399,192,580.696,64,16,C5,mf-,16,144,72,16,,,,, +160,8,0,3400,256,580.763,,,,,,176,64,0,,,,,^ +160,7,1,3399,192,580.841,,,,,,144,72,0,,,,, +160,9,1,3401,256,580.841,64,16,E3,mf,17,144,52,17,,,,, +160,9,1,3401,256,580.985,,,,,,144,52,0,,,,, +160,11,1,3402,320,580.985,64,16,A1,f-,19,144,33,19,,,,, +160,10,0,3403,320,581.063,,,,,,176,64,127,,,,,V +160,11,1,3402,320,581.129,,,,,,144,33,0,,,,, +160,12,1,3404,384,581.129,64,16,G#4,f,20,144,68,20,,,,, +160,12,1,3404,384,581.273,,,,,,144,68,0,,,,, +160,13,1,3405,448,581.273,64,16,C6,ff,22,144,84,22,,,,, +160,14,0,3406,512,581.418,,,,,,176,64,0,,,,,^ +160,15,1,3407,512,581.418,512,2,C6,,,,,,,,,, +161,0,0,3408,0,582.571,,,,,,,,,161,,,, +161,1,1,3409,0,582.571,256,4,C6,,,,,,,,,, +161,2,3,3410,0,582.571,,,,,,176,102,0,,,,, +161,3,4,3411,0,582.571,1024,1,A0,,,,,,,,,, +160,2,2,3394,0,582.571,,,,,,144,93,0,,,,, +161,4,1,3412,,582.773,,8,E5,fff,24,144,76,23,,,,g, +161,4,1,3412,,582.823,,,,,,144,76,0,,,,, +161,5,1,3413,,582.848,,8,G#4,fff,24,144,68,23,,,,g, +161,5,1,3413,,582.898,,,,,,144,68,0,,,,, +161,6,1,3414,,582.923,,8,A2,fff,24,144,45,23,,,,g, +161,6,1,3414,,582.973,,,,,,144,45,0,,,,, +161,7,1,3415,,582.998,,8,D6,fff,24,144,86,23,,,,g, +161,7,1,3415,,583.048,,,,,,144,86,0,,,,, +161,8,1,3416,,583.073,,8,G#4,fff,24,144,68,23,,,,g, +161,8,1,3416,,583.123,,,,,,144,68,0,,,,, +160,13,1,3405,448,583.148,,,,,,144,84,0,,,,, +161,9,1,3417,256,583.148,,,,,,176,102,0,,,,, +162,0,0,3418,0,584.879,,,,,,,,,162,,,, +162,1,1,3419,0,584.879,1024,1,F4,f,20,144,65,20,,,,, +162,2,1,3420,0,584.879,1024,1,C#6,f,20,144,85,20,,,,, +162,3,3,3421,0,584.879,,,,,,176,102,0,,,,, +162,4,4,3422,0,584.879,1024,1,A0,,,,,,,,,, +162,2,1,3420,0,587.187,,,,,,144,85,0,,,,, +163,0,0,3423,0,587.187,,,,,,,,,163,,,, +163,1,1,3424,0,587.187,192,8,F4,,,,,,,,,, +163,2,2,3425,0,587.187,,,,,,176,102,0,,,,, +163,3,3,3426,0,587.187,,,,,,176,102,0,,,,, +163,4,4,3427,0,587.187,1024,1,A0,,,,,,,,,, +163,5,1,3428,192,587.619,64,16,A#3,f+,21,144,58,21,,,,, +162,1,1,3419,0,587.619,,,,,,144,65,0,,,,, +163,6,1,3429,256,587.764,512,2,A#3,,,,,,,,,, +163,7,2,3430,256,587.764,,,,,,176,102,0,,,,, +163,8,3,3431,256,587.764,256,4,E4,ff,22,144,64,22,,,,, +163,9,2,3432,448,588.196,64,16,C5,p,11,144,72,11,,,,, +163,10,2,3433,512,588.341,128,8,C5,,,,,,,,,, +163,11,3,3434,512,588.341,128,8,E4,,,,,,,,,, +163,9,2,3432,448,588.629,,,,,,144,72,0,,,,, +163,12,2,3435,640,588.629,,,,,,176,102,0,,,,, +163,13,3,3436,640,588.629,21,32,G#3,mf,17,144,56,17,,,,, +163,8,3,3431,256,588.629,,,,,,144,64,0,,,,, +163,13,3,3436,640,588.676,,,,,,144,56,0,,,,, +163,14,3,3437,661,588.676,21,32,A1,fff,24,144,33,23,,,,, +163,15,3,3438,682,588.724,86,8,A1,,,,,,,,,, +163,16,1,3439,768,588.918,256,4,C2,ff,22,144,36,22,,,,, +163,17,2,3440,768,588.918,,,,,,176,102,0,,,,, +163,18,3,3441,768,588.918,85,8,A1,,,,,,,,,, +163,5,1,3428,192,588.918,,,,,,144,58,0,,,,, +163,14,3,3437,661,589.109,,,,,,144,33,0,,,,, +163,19,2,3442,853,589.109,21,32,C7,f,20,144,96,20,,,,, +163,20,3,3443,853,589.109,,,,,,176,102,0,,,,, +163,19,2,3442,853,589.156,,,,,,144,96,0,,,,, +163,21,2,3444,874,589.156,22,32,D5,mp-,13,144,74,13,,,,, +163,21,2,3444,874,589.206,,,,,,144,74,0,,,,, +163,22,2,3445,896,589.206,128,8,E4,pp,8,144,64,8,,,,, +163,22,2,3445,896,589.494,,,,,,144,64,0,,,,, +164,0,0,3446,0,589.494,,,,,,,,,164,,,, +164,1,1,3447,0,589.494,768,2,C2,,,,,,,,,, +164,2,2,3448,0,589.494,,,,,,176,102,0,,,,, +164,3,3,3449,0,589.494,,,,,,176,102,0,,,,, +164,4,4,3450,0,589.494,512,2,A0,,,,,,,,,, +164,5,4,3451,0,589.494,512,2,A#3,f,20,144,58,20,,,,, +164,6,2,3452,256,590.071,256,4,C5,mp,14,144,72,14,,,,, +164,7,3,3453,256,590.071,256,4,F2,pp,8,144,41,8,,,,, +164,5,4,3451,0,590.648,,,,,,144,58,0,,,,, +164,8,2,3454,512,590.648,64,16,C5,,,,,,,,,, +164,9,3,3455,512,590.648,64,16,F2,,,,,,,,,, +164,10,4,3456,512,590.648,64,16,A0,,,,,,,,,, +164,11,4,3457,512,590.648,64,16,E1,f,20,144,28,20,,,,, +164,6,2,3452,256,590.793,,,,,,144,72,0,,,,, +164,7,3,3453,256,590.793,,,,,,144,41,0,,,,, +164,11,4,3457,512,590.793,,,,,,144,28,0,,,,, +164,12,2,3458,576,590.793,,,,,,176,102,0,,,,, +164,13,3,3459,576,590.793,192,8,C#3,p,11,144,49,11,,,,, +164,14,4,3460,576,590.793,192,8,A0,,,,,,,,,, +164,13,3,3459,576,591.225,,,,,,144,49,0,,,,, +164,15,1,3461,768,591.225,85,8,C2,,,,,,,,,, +164,16,2,3462,768,591.225,,,,,,176,102,0,,,,, +164,17,3,3463,768,591.225,,,,,,176,102,0,,,,, +164,18,4,3464,768,591.225,256,4,A0,,,,,,,,,, +163,16,1,3439,768,591.417,,,,,,144,36,0,,,,, +164,19,1,3465,853,591.417,171,4,A#4,ff,22,144,70,22,,,,, +164,21,3,3466,896,591.514,128,8,E4,p,11,144,64,11,,,,, +164,20,0,3467,896,591.514,,,,,,176,64,127,,,,,V +165,0,0,3468,0,591.802,,,,,,,,,165,,,, +165,2,1,3469,0,591.802,1024,1,A#4,,,,,,,,,, +165,1,1,3470,,591.802,,8,E6,p,11,144,88,11,,,,g, +165,1,1,3470,,591.852,,,,,,144,88,0,,,,, +165,3,1,3471,0,591.877,1024,1,F5,p,11,144,77,11,,,,, +165,4,3,3472,0,591.877,1024,1,E4,,,,,,,,,, +165,5,4,3473,0,591.877,256,4,A0,,,,,,,,,, +165,6,4,3474,256,592.454,768,2,A0,,,,,,,,,, +165,7,4,3475,256,592.454,512,2,D2,ff,22,144,38,22,,,,, +164,21,3,3466,896,594.11,,,,,,144,64,0,,,,, +165,3,1,3471,0,594.185,,,,,,144,77,0,,,,, +166,0,0,3476,0,594.185,,,,,,,,,166,,,, +166,1,1,3477,0,594.185,512,2,A#4,,,,,,,,,, +166,2,2,3478,0,594.185,,,,,,176,102,0,,,,, +166,3,3,3479,0,594.185,,,,,,176,102,0,,,,, +166,4,4,3480,0,594.185,1024,1,A0,,,,,,,,,, +166,5,4,3481,0,594.185,1024,1,D2,,,,,,,,,, +166,6,1,3482,512,595.339,768,2,A#4,,,,,,,,,, +166,7,2,3483,512,595.339,512,2,B4,mf,17,144,71,17,,,,, +166,8,3,3484,512,595.339,,,,,,176,102,0,,,,, +166,10,3,3485,,596.343,,8,A#4,p,11,144,70,11,,,,g, +166,10,3,3485,,596.393,,,,,,144,70,0,,,,, +166,11,3,3486,,596.418,,8,F#2,p,11,144,42,11,,,,g, +166,11,3,3486,,596.468,,,,,,144,42,0,,,,, +166,9,2,3487,1024,596.493,42,16,B4,,,,,,,,,, +166,12,3,3488,1024,596.493,,,,,,176,102,0,,,,, +166,13,4,3489,1024,596.493,256,4,A0,,,,,,,,,, +166,14,4,3490,1024,596.493,256,4,D2,,,,,,,,,, +166,16,0,3491,1109,596.534,,,,,,176,64,0,,,,,^ +166,7,2,3483,512,596.587,,,,,,144,71,0,,,,, +166,15,2,3492,1066,596.587,,,,,,176,102,0,,,,, +166,18,2,3493,1109,596.684,,,,,,176,102,0,,,,, +166,19,3,3494,1109,596.684,171,4,A0,mf,17,144,21,17,,,,, +166,20,3,3495,1109,596.684,256,4,G#1,p,11,144,32,11,,,,, +166,21,0,3496,1109,596.684,,,,,,,,,,5961,,, +166,17,0,3497,1109,596.834,,,,,,176,64,127,,,,,V +166,19,3,3494,1109,597.069,,,,,,144,21,0,,,,, +167,0,0,3498,0,597.069,,,,,,,,,167,,,, +167,1,1,3499,0,597.069,512,2,A#4,,,,,,,,,, +167,2,2,3500,0,597.069,,,,,,176,102,0,,,,, +167,3,3,3501,0,597.069,256,4,G#1,,,,,,,,,, +167,4,4,3502,0,597.069,1024,1,A0,,,,,,,,,, +167,5,4,3503,0,597.069,1024,1,D2,,,,,,,,,, +167,6,2,3504,256,597.646,,,,,,176,102,0,,,,, +167,7,3,3505,256,597.646,170,4,G#1,,,,,,,,,, +167,8,0,3506,426,597.88,,,,,,176,64,0,,,,,^ +167,9,2,3507,426,598.03,86,8,A#4,mf,17,144,70,17,,,,, +167,10,3,3508,426,598.03,86,8,G1,mf,17,144,31,17,,,,, +167,8,0,3509,426,598.18,,,,,,176,64,127,,,,,V +166,20,3,3495,1109,598.221,,,,,,144,32,0,,,,, +167,9,2,3507,426,598.223,,,,,,144,70,0,,,,, +167,11,1,3510,512,598.223,768,2,A#4,,,,,,,,,, +167,12,2,3511,512,598.223,,,,,,176,102,0,,,,, +167,13,3,3512,512,598.223,512,2,G1,,,,,,,,,, +165,7,4,3475,256,599.089,,,,,,144,38,0,,,,, +167,14,2,3513,,599.227,,8,F6,mp,14,144,89,14,,,,g, +167,14,2,3513,,599.277,,,,,,144,89,0,,,,, +167,15,2,3514,,599.302,,8,C4,mf,17,144,60,17,,,,g, +167,15,2,3514,,599.352,,,,,,144,60,0,,,,, +167,10,3,3508,426,599.377,,,,,,144,31,0,,,,, +167,16,2,3515,1024,599.377,256,4,A#5,f,20,144,82,20,,,,, +167,17,3,3516,1024,599.377,256,4,D#3,f,20,144,51,20,,,,, +167,18,4,3517,1024,599.377,128,8,A0,,,,,,,,,, +167,19,4,3518,1024,599.377,128,8,D2,,,,,,,,,, +167,20,0,3519,1152,599.516,,,,,,176,64,0,,,,,^ +167,21,4,3520,1152,599.666,128,8,A0,,,,,,,,,, +167,22,4,3521,1152,599.666,128,8,F#1,f-,19,144,30,19,,,,, +167,20,0,3522,1152,599.816,,,,,,176,64,127,,,,,V +167,22,4,3521,1152,599.954,,,,,,144,30,0,,,,, +168,0,0,3523,0,599.954,,,,,,,,,168,,,, +168,1,1,3524,0,599.954,2048,0.5,A#4,,,,,,,,,, +168,2,2,3525,0,599.954,1024,1,G#4,ppp,5,144,68,5,,,,, +168,3,2,3526,0,599.954,1024,1,A#5,,,,,,,,,, +168,4,3,3527,0,599.954,512,2,D#3,,,,,,,,,, +168,5,4,3528,0,599.954,2048,0.5,A0,,,,,,,,,, +168,6,3,3529,512,601.108,128,8,D#3,,,,,,,,,, +168,7,3,3530,640,601.396,128,8,D#3,,,,,,,,,, +168,8,3,3531,640,601.396,128,8,F3,f,20,144,53,20,,,,, +168,9,3,3532,768,601.685,170,4,D#3,,,,,,,,,, +168,10,3,3533,768,601.685,256,4,F3,,,,,,,,,, +168,11,3,3534,938,602.068,86,8,B4,mf,17,144,71,17,,,,, +167,17,3,3516,1024,602.143,,,,,,144,51,0,,,,, +168,8,3,3531,640,602.262,,,,,,144,53,0,,,,, +168,11,3,3534,938,602.262,,,,,,144,71,0,,,,, +168,12,2,3535,1024,602.262,256,4,G#4,,,,,,,,,, +168,13,3,3536,1024,602.262,,,,,,176,102,0,,,,, +167,16,2,3515,1024,602.337,,,,,,144,82,0,,,,, +168,14,3,3537,1109,602.453,85,8,A0,f,20,144,21,20,,,,, +168,15,0,3538,1194,602.495,,,,,,176,64,0,,,,,^ +168,14,3,3537,1109,602.645,,,,,,144,21,0,,,,, +168,16,3,3539,1194,602.645,86,8,E6,ff,22,144,88,22,,,,, +168,15,0,3540,1194,602.795,,,,,,176,64,127,,,,,V +168,17,2,3541,1280,602.839,,,,,,176,102,0,,,,, +168,18,3,3542,1280,602.839,170,4,E6,,,,,,,,,, +168,2,2,3525,0,602.914,,,,,,144,68,0,,,,, +168,16,3,3539,1194,603.222,,,,,,144,88,0,,,,, +168,19,3,3543,1450,603.222,86,8,G1,mf,17,144,31,17,,,,, +168,19,3,3543,1450,603.416,,,,,,144,31,0,,,,, +168,,,3544,1536,603.416,,,,,,176,64,0,,,,,^ +168,20,2,3545,1536,603.416,,,,,,176,102,0,,,,, +168,21,3,3546,1536,603.416,,,,,,176,102,0,,,,, +168,22,2,3547,1706,603.799,86,8,E5,mf,17,144,76,17,,,,, +168,22,2,3547,1706,603.993,,,,,,144,76,0,,,,, +168,23,2,3548,1792,603.993,170,4,B3,mp,14,144,59,14,,,,, +168,23,2,3548,1792,604.376,,,,,,144,59,0,,,,, +168,24,2,3549,1962,604.376,,,,,,176,102,0,,,,, +169,0,0,3550,0,604.569,,,,,,,,,169,,,, +169,1,1,3551,0,604.569,768,2,A#4,,,,,,,,,, +169,2,2,3552,0,604.569,,,,,,176,102,0,,,,, +169,3,3,3553,0,604.569,,,,,,176,102,0,,,,, +169,4,4,3554,0,604.569,2048,0.5,A0,,,,,,,,,, +169,5,2,3555,256,605.146,,,,,,176,102,0,,,,, +169,7,2,3556,426,605.53,29,32,G#2,f,20,144,44,20,,,,, +169,8,2,3557,426,605.53,32,32,A#3,f,20,144,58,20,,,,, +169,6,0,3558,426,605.53,,,,,,176,64,127,,,,,V +169,7,2,3556,426,605.595,,,,,,144,44,0,,,,, +169,9,2,3559,455,605.595,28,32,C4,f,20,144,60,20,,,,, +169,8,2,3557,426,605.602,,,,,,144,58,0,,,,, +169,9,2,3559,455,605.658,,,,,,144,60,0,,,,, +169,10,2,3560,483,605.658,29,32,E7,f,20,144,100,20,,,,, +169,10,2,3560,483,605.723,,,,,,144,100,0,,,,, +169,11,2,3561,512,605.723,32,32,A#5,f,20,144,82,20,,,,, +169,11,2,3561,512,605.795,,,,,,144,82,0,,,,, +169,12,0,3562,544,605.795,,,,,,176,64,0,,,,,^ +169,13,2,3563,544,605.795,,,,,,176,102,0,,,,, +169,14,1,3564,768,606.3,170,4,A#4,,,,,,,,,, +169,15,2,3565,768,606.3,,,,,,176,102,0,,,,, +164,19,1,3465,853,606.683,,,,,,144,70,0,,,,, +169,16,1,3566,938,606.683,342,2,D6,mp,14,144,86,14,,,,, +169,17,2,3567,1024,606.877,,,,,,176,102,0,,,,, +169,18,3,3568,1024,606.877,,,,,,176,102,0,,,,, +169,19,1,3569,1280,607.454,85,8,D6,,,,,,,,,, +169,20,3,3570,1280,607.454,,,,,,176,102,0,,,,, +169,16,1,3566,938,607.646,,,,,,144,86,0,,,,, +169,21,1,3571,1365,607.646,85,8,C3,pp,8,144,48,8,,,,, +169,22,3,3572,1365,607.646,171,4,A#2,ppp,5,144,46,5,,,,, +169,21,1,3571,1365,607.837,,,,,,144,48,0,,,,, +169,23,1,3573,1450,607.837,,,,,,176,102,0,,,,, +169,22,3,3572,1365,608.031,,,,,,144,46,0,,,,, +169,24,1,3574,1536,608.031,42,16,B4,f,20,144,71,20,,,,, +169,25,1,3575,1536,608.031,64,16,A#5,f,20,144,82,20,,,,, +169,26,1,3576,1536,608.031,64,16,C#6,f,20,144,85,20,,,,, +169,27,3,3577,1536,608.031,42,16,E4,pppp,2,144,64,2,,,,, +169,24,1,3574,1536,608.126,,,,,,144,71,0,,,,, +169,27,3,3577,1536,608.126,,,,,,144,64,0,,,,, +169,28,1,3578,1578,608.126,,,,,,176,102,0,,,,, +169,29,3,3579,1578,608.126,43,16,F#3,pp,8,144,54,8,,,,, +169,25,1,3575,1536,608.175,,,,,,144,82,0,,,,, +169,26,1,3576,1536,608.175,,,,,,144,85,0,,,,, +169,29,3,3579,1578,608.223,,,,,,144,54,0,,,,, +169,30,3,3580,1621,608.223,43,16,C4,pp-,7,144,60,7,,,,, +169,30,3,3580,1621,608.319,,,,,,144,60,0,,,,, +169,31,1,3581,1664,608.319,,,,,,176,102,0,,,,, +169,32,3,3582,1664,608.319,,,,,,176,102,0,,,,, +169,33,1,3583,1792,608.608,,,,,,176,102,0,,,,, +169,34,2,3584,1792,608.608,256,4,E4,p,11,144,64,11,,,,, +169,35,2,3585,1792,608.608,256,4,A#4,p,11,144,70,11,,,,, +169,36,3,3586,,608.608,,8,F#2,pp-,7,144,42,7,,,,g, +169,36,3,3586,,608.658,,,,,,144,42,0,,,,, +169,37,3,3587,,608.683,,8,G3,pp,8,144,55,8,,,,g, +169,37,3,3587,,608.733,,,,,,144,55,0,,,,, +169,38,3,3588,1792,608.758,256,4,G#1,p,11,144,32,11,,,,, +170,0,0,3589,0,609.335,,,,,,,,,170,,,, +170,1,1,3590,0,609.335,,,,,,176,102,0,,,,, +170,2,2,3591,0,609.335,512,2,E4,,,,,,,,,, +170,3,2,3592,0,609.335,512,2,A#4,,,,,,,,,, +170,4,3,3593,0,609.335,512,2,G#1,,,,,,,,,, +170,5,4,3594,0,609.335,2048,0.5,A0,,,,,,,,,, +170,6,2,3595,512,610.489,85,8,E4,,,,,,,,,, +170,7,2,3596,512,610.489,128,8,A#4,,,,,,,,,, +170,8,3,3597,512,610.489,85,8,G#1,,,,,,,,,, +169,34,2,3584,1792,610.53,,,,,,144,64,0,,,,, +169,35,2,3585,1792,610.627,,,,,,144,70,0,,,,, +170,9,2,3598,597,610.68,128,8,D6,ppp,5,144,86,5,,,,, +170,10,3,3599,597,610.68,21,32,G#1,,,,,,,,,, +170,11,3,3600,597,610.68,32,32,B1,pp,8,144,35,8,,,,, +170,12,3,3601,618,610.728,22,32,F#1,pp,8,144,30,8,,,,, +170,13,3,3602,618,610.728,32,32,G#1,,,,,,,,,, +170,11,3,3600,597,610.752,,,,,,144,35,0,,,,, +170,12,3,3601,618,610.777,,,,,,144,30,0,,,,, +170,14,3,3603,640,610.777,128,8,G#1,,,,,,,,,, +170,9,2,3598,597,610.969,,,,,,144,86,0,,,,, +170,15,2,3604,725,610.969,43,16,G4,pppp,2,144,67,2,,,,, +170,16,2,3605,768,611.066,170,4,G4,,,,,,,,,, +170,17,3,3606,768,611.066,85,8,G#1,,,,,,,,,, +170,18,3,3607,853,611.257,171,4,C3,mf,17,144,48,17,,,,, +169,38,3,3588,1792,611.28,,,,,,144,32,0,,,,, +170,15,2,3604,725,611.449,,,,,,144,67,0,,,,, +170,19,2,3608,938,611.449,86,8,F#3,p,11,144,54,11,,,,, +170,18,3,3607,853,611.643,,,,,,144,48,0,,,,, +170,20,1,3609,1024,611.643,,,,,,176,102,0,,,,, +170,21,2,3610,1024,611.643,256,4,F#3,,,,,,,,,, +170,22,3,3611,1024,611.643,,,,,,176,102,0,,,,, +170,23,1,3612,1109,611.834,171,4,F6,ff,22,144,89,22,,,,, +170,24,1,3613,1280,612.219,85,8,F6,,,,,,,,,, +170,25,2,3614,1280,612.219,85,8,F#3,,,,,,,,,, +170,19,2,3608,938,612.411,,,,,,144,54,0,,,,, +170,23,1,3612,1109,612.411,,,,,,144,89,0,,,,, +170,26,1,3615,1365,612.411,171,4,B5,f-,19,144,83,19,,,,, +170,27,2,3616,1365,612.411,,,,,,176,102,0,,,,, +170,28,2,3617,1450,612.603,86,8,C4,mf,17,144,60,17,,,,, +170,26,1,3615,1365,612.796,,,,,,144,83,0,,,,, +170,28,2,3617,1450,612.796,,,,,,144,60,0,,,,, +170,29,1,3618,1536,612.796,,,,,,176,102,0,,,,, +170,30,2,3619,1536,612.796,,,,,,176,102,0,,,,, +170,32,3,3620,,613.223,,8,G3,pp,8,144,55,8,,,,g, +170,32,3,3620,,613.273,,,,,,144,55,0,,,,, +170,33,3,3621,,613.298,,8,C3,pp,8,144,48,8,,,,g, +170,33,3,3621,,613.348,,,,,,144,48,0,,,,, +170,31,1,3622,1792,613.373,256,4,F5,mf,17,144,77,17,,,,, +170,34,3,3623,1792,613.373,256,4,A#3,pp,8,144,58,8,,,,, +171,0,0,3624,0,613.95,,,,,,,,,171,,,, +171,1,1,3625,0,613.95,256,4,F5,,,,,,,,,, +171,2,2,3626,0,613.95,,,,,,176,102,0,,,,, +171,3,3,3627,0,613.95,256,4,A#3,,,,,,,,,, +171,4,4,3628,0,613.95,2048,0.5,A0,,,,,,,,,, +170,34,3,3623,1792,614.527,,,,,,144,58,0,,,,, +171,5,1,3629,256,614.527,170,4,F5,,,,,,,,,, +171,6,2,3630,256,614.527,,,,,,176,102,0,,,,, +171,7,3,3631,256,614.527,,,,,,176,102,0,,,,, +171,8,3,3632,341,614.719,,,,,,176,102,0,,,,, +171,9,2,3633,384,614.816,42,16,G5,mp,14,144,79,14,,,,, +171,10,2,3634,384,614.816,64,16,A5,f,20,144,81,20,,,,, +170,31,1,3622,1792,614.91,,,,,,144,77,0,,,,, +171,9,2,3633,384,614.91,,,,,,144,79,0,,,,, +171,11,1,3635,426,614.91,,,,,,176,102,0,,,,, +171,12,2,3636,426,614.91,43,16,G#4,f,20,144,68,20,,,,, +171,13,2,3637,426,614.91,64,16,B4,f,20,144,71,20,,,,, +171,14,3,3638,426,614.91,43,16,E3,f,20,144,52,20,,,,, +171,15,3,3639,426,614.91,64,16,C4,pp,8,144,60,8,,,,, +171,10,2,3634,384,614.96,,,,,,144,81,0,,,,, +171,12,2,3636,426,615.007,,,,,,144,68,0,,,,, +171,14,3,3638,426,615.007,,,,,,144,52,0,,,,, +171,16,2,3640,469,615.007,43,16,E6,pp,8,144,88,8,,,,, +171,17,3,3641,469,615.007,43,16,C#2,pp,8,144,37,8,,,,, +171,13,2,3637,426,615.055,,,,,,144,71,0,,,,, +171,15,3,3639,426,615.055,,,,,,144,60,0,,,,, +171,16,2,3640,469,615.104,,,,,,144,88,0,,,,, +171,18,1,3642,512,615.104,,,,,,176,102,0,,,,, +171,19,2,3643,512,615.104,,,,,,176,102,0,,,,, +171,20,3,3644,512,615.104,1024,1,C#2,,,,,,,,,, +171,22,1,3645,1536,617.412,512,2,A7,f,20,144,105,20,,,,, +171,23,3,3646,1536,617.412,512,2,C#2,,,,,,,,,, +171,24,3,3647,1536,617.412,512,2,G#2,ppp,5,144,44,5,,,,, +171,21,0,3648,1536,617.412,,,,,,176,64,127,,,,,V +172,0,0,3649,0,618.566,,,,,,,,,172,,,, +172,1,1,3650,0,618.566,,,,,,176,102,0,,,,, +172,2,3,3651,0,618.566,2048,0.5,G#2,,,,,,,,,, +172,3,4,3652,0,618.566,2048,0.5,A0,,,,,,,,,, +171,17,3,3641,469,618.716,,,,,,144,37,0,,,,, +171,22,1,3645,1536,618.716,,,,,,144,105,0,,,,, +172,4,1,3653,768,620.296,256,4,C#7,p,11,144,97,11,,,,, +172,5,1,3654,1024,620.873,1024,1,C#7,,,,,,,,,, +172,4,1,3653,768,623.181,,,,,,144,97,0,,,,, +173,0,0,3655,0,623.181,,,,,,,,,173,,,, +173,1,0,3656,0,623.181,,,,,,176,64,0,,,,,^ +173,2,1,3657,0,623.181,,,,,,176,102,0,,,,, +173,3,2,3658,0,623.181,,,,,,176,102,0,,,,, +173,4,3,3659,0,623.181,128,8,E2,pppp,2,144,40,2,,,,, +173,5,3,3660,0,623.181,128,8,C4,pppp,2,144,60,2,,,,, +173,6,4,3661,0,623.181,1536,1,A0,,,,,,,,,, +173,7,0,3662,0,623.181,,,,,,,,,,5962,,, +171,24,3,3647,1536,623.331,,,,,,144,44,0,,,,, +173,4,3,3659,0,623.469,,,,,,144,40,0,,,,, +173,5,3,3660,0,623.469,,,,,,144,60,0,,,,, +173,8,1,3663,,623.469,,8,F4,p,11,144,65,11,,,,g, +173,8,1,3663,,623.519,,,,,,144,65,0,,,,, +173,9,1,3664,,623.544,,8,D3,p,11,144,50,11,,,,g, +173,9,1,3664,,623.594,,,,,,144,50,0,,,,, +173,10,1,3665,128,623.619,128,8,C#5,mp,14,144,73,14,,,,, +173,11,3,3666,128,623.619,,,,,,176,102,0,,,,, +173,12,1,3667,256,623.908,1024,1,C#5,,,,,,,,,, +173,13,3,3668,256,623.908,,,,,,176,102,0,,,,, +173,14,3,3669,512,624.485,,,,,,176,102,0,,,,, +173,15,1,3670,1280,626.216,64,16,C#5,,,,,,,,,, +173,10,1,3665,128,626.36,,,,,,144,73,0,,,,, +173,16,1,3671,1344,626.36,192,8,F#1,ppp,5,144,30,5,,,,, +173,16,1,3671,1344,626.793,,,,,,144,30,0,,,,, +173,20,1,3672,1536,626.793,,,,,,176,102,0,,,,, +173,17,1,3673,,626.793,,8,G5,p,11,144,79,11,,,,g, +173,17,1,3673,,626.843,,,,,,144,79,0,,,,, +173,18,1,3674,,626.868,,8,C4,mp,14,144,60,14,,,,g, +173,19,1,3675,,626.868,,8,A6,mp,14,144,93,14,,,,g, +173,18,1,3674,,626.918,,,,,,144,60,0,,,,, +173,19,1,3675,,626.918,,,,,,144,93,0,,,,, +173,21,3,3676,1536,627.018,256,4,E3,mf,17,144,52,17,,,,, +173,22,4,3677,1536,627.018,256,4,A0,,,,,,,,,, +173,23,4,3678,1536,627.018,256,4,A#2,mf,17,144,46,17,,,,, +158,38,4,3381,1152,627.219,,,,,,144,21,0,,,,, +173,21,3,3676,1536,627.594,,,,,,144,52,0,,,,, +173,24,1,3679,1792,627.594,64,16,F1,ppp,5,144,29,5,,,,, +173,25,2,3680,1792,627.594,64,16,D1,ppp,5,144,26,5,,,,, +173,26,3,3681,,627.594,,8,G4,p,11,144,67,11,,,,g, +173,26,3,3681,,627.644,,,,,,144,67,0,,,,, +173,27,3,3682,,627.669,,8,C#3,p,11,144,49,11,,,,g, +173,27,3,3682,,627.719,,,,,,144,49,0,,,,, +173,25,2,3680,1792,627.739,,,,,,144,26,0,,,,, +173,28,3,3683,1792,627.744,32,32,G#1,mp,14,144,32,14,,,,, +173,29,4,3684,1792,627.744,256,4,A#2,,,,,,,,,, +173,28,3,3683,1792,627.817,,,,,,144,32,0,,,,, +173,30,3,3685,1824,627.817,32,32,G#3,p,11,144,56,11,,,,, +173,30,3,3685,1824,627.889,,,,,,144,56,0,,,,, +173,31,1,3686,1856,627.889,96,16,F1,,,,,,,,,, +173,32,2,3687,1856,627.889,64,16,C#1,p,11,144,25,11,,,,, +173,33,3,3688,1856,627.889,192,8,F2,p,11,144,41,11,,,,, +173,24,1,3679,1792,627.955,,,,,,144,29,0,,,,, +173,32,2,3687,1856,628.033,,,,,,144,25,0,,,,, +173,34,2,3689,1920,628.033,,,,,,176,102,0,,,,, +173,35,1,3690,1952,628.105,96,16,F#3,pp,8,144,54,8,,,,, +174,0,0,3691,0,628.321,,,,,,,,,174,,,, +174,1,1,3692,0,628.321,64,16,F#3,,,,,,,,,, +174,2,2,3693,0,628.321,,,,,,176,102,0,,,,, +174,3,3,3694,0,628.321,64,16,F2,,,,,,,,,, +174,4,4,3695,0,628.321,512,2,A#2,,,,,,,,,, +173,35,1,3690,1952,628.466,,,,,,144,54,0,,,,, +174,5,1,3696,64,628.466,128,8,B6,mp,14,144,95,14,,,,, +174,6,3,3697,64,628.466,192,8,C#3,mp,14,144,49,14,,,,, +173,33,3,3688,1856,628.466,,,,,,144,41,0,,,,, +174,5,1,3696,64,628.754,,,,,,144,95,0,,,,, +174,7,1,3698,192,628.754,,,,,,176,102,0,,,,, +174,8,1,3699,224,628.826,32,32,D4,p,11,144,62,11,,,,, +174,6,3,3697,64,628.898,,,,,,144,49,0,,,,, +174,9,1,3700,256,628.898,128,8,D4,,,,,,,,,, +174,10,3,3701,256,628.898,256,4,A4,mf,17,144,69,17,,,,, +174,8,1,3699,224,629.187,,,,,,144,62,0,,,,, +174,11,1,3702,384,629.187,128,8,A#4,pp,8,144,70,8,,,,, +173,23,4,3678,1536,629.397,,,,,,144,46,0,,,,, +174,10,3,3701,256,629.475,,,,,,144,69,0,,,,, +174,12,1,3703,512,629.475,32,32,A#4,,,,,,,,,, +174,13,2,3704,512,629.475,128,8,D2,pp,8,144,38,8,,,,, +174,14,3,3705,512,629.475,,,,,,176,102,0,,,,, +174,15,4,3706,512,629.475,32,32,A#2,,,,,,,,,, +174,16,4,3707,512,629.475,32,32,E3,pp,8,144,52,8,,,,, +174,11,1,3702,384,629.547,,,,,,144,70,0,,,,, +174,16,4,3707,512,629.547,,,,,,144,52,0,,,,, +174,17,1,3708,544,629.547,,,,,,176,102,0,,,,, +174,18,4,3709,544,629.547,96,16,B4,pp,8,144,71,8,,,,, +174,19,3,3710,608,629.692,32,32,A0,pp,8,144,21,8,,,,, +174,19,3,3710,608,629.764,,,,,,144,21,0,,,,, +174,20,2,3711,640,629.764,,,,,,176,102,0,,,,, +174,21,3,3712,640,629.764,64,16,G1,pp,8,144,31,8,,,,, +174,22,4,3713,640,629.764,,,,,,176,102,0,,,,, +174,13,2,3704,512,629.764,,,,,,144,38,0,,,,, +174,18,4,3709,544,629.764,,,,,,144,71,0,,,,, +174,21,3,3712,640,629.908,,,,,,144,31,0,,,,, +174,23,3,3714,704,629.908,64,16,A#1,pp,8,144,34,8,,,,, +174,24,4,3715,704,629.908,64,16,E6,pp,8,144,88,8,,,,, +174,25,0,3716,704,629.908,,,,,,,,,,5963,,, +174,23,3,3714,704,630.052,,,,,,144,34,0,,,,, +174,24,4,3715,704,630.052,,,,,,144,88,0,,,,, +174,26,1,3717,768,630.052,,,,,,176,102,0,,,,, +174,27,2,3718,768,630.052,,,,,,176,102,0,,,,, +174,28,3,3719,768,630.052,256,4,F2,mp,14,144,41,14,,,,, +174,29,4,3720,768,630.052,64,16,D#6,pp,8,144,87,8,,,,, +174,29,4,3720,768,630.196,,,,,,144,87,0,,,,, +174,30,4,3721,832,630.196,,,,,,176,102,0,,,,, +174,31,1,3722,1024,630.629,,,,,,176,102,0,,,,, +174,32,2,3723,1024,630.629,,,,,,176,102,0,,,,, +174,33,3,3724,1024,630.629,1024,1,F2,,,,,,,,,, +174,34,4,3725,1024,630.629,,,,,,176,102,0,,,,, +174,35,0,3726,1363,631.393,,,,,,176,64,127,,,,,V +175,0,0,3727,0,632.937,,,,,,,,,175,,,, +175,1,1,3728,0,632.937,,,,,,176,102,0,,,,, +175,2,3,3729,0,632.937,2048,0.5,F2,,,,,,,,,, +176,0,0,3730,0,637.552,,,,,,,,,176,,,, +176,1,1,3731,0,637.552,,,,,,176,102,0,,,,, +176,2,3,3732,0,637.552,2048,0.5,F2,,,,,,,,,, +176,3,4,3733,0,637.552,,,,,,176,102,0,,,,, +176,4,1,3734,1024,639.86,,,,,,176,102,0,,,,, +176,5,4,3735,1024,639.86,,,,,,176,102,0,,,,, +176,6,0,3736,1191,640.236,,,,,,176,64,0,,,,,^ +176,8,4,3737,,640.553,,8,F1,p,11,144,29,11,,,,g, +176,8,4,3737,,640.603,,,,,,144,29,0,,,,, +176,7,1,3738,1365,640.628,683,1,A#5,p,11,144,82,11,,,,, +176,9,4,3739,1365,640.628,341,2,E1,ppp,5,144,28,5,,,,, +176,9,4,3739,1365,641.397,,,,,,144,28,0,,,,, +176,10,4,3740,1706,641.397,,,,,,176,102,0,,,,, +177,0,0,3741,0,642.168,,,,,,,,,177,,,, +177,1,1,3742,0,642.168,2048,0.5,A#5,,,,,,,,,, +177,2,2,3743,0,642.168,,,,,,176,102,0,,,,, +177,3,3,3744,0,642.168,1536,1,F2,,,,,,,,,, +177,4,4,3745,0,642.168,,,,,,176,102,0,,,,, +177,5,2,3746,1536,645.629,,,,,,176,102,0,,,,, +177,6,3,3747,1536,645.629,192,8,F2,,,,,,,,,, +177,7,4,3748,1536,645.629,,,,,,176,102,0,,,,, +177,9,2,3749,1664,645.918,128,8,C#7,ppp,5,144,97,5,,,,, +177,10,4,3750,1664,645.918,384,4,F2,fff,24,144,41,23,,,,, +177,8,0,3751,1664,645.918,,,,,,176,64,127,,,,,V +177,11,3,3752,1728,646.062,64,16,F2,,,,,,,,,, +177,12,3,3753,1728,646.062,64,16,F#3,p,11,144,54,11,,,,, +177,12,3,3753,1728,646.206,,,,,,144,54,0,,,,, +177,13,0,3754,1792,646.206,,,,,,176,64,0,,,,,^ +177,14,2,3755,1792,646.206,64,16,D4,p-,10,144,62,10,,,,, +177,15,3,3756,1792,646.206,,,,,,176,102,0,,,,, +177,9,2,3749,1664,646.206,,,,,,144,97,0,,,,, +177,14,2,3755,1792,646.35,,,,,,144,62,0,,,,, +177,16,2,3757,1856,646.35,,,,,,176,102,0,,,,, +177,17,2,3758,1984,646.639,64,16,B5,mp,14,144,83,14,,,,, +174,28,3,3719,768,646.731,,,,,,144,41,0,,,,, +178,0,0,3759,0,646.783,,,,,,,,,178,,,, +178,1,1,3760,0,646.783,512,2,A#5,,,,,,,,,, +178,2,2,3761,0,646.783,1024,1,B5,,,,,,,,,, +178,3,3,3762,0,646.783,,,,,,176,102,0,,,,, +178,4,4,3763,0,646.783,512,2,F2,,,,,,,,,, +178,5,3,3764,384,647.648,128,8,A2,ppp,5,144,45,5,,,,, +178,5,3,3764,384,647.937,,,,,,144,45,0,,,,, +178,6,1,3765,512,647.937,128,8,D6,mp,14,144,86,14,,,,, +178,7,3,3766,512,647.937,,,,,,176,102,0,,,,, +178,8,4,3767,512,647.937,128,8,F2,,,,,,,,,, +176,7,1,3738,1365,647.937,,,,,,144,82,0,,,,, +178,6,1,3765,512,648.225,,,,,,144,86,0,,,,, +178,9,1,3768,640,648.225,128,8,G#5,mp,14,144,80,14,,,,, +178,10,3,3769,640,648.225,128,8,F#2,pp,8,144,42,8,,,,, +178,11,3,3770,640,648.225,128,8,E3,pp,8,144,52,8,,,,, +178,12,4,3771,640,648.225,384,4,F2,fff,24,144,41,23,,,,, +177,10,4,3750,1664,648.225,,,,,,144,41,0,,,,, +178,9,1,3768,640,648.514,,,,,,144,80,0,,,,, +178,11,3,3770,640,648.514,,,,,,144,52,0,,,,, +178,13,1,3772,768,648.514,,,,,,176,102,0,,,,, +178,14,3,3773,768,648.514,256,4,F#2,,,,,,,,,, +178,15,1,3774,1024,649.091,,,,,,176,102,0,,,,, +178,16,2,3775,1024,649.091,192,8,B5,,,,,,,,,, +178,17,3,3776,1024,649.091,512,2,F#2,,,,,,,,,, +178,18,4,3777,1024,649.091,1024,1,F2,,,,,,,,,, +178,19,2,3778,,649.448,,8,D6,mf,17,144,86,17,,,,g, +178,19,2,3778,,649.498,,,,,,144,86,0,,,,, +177,17,2,3758,1984,649.523,,,,,,144,83,0,,,,, +178,20,2,3779,1216,649.523,64,16,A2,mf,17,144,45,17,,,,, +178,21,2,3780,1216,649.523,64,16,D3,mf,17,144,50,17,,,,, +178,22,2,3781,1280,649.668,64,16,A2,,,,,,,,,, +178,23,2,3782,1280,649.668,64,16,D3,,,,,,,,,, +178,24,2,3783,1344,649.812,128,8,D3,,,,,,,,,, +178,25,2,3784,1344,649.812,128,8,F3,mf+,18,144,53,18,,,,, +178,20,2,3779,1216,649.812,,,,,,144,45,0,,,,, +178,25,2,3784,1344,650.1,,,,,,144,53,0,,,,, +178,26,2,3785,1472,650.1,,,,,,176,102,0,,,,, +178,21,2,3780,1216,650.1,,,,,,144,50,0,,,,, +178,27,1,3786,1536,650.244,,,,,,176,102,0,,,,, +178,28,2,3787,1536,650.244,,,,,,176,102,0,,,,, +178,32,3,3788,1536,650.244,256,4,F#2,,,,,,,,,, +178,29,3,3789,,650.244,,8,C#5,f,20,144,73,20,,,,g, +178,29,3,3789,,650.294,,,,,,144,73,0,,,,, +178,30,3,3790,,650.319,,8,A3,f,20,144,57,20,,,,g, +178,30,3,3790,,650.369,,,,,,144,57,0,,,,, +178,31,3,3791,,650.394,,8,G#5,f,20,144,80,20,,,,g, +178,31,3,3791,,650.444,,,,,,144,80,0,,,,, +178,33,3,3792,1536,650.469,256,4,C#4,ff,22,144,61,22,,,,, +178,34,1,3793,1792,651.046,64,16,A#4,pp,8,144,70,8,,,,, +178,35,2,3794,1792,651.046,256,4,G5,mp,14,144,79,14,,,,, +178,36,3,3795,1792,651.046,64,16,F#2,,,,,,,,,, +178,37,3,3796,1792,651.046,64,16,C#4,,,,,,,,,, +178,33,3,3792,1536,651.191,,,,,,144,61,0,,,,, +178,34,1,3793,1792,651.191,,,,,,144,70,0,,,,, +178,38,1,3797,1856,651.191,192,8,D6,fff,24,144,86,23,,,,, +178,39,3,3798,1856,651.191,192,8,F#2,,,,,,,,,, +178,12,4,3771,640,651.398,,,,,,144,41,0,,,,, +179,0,0,3799,0,651.623,,,,,,,,,179,,,, +179,1,1,3800,0,651.623,1536,1,D6,,,,,,,,,, +179,2,2,3801,0,651.623,1536,1,G5,,,,,,,,,, +179,3,3,3802,0,651.623,2048,0.5,F#2,,,,,,,,,, +179,4,4,3803,0,651.623,,,,,,176,102,0,,,,, +179,5,0,3804,79,651.801,,,,,,176,64,127,,,,,V +179,6,4,3805,256,652.2,,,,,,176,102,0,,,,, +179,7,4,3806,448,652.633,64,16,F#2,f,20,144,42,20,,,,, +179,7,4,3806,448,652.777,,,,,,144,42,0,,,,, +179,8,4,3807,512,652.777,,,,,,176,102,0,,,,, +179,9,1,3808,1536,655.085,128,8,D6,,,,,,,,,, +179,10,1,3809,1536,655.085,128,8,A6,fff,24,144,93,23,,,,, +179,11,2,3810,1536,655.085,128,8,G5,,,,,,,,,, +179,12,4,3811,1536,655.085,128,8,F2,ff,22,144,41,22,,,,, +179,13,4,3812,1536,655.085,128,8,C#3,ff,22,144,49,22,,,,, +179,10,1,3809,1536,655.373,,,,,,144,93,0,,,,, +179,12,4,3811,1536,655.373,,,,,,144,41,0,,,,, +179,13,4,3812,1536,655.373,,,,,,144,49,0,,,,, +179,14,1,3813,1664,655.373,128,8,C#6,ff,22,144,85,22,,,,, +179,15,2,3814,1664,655.373,,,,,,176,102,0,,,,, +179,16,4,3815,1664,655.373,256,4,D4,ff,22,144,62,22,,,,, +179,17,4,3816,1664,655.373,256,4,E4,ff,22,144,64,22,,,,, +179,18,4,3817,1664,655.373,256,4,G#4,ff,22,144,68,22,,,,, +178,38,1,3797,1856,655.373,,,,,,144,86,0,,,,, +178,35,2,3794,1792,655.373,,,,,,144,79,0,,,,, +179,19,1,3818,1792,655.662,256,4,C#6,,,,,,,,,, +179,20,2,3819,1792,655.662,,,,,,176,102,0,,,,, +179,16,4,3815,1664,655.95,,,,,,144,62,0,,,,, +179,17,4,3816,1664,655.95,,,,,,144,64,0,,,,, +179,18,4,3817,1664,655.95,,,,,,144,68,0,,,,, +179,21,0,3820,1920,655.95,,,,,,176,64,0,,,,,^ +179,22,4,3821,1920,655.95,0,8,F#2,s,0,,,,,,,, +179,23,4,3822,1920,655.95,,,,,,176,102,0,,,,, +180,0,0,3823,0,656.239,,,,,,,,,180,,,, +180,1,1,3824,0,656.239,64,16,C#6,,,,,,,,,, +180,2,3,3825,0,656.239,2048,0.5,F#2,,,,,,,,,, +180,3,4,3826,0,656.239,,,,,,176,102,0,,,,, +179,14,1,3813,1664,656.383,,,,,,144,85,0,,,,, +180,4,1,3827,64,656.383,64,16,A#4,ff,22,144,70,22,,,,, +180,4,1,3827,64,656.527,,,,,,144,70,0,,,,, +180,5,1,3828,128,656.527,64,16,F5,ff,22,144,77,22,,,,, +180,5,1,3828,128,656.671,,,,,,144,77,0,,,,, +180,6,1,3829,192,656.671,,,,,,176,102,0,,,,, +180,7,0,3830,192,656.671,,,,,,,,,,5964,,, +180,9,1,3831,256,656.816,,,,,,176,102,0,,,,, +180,10,4,3832,256,656.816,1536,1,A#3,ff,22,144,58,22,,,,, +180,8,0,3833,256,656.816,,,,,,176,64,127,,,,,V +180,11,1,3834,512,657.393,,,,,,176,102,0,,,,, +180,12,4,3835,1792,660.277,64,16,A#3,,,,,,,,,, +180,13,4,3836,1856,660.421,192,8,E1,fff,24,144,28,23,,,,, +180,10,4,3832,256,660.646,,,,,,144,58,0,,,,, +180,13,4,3836,1856,660.854,,,,,,144,28,0,,,,, +181,0,0,3837,0,660.854,,,,,,,,,181,,,, +181,1,1,3838,0,660.854,,,,,,176,102,0,,,,, +181,2,2,3839,0,660.854,768,2,A7,fff,24,144,105,23,,,,, +181,3,3,3840,0,660.854,2048,0.5,F#2,,,,,,,,,, +181,4,4,3841,0,660.854,,,,,,176,102,0,,,,, +181,2,2,3839,0,662.585,,,,,,144,105,0,,,,, +181,5,1,3842,768,662.585,,,,,,176,102,0,,,,, +181,6,2,3843,768,662.585,512,2,C#7,p,11,144,97,11,,,,, +181,7,1,3844,896,662.873,128,8,C5,p,11,144,72,11,,,,, +181,8,1,3845,1024,663.162,128,8,C5,,,,,,,,,, +181,7,1,3844,896,663.45,,,,,,144,72,0,,,,, +181,9,1,3846,1152,663.45,128,8,C#2,p,11,144,37,11,,,,, +181,6,2,3843,768,663.739,,,,,,144,97,0,,,,, +181,10,1,3847,1280,663.739,128,8,C#2,,,,,,,,,, +181,11,2,3848,1280,663.739,128,8,F5,ppp,5,144,77,5,,,,, +181,9,1,3846,1152,664.027,,,,,,144,37,0,,,,, +181,11,2,3848,1280,664.027,,,,,,144,77,0,,,,, +181,12,1,3849,1408,664.027,,,,,,176,102,0,,,,, +181,13,2,3850,1408,664.027,,,,,,176,102,0,,,,, +181,14,0,3851,1474,664.176,,,,,,176,64,0,,,,,^ +181,15,1,3852,1536,664.316,256,4,B6,f,20,144,95,20,,,,, +181,16,2,3853,1536,664.316,256,4,G5,mp,14,144,79,14,,,,, +181,15,1,3852,1536,664.893,,,,,,144,95,0,,,,, +181,17,1,3854,1792,664.893,256,4,D4,ff,22,144,62,22,,,,, +181,18,2,3855,1792,664.893,85,8,G5,,,,,,,,,, +181,16,2,3853,1536,665.084,,,,,,144,79,0,,,,, +181,19,2,3856,1877,665.084,43,16,E3,mf,17,144,52,17,,,,, +181,19,2,3856,1877,665.181,,,,,,144,52,0,,,,, +181,20,2,3857,1920,665.181,42,16,G#1,mp,14,144,32,14,,,,, +181,20,2,3857,1920,665.276,,,,,,144,32,0,,,,, +181,21,2,3858,1962,665.276,43,16,C#1,p+,12,144,25,12,,,,, +181,21,2,3858,1962,665.373,,,,,,144,25,0,,,,, +181,22,2,3859,2005,665.373,,,,,,176,102,0,,,,, +181,17,1,3854,1792,665.469,,,,,,144,62,0,,,,, +182,0,0,3860,0,665.469,,,,,,,,,182,,,, +182,1,1,3861,0,665.469,,,,,,176,102,0,,,,, +182,2,2,3862,0,665.469,,,,,,176,102,0,,,,, +182,3,3,3863,0,665.469,2048,0.5,F#2,,,,,,,,,, +182,4,4,3864,0,665.469,32,32,F1,fff,24,144,29,23,,,,, +182,4,4,3864,0,665.542,,,,,,144,29,0,,,,, +182,5,1,3865,32,665.542,224,8,F#3,fff,24,144,54,23,,,,, +182,6,4,3866,32,665.542,32,32,C4,f,20,144,60,20,,,,, +182,6,4,3866,32,665.614,,,,,,144,60,0,,,,, +182,7,4,3867,64,665.614,32,32,E3,f,20,144,52,20,,,,, +182,8,4,3868,96,665.686,32,32,C#2,f,20,144,37,20,,,,, +182,9,4,3869,96,665.686,32,32,E3,,,,,,,,,, +182,8,4,3868,96,665.758,,,,,,144,37,0,,,,, +182,10,4,3870,128,665.758,32,32,E3,,,,,,,,,, +182,11,4,3871,160,665.83,96,16,A1,p,11,144,33,11,,,,, +182,7,4,3867,64,665.83,,,,,,144,52,0,,,,, +182,11,4,3871,160,666.046,,,,,,144,33,0,,,,, +182,12,1,3872,256,666.046,256,4,A#5,f,20,144,82,20,,,,, +182,13,2,3873,256,666.046,,,,,,176,102,0,,,,, +182,14,4,3874,256,666.046,,,,,,176,102,0,,,,, +182,5,1,3865,32,666.046,,,,,,144,54,0,,,,, +182,15,1,3875,,666.473,,8,G5,mf,17,144,79,17,,,,g, +182,15,1,3875,,666.523,,,,,,144,79,0,,,,, +182,17,1,3876,,666.548,,8,C#3,mf,17,144,49,17,,,,g, +182,16,1,3877,,666.548,,8,F2,mf,17,144,41,17,,,,g, +182,17,1,3876,,666.598,,,,,,144,49,0,,,,, +182,16,1,3877,,666.598,,,,,,144,41,0,,,,, +182,12,1,3872,256,666.623,,,,,,144,82,0,,,,, +182,18,1,3878,512,666.623,,,,,,176,102,0,,,,, +182,19,2,3879,512,666.623,1536,1,E4,ff,22,144,64,22,,,,, +182,20,4,3880,512,666.623,,,,,,176,102,0,,,,, +182,21,4,3881,,666.768,,8,B5,ff,22,144,83,22,,,,g, +182,21,4,3881,,666.818,,,,,,144,83,0,,,,, +182,22,4,3882,,666.843,,8,D3,mp,14,144,50,14,,,,g, +182,22,4,3882,,666.893,,,,,,144,50,0,,,,, +182,19,2,3879,512,666.918,,,,,,144,64,0,,,,, +182,23,4,3883,,666.918,,8,E4,p,11,144,64,11,,,,g, +182,24,4,3884,,666.918,,8,A#4,ff,22,144,70,22,,,,g, +182,24,4,3884,,666.968,,,,,,144,70,0,,,,, +182,25,4,3885,,666.993,,8,F#2,mp,14,144,42,14,,,,g, +182,25,4,3885,,667.043,,,,,,144,42,0,,,,, +182,26,4,3886,576,667.143,,,,,,176,102,0,,,,, +182,27,4,3887,768,667.575,,,,,,176,102,0,,,,, +182,28,4,3888,1536,669.306,,,,,,176,102,0,,,,, +183,0,0,3889,0,670.46,,,,,,,,,183,,,, +183,1,2,3890,0,670.46,2048,0.5,E4,,,,,,,,,, +183,2,3,3891,0,670.46,2048,0.5,F#2,,,,,,,,,, +183,3,4,3892,0,670.46,,,,,,176,102,0,,,,, +184,0,0,3893,0,675.075,,,,,,,,,184,,,, +184,1,1,3894,0,675.075,,,,,,176,102,0,,,,, +184,2,2,3895,0,675.075,768,2,E4,,,,,,,,,, +184,3,3,3896,0,675.075,2048,0.5,F#2,,,,,,,,,, +184,4,4,3897,0,675.075,,,,,,176,102,0,,,,, +184,5,1,3898,64,675.219,192,8,G#5,ff,22,144,80,22,,,,, +184,6,1,3899,256,675.652,128,8,G#5,,,,,,,,,, +184,5,1,3898,64,675.941,,,,,,144,80,0,,,,, +184,7,1,3900,384,675.941,128,8,A1,mf-,16,144,33,16,,,,, +184,8,1,3901,512,676.229,192,8,A1,,,,,,,,,, +184,7,1,3900,384,676.662,,,,,,144,33,0,,,,, +184,9,1,3902,704,676.662,64,16,F2,p-,10,144,41,10,,,,, +184,10,1,3903,768,676.806,85,8,F2,,,,,,,,,, +184,11,2,3904,768,676.806,170,4,E4,,,,,,,,,, +184,12,1,3905,853,676.998,85,8,D5,pp-,7,144,74,7,,,,, +184,12,1,3905,853,677.189,,,,,,144,74,0,,,,, +184,13,1,3906,938,677.189,86,8,F1,ppp,5,144,29,5,,,,, +184,14,1,3907,938,677.189,128,8,G#1,ppp,5,144,32,5,,,,, +184,15,2,3908,938,677.189,,,,,,176,102,0,,,,, +182,23,4,3883,,677.189,,,,,,144,64,0,,,,, +184,9,1,3902,704,677.373,,,,,,144,41,0,,,,, +184,13,1,3906,938,677.383,,,,,,144,29,0,,,,, +184,16,1,3909,1024,677.383,,,,,,176,102,0,,,,, +184,17,2,3910,1024,677.383,,,,,,176,102,0,,,,, +184,14,1,3907,938,677.478,,,,,,144,32,0,,,,, +184,18,4,3911,1536,678.537,,,,,,176,102,0,,,,, +184,19,4,3912,1792,679.114,,,,,,176,102,0,,,,, +184,20,4,3913,1920,679.402,128,8,F#3,ppp,5,144,54,5,,,,, +184,21,0,3914,2047,679.688,,,,,,176,64,127,,,,,V +185,0,0,3915,0,679.691,,,,,,,,,185,,,, +185,1,1,3916,0,679.691,,,,,,176,102,0,,,,, +185,2,3,3917,0,679.691,2048,0.5,F#2,,,,,,,,,, +185,3,4,3918,0,679.691,2048,0.5,F#3,,,,,,,,,, +185,4,1,3919,1536,683.152,341,2,C#7,p,11,144,97,11,,,,, +185,4,1,3919,1536,683.921,,,,,,144,97,0,,,,, +185,5,1,3920,1877,683.921,,,,,,176,102,0,,,,, +185,6,1,3921,1962,684.112,86,8,A1,p,11,144,33,11,,,,, +186,0,0,3922,0,684.306,,,,,,,,,186,,,, +186,1,1,3923,0,684.306,341,2,A1,,,,,,,,,, +186,2,2,3924,0,684.306,,,,,,176,102,0,,,,, +186,3,3,3925,0,684.306,1024,1,F#2,,,,,,,,,, +186,4,4,3926,0,684.306,341,2,F#3,,,,,,,,,, +185,6,1,3921,1962,685.075,,,,,,144,33,0,,,,, +186,5,1,3927,341,685.075,85,8,F1,p,11,144,29,11,,,,, +186,6,4,3928,341,685.075,85,8,F#3,,,,,,,,,, +184,20,4,3913,1920,685.266,,,,,,144,54,0,,,,, +186,5,1,3927,341,685.266,,,,,,144,29,0,,,,, +186,7,1,3929,426,685.266,,,,,,176,102,0,,,,, +186,8,4,3930,426,685.266,86,8,A#4,p-,10,144,70,10,,,,, +186,8,4,3930,426,685.46,,,,,,144,70,0,,,,, +186,9,0,3931,512,685.46,,,,,,176,64,0,,,,,^ +186,10,1,3932,512,685.46,,,,,,176,102,0,,,,, +186,11,2,3933,512,685.46,768,2,C#6,pp,8,144,85,8,,,,, +186,12,4,3934,512,685.46,,,,,,176,102,0,,,,, +186,14,3,3935,,686.539,,8,G#2,mp,14,144,44,14,,,,g, +186,14,3,3935,,686.589,,,,,,144,44,0,,,,, +186,13,1,3936,1024,686.614,512,2,F6,mf,17,144,89,17,,,,, +186,15,3,3937,1024,686.614,1024,1,F#2,,,,,,,,,, +186,16,4,3938,1024,686.614,,,,,,176,102,0,,,,, +186,11,2,3933,512,687.191,,,,,,144,85,0,,,,, +186,17,2,3939,1280,687.191,,,,,,176,102,0,,,,, +186,18,4,3940,1280,687.191,,,,,,176,102,0,,,,, +186,19,0,3941,1280,687.191,,,,,,,,,,5965,,, +186,24,4,3942,,687.393,,8,A0,mf,17,144,21,17,,,,g, +186,24,4,3942,,687.443,,,,,,144,21,0,,,,, +186,25,4,3943,,687.468,,8,E1,mf+,18,144,28,18,,,,g, +186,25,4,3943,,687.518,,,,,,144,28,0,,,,, +186,26,4,3944,,687.543,,8,A#3,mf+,18,144,58,18,,,,g, +186,26,4,3944,,687.593,,,,,,144,58,0,,,,, +186,27,4,3945,,687.618,,8,E2,f-,19,144,40,19,,,,g, +186,27,4,3945,,687.668,,,,,,144,40,0,,,,, +186,28,4,3946,,687.693,,8,A1,f,20,144,33,20,,,,g, +186,28,4,3946,,687.743,,,,,,144,33,0,,,,, +186,13,1,3936,1024,687.768,,,,,,144,89,0,,,,, +186,20,1,3947,1536,687.768,512,2,A#5,mp,14,144,82,14,,,,, +186,21,1,3948,1536,687.768,512,2,D6,mp,14,144,86,14,,,,, +186,22,1,3949,1536,687.768,512,2,C#7,f,20,144,97,20,,,,, +186,23,2,3950,1536,687.768,512,2,G5,ff,22,144,79,22,,,,, +186,29,4,3951,1536,687.768,,,,,,176,102,0,,,,, +186,30,4,3952,,688.696,,,,,,176,102,0,,,,, +186,31,4,3953,,688.771,,8,A2,f,20,144,45,20,,,,g, +186,31,4,3953,,688.821,,,,,,144,45,0,,,,, +186,32,4,3954,,688.846,,8,A#3,f,20,144,58,20,,,,g, +186,32,4,3954,,688.896,,,,,,144,58,0,,,,, +186,22,1,3949,1536,688.921,,,,,,144,97,0,,,,, +187,0,0,3955,0,688.921,,,,,,,,,187,,,, +187,1,1,3956,0,688.921,1536,1,A#5,,,,,,,,,, +187,2,1,3957,0,688.921,1024,1,D6,,,,,,,,,, +187,3,2,3958,0,688.921,2048,0.5,G5,,,,,,,,,, +187,4,3,3959,0,688.921,2048,0.5,F#2,,,,,,,,,, +187,5,4,3960,0,688.921,,,,,,176,102,0,,,,, +186,21,1,3948,1536,691.229,,,,,,144,86,0,,,,, +186,20,1,3947,1536,692.383,,,,,,144,82,0,,,,, +187,6,1,3961,1536,692.383,,,,,,176,102,0,,,,, +187,7,4,3962,1536,692.383,512,2,G#1,pp,8,144,32,8,,,,, +187,8,1,3963,,693.537,,8,G#5,pp,8,144,80,8,,,,g, +187,9,1,3964,,693.537,,8,C#6,f,20,144,85,20,,,,g, +187,8,1,3963,,693.587,,,,,,144,80,0,,,,, +187,9,1,3964,,693.587,,,,,,144,85,0,,,,, +187,10,1,3965,,693.612,,8,E3,f,20,144,52,20,,,,g, +187,11,1,3966,,693.612,,8,C#4,pp,8,144,61,8,,,,g, +187,10,1,3965,,693.662,,,,,,144,52,0,,,,, +187,11,1,3966,,693.662,,,,,,144,61,0,,,,, +187,12,1,3967,,693.687,,8,A#4,f,20,144,70,20,,,,g, +187,12,1,3967,,693.737,,,,,,144,70,0,,,,, +188,0,0,3968,0,693.912,,,,,,,,,188,,,, +188,1,1,3969,0,693.912,,,,,,176,102,0,,,,, +188,2,2,3970,0,693.912,2048,0.5,G5,,,,,,,,,, +188,3,3,3971,0,693.912,2048,0.5,F#2,,,,,,,,,, +188,4,4,3972,0,693.912,2048,0.5,G#1,,,,,,,,,, +188,6,1,3973,1536,697.373,341,2,C#7,mp,14,144,97,14,,,,, +188,5,0,3974,1536,697.373,,,,,,176,64,127,,,,,V +188,6,1,3973,1536,698.142,,,,,,144,97,0,,,,, +188,7,1,3975,1877,698.142,,,,,,176,102,0,,,,, +186,23,2,3950,1536,698.152,,,,,,144,79,0,,,,, +188,8,1,3976,1962,698.333,22,32,A1,mp,14,144,33,14,,,,, +188,8,1,3976,1962,698.383,,,,,,144,33,0,,,,, +188,9,1,3977,1984,698.383,21,32,E2,f,20,144,40,20,,,,, +188,9,1,3977,1984,698.43,,,,,,144,40,0,,,,, +188,10,1,3978,2005,698.43,43,16,F1,fff,24,144,29,23,,,,, +188,10,1,3978,2005,698.527,,,,,,144,29,0,,,,, +189,0,0,3979,0,698.527,,,,,,,,,189,,,, +189,1,1,3980,0,698.527,42,16,A#4,f,20,144,70,20,,,,, +189,2,3,3981,0,698.527,2048,0.5,F#2,,,,,,,,,, +189,3,3,3982,0,698.527,2048,0.5,E3,ff,22,144,52,22,,,,, +189,4,4,3983,0,698.527,2048,0.5,G#1,,,,,,,,,, +189,1,1,3980,0,698.622,,,,,,144,70,0,,,,, +189,5,1,3984,42,698.622,22,32,A#5,p-,10,144,82,10,,,,, +189,5,1,3984,42,698.671,,,,,,144,82,0,,,,, +189,6,1,3985,64,698.671,192,8,C#7,ppp,5,144,97,5,,,,, +189,7,1,3986,256,699.104,256,4,C#7,,,,,,,,,, +189,6,1,3985,64,699.681,,,,,,144,97,0,,,,, +189,8,0,3987,512,699.681,,,,,,176,64,0,,,,,^ +189,9,1,3988,512,699.681,,,,,,176,102,0,,,,, +189,10,3,3989,,702.993,,8,G#1,s,0,144,32,0,,,,g, +189,10,3,3989,,703.043,,,,,,144,32,0,,,,, +189,11,4,3990,,703.068,,8,F#2,s,0,144,42,0,,,,g, +189,11,4,3990,,703.118,,,,,,144,42,0,,,,, +190,0,0,3991,0,703.143,,,,,,,,,190,,,, +190,1,1,3992,0,703.143,,,,,,176,102,0,,,,, +190,2,2,3993,0,703.143,,,,,,176,102,0,,,,, +190,3,3,3994,0,703.143,2048,0.5,F#2,,,,,,,,,, +190,4,3,3995,0,703.143,2048,0.5,E3,,,,,,,,,, +190,5,4,3996,0,703.143,1920,1,G#1,,,,,,,,,, +190,7,1,3997,128,703.431,128,8,F1,f,20,144,29,20,,,,, +190,6,0,3998,128,703.431,,,,,,176,64,127,,,,,V +190,8,1,3999,256,703.719,192,8,F1,,,,,,,,,, +190,9,2,4000,256,703.719,,,,,,176,102,0,,,,, +190,10,1,4001,448,704.152,64,16,A5,p,11,144,81,11,,,,, +190,10,1,4001,448,704.296,,,,,,144,81,0,,,,, +190,11,1,4002,512,704.296,85,8,G#3,p,11,144,56,11,,,,, +190,12,2,4003,512,704.296,,,,,,176,102,0,,,,, +190,13,0,4004,576,704.441,,,,,,176,64,0,,,,,^ +190,14,1,4005,597,704.488,85,8,C#3,p-,10,144,49,10,,,,, +190,11,1,4002,512,704.488,,,,,,144,56,0,,,,, +190,7,1,3997,128,704.527,,,,,,144,29,0,,,,, +190,14,1,4005,597,704.68,,,,,,144,49,0,,,,, +190,15,1,4006,682,704.68,86,8,A4,p-,10,144,69,10,,,,, +190,15,1,4006,682,704.873,,,,,,144,69,0,,,,, +190,16,1,4007,768,704.873,170,4,F2,pp+,9,144,41,9,,,,, +190,16,1,4007,768,705.256,,,,,,144,41,0,,,,, +190,17,1,4008,938,705.256,86,8,C#3,pp-,7,144,49,7,,,,, +190,17,1,4008,938,705.45,,,,,,144,49,0,,,,, +190,18,1,4009,1024,705.45,,,,,,176,102,0,,,,, +190,19,2,4010,1024,705.45,,,,,,176,102,0,,,,, +190,20,1,4011,1152,705.739,128,8,A#5,ppp+,6,144,82,6,,,,, +190,21,2,4012,,705.739,,8,F3,ppp+,6,144,53,6,,,,g, +190,21,2,4012,,705.789,,,,,,144,53,0,,,,, +190,22,2,4013,,705.814,,8,G#5,ppp,5,144,80,5,,,,g, +190,22,2,4013,,705.864,,,,,,144,80,0,,,,, +190,23,2,4014,1152,705.889,128,8,D2,ppp,5,144,38,5,,,,, +190,23,2,4014,1152,706.177,,,,,,144,38,0,,,,, +190,24,1,4015,1280,706.177,384,4,A#5,,,,,,,,,, +190,25,2,4016,1280,706.177,,,,,,176,102,0,,,,, +190,20,1,4011,1152,706.893,,,,,,144,82,0,,,,, +190,26,1,4017,1664,707.043,64,16,F1,ppp-,4,144,29,4,,,,, +190,27,2,4018,1664,707.043,,,,,,176,102,0,,,,, +190,26,1,4017,1664,707.187,,,,,,144,29,0,,,,, +190,28,1,4019,1728,707.187,,,,,,176,102,0,,,,, +190,29,1,4020,1792,707.331,,,,,,176,102,0,,,,, +190,30,2,4021,1792,707.331,,,,,,176,102,0,,,,, +187,7,4,3962,1536,707.469,,,,,,144,32,0,,,,, +190,31,1,4022,1920,707.619,42,16,C3,pppp,2,144,48,2,,,,, +190,32,4,4023,1920,707.619,,,,,,176,102,0,,,,, +190,31,1,4022,1920,707.714,,,,,,144,48,0,,,,, +190,33,1,4024,1962,707.714,43,16,F6,pppp,2,144,89,2,,,,, +190,33,1,4024,1962,707.811,,,,,,144,89,0,,,,, +190,34,1,4025,2005,707.811,43,16,E7,pppp,2,144,100,2,,,,, +190,34,1,4025,2005,707.908,,,,,,144,100,0,,,,, +191,0,0,4026,0,707.908,,,,,,,,,191,,,, +191,1,1,4027,0,707.908,,,,,,176,102,0,,,,, +191,2,3,4028,0,707.908,2048,0.5,F#2,,,,,,,,,, +191,3,3,4029,0,707.908,2048,0.5,E3,,,,,,,,,, +191,4,4,4030,0,707.908,,,,,,176,102,0,,,,, +191,5,1,4031,768,709.639,,,,,,176,102,0,,,,, +191,6,1,4032,,710.066,,8,G#4,pppp,2,144,68,2,,,,g, +191,6,1,4032,,710.116,,,,,,144,68,0,,,,, +191,7,1,4033,,710.141,,8,A5,pppp,2,144,81,2,,,,g, +191,7,1,4033,,710.191,,,,,,144,81,0,,,,, +191,8,1,4034,1024,710.216,,,,,,176,102,0,,,,, +191,10,1,4035,1792,711.946,256,4,A#6,pp,8,144,94,8,,,,, +191,11,4,4036,1792,711.946,256,4,D2,pp,8,144,38,8,,,,, +191,9,0,4037,1792,711.946,,,,,,176,64,127,,,,,V +191,10,1,4035,1792,712.523,,,,,,144,94,0,,,,, +192,0,0,4038,0,712.523,,,,,,,,,192,,,, +192,1,1,4039,0,712.523,,,,,,176,102,0,,,,, +192,2,3,4040,0,712.523,768,2,F#2,,,,,,,,,, +192,3,4,4041,0,712.523,768,2,D2,,,,,,,,,, +189,3,3,3982,0,712.748,,,,,,144,52,0,,,,, +192,4,0,4042,768,714.104,,,,,,176,64,0,,,,,^ +178,10,3,3769,640,714.104,,,,,,144,42,0,,,,, +191,11,4,4036,1792,714.254,,,,,,144,38,0,,,,, +192,5,3,4043,768,714.254,,,,,,176,102,0,,,,, +192,6,4,4044,768,714.254,256,4,F2,pp,8,144,41,8,,,,, +192,4,0,4045,768,714.404,,,,,,176,64,127,,,,,V +192,7,3,4046,1024,714.831,,,,,,176,102,0,,,,, +192,8,4,4047,1024,714.831,1024,1,F2,,,,,,,,,, +192,9,0,4048,1152,714.969,,,,,,176,64,0,,,,,^ +192,10,3,4049,1152,715.119,128,8,G#2,ppp,5,144,44,5,,,,, +192,9,0,4050,1152,715.269,,,,,,176,64,127,,,,,V +192,11,3,4051,1280,715.408,768,2,G#2,,,,,,,,,, +193,0,0,4052,0,717.139,,,,,,,,,193,,,, +193,1,1,4053,0,717.139,,,,,,176,102,0,,,,, +193,2,3,4054,0,717.139,1024,1,G#2,,,,,,,,,, +193,3,4,4055,0,717.139,,,,,,176,102,0,,,,, +192,6,4,4044,768,717.289,,,,,,144,41,0,,,,, +193,4,3,4056,1024,719.446,1024,1,G#2,,,,,,,,,, +193,5,4,4057,1024,719.446,1024,1,G#1,ff,22,144,32,22,,,,, +193,6,0,4058,1024,719.446,,,,,,,,,,5966,,, +194,0,0,4059,0,721.754,,,,,,,,,194,,,, +194,1,1,4060,0,721.754,,,,,,176,102,0,,,,, +194,2,3,4061,0,721.754,2048,0.5,G#2,,,,,,,,,, +194,3,4,4062,0,721.754,2048,0.5,G#1,,,,,,,,,, +194,4,1,4063,512,722.908,1536,1,C6,fff,24,144,84,23,,,,, +194,4,1,4063,512,726.369,,,,,,144,84,0,,,,, +195,0,0,4064,0,726.369,,,,,,,,,195,,,, +195,1,1,4065,0,726.369,,,,,,176,102,0,,,,, +195,2,3,4066,0,726.369,2048,0.5,G#2,,,,,,,,,, +195,3,4,4067,0,726.369,2048,0.5,G#1,,,,,,,,,, +195,4,3,4068,2048,730.985,2048,0.5,G#2,,,,,,,,,, +195,5,4,4069,2048,730.985,2048,0.5,G#1,,,,,,,,,, +195,6,3,4070,4096,735.6,2048,0.5,G#2,,,,,,,,,, +195,7,4,4071,4096,735.6,2048,0.5,G#1,,,,,,,,,, +193,5,4,4057,1024,740.216,,,,,,144,32,0,,,,, +196,0,0,4072,0,740.216,,,,,,,,,196,,,, +196,1,1,4073,0,740.216,,,,,,176,102,0,,,,, +196,2,3,4074,0,740.216,,,,,,176,102,0,,,,, +196,3,4,4075,0,740.216,256,4,C4,ppp,5,144,60,5,,,,, +192,10,3,4049,1152,740.366,,,,,,144,44,0,,,,, +196,3,4,4075,0,740.793,,,,,,144,60,0,,,,, +196,4,0,4076,256,740.793,,,,,,176,64,0,,,,,^ +196,5,4,4077,256,740.793,256,4,C#1,ppp,5,144,25,5,,,,, +196,6,0,4078,256,740.793,,,,,,,,,,5967,,, +196,5,4,4077,256,741.369,,,,,,144,25,0,,,,, +196,8,3,4079,512,741.369,,,,,,176,102,0,,,,, +196,9,4,4080,512,741.369,2048,0.5,A4,fff,24,144,69,23,,,,, +196,7,0,4081,512,741.369,,,,,,176,64,127,,,,,V +196,9,4,4080,512,745.985,,,,,,144,69,0,,,,, +196,10,3,4082,2560,745.985,,,,,,176,102,0,,,,, +196,11,4,4083,2560,745.985,2048,0.5,C#4,ppp,5,144,61,5,,,,, +196,11,4,4083,2560,750.6,,,,,,144,61,0,,,,, +196,13,0,4084,4607,751.833,,,,,,176,64,0,,,,,^ +196,12,0,4085,4607,751.982,,,,,,,,,,,80,, +197,0,0,4086,0,751.985,,,,,,,,,197,,,, +197,1,0,4087,0,751.985,,,,,,,,,,,80,, +197,2,0,4088,0,751.985,,,,,,,,,,5968,,, +197,4,1,4089,0,751.985,,,,,,176,102,0,,,,, +197,5,3,4090,0,751.985,28,32,A2,ppp,5,144,45,5,,,,, +197,5,3,4090,0,752.067,,,,,,144,45,0,,,,, +197,6,3,4091,28,752.067,28,32,F#1,ppp,5,144,30,5,,,,, +197,3,0,4092,0,752.133,,,,,,176,64,38,,,,,V +197,6,3,4091,28,752.149,,,,,,144,30,0,,,,, +197,7,3,4093,56,752.149,29,32,C#2,ppp,5,144,37,5,,,,, +197,7,3,4093,56,752.234,,,,,,144,37,0,,,,, +197,8,3,4094,85,752.234,28,32,A2,ppp,5,144,45,5,,,,, +197,8,3,4094,85,752.316,,,,,,144,45,0,,,,, +197,9,3,4095,113,752.316,29,32,C#2,ppp,5,144,37,5,,,,, +197,9,3,4095,113,752.401,,,,,,144,37,0,,,,, +197,10,3,4096,142,752.401,57,16,F#1,ppp,5,144,30,5,,,,, +197,10,3,4096,142,752.568,,,,,,144,30,0,,,,, +197,11,3,4097,199,752.568,28,32,A2,ppp,5,144,45,5,,,,, +197,11,3,4097,199,752.65,,,,,,144,45,0,,,,, +197,12,3,4098,227,752.65,29,32,C#2,ppp,5,144,37,5,,,,, +197,12,3,4098,227,752.735,,,,,,144,37,0,,,,, +197,13,3,4099,256,752.735,28,32,A2,ppp,5,144,45,5,,,,, +197,13,3,4099,256,752.817,,,,,,144,45,0,,,,, +197,14,3,4100,284,752.817,28,32,F#1,ppp,5,144,30,5,,,,, +197,14,3,4100,284,752.899,,,,,,144,30,0,,,,, +197,15,3,4101,312,752.899,29,32,C#2,ppp,5,144,37,5,,,,, +197,15,3,4101,312,752.984,,,,,,144,37,0,,,,, +197,16,3,4102,341,752.984,28,32,A2,ppp,5,144,45,5,,,,, +197,16,3,4102,341,753.066,,,,,,144,45,0,,,,, +197,17,3,4103,369,753.066,29,32,C#2,ppp,5,144,37,5,,,,, +197,17,3,4103,369,753.151,,,,,,144,37,0,,,,, +197,18,3,4104,398,753.151,57,16,F#1,ppp,5,144,30,5,,,,, +197,18,3,4104,398,753.318,,,,,,144,30,0,,,,, +197,19,3,4105,455,753.318,28,32,A2,ppp,5,144,45,5,,,,, +197,19,3,4105,455,753.4,,,,,,144,45,0,,,,, +197,20,3,4106,483,753.4,29,32,C#2,ppp,5,144,37,5,,,,, +197,20,3,4106,483,753.485,,,,,,144,37,0,,,,, +197,21,3,4107,512,753.485,28,32,A2,ppp,5,144,45,5,,,,, +197,21,3,4107,512,753.567,,,,,,144,45,0,,,,, +197,22,3,4108,540,753.567,28,32,F#1,ppp,5,144,30,5,,,,, +197,22,3,4108,540,753.649,,,,,,144,30,0,,,,, +197,23,3,4109,568,753.649,29,32,C#2,ppp,5,144,37,5,,,,, +197,23,3,4109,568,753.734,,,,,,144,37,0,,,,, +197,24,3,4110,597,753.734,28,32,A2,ppp,5,144,45,5,,,,, +197,24,3,4110,597,753.816,,,,,,144,45,0,,,,, +197,25,3,4111,625,753.816,29,32,C#2,ppp+,6,144,37,6,,,,, +197,25,3,4111,625,753.901,,,,,,144,37,0,,,,, +197,26,3,4112,654,753.901,57,16,F#1,ppp+,6,144,30,6,,,,, +197,26,3,4112,654,754.068,,,,,,144,30,0,,,,, +197,27,3,4113,711,754.068,28,32,A2,ppp+,6,144,45,6,,,,, +197,27,3,4113,711,754.15,,,,,,144,45,0,,,,, +197,28,3,4114,739,754.15,29,32,C#2,ppp+,6,144,37,6,,,,, +197,28,3,4114,739,754.235,,,,,,144,37,0,,,,, +197,29,3,4115,768,754.235,28,32,A2,ppp+,6,144,45,6,,,,, +197,29,3,4115,768,754.317,,,,,,144,45,0,,,,, +197,30,3,4116,796,754.317,28,32,F#1,ppp+,6,144,30,6,,,,, +197,30,3,4116,796,754.399,,,,,,144,30,0,,,,, +197,31,3,4117,824,754.399,29,32,C#2,ppp+,6,144,37,6,,,,, +197,31,3,4117,824,754.484,,,,,,144,37,0,,,,, +197,32,3,4118,853,754.484,28,32,A2,pp-,7,144,45,7,,,,, +197,32,3,4118,853,754.566,,,,,,144,45,0,,,,, +197,33,3,4119,881,754.566,29,32,C#2,pp-,7,144,37,7,,,,, +197,33,3,4119,881,754.651,,,,,,144,37,0,,,,, +197,34,3,4120,910,754.651,57,16,F#1,pp-,7,144,30,7,,,,, +197,34,3,4120,910,754.818,,,,,,144,30,0,,,,, +197,35,3,4121,967,754.818,28,32,A2,pp-,7,144,45,7,,,,, +197,35,3,4121,967,754.9,,,,,,144,45,0,,,,, +197,36,3,4122,995,754.9,29,32,C#2,pp-,7,144,37,7,,,,, +197,36,3,4122,995,754.985,,,,,,144,37,0,,,,, +197,37,3,4123,1024,754.985,28,32,A2,pp-,7,144,45,7,,,,, +197,37,3,4123,1024,755.067,,,,,,144,45,0,,,,, +197,38,3,4124,1052,755.067,28,32,F#1,pp-,7,144,30,7,,,,, +197,38,3,4124,1052,755.149,,,,,,144,30,0,,,,, +197,39,3,4125,1080,755.149,29,32,C#2,pp,8,144,37,8,,,,, +197,39,3,4125,1080,755.234,,,,,,144,37,0,,,,, +197,40,3,4126,1109,755.234,28,32,A2,pp,8,144,45,8,,,,, +197,40,3,4126,1109,755.316,,,,,,144,45,0,,,,, +197,41,3,4127,1137,755.316,29,32,C#2,pp,8,144,37,8,,,,, +197,41,3,4127,1137,755.401,,,,,,144,37,0,,,,, +197,42,3,4128,1166,755.401,57,16,F#1,pp,8,144,30,8,,,,, +197,42,3,4128,1166,755.568,,,,,,144,30,0,,,,, +197,43,3,4129,1223,755.568,28,32,A2,pp,8,144,45,8,,,,, +197,43,3,4129,1223,755.65,,,,,,144,45,0,,,,, +197,44,3,4130,1251,755.65,29,32,C#2,pp,8,144,37,8,,,,, +197,44,3,4130,1251,755.735,,,,,,144,37,0,,,,, +197,45,3,4131,1280,755.735,28,32,A2,pp,8,144,45,8,,,,, +197,45,3,4131,1280,755.817,,,,,,144,45,0,,,,, +197,46,3,4132,1308,755.817,28,32,F#1,pp+,9,144,30,9,,,,, +197,46,3,4132,1308,755.899,,,,,,144,30,0,,,,, +197,47,3,4133,1336,755.899,29,32,C#2,pp+,9,144,37,9,,,,, +197,47,3,4133,1336,755.984,,,,,,144,37,0,,,,, +197,48,3,4134,1365,755.984,28,32,A2,pp+,9,144,45,9,,,,, +197,48,3,4134,1365,756.066,,,,,,144,45,0,,,,, +197,49,3,4135,1393,756.066,29,32,C#2,pp+,9,144,37,9,,,,, +197,49,3,4135,1393,756.151,,,,,,144,37,0,,,,, +197,50,3,4136,1422,756.151,57,16,F#1,pp+,9,144,30,9,,,,, +197,50,3,4136,1422,756.318,,,,,,144,30,0,,,,, +197,51,3,4137,1479,756.318,57,16,C#2,pp+,9,144,37,9,,,,, +197,51,3,4137,1479,756.485,,,,,,144,37,0,,,,, +198,0,0,4138,0,756.485,,,,,,,,,198,,,, +198,2,3,4139,,756.485,,8,F4,p,11,144,65,11,,,,g, +198,2,3,4139,,756.535,,,,,,144,65,0,,,,, +198,1,1,4140,0,756.56,512,2,D#5,p,11,144,75,11,,,,, +198,3,3,4141,0,756.56,102,8,C1,pp,8,144,24,8,,,,, +198,4,3,4142,0,756.56,128,8,A#1,pp,8,144,34,8,,,,, +198,3,3,4141,0,756.859,,,,,,144,24,0,,,,, +198,4,3,4142,0,756.859,,,,,,144,34,0,,,,, +198,5,3,4143,102,756.859,51,16,C1,pp,8,144,24,8,,,,, +198,6,3,4144,102,756.859,64,16,A#1,pp,8,144,34,8,,,,, +198,5,3,4143,102,757.008,,,,,,144,24,0,,,,, +198,6,3,4144,102,757.008,,,,,,144,34,0,,,,, +198,7,3,4145,153,757.008,51,16,A#1,pp+,9,144,34,9,,,,, +198,7,3,4145,153,757.158,,,,,,144,34,0,,,,, +198,8,3,4146,204,757.158,52,16,C1,pp+,9,144,24,9,,,,, +198,9,3,4147,256,757.31,51,16,C1,,,,,,,,,, +198,8,3,4146,204,757.459,,,,,,144,24,0,,,,, +198,10,3,4148,307,757.459,51,16,A#1,pp+,9,144,34,9,,,,, +198,10,3,4148,307,757.609,,,,,,144,34,0,,,,, +198,11,3,4149,358,757.609,51,16,C1,pp+,9,144,24,9,,,,, +198,11,3,4149,358,757.758,,,,,,144,24,0,,,,, +198,12,3,4150,409,757.758,103,8,A#1,pp+,9,144,34,9,,,,, +198,1,1,4140,0,758.06,,,,,,144,75,0,,,,, +198,12,3,4150,409,758.06,,,,,,144,34,0,,,,, +198,13,1,4151,512,758.06,,,,,,176,102,0,,,,, +198,14,3,4152,512,758.06,51,16,C1,p-,10,144,24,10,,,,, +198,14,3,4152,512,758.209,,,,,,144,24,0,,,,, +198,15,3,4153,563,758.209,51,16,A#1,p-,10,144,34,10,,,,, +198,15,3,4153,563,758.359,,,,,,144,34,0,,,,, +198,16,3,4154,614,758.359,51,16,C1,p-,10,144,24,10,,,,, +198,16,3,4154,614,758.508,,,,,,144,24,0,,,,, +198,17,3,4155,665,758.508,103,8,A#1,p-,10,144,34,10,,,,, +198,18,3,4156,768,758.81,51,16,A#1,,,,,,,,,, +198,17,3,4155,665,758.959,,,,,,144,34,0,,,,, +198,19,3,4157,819,758.959,51,16,C1,p,11,144,24,11,,,,, +198,19,3,4157,819,759.109,,,,,,144,24,0,,,,, +198,20,3,4158,870,759.109,154,8,A#1,p,11,144,34,11,,,,, +198,20,3,4158,870,759.56,,,,,,144,34,0,,,,, +198,21,1,4159,1024,759.56,512,2,C1,mf,17,144,24,17,,,,, +198,22,3,4160,1024,759.56,28,32,A2,ppp,5,144,45,5,,,,, +198,22,3,4160,1024,759.642,,,,,,144,45,0,,,,, +198,23,3,4161,1052,759.642,28,32,F#1,ppp,5,144,30,5,,,,, +198,23,3,4161,1052,759.724,,,,,,144,30,0,,,,, +198,24,3,4162,1080,759.724,29,32,C#2,ppp,5,144,37,5,,,,, +198,24,3,4162,1080,759.809,,,,,,144,37,0,,,,, +198,25,3,4163,1109,759.809,28,32,A2,ppp,5,144,45,5,,,,, +198,25,3,4163,1109,759.891,,,,,,144,45,0,,,,, +198,26,3,4164,1137,759.891,29,32,C#2,ppp,5,144,37,5,,,,, +198,26,3,4164,1137,759.976,,,,,,144,37,0,,,,, +198,27,3,4165,1166,759.976,57,16,F#1,ppp,5,144,30,5,,,,, +198,27,3,4165,1166,760.143,,,,,,144,30,0,,,,, +198,28,3,4166,1223,760.143,28,32,A2,ppp,5,144,45,5,,,,, +198,28,3,4166,1223,760.225,,,,,,144,45,0,,,,, +198,29,3,4167,1251,760.225,29,32,C#2,ppp,5,144,37,5,,,,, +198,29,3,4167,1251,760.31,,,,,,144,37,0,,,,, +198,30,3,4168,1280,760.31,28,32,A2,ppp,5,144,45,5,,,,, +198,30,3,4168,1280,760.392,,,,,,144,45,0,,,,, +198,31,3,4169,1308,760.392,28,32,F#1,ppp,5,144,30,5,,,,, +198,31,3,4169,1308,760.474,,,,,,144,30,0,,,,, +198,32,3,4170,1336,760.474,29,32,C#2,ppp,5,144,37,5,,,,, +198,32,3,4170,1336,760.559,,,,,,144,37,0,,,,, +198,33,3,4171,1365,760.559,28,32,A2,ppp,5,144,45,5,,,,, +198,33,3,4171,1365,760.641,,,,,,144,45,0,,,,, +198,34,3,4172,1393,760.641,29,32,C#2,ppp,5,144,37,5,,,,, +198,34,3,4172,1393,760.726,,,,,,144,37,0,,,,, +198,35,3,4173,1422,760.726,57,16,F#1,ppp,5,144,30,5,,,,, +198,35,3,4173,1422,760.893,,,,,,144,30,0,,,,, +198,36,3,4174,1479,760.893,28,32,A2,ppp,5,144,45,5,,,,, +198,36,3,4174,1479,760.975,,,,,,144,45,0,,,,, +198,37,3,4175,1507,760.975,29,32,C#2,ppp,5,144,37,5,,,,, +198,37,3,4175,1507,761.06,,,,,,144,37,0,,,,, +199,0,0,4176,0,761.06,,,,,,,,,199,,,, +199,1,1,4177,0,761.06,1024,1,C1,,,,,,,,,, +199,2,3,4178,0,761.06,28,32,A2,ppp,5,144,45,5,,,,, +199,2,3,4178,0,761.142,,,,,,144,45,0,,,,, +199,3,3,4179,28,761.142,28,32,F#1,ppp,5,144,30,5,,,,, +199,3,3,4179,28,761.224,,,,,,144,30,0,,,,, +199,4,3,4180,56,761.224,29,32,C#2,ppp,5,144,37,5,,,,, +199,4,3,4180,56,761.309,,,,,,144,37,0,,,,, +199,5,3,4181,85,761.309,28,32,A2,ppp,5,144,45,5,,,,, +199,5,3,4181,85,761.391,,,,,,144,45,0,,,,, +199,6,3,4182,113,761.391,29,32,C#2,ppp,5,144,37,5,,,,, +199,6,3,4182,113,761.476,,,,,,144,37,0,,,,, +199,7,3,4183,142,761.476,57,16,F#1,ppp,5,144,30,5,,,,, +199,7,3,4183,142,761.643,,,,,,144,30,0,,,,, +199,8,3,4184,199,761.643,28,32,A2,ppp,5,144,45,5,,,,, +199,8,3,4184,199,761.725,,,,,,144,45,0,,,,, +199,9,3,4185,227,761.725,29,32,C#2,ppp,5,144,37,5,,,,, +199,9,3,4185,227,761.81,,,,,,144,37,0,,,,, +199,10,3,4186,256,761.81,28,32,A2,ppp,5,144,45,5,,,,, +199,10,3,4186,256,761.892,,,,,,144,45,0,,,,, +199,11,3,4187,284,761.892,28,32,F#1,ppp,5,144,30,5,,,,, +199,11,3,4187,284,761.974,,,,,,144,30,0,,,,, +199,12,3,4188,312,761.974,29,32,C#2,ppp,5,144,37,5,,,,, +199,12,3,4188,312,762.059,,,,,,144,37,0,,,,, +199,13,3,4189,341,762.059,28,32,A2,ppp,5,144,45,5,,,,, +199,13,3,4189,341,762.141,,,,,,144,45,0,,,,, +199,14,3,4190,369,762.141,29,32,C#2,ppp,5,144,37,5,,,,, +199,14,3,4190,369,762.226,,,,,,144,37,0,,,,, +199,15,3,4191,398,762.226,57,16,F#1,ppp,5,144,30,5,,,,, +199,15,3,4191,398,762.393,,,,,,144,30,0,,,,, +199,16,3,4192,455,762.393,28,32,A2,ppp,5,144,45,5,,,,, +199,16,3,4192,455,762.475,,,,,,144,45,0,,,,, +199,17,3,4193,483,762.475,29,32,C#2,ppp,5,144,37,5,,,,, +199,17,3,4193,483,762.56,,,,,,144,37,0,,,,, +199,18,3,4194,512,762.56,28,32,A2,ppp,5,144,45,5,,,,, +199,18,3,4194,512,762.642,,,,,,144,45,0,,,,, +199,19,3,4195,540,762.642,28,32,F#1,ppp,5,144,30,5,,,,, +199,19,3,4195,540,762.724,,,,,,144,30,0,,,,, +199,20,3,4196,568,762.724,29,32,C#2,ppp,5,144,37,5,,,,, +199,20,3,4196,568,762.809,,,,,,144,37,0,,,,, +199,21,3,4197,597,762.809,28,32,A2,ppp,5,144,45,5,,,,, +199,21,3,4197,597,762.891,,,,,,144,45,0,,,,, +199,22,3,4198,625,762.891,29,32,C#2,ppp,5,144,37,5,,,,, +199,22,3,4198,625,762.976,,,,,,144,37,0,,,,, +199,23,3,4199,654,762.976,57,16,F#1,ppp,5,144,30,5,,,,, +199,23,3,4199,654,763.143,,,,,,144,30,0,,,,, +199,24,3,4200,711,763.143,28,32,A2,ppp,5,144,45,5,,,,, +199,24,3,4200,711,763.225,,,,,,144,45,0,,,,, +199,25,3,4201,739,763.225,29,32,C#2,ppp,5,144,37,5,,,,, +199,25,3,4201,739,763.31,,,,,,144,37,0,,,,, +199,26,3,4202,768,763.31,28,32,A2,ppp,5,144,45,5,,,,, +199,26,3,4202,768,763.392,,,,,,144,45,0,,,,, +199,27,3,4203,796,763.392,28,32,F#1,ppp,5,144,30,5,,,,, +199,27,3,4203,796,763.474,,,,,,144,30,0,,,,, +199,28,3,4204,824,763.474,29,32,C#2,ppp,5,144,37,5,,,,, +199,28,3,4204,824,763.559,,,,,,144,37,0,,,,, +199,29,3,4205,853,763.559,28,32,A2,ppp,5,144,45,5,,,,, +199,29,3,4205,853,763.641,,,,,,144,45,0,,,,, +199,30,3,4206,881,763.641,29,32,C#2,ppp,5,144,37,5,,,,, +199,30,3,4206,881,763.726,,,,,,144,37,0,,,,, +199,31,3,4207,910,763.726,57,16,F#1,ppp,5,144,30,5,,,,, +199,31,3,4207,910,763.893,,,,,,144,30,0,,,,, +199,32,3,4208,967,763.893,28,32,A2,ppp,5,144,45,5,,,,, +199,32,3,4208,967,763.975,,,,,,144,45,0,,,,, +199,33,3,4209,995,763.975,29,32,C#2,ppp,5,144,37,5,,,,, +198,21,1,4159,1024,764.06,,,,,,144,24,0,,,,, +199,33,3,4209,995,764.06,,,,,,144,37,0,,,,, +199,34,3,4210,1024,764.06,,,,,,176,102,0,,,,, +199,35,1,4211,1024,764.06,512,2,C#5,pp,8,144,73,8,,,,, +199,36,3,4212,1080,764.224,29,32,C#2,ppp,5,144,37,5,,,,, +199,36,3,4212,1080,764.309,,,,,,144,37,0,,,,, +199,37,3,4213,1109,764.309,28,32,A2,ppp,5,144,45,5,,,,, +199,37,3,4213,1109,764.391,,,,,,144,45,0,,,,, +199,38,3,4214,1137,764.391,29,32,C#2,ppp,5,144,37,5,,,,, +199,38,3,4214,1137,764.476,,,,,,144,37,0,,,,, +199,39,3,4215,1166,764.476,57,16,F#1,ppp,5,144,30,5,,,,, +199,39,3,4215,1166,764.643,,,,,,144,30,0,,,,, +199,40,3,4216,1223,764.643,28,32,A2,ppp+,6,144,45,6,,,,, +199,40,3,4216,1223,764.725,,,,,,144,45,0,,,,, +199,41,3,4217,1251,764.725,29,32,C#2,ppp+,6,144,37,6,,,,, +199,41,3,4217,1251,764.81,,,,,,144,37,0,,,,, +199,42,3,4218,1280,764.81,28,32,A2,ppp+,6,144,45,6,,,,, +199,42,3,4218,1280,764.892,,,,,,144,45,0,,,,, +199,43,3,4219,1308,764.892,28,32,F#1,ppp+,6,144,30,6,,,,, +199,43,3,4219,1308,764.974,,,,,,144,30,0,,,,, +199,44,3,4220,1336,764.974,29,32,C#2,ppp+,6,144,37,6,,,,, +199,44,3,4220,1336,765.059,,,,,,144,37,0,,,,, +199,45,3,4221,1365,765.059,28,32,A2,ppp+,6,144,45,6,,,,, +199,45,3,4221,1365,765.141,,,,,,144,45,0,,,,, +199,46,3,4222,1393,765.141,29,32,C#2,pp-,7,144,37,7,,,,, +199,46,3,4222,1393,765.226,,,,,,144,37,0,,,,, +199,47,3,4223,1422,765.226,57,16,F#1,pp-,7,144,30,7,,,,, +199,47,3,4223,1422,765.393,,,,,,144,30,0,,,,, +199,48,3,4224,1479,765.393,28,32,A2,pp-,7,144,45,7,,,,, +199,48,3,4224,1479,765.475,,,,,,144,45,0,,,,, +199,49,3,4225,1507,765.475,29,32,C#2,pp-,7,144,37,7,,,,, +199,49,3,4225,1507,765.56,,,,,,144,37,0,,,,, +200,0,0,4226,0,765.56,,,,,,,,,200,,,, +200,1,1,4227,0,765.56,512,2,C#5,,,,,,,,,, +200,2,3,4228,0,765.56,28,32,A2,pp-,7,144,45,7,,,,, +200,2,3,4228,0,765.642,,,,,,144,45,0,,,,, +200,3,3,4229,28,765.642,28,32,F#1,pp-,7,144,30,7,,,,, +200,3,3,4229,28,765.724,,,,,,144,30,0,,,,, +200,4,3,4230,56,765.724,29,32,C#2,pp,8,144,37,8,,,,, +200,4,3,4230,56,765.809,,,,,,144,37,0,,,,, +200,5,3,4231,85,765.809,28,32,A2,pp,8,144,45,8,,,,, +200,5,3,4231,85,765.891,,,,,,144,45,0,,,,, +200,6,3,4232,113,765.891,29,32,C#2,pp,8,144,37,8,,,,, +200,6,3,4232,113,765.976,,,,,,144,37,0,,,,, +200,7,3,4233,142,765.976,57,16,F#1,pp,8,144,30,8,,,,, +200,7,3,4233,142,766.143,,,,,,144,30,0,,,,, +200,8,3,4234,199,766.143,28,32,A2,pp,8,144,45,8,,,,, +200,8,3,4234,199,766.225,,,,,,144,45,0,,,,, +200,9,3,4235,227,766.225,29,32,C#2,pp,8,144,37,8,,,,, +200,9,3,4235,227,766.31,,,,,,144,37,0,,,,, +200,10,3,4236,256,766.31,28,32,A2,pp+,9,144,45,9,,,,, +200,10,3,4236,256,766.392,,,,,,144,45,0,,,,, +200,11,3,4237,284,766.392,28,32,F#1,pp+,9,144,30,9,,,,, +200,11,3,4237,284,766.474,,,,,,144,30,0,,,,, +200,12,3,4238,312,766.474,29,32,C#2,pp+,9,144,37,9,,,,, +200,12,3,4238,312,766.559,,,,,,144,37,0,,,,, +200,13,3,4239,341,766.559,28,32,A2,pp+,9,144,45,9,,,,, +200,13,3,4239,341,766.641,,,,,,144,45,0,,,,, +200,14,3,4240,369,766.641,29,32,C#2,pp+,9,144,37,9,,,,, +200,14,3,4240,369,766.726,,,,,,144,37,0,,,,, +200,15,3,4241,398,766.726,114,8,F#1,pp+,9,144,30,9,,,,, +199,35,1,4211,1024,767.06,,,,,,144,73,0,,,,, +200,15,3,4241,398,767.06,,,,,,144,30,0,,,,, +200,16,3,4242,512,767.06,28,32,A2,ppp,5,144,45,5,,,,, +200,17,1,4243,512,767.06,1024,1,C1,mp,14,144,24,14,,,,, +200,16,3,4242,512,767.142,,,,,,144,45,0,,,,, +200,18,3,4244,540,767.142,28,32,F#1,ppp,5,144,30,5,,,,, +200,19,3,4245,568,767.224,29,32,C#2,ppp,5,144,37,5,,,,, +200,18,3,4244,540,767.299,,,,,,144,30,0,,,,, +200,19,3,4245,568,767.309,,,,,,144,37,0,,,,, +200,20,3,4246,597,767.309,28,32,A2,ppp,5,144,45,5,,,,, +200,20,3,4246,597,767.391,,,,,,144,45,0,,,,, +200,21,3,4247,625,767.391,29,32,C#2,ppp,5,144,37,5,,,,, +200,21,3,4247,625,767.476,,,,,,144,37,0,,,,, +200,22,3,4248,654,767.476,57,16,F#1,ppp,5,144,30,5,,,,, +200,22,3,4248,654,767.643,,,,,,144,30,0,,,,, +200,23,3,4249,711,767.643,28,32,A2,ppp,5,144,45,5,,,,, +200,23,3,4249,711,767.725,,,,,,144,45,0,,,,, +200,24,3,4250,739,767.725,29,32,C#2,ppp,5,144,37,5,,,,, +200,24,3,4250,739,767.81,,,,,,144,37,0,,,,, +200,25,3,4251,768,767.81,28,32,A2,ppp,5,144,45,5,,,,, +200,25,3,4251,768,767.892,,,,,,144,45,0,,,,, +200,26,3,4252,796,767.892,28,32,F#1,ppp,5,144,30,5,,,,, +200,26,3,4252,796,767.974,,,,,,144,30,0,,,,, +200,27,3,4253,824,767.974,29,32,C#2,ppp,5,144,37,5,,,,, +200,27,3,4253,824,768.059,,,,,,144,37,0,,,,, +200,28,3,4254,853,768.059,28,32,A2,ppp,5,144,45,5,,,,, +200,28,3,4254,853,768.141,,,,,,144,45,0,,,,, +200,29,3,4255,881,768.141,29,32,C#2,ppp,5,144,37,5,,,,, +200,29,3,4255,881,768.226,,,,,,144,37,0,,,,, +200,30,3,4256,910,768.226,57,16,F#1,ppp,5,144,30,5,,,,, +200,30,3,4256,910,768.393,,,,,,144,30,0,,,,, +200,31,3,4257,967,768.393,28,32,A2,ppp,5,144,45,5,,,,, +200,31,3,4257,967,768.475,,,,,,144,45,0,,,,, +200,32,3,4258,995,768.475,29,32,C#2,ppp,5,144,37,5,,,,, +200,32,3,4258,995,768.56,,,,,,144,37,0,,,,, +200,33,3,4259,1024,768.56,28,32,A2,ppp,5,144,45,5,,,,, +200,33,3,4259,1024,768.642,,,,,,144,45,0,,,,, +200,34,3,4260,1052,768.642,28,32,F#1,ppp,5,144,30,5,,,,, +200,34,3,4260,1052,768.724,,,,,,144,30,0,,,,, +200,35,3,4261,1080,768.724,29,32,C#2,ppp,5,144,37,5,,,,, +200,35,3,4261,1080,768.809,,,,,,144,37,0,,,,, +200,36,3,4262,1109,768.809,28,32,A2,ppp,5,144,45,5,,,,, +200,36,3,4262,1109,768.891,,,,,,144,45,0,,,,, +200,37,3,4263,1137,768.891,29,32,C#2,ppp,5,144,37,5,,,,, +200,37,3,4263,1137,768.976,,,,,,144,37,0,,,,, +200,38,3,4264,1166,768.976,57,16,F#1,ppp,5,144,30,5,,,,, +200,38,3,4264,1166,769.143,,,,,,144,30,0,,,,, +200,39,3,4265,1223,769.143,28,32,A2,ppp,5,144,45,5,,,,, +200,39,3,4265,1223,769.225,,,,,,144,45,0,,,,, +200,40,3,4266,1251,769.225,29,32,C#2,ppp,5,144,37,5,,,,, +200,40,3,4266,1251,769.31,,,,,,144,37,0,,,,, +200,41,3,4267,1280,769.31,28,32,A2,ppp,5,144,45,5,,,,, +200,41,3,4267,1280,769.392,,,,,,144,45,0,,,,, +200,42,3,4268,1308,769.392,28,32,F#1,ppp,5,144,30,5,,,,, +200,42,3,4268,1308,769.474,,,,,,144,30,0,,,,, +200,43,3,4269,1336,769.474,29,32,C#2,ppp,5,144,37,5,,,,, +200,43,3,4269,1336,769.559,,,,,,144,37,0,,,,, +200,44,3,4270,1365,769.559,28,32,A2,ppp,5,144,45,5,,,,, +200,44,3,4270,1365,769.641,,,,,,144,45,0,,,,, +200,45,3,4271,1393,769.641,29,32,C#2,ppp,5,144,37,5,,,,, +200,45,3,4271,1393,769.726,,,,,,144,37,0,,,,, +200,46,3,4272,1422,769.726,57,16,F#1,ppp,5,144,30,5,,,,, +200,46,3,4272,1422,769.893,,,,,,144,30,0,,,,, +200,47,3,4273,1479,769.893,28,32,A2,ppp,5,144,45,5,,,,, +200,47,3,4273,1479,769.975,,,,,,144,45,0,,,,, +200,48,3,4274,1507,769.975,29,32,C#2,ppp,5,144,37,5,,,,, +200,17,1,4243,512,770.06,,,,,,144,24,0,,,,, +200,48,3,4274,1507,770.06,,,,,,144,37,0,,,,, +201,0,0,4275,0,770.06,,,,,,,,,201,,,, +201,1,1,4276,0,770.06,1536,1,E6,mf,17,144,88,17,,,,, +201,2,3,4277,0,770.06,56,16,C1,mf,17,144,24,17,,,,, +201,2,3,4277,0,770.224,,,,,,144,24,0,,,,, +201,3,3,4278,56,770.224,29,32,C#2,ppp,5,144,37,5,,,,, +201,3,3,4278,56,770.309,,,,,,144,37,0,,,,, +201,4,3,4279,85,770.309,28,32,F#1,ppp,5,144,30,5,,,,, +201,4,3,4279,85,770.391,,,,,,144,30,0,,,,, +201,5,3,4280,113,770.391,57,16,C#2,ppp,5,144,37,5,,,,, +201,5,3,4280,113,770.558,,,,,,144,37,0,,,,, +201,6,3,4281,170,770.558,29,32,F#1,ppp,5,144,30,5,,,,, +201,6,3,4281,170,770.643,,,,,,144,30,0,,,,, +201,7,3,4282,199,770.643,28,32,A2,ppp,5,144,45,5,,,,, +201,7,3,4282,199,770.725,,,,,,144,45,0,,,,, +201,8,3,4283,227,770.725,29,32,C#2,ppp,5,144,37,5,,,,, +201,8,3,4283,227,770.81,,,,,,144,37,0,,,,, +201,9,3,4284,256,770.81,28,32,A2,ppp,5,144,45,5,,,,, +201,9,3,4284,256,770.892,,,,,,144,45,0,,,,, +201,10,3,4285,284,770.892,28,32,F#1,ppp,5,144,30,5,,,,, +201,10,3,4285,284,770.974,,,,,,144,30,0,,,,, +201,11,3,4286,312,770.974,29,32,C#2,ppp,5,144,37,5,,,,, +201,11,3,4286,312,771.059,,,,,,144,37,0,,,,, +201,12,3,4287,341,771.059,28,32,F#1,ppp,5,144,30,5,,,,, +201,12,3,4287,341,771.141,,,,,,144,30,0,,,,, +201,13,3,4288,369,771.141,57,16,C#2,ppp,5,144,37,5,,,,, +201,13,3,4288,369,771.308,,,,,,144,37,0,,,,, +201,14,3,4289,426,771.308,29,32,F#1,ppp,5,144,30,5,,,,, +201,14,3,4289,426,771.393,,,,,,144,30,0,,,,, +201,15,3,4290,455,771.393,28,32,A2,ppp,5,144,45,5,,,,, +201,15,3,4290,455,771.475,,,,,,144,45,0,,,,, +201,16,3,4291,483,771.475,29,32,C#2,ppp,5,144,37,5,,,,, +201,16,3,4291,483,771.56,,,,,,144,37,0,,,,, +201,17,3,4292,512,771.56,28,32,A2,ppp,5,144,45,5,,,,, +201,17,3,4292,512,771.642,,,,,,144,45,0,,,,, +201,18,3,4293,540,771.642,28,32,F#1,ppp,5,144,30,5,,,,, +201,18,3,4293,540,771.724,,,,,,144,30,0,,,,, +201,19,3,4294,568,771.724,29,32,C#2,ppp,5,144,37,5,,,,, +201,19,3,4294,568,771.809,,,,,,144,37,0,,,,, +201,20,3,4295,597,771.809,28,32,F#1,ppp,5,144,30,5,,,,, +201,20,3,4295,597,771.891,,,,,,144,30,0,,,,, +201,21,3,4296,625,771.891,57,16,C#2,ppp,5,144,37,5,,,,, +201,21,3,4296,625,772.058,,,,,,144,37,0,,,,, +201,22,3,4297,682,772.058,29,32,F#1,ppp,5,144,30,5,,,,, +201,22,3,4297,682,772.143,,,,,,144,30,0,,,,, +201,23,3,4298,711,772.143,28,32,A2,ppp,5,144,45,5,,,,, +201,23,3,4298,711,772.225,,,,,,144,45,0,,,,, +201,24,3,4299,739,772.225,29,32,C#2,ppp,5,144,37,5,,,,, +201,24,3,4299,739,772.31,,,,,,144,37,0,,,,, +201,25,3,4300,768,772.31,28,32,A2,ppp,5,144,45,5,,,,, +201,25,3,4300,768,772.392,,,,,,144,45,0,,,,, +201,26,3,4301,796,772.392,28,32,F#1,ppp,5,144,30,5,,,,, +201,26,3,4301,796,772.474,,,,,,144,30,0,,,,, +201,27,3,4302,824,772.474,29,32,C#2,ppp,5,144,37,5,,,,, +201,27,3,4302,824,772.559,,,,,,144,37,0,,,,, +201,28,3,4303,853,772.559,28,32,F#1,ppp,5,144,30,5,,,,, +201,28,3,4303,853,772.641,,,,,,144,30,0,,,,, +201,29,3,4304,881,772.641,57,16,C#2,ppp,5,144,37,5,,,,, +201,29,3,4304,881,772.808,,,,,,144,37,0,,,,, +201,30,3,4305,938,772.808,29,32,F#1,ppp,5,144,30,5,,,,, +201,30,3,4305,938,772.893,,,,,,144,30,0,,,,, +201,31,3,4306,967,772.893,28,32,A2,ppp,5,144,45,5,,,,, +201,31,3,4306,967,772.975,,,,,,144,45,0,,,,, +201,32,3,4307,995,772.975,29,32,C#2,ppp,5,144,37,5,,,,, +201,32,3,4307,995,773.06,,,,,,144,37,0,,,,, +201,33,3,4308,1024,773.06,28,32,A2,ppp,5,144,45,5,,,,, +201,33,3,4308,1024,773.142,,,,,,144,45,0,,,,, +201,34,3,4309,1052,773.142,28,32,F#1,ppp,5,144,30,5,,,,, +201,34,3,4309,1052,773.224,,,,,,144,30,0,,,,, +201,35,3,4310,1080,773.224,29,32,C#2,ppp,5,144,37,5,,,,, +201,35,3,4310,1080,773.309,,,,,,144,37,0,,,,, +201,36,3,4311,1109,773.309,28,32,F#1,ppp,5,144,30,5,,,,, +201,36,3,4311,1109,773.391,,,,,,144,30,0,,,,, +201,37,3,4312,1137,773.391,57,16,C#2,ppp,5,144,37,5,,,,, +201,37,3,4312,1137,773.558,,,,,,144,37,0,,,,, +201,38,3,4313,1194,773.558,29,32,F#1,ppp,5,144,30,5,,,,, +201,38,3,4313,1194,773.643,,,,,,144,30,0,,,,, +201,39,3,4314,1223,773.643,28,32,A2,ppp,5,144,45,5,,,,, +201,39,3,4314,1223,773.725,,,,,,144,45,0,,,,, +201,40,3,4315,1251,773.725,29,32,C#2,ppp,5,144,37,5,,,,, +201,40,3,4315,1251,773.81,,,,,,144,37,0,,,,, +201,41,3,4316,1280,773.81,28,32,A2,ppp,5,144,45,5,,,,, +201,41,3,4316,1280,773.892,,,,,,144,45,0,,,,, +201,42,3,4317,1308,773.892,28,32,F#1,ppp,5,144,30,5,,,,, +201,42,3,4317,1308,773.974,,,,,,144,30,0,,,,, +201,43,3,4318,1336,773.974,29,32,C#2,ppp,5,144,37,5,,,,, +201,43,3,4318,1336,774.059,,,,,,144,37,0,,,,, +201,44,3,4319,1365,774.059,28,32,F#1,ppp,5,144,30,5,,,,, +201,44,3,4319,1365,774.141,,,,,,144,30,0,,,,, +201,45,3,4320,1393,774.141,57,16,C#2,ppp,5,144,37,5,,,,, +201,45,3,4320,1393,774.308,,,,,,144,37,0,,,,, +201,46,3,4321,1450,774.308,29,32,F#1,ppp,5,144,30,5,,,,, +201,46,3,4321,1450,774.393,,,,,,144,30,0,,,,, +201,47,3,4322,1479,774.393,28,32,A2,ppp,5,144,45,5,,,,, +201,47,3,4322,1479,774.475,,,,,,144,45,0,,,,, +201,48,3,4323,1507,774.475,29,32,C#2,ppp,5,144,37,5,,,,, +201,1,1,4276,0,774.56,,,,,,144,88,0,,,,, +201,48,3,4323,1507,774.56,,,,,,144,37,0,,,,, +202,0,0,4324,0,774.56,,,,,,,,,202,,,, +202,1,1,4325,0,774.56,102,8,C1,pp,8,144,24,8,,,,, +202,2,1,4326,0,774.56,128,8,A#1,pp,8,144,34,8,,,,, +202,3,3,4327,0,774.56,28,32,A2,ppp,5,144,45,5,,,,, +202,3,3,4327,0,774.642,,,,,,144,45,0,,,,, +202,4,3,4328,28,774.642,28,32,F#1,ppp,5,144,30,5,,,,, +202,4,3,4328,28,774.724,,,,,,144,30,0,,,,, +202,5,3,4329,56,774.724,29,32,C#2,ppp,5,144,37,5,,,,, +202,5,3,4329,56,774.809,,,,,,144,37,0,,,,, +202,6,3,4330,85,774.809,28,32,F#1,ppp,5,144,30,5,,,,, +202,1,1,4325,0,774.859,,,,,,144,24,0,,,,, +202,2,1,4326,0,774.859,,,,,,144,34,0,,,,, +202,7,1,4331,102,774.859,51,16,C1,pp,8,144,24,8,,,,, +202,8,1,4332,102,774.859,64,16,A#1,pp,8,144,34,8,,,,, +202,6,3,4330,85,774.891,,,,,,144,30,0,,,,, +202,9,3,4333,113,774.891,57,16,C#2,ppp,5,144,37,5,,,,, +202,7,1,4331,102,775.008,,,,,,144,24,0,,,,, +202,8,1,4332,102,775.008,,,,,,144,34,0,,,,, +202,10,1,4334,153,775.008,51,16,A#1,pp+,9,144,34,9,,,,, +202,9,3,4333,113,775.058,,,,,,144,37,0,,,,, +202,11,3,4335,170,775.058,29,32,F#1,ppp,5,144,30,5,,,,, +202,11,3,4335,170,775.143,,,,,,144,30,0,,,,, +202,12,3,4336,199,775.143,28,32,A2,ppp,5,144,45,5,,,,, +202,10,1,4334,153,775.158,,,,,,144,34,0,,,,, +202,13,1,4337,204,775.158,52,16,C1,pp+,9,144,24,9,,,,, +202,12,3,4336,199,775.225,,,,,,144,45,0,,,,, +202,14,3,4338,227,775.225,29,32,C#2,ppp,5,144,37,5,,,,, +202,14,3,4338,227,775.31,,,,,,144,37,0,,,,, +202,15,3,4339,256,775.31,28,32,A2,ppp,5,144,45,5,,,,, +202,16,1,4340,256,775.31,51,16,C1,,,,,,,,,, +202,15,3,4339,256,775.392,,,,,,144,45,0,,,,, +202,17,3,4341,284,775.392,28,32,F#1,ppp,5,144,30,5,,,,, +202,13,1,4337,204,775.459,,,,,,144,24,0,,,,, +202,18,1,4342,307,775.459,51,16,A#1,pp+,9,144,34,9,,,,, +202,17,3,4341,284,775.474,,,,,,144,30,0,,,,, +202,19,3,4343,312,775.474,29,32,C#2,ppp,5,144,37,5,,,,, +202,19,3,4343,312,775.559,,,,,,144,37,0,,,,, +202,20,3,4344,341,775.559,28,32,F#1,ppp,5,144,30,5,,,,, +202,18,1,4342,307,775.609,,,,,,144,34,0,,,,, +202,21,1,4345,358,775.609,51,16,C1,p-,10,144,24,10,,,,, +202,20,3,4344,341,775.641,,,,,,144,30,0,,,,, +202,22,3,4346,369,775.641,57,16,C#2,ppp,5,144,37,5,,,,, +202,21,1,4345,358,775.758,,,,,,144,24,0,,,,, +202,23,1,4347,409,775.758,103,8,A#1,p-,10,144,34,10,,,,, +202,22,3,4346,369,775.808,,,,,,144,37,0,,,,, +202,24,3,4348,426,775.808,29,32,F#1,ppp,5,144,30,5,,,,, +202,24,3,4348,426,775.893,,,,,,144,30,0,,,,, +202,25,3,4349,455,775.893,28,32,A2,ppp,5,144,45,5,,,,, +202,25,3,4349,455,775.975,,,,,,144,45,0,,,,, +202,26,3,4350,483,775.975,29,32,C#2,ppp,5,144,37,5,,,,, +202,23,1,4347,409,776.06,,,,,,144,34,0,,,,, +202,26,3,4350,483,776.06,,,,,,144,37,0,,,,, +202,27,3,4351,512,776.06,28,32,A2,ppp,5,144,45,5,,,,, +202,28,1,4352,512,776.06,51,16,C1,p-,10,144,24,10,,,,, +202,27,3,4351,512,776.142,,,,,,144,45,0,,,,, +202,29,3,4353,540,776.142,28,32,F#1,ppp,5,144,30,5,,,,, +202,28,1,4352,512,776.209,,,,,,144,24,0,,,,, +202,30,1,4354,563,776.209,51,16,A#1,p,11,144,34,11,,,,, +202,29,3,4353,540,776.224,,,,,,144,30,0,,,,, +202,31,3,4355,568,776.224,29,32,C#2,ppp,5,144,37,5,,,,, +202,31,3,4355,568,776.309,,,,,,144,37,0,,,,, +202,32,3,4356,597,776.309,28,32,F#1,ppp,5,144,30,5,,,,, +202,30,1,4354,563,776.359,,,,,,144,34,0,,,,, +202,33,1,4357,614,776.359,51,16,C1,p,11,144,24,11,,,,, +202,32,3,4356,597,776.391,,,,,,144,30,0,,,,, +202,34,3,4358,625,776.391,57,16,C#2,ppp,5,144,37,5,,,,, +202,33,1,4357,614,776.508,,,,,,144,24,0,,,,, +202,35,1,4359,665,776.508,103,8,A#1,p,11,144,34,11,,,,, +202,34,3,4358,625,776.558,,,,,,144,37,0,,,,, +202,36,3,4360,682,776.558,29,32,F#1,ppp,5,144,30,5,,,,, +202,36,3,4360,682,776.643,,,,,,144,30,0,,,,, +202,37,3,4361,711,776.643,28,32,A2,ppp,5,144,45,5,,,,, +202,37,3,4361,711,776.725,,,,,,144,45,0,,,,, +202,38,3,4362,739,776.725,29,32,C#2,ppp,5,144,37,5,,,,, +202,38,3,4362,739,776.81,,,,,,144,37,0,,,,, +202,39,3,4363,768,776.81,28,32,A2,ppp,5,144,45,5,,,,, +202,40,1,4364,768,776.81,51,16,A#1,,,,,,,,,, +202,39,3,4363,768,776.892,,,,,,144,45,0,,,,, +202,41,3,4365,796,776.892,28,32,F#1,ppp,5,144,30,5,,,,, +202,35,1,4359,665,776.959,,,,,,144,34,0,,,,, +202,42,1,4366,819,776.959,51,16,C1,p+,12,144,24,12,,,,, +202,41,3,4365,796,776.974,,,,,,144,30,0,,,,, +202,43,3,4367,824,776.974,29,32,C#2,ppp,5,144,37,5,,,,, +202,43,3,4367,824,777.059,,,,,,144,37,0,,,,, +202,44,3,4368,853,777.059,28,32,F#1,ppp,5,144,30,5,,,,, +202,42,1,4366,819,777.109,,,,,,144,24,0,,,,, +202,45,1,4369,870,777.109,154,8,A#1,p+,12,144,34,12,,,,, +202,44,3,4368,853,777.141,,,,,,144,30,0,,,,, +202,46,3,4370,881,777.141,57,16,C#2,ppp,5,144,37,5,,,,, +202,46,3,4370,881,777.308,,,,,,144,37,0,,,,, +202,47,3,4371,938,777.308,29,32,F#1,ppp,5,144,30,5,,,,, +202,47,3,4371,938,777.393,,,,,,144,30,0,,,,, +202,48,3,4372,967,777.393,28,32,A2,ppp,5,144,45,5,,,,, +202,48,3,4372,967,777.475,,,,,,144,45,0,,,,, +202,49,3,4373,995,777.475,29,32,C#2,ppp,5,144,37,5,,,,, +202,45,1,4369,870,777.56,,,,,,144,34,0,,,,, +202,49,3,4373,995,777.56,,,,,,144,37,0,,,,, +202,50,3,4374,1024,777.56,28,32,A2,ppp,5,144,45,5,,,,, +202,51,1,4375,1024,777.56,,,,,,176,102,0,,,,, +202,50,3,4374,1024,777.642,,,,,,144,45,0,,,,, +202,52,3,4376,1052,777.642,28,32,F#1,ppp,5,144,30,5,,,,, +202,52,3,4376,1052,777.724,,,,,,144,30,0,,,,, +202,53,3,4377,1080,777.724,29,32,C#2,ppp,5,144,37,5,,,,, +202,53,3,4377,1080,777.809,,,,,,144,37,0,,,,, +202,54,3,4378,1109,777.809,28,32,F#1,ppp,5,144,30,5,,,,, +202,54,3,4378,1109,777.891,,,,,,144,30,0,,,,, +202,55,3,4379,1137,777.891,57,16,C#2,ppp,5,144,37,5,,,,, +202,55,3,4379,1137,778.058,,,,,,144,37,0,,,,, +202,56,3,4380,1194,778.058,29,32,F#1,ppp,5,144,30,5,,,,, +202,56,3,4380,1194,778.143,,,,,,144,30,0,,,,, +202,57,3,4381,1223,778.143,28,32,A2,ppp,5,144,45,5,,,,, +202,57,3,4381,1223,778.225,,,,,,144,45,0,,,,, +202,58,3,4382,1251,778.225,29,32,C#2,ppp,5,144,37,5,,,,, +202,58,3,4382,1251,778.31,,,,,,144,37,0,,,,, +202,59,3,4383,1280,778.31,28,32,A2,ppp,5,144,45,5,,,,, +202,60,1,4384,1280,778.31,,,,,,176,102,0,,,,, +202,59,3,4383,1280,778.392,,,,,,144,45,0,,,,, +202,61,3,4385,1308,778.392,28,32,F#1,ppp,5,144,30,5,,,,, +202,61,3,4385,1308,778.474,,,,,,144,30,0,,,,, +202,62,3,4386,1336,778.474,29,32,C#2,ppp,5,144,37,5,,,,, +202,62,3,4386,1336,778.559,,,,,,144,37,0,,,,, +202,63,3,4387,1365,778.559,28,32,F#1,ppp,5,144,30,5,,,,, +202,63,3,4387,1365,778.641,,,,,,144,30,0,,,,, +202,64,3,4388,1393,778.641,57,16,C#2,ppp,5,144,37,5,,,,, +202,64,3,4388,1393,778.808,,,,,,144,37,0,,,,, +202,65,3,4389,1450,778.808,29,32,F#1,ppp,5,144,30,5,,,,, +202,65,3,4389,1450,778.893,,,,,,144,30,0,,,,, +202,66,3,4390,1479,778.893,28,32,A2,ppp,5,144,45,5,,,,, +202,66,3,4390,1479,778.975,,,,,,144,45,0,,,,, +202,67,3,4391,1507,778.975,29,32,C#2,ppp,5,144,37,5,,,,, +202,67,3,4391,1507,779.06,,,,,,144,37,0,,,,, +203,0,0,4392,0,779.06,,,,,,,,,203,,,, +203,1,1,4393,0,779.06,,,,,,176,102,0,,,,, +203,2,3,4394,0,779.06,28,32,A2,ppp,5,144,45,5,,,,, +203,2,3,4394,0,779.142,,,,,,144,45,0,,,,, +203,3,3,4395,28,779.142,28,32,F#1,ppp,5,144,30,5,,,,, +203,3,3,4395,28,779.224,,,,,,144,30,0,,,,, +203,4,3,4396,56,779.224,29,32,C#2,ppp,5,144,37,5,,,,, +203,4,3,4396,56,779.309,,,,,,144,37,0,,,,, +203,5,3,4397,85,779.309,28,32,F#1,ppp,5,144,30,5,,,,, +203,5,3,4397,85,779.391,,,,,,144,30,0,,,,, +203,6,3,4398,113,779.391,57,16,C#2,ppp,5,144,37,5,,,,, +203,6,3,4398,113,779.558,,,,,,144,37,0,,,,, +203,7,3,4399,170,779.558,29,32,F#1,ppp,5,144,30,5,,,,, +203,7,3,4399,170,779.643,,,,,,144,30,0,,,,, +203,8,3,4400,199,779.643,28,32,A2,ppp,5,144,45,5,,,,, +203,8,3,4400,199,779.725,,,,,,144,45,0,,,,, +203,9,3,4401,227,779.725,29,32,C#2,ppp,5,144,37,5,,,,, +203,9,3,4401,227,779.81,,,,,,144,37,0,,,,, +203,10,3,4402,256,779.81,28,32,A2,ppp,5,144,45,5,,,,, +203,10,3,4402,256,779.892,,,,,,144,45,0,,,,, +203,11,3,4403,284,779.892,28,32,F#1,ppp,5,144,30,5,,,,, +203,11,3,4403,284,779.974,,,,,,144,30,0,,,,, +203,12,3,4404,312,779.974,29,32,C#2,ppp,5,144,37,5,,,,, +203,12,3,4404,312,780.059,,,,,,144,37,0,,,,, +203,13,3,4405,341,780.059,28,32,F#1,ppp,5,144,30,5,,,,, +203,13,3,4405,341,780.141,,,,,,144,30,0,,,,, +203,14,3,4406,369,780.141,57,16,C#2,ppp,5,144,37,5,,,,, +203,14,3,4406,369,780.308,,,,,,144,37,0,,,,, +203,15,3,4407,426,780.308,29,32,F#1,ppp,5,144,30,5,,,,, +203,15,3,4407,426,780.393,,,,,,144,30,0,,,,, +203,16,3,4408,455,780.393,28,32,A2,ppp,5,144,45,5,,,,, +203,16,3,4408,455,780.475,,,,,,144,45,0,,,,, +203,17,3,4409,483,780.475,29,32,C#2,ppp,5,144,37,5,,,,, +203,17,3,4409,483,780.56,,,,,,144,37,0,,,,, +203,18,3,4410,512,780.56,28,32,A2,ppp,5,144,45,5,,,,, +203,18,3,4410,512,780.642,,,,,,144,45,0,,,,, +203,19,3,4411,540,780.642,28,32,F#1,ppp,5,144,30,5,,,,, +203,19,3,4411,540,780.724,,,,,,144,30,0,,,,, +203,20,3,4412,568,780.724,29,32,C#2,ppp,5,144,37,5,,,,, +203,20,3,4412,568,780.809,,,,,,144,37,0,,,,, +203,21,3,4413,597,780.809,28,32,F#1,ppp,5,144,30,5,,,,, +203,21,3,4413,597,780.891,,,,,,144,30,0,,,,, +203,22,3,4414,625,780.891,57,16,C#2,ppp,5,144,37,5,,,,, +203,22,3,4414,625,781.058,,,,,,144,37,0,,,,, +203,23,3,4415,682,781.058,29,32,F#1,ppp,5,144,30,5,,,,, +203,23,3,4415,682,781.143,,,,,,144,30,0,,,,, +203,24,3,4416,711,781.143,28,32,A2,ppp,5,144,45,5,,,,, +203,24,3,4416,711,781.225,,,,,,144,45,0,,,,, +203,25,3,4417,739,781.225,29,32,C#2,ppp,5,144,37,5,,,,, +203,25,3,4417,739,781.31,,,,,,144,37,0,,,,, +203,26,3,4418,768,781.31,28,32,A2,ppp,5,144,45,5,,,,, +203,26,3,4418,768,781.392,,,,,,144,45,0,,,,, +203,27,3,4419,796,781.392,28,32,F#1,ppp,5,144,30,5,,,,, +203,27,3,4419,796,781.474,,,,,,144,30,0,,,,, +203,28,3,4420,824,781.474,29,32,C#2,ppp,5,144,37,5,,,,, +203,28,3,4420,824,781.559,,,,,,144,37,0,,,,, +203,29,3,4421,853,781.559,28,32,F#1,ppp,5,144,30,5,,,,, +203,29,3,4421,853,781.641,,,,,,144,30,0,,,,, +203,30,3,4422,881,781.641,57,16,C#2,ppp,5,144,37,5,,,,, +203,30,3,4422,881,781.808,,,,,,144,37,0,,,,, +203,31,3,4423,938,781.808,29,32,F#1,ppp,5,144,30,5,,,,, +203,31,3,4423,938,781.893,,,,,,144,30,0,,,,, +203,32,3,4424,967,781.893,28,32,A2,ppp,5,144,45,5,,,,, +203,32,3,4424,967,781.975,,,,,,144,45,0,,,,, +203,33,3,4425,995,781.975,29,32,C#2,ppp,5,144,37,5,,,,, +203,33,3,4425,995,782.06,,,,,,144,37,0,,,,, +203,34,3,4426,1024,782.06,28,32,A2,ppp,5,144,45,5,,,,, +203,34,3,4426,1024,782.142,,,,,,144,45,0,,,,, +203,35,3,4427,1052,782.142,28,32,F#1,ppp,5,144,30,5,,,,, +203,35,3,4427,1052,782.224,,,,,,144,30,0,,,,, +203,36,3,4428,1080,782.224,29,32,C#2,ppp,5,144,37,5,,,,, +203,36,3,4428,1080,782.309,,,,,,144,37,0,,,,, +203,37,3,4429,1109,782.309,28,32,F#1,ppp,5,144,30,5,,,,, +203,37,3,4429,1109,782.391,,,,,,144,30,0,,,,, +203,38,3,4430,1137,782.391,57,16,C#2,ppp,5,144,37,5,,,,, +203,38,3,4430,1137,782.558,,,,,,144,37,0,,,,, +203,39,3,4431,1194,782.558,29,32,F#1,ppp,5,144,30,5,,,,, +203,39,3,4431,1194,782.643,,,,,,144,30,0,,,,, +203,40,3,4432,1223,782.643,28,32,A2,ppp,5,144,45,5,,,,, +203,40,3,4432,1223,782.725,,,,,,144,45,0,,,,, +203,41,3,4433,1251,782.725,29,32,C#2,ppp,5,144,37,5,,,,, +203,41,3,4433,1251,782.81,,,,,,144,37,0,,,,, +203,42,3,4434,1280,782.81,28,32,A2,ppp,5,144,45,5,,,,, +203,42,3,4434,1280,782.892,,,,,,144,45,0,,,,, +203,43,3,4435,1308,782.892,28,32,F#1,ppp,5,144,30,5,,,,, +203,43,3,4435,1308,782.974,,,,,,144,30,0,,,,, +203,44,3,4436,1336,782.974,29,32,C#2,ppp,5,144,37,5,,,,, +203,44,3,4436,1336,783.059,,,,,,144,37,0,,,,, +203,45,3,4437,1365,783.059,28,32,F#1,ppp,5,144,30,5,,,,, +203,45,3,4437,1365,783.141,,,,,,144,30,0,,,,, +203,46,3,4438,1393,783.141,57,16,C#2,ppp,5,144,37,5,,,,, +203,46,3,4438,1393,783.308,,,,,,144,37,0,,,,, +203,47,3,4439,1450,783.308,29,32,F#1,ppp,5,144,30,5,,,,, +203,47,3,4439,1450,783.393,,,,,,144,30,0,,,,, +203,48,3,4440,1479,783.393,28,32,A2,ppp,5,144,45,5,,,,, +203,48,3,4440,1479,783.475,,,,,,144,45,0,,,,, +203,49,3,4441,1507,783.475,29,32,C#2,ppp,5,144,37,5,,,,, +203,49,3,4441,1507,783.56,,,,,,144,37,0,,,,, +204,0,0,4442,0,783.56,,,,,,,,,204,,,, +204,1,1,4443,0,783.56,256,4,G#5,mf,17,144,80,17,,,,, +204,2,1,4444,0,783.56,256,4,E6,mf,17,144,88,17,,,,, +204,3,3,4445,0,783.56,56,16,C1,mf,17,144,24,17,,,,, +204,3,3,4445,0,783.724,,,,,,144,24,0,,,,, +204,4,3,4446,56,783.724,29,32,C#2,ppp,5,144,37,5,,,,, +204,4,3,4446,56,783.809,,,,,,144,37,0,,,,, +204,5,3,4447,85,783.809,28,32,F#1,ppp,5,144,30,5,,,,, +204,5,3,4447,85,783.891,,,,,,144,30,0,,,,, +204,6,3,4448,113,783.891,57,16,C#2,ppp,5,144,37,5,,,,, +204,6,3,4448,113,784.058,,,,,,144,37,0,,,,, +204,7,3,4449,170,784.058,29,32,F#1,ppp,5,144,30,5,,,,, +204,7,3,4449,170,784.143,,,,,,144,30,0,,,,, +204,8,3,4450,199,784.143,28,32,A2,ppp,5,144,45,5,,,,, +204,8,3,4450,199,784.225,,,,,,144,45,0,,,,, +204,9,3,4451,227,784.225,29,32,C#2,ppp,5,144,37,5,,,,, +204,2,1,4444,0,784.31,,,,,,144,88,0,,,,, +204,9,3,4451,227,784.31,,,,,,144,37,0,,,,, +204,10,3,4452,256,784.31,28,32,A2,ppp,5,144,45,5,,,,, +204,11,1,4453,256,784.31,28,32,G#5,,,,,,,,,, +204,1,1,4443,0,784.392,,,,,,144,80,0,,,,, +204,10,3,4452,256,784.392,,,,,,144,45,0,,,,, +204,12,3,4454,284,784.392,28,32,F#1,ppp,5,144,30,5,,,,, +204,13,1,4455,284,784.392,114,8,A5,mp,14,144,81,14,,,,, +204,12,3,4454,284,784.474,,,,,,144,30,0,,,,, +204,14,3,4456,312,784.474,29,32,C#2,ppp,5,144,37,5,,,,, +204,14,3,4456,312,784.559,,,,,,144,37,0,,,,, +204,15,3,4457,341,784.559,28,32,F#1,ppp,5,144,30,5,,,,, +204,15,3,4457,341,784.641,,,,,,144,30,0,,,,, +204,16,3,4458,369,784.641,57,16,C#2,ppp,5,144,37,5,,,,, +204,13,1,4455,284,784.726,,,,,,144,81,0,,,,, +204,17,1,4459,398,784.726,114,8,F#3,p,11,144,54,11,,,,, +204,16,3,4458,369,784.808,,,,,,144,37,0,,,,, +204,18,3,4460,426,784.808,29,32,F#1,ppp,5,144,30,5,,,,, +204,18,3,4460,426,784.893,,,,,,144,30,0,,,,, +204,19,3,4461,455,784.893,28,32,A2,ppp,5,144,45,5,,,,, +204,19,3,4461,455,784.975,,,,,,144,45,0,,,,, +204,20,3,4462,483,784.975,29,32,C#2,ppp,5,144,37,5,,,,, +204,20,3,4462,483,785.06,,,,,,144,37,0,,,,, +204,21,3,4463,512,785.06,28,32,A2,ppp,5,144,45,5,,,,, +204,22,1,4464,512,785.06,1024,1,F#3,,,,,,,,,, +204,21,3,4463,512,785.142,,,,,,144,45,0,,,,, +204,23,3,4465,540,785.142,28,32,F#1,ppp,5,144,30,5,,,,, +204,23,3,4465,540,785.224,,,,,,144,30,0,,,,, +204,24,3,4466,568,785.224,29,32,C#2,ppp,5,144,37,5,,,,, +204,24,3,4466,568,785.309,,,,,,144,37,0,,,,, +204,25,3,4467,597,785.309,28,32,F#1,ppp,5,144,30,5,,,,, +204,25,3,4467,597,785.391,,,,,,144,30,0,,,,, +204,26,3,4468,625,785.391,57,16,C#2,ppp,5,144,37,5,,,,, +204,26,3,4468,625,785.558,,,,,,144,37,0,,,,, +204,27,3,4469,682,785.558,29,32,F#1,ppp,5,144,30,5,,,,, +204,27,3,4469,682,785.643,,,,,,144,30,0,,,,, +204,28,3,4470,711,785.643,28,32,A2,ppp,5,144,45,5,,,,, +204,28,3,4470,711,785.725,,,,,,144,45,0,,,,, +204,29,3,4471,739,785.725,29,32,C#2,ppp,5,144,37,5,,,,, +204,29,3,4471,739,785.81,,,,,,144,37,0,,,,, +204,30,3,4472,768,785.81,28,32,A2,ppp,5,144,45,5,,,,, +204,30,3,4472,768,785.892,,,,,,144,45,0,,,,, +204,31,3,4473,796,785.892,28,32,F#1,ppp,5,144,30,5,,,,, +204,31,3,4473,796,785.974,,,,,,144,30,0,,,,, +204,32,3,4474,824,785.974,29,32,C#2,ppp,5,144,37,5,,,,, +204,32,3,4474,824,786.059,,,,,,144,37,0,,,,, +204,33,3,4475,853,786.059,28,32,F#1,ppp,5,144,30,5,,,,, +204,33,3,4475,853,786.141,,,,,,144,30,0,,,,, +204,34,3,4476,881,786.141,57,16,C#2,ppp,5,144,37,5,,,,, +204,34,3,4476,881,786.308,,,,,,144,37,0,,,,, +204,35,3,4477,938,786.308,29,32,F#1,ppp,5,144,30,5,,,,, +204,35,3,4477,938,786.393,,,,,,144,30,0,,,,, +204,36,3,4478,967,786.393,28,32,A2,ppp,5,144,45,5,,,,, +204,36,3,4478,967,786.475,,,,,,144,45,0,,,,, +204,37,3,4479,995,786.475,29,32,C#2,ppp,5,144,37,5,,,,, +204,37,3,4479,995,786.56,,,,,,144,37,0,,,,, +204,38,3,4480,1024,786.56,28,32,A2,ppp,5,144,45,5,,,,, +204,38,3,4480,1024,786.642,,,,,,144,45,0,,,,, +204,39,3,4481,1052,786.642,28,32,F#1,ppp,5,144,30,5,,,,, +204,39,3,4481,1052,786.724,,,,,,144,30,0,,,,, +204,40,3,4482,1080,786.724,29,32,C#2,ppp,5,144,37,5,,,,, +204,40,3,4482,1080,786.809,,,,,,144,37,0,,,,, +204,41,3,4483,1109,786.809,28,32,F#1,ppp,5,144,30,5,,,,, +204,41,3,4483,1109,786.891,,,,,,144,30,0,,,,, +204,42,3,4484,1137,786.891,57,16,C#2,ppp,5,144,37,5,,,,, +204,42,3,4484,1137,787.058,,,,,,144,37,0,,,,, +204,43,3,4485,1194,787.058,29,32,F#1,ppp,5,144,30,5,,,,, +204,46,0,4486,1251,787.117,,,,,,176,64,0,,,,,^ +204,43,3,4485,1194,787.143,,,,,,144,30,0,,,,, +204,44,3,4487,1223,787.143,28,32,A2,ppp,5,144,45,5,,,,, +204,44,3,4487,1223,787.225,,,,,,144,45,0,,,,, +204,45,3,4488,1251,787.225,29,32,C#2,ppp,5,144,37,5,,,,, +204,45,3,4488,1251,787.31,,,,,,144,37,0,,,,, +204,47,3,4489,1280,787.31,28,32,A4,ppp,5,144,69,5,,,,, +204,48,0,4490,1280,787.31,,,,,,,,,,5969,,, +204,47,3,4489,1280,787.392,,,,,,144,69,0,,,,, +204,50,3,4491,1308,787.392,28,32,C1,ppp,5,144,24,5,,,,, +204,49,0,4492,1280,787.417,,,,,,176,64,127,,,,,V +204,50,3,4491,1308,787.474,,,,,,144,24,0,,,,, +204,51,3,4493,1336,787.474,29,32,F#1,ppp,5,144,30,5,,,,, +204,51,3,4493,1336,787.559,,,,,,144,30,0,,,,, +204,52,3,4494,1365,787.559,28,32,A4,ppp,5,144,69,5,,,,, +204,52,3,4494,1365,787.641,,,,,,144,69,0,,,,, +204,53,3,4495,1393,787.641,29,32,C1,ppp,5,144,24,5,,,,, +204,53,3,4495,1393,787.726,,,,,,144,24,0,,,,, +204,54,3,4496,1422,787.726,57,16,F#1,ppp,5,144,30,5,,,,, +204,54,3,4496,1422,787.893,,,,,,144,30,0,,,,, +204,55,3,4497,1479,787.893,28,32,A4,ppp,5,144,69,5,,,,, +204,55,3,4497,1479,787.975,,,,,,144,69,0,,,,, +204,56,3,4498,1507,787.975,29,32,C#2,ppp,5,144,37,5,,,,, +204,17,1,4459,398,788.06,,,,,,144,54,0,,,,, +204,56,3,4498,1507,788.06,,,,,,144,37,0,,,,, +205,0,0,4499,0,788.06,,,,,,,,,205,,,, +205,1,1,4500,0,788.06,,,,,,176,102,0,,,,, +205,2,3,4501,0,788.06,28,32,A4,ppp,5,144,69,5,,,,, +205,2,3,4501,0,788.142,,,,,,144,69,0,,,,, +205,3,3,4502,28,788.142,28,32,C1,ppp,5,144,24,5,,,,, +205,3,3,4502,28,788.224,,,,,,144,24,0,,,,, +205,4,3,4503,56,788.224,29,32,F#1,ppp,5,144,30,5,,,,, +205,4,3,4503,56,788.309,,,,,,144,30,0,,,,, +205,5,3,4504,85,788.309,28,32,A4,ppp,5,144,69,5,,,,, +205,5,3,4504,85,788.391,,,,,,144,69,0,,,,, +205,6,3,4505,113,788.391,29,32,C1,ppp,5,144,24,5,,,,, +205,6,3,4505,113,788.476,,,,,,144,24,0,,,,, +205,7,3,4506,142,788.476,57,16,F#1,ppp,5,144,30,5,,,,, +205,7,3,4506,142,788.643,,,,,,144,30,0,,,,, +205,8,3,4507,199,788.643,28,32,A4,ppp,5,144,69,5,,,,, +205,8,3,4507,199,788.725,,,,,,144,69,0,,,,, +205,9,3,4508,227,788.725,29,32,C#2,ppp,5,144,37,5,,,,, +205,9,3,4508,227,788.81,,,,,,144,37,0,,,,, +205,10,3,4509,256,788.81,28,32,A4,ppp,5,144,69,5,,,,, +205,10,3,4509,256,788.892,,,,,,144,69,0,,,,, +205,11,3,4510,284,788.892,28,32,C1,ppp,5,144,24,5,,,,, +205,11,3,4510,284,788.974,,,,,,144,24,0,,,,, +205,12,3,4511,312,788.974,29,32,F#1,ppp,5,144,30,5,,,,, +205,12,3,4511,312,789.059,,,,,,144,30,0,,,,, +205,13,3,4512,341,789.059,28,32,A4,ppp,5,144,69,5,,,,, +205,13,3,4512,341,789.141,,,,,,144,69,0,,,,, +205,14,3,4513,369,789.141,29,32,C1,ppp,5,144,24,5,,,,, +205,14,3,4513,369,789.226,,,,,,144,24,0,,,,, +205,15,3,4514,398,789.226,57,16,F#1,ppp,5,144,30,5,,,,, +205,15,3,4514,398,789.393,,,,,,144,30,0,,,,, +205,16,3,4515,455,789.393,28,32,A4,ppp,5,144,69,5,,,,, +205,16,3,4515,455,789.475,,,,,,144,69,0,,,,, +205,17,3,4516,483,789.475,29,32,C#2,ppp,5,144,37,5,,,,, +205,17,3,4516,483,789.56,,,,,,144,37,0,,,,, +205,18,3,4517,512,789.56,28,32,A4,ppp,5,144,69,5,,,,, +205,19,1,4518,512,789.56,,,,,,176,102,0,,,,, +205,18,3,4517,512,789.642,,,,,,144,69,0,,,,, +205,20,3,4519,540,789.642,28,32,C1,ppp,5,144,24,5,,,,, +205,20,3,4519,540,789.724,,,,,,144,24,0,,,,, +205,21,3,4520,568,789.724,29,32,F#1,ppp,5,144,30,5,,,,, +205,21,3,4520,568,789.809,,,,,,144,30,0,,,,, +205,22,3,4521,597,789.809,28,32,A4,ppp,5,144,69,5,,,,, +205,22,3,4521,597,789.891,,,,,,144,69,0,,,,, +205,23,3,4522,625,789.891,29,32,C1,ppp,5,144,24,5,,,,, +205,23,3,4522,625,789.976,,,,,,144,24,0,,,,, +205,24,3,4523,654,789.976,57,16,F#1,ppp,5,144,30,5,,,,, +205,24,3,4523,654,790.143,,,,,,144,30,0,,,,, +205,25,3,4524,711,790.143,28,32,A4,ppp,5,144,69,5,,,,, +205,25,3,4524,711,790.225,,,,,,144,69,0,,,,, +205,26,3,4525,739,790.225,29,32,C#2,ppp,5,144,37,5,,,,, +205,26,3,4525,739,790.31,,,,,,144,37,0,,,,, +205,27,3,4526,768,790.31,28,32,A4,ppp,5,144,69,5,,,,, +205,27,3,4526,768,790.392,,,,,,144,69,0,,,,, +205,28,3,4527,796,790.392,28,32,C1,ppp,5,144,24,5,,,,, +205,28,3,4527,796,790.474,,,,,,144,24,0,,,,, +205,29,3,4528,824,790.474,29,32,F#1,ppp,5,144,30,5,,,,, +205,29,3,4528,824,790.559,,,,,,144,30,0,,,,, +205,30,3,4529,853,790.559,28,32,A4,ppp,5,144,69,5,,,,, +205,30,3,4529,853,790.641,,,,,,144,69,0,,,,, +205,31,3,4530,881,790.641,29,32,C1,ppp,5,144,24,5,,,,, +205,31,3,4530,881,790.726,,,,,,144,24,0,,,,, +205,32,3,4531,910,790.726,57,16,F#1,ppp,5,144,30,5,,,,, +205,32,3,4531,910,790.893,,,,,,144,30,0,,,,, +205,33,3,4532,967,790.893,28,32,A4,ppp,5,144,69,5,,,,, +205,33,3,4532,967,790.975,,,,,,144,69,0,,,,, +205,34,3,4533,995,790.975,29,32,C#2,ppp,5,144,37,5,,,,, +205,34,3,4533,995,791.06,,,,,,144,37,0,,,,, +205,35,3,4534,1024,791.06,28,32,A4,ppp,5,144,69,5,,,,, +205,36,1,4535,1024,791.06,512,2,E5,p,11,144,76,11,,,,, +205,35,3,4534,1024,791.142,,,,,,144,69,0,,,,, +205,37,3,4536,1052,791.142,28,32,C2,ppp,5,144,36,5,,,,, +205,37,3,4536,1052,791.224,,,,,,144,36,0,,,,, +205,38,3,4537,1080,791.224,29,32,F#2,ppp,5,144,42,5,,,,, +205,38,3,4537,1080,791.309,,,,,,144,42,0,,,,, +205,39,3,4538,1109,791.309,28,32,A4,ppp,5,144,69,5,,,,, +205,39,3,4538,1109,791.391,,,,,,144,69,0,,,,, +205,40,3,4539,1137,791.391,29,32,C2,ppp,5,144,36,5,,,,, +205,40,3,4539,1137,791.476,,,,,,144,36,0,,,,, +205,41,3,4540,1166,791.476,57,16,F#2,ppp,5,144,42,5,,,,, +205,41,3,4540,1166,791.643,,,,,,144,42,0,,,,, +205,42,3,4541,1223,791.643,28,32,A4,ppp,5,144,69,5,,,,, +205,42,3,4541,1223,791.725,,,,,,144,69,0,,,,, +205,43,3,4542,1251,791.725,29,32,C2,ppp,5,144,36,5,,,,, +205,43,3,4542,1251,791.81,,,,,,144,36,0,,,,, +205,44,3,4543,1280,791.81,28,32,A4,ppp,5,144,69,5,,,,, +205,44,3,4543,1280,791.892,,,,,,144,69,0,,,,, +205,45,3,4544,1308,791.892,28,32,C2,ppp,5,144,36,5,,,,, +205,45,3,4544,1308,791.974,,,,,,144,36,0,,,,, +205,46,3,4545,1336,791.974,29,32,F#2,ppp,5,144,42,5,,,,, +205,46,3,4545,1336,792.059,,,,,,144,42,0,,,,, +205,47,3,4546,1365,792.059,28,32,A4,ppp,5,144,69,5,,,,, +205,47,3,4546,1365,792.141,,,,,,144,69,0,,,,, +205,48,3,4547,1393,792.141,29,32,C2,ppp,5,144,36,5,,,,, +205,48,3,4547,1393,792.226,,,,,,144,36,0,,,,, +205,49,3,4548,1422,792.226,57,16,F#2,ppp,5,144,42,5,,,,, +205,49,3,4548,1422,792.393,,,,,,144,42,0,,,,, +205,50,3,4549,1479,792.393,28,32,A4,ppp,5,144,69,5,,,,, +205,50,3,4549,1479,792.475,,,,,,144,69,0,,,,, +205,51,3,4550,1507,792.475,29,32,C2,ppp,5,144,36,5,,,,, +205,51,3,4550,1507,792.56,,,,,,144,36,0,,,,, +206,0,0,4551,0,792.56,,,,,,,,,206,,,, +206,1,1,4552,0,792.56,512,2,E5,,,,,,,,,, +206,2,3,4553,0,792.56,28,32,A4,ppp,5,144,69,5,,,,, +206,2,3,4553,0,792.642,,,,,,144,69,0,,,,, +206,3,3,4554,28,792.642,28,32,C2,ppp,5,144,36,5,,,,, +206,3,3,4554,28,792.724,,,,,,144,36,0,,,,, +206,4,3,4555,56,792.724,29,32,F#2,ppp,5,144,42,5,,,,, +206,4,3,4555,56,792.809,,,,,,144,42,0,,,,, +206,5,3,4556,85,792.809,28,32,A4,ppp,5,144,69,5,,,,, +206,5,3,4556,85,792.891,,,,,,144,69,0,,,,, +206,6,3,4557,113,792.891,29,32,C2,ppp,5,144,36,5,,,,, +206,6,3,4557,113,792.976,,,,,,144,36,0,,,,, +206,7,3,4558,142,792.976,57,16,F#2,ppp,5,144,42,5,,,,, +206,7,3,4558,142,793.143,,,,,,144,42,0,,,,, +206,8,3,4559,199,793.143,28,32,A4,ppp,5,144,69,5,,,,, +206,8,3,4559,199,793.225,,,,,,144,69,0,,,,, +206,9,3,4560,227,793.225,29,32,C2,ppp,5,144,36,5,,,,, +206,9,3,4560,227,793.31,,,,,,144,36,0,,,,, +206,10,3,4561,256,793.31,28,32,A4,ppp,5,144,69,5,,,,, +206,10,3,4561,256,793.392,,,,,,144,69,0,,,,, +206,11,3,4562,284,793.392,28,32,C2,ppp,5,144,36,5,,,,, +206,11,3,4562,284,793.474,,,,,,144,36,0,,,,, +206,12,3,4563,312,793.474,29,32,F#2,ppp,5,144,42,5,,,,, +206,12,3,4563,312,793.559,,,,,,144,42,0,,,,, +206,13,3,4564,341,793.559,28,32,A4,ppp,5,144,69,5,,,,, +206,13,3,4564,341,793.641,,,,,,144,69,0,,,,, +206,14,3,4565,369,793.641,29,32,C2,ppp,5,144,36,5,,,,, +206,14,3,4565,369,793.726,,,,,,144,36,0,,,,, +206,15,3,4566,398,793.726,57,16,F#2,ppp,5,144,42,5,,,,, +206,15,3,4566,398,793.893,,,,,,144,42,0,,,,, +206,16,3,4567,455,793.893,28,32,A4,ppp,5,144,69,5,,,,, +206,16,3,4567,455,793.975,,,,,,144,69,0,,,,, +206,17,3,4568,483,793.975,29,32,C2,ppp,5,144,36,5,,,,, +205,36,1,4535,1024,794.06,,,,,,144,76,0,,,,, +206,17,3,4568,483,794.06,,,,,,144,36,0,,,,, +206,18,3,4569,512,794.06,28,32,A4,mp,14,144,69,14,,,,, +206,19,1,4570,512,794.06,,,,,,176,102,0,,,,, +206,18,3,4569,512,794.142,,,,,,144,69,0,,,,, +206,20,3,4571,540,794.142,28,32,C2,mp,14,144,36,14,,,,, +206,20,3,4571,540,794.224,,,,,,144,36,0,,,,, +206,21,3,4572,568,794.224,29,32,F#2,mp-,13,144,42,13,,,,, +206,21,3,4572,568,794.309,,,,,,144,42,0,,,,, +206,22,3,4573,597,794.309,114,8,E5,mp-,13,144,76,13,,,,, +206,22,3,4573,597,794.643,,,,,,144,76,0,,,,, +206,23,3,4574,711,794.643,28,32,A4,p+,12,144,69,12,,,,, +206,23,3,4574,711,794.725,,,,,,144,69,0,,,,, +206,24,3,4575,739,794.725,29,32,C2,p+,12,144,36,12,,,,, +206,24,3,4575,739,794.81,,,,,,144,36,0,,,,, +206,25,3,4576,768,794.81,,,,,,176,102,0,,,,, +206,26,1,4577,768,794.81,,,,,,176,102,0,,,,, +206,27,3,4578,824,794.974,29,32,F#2,p,11,144,42,11,,,,, +206,27,3,4578,824,795.059,,,,,,144,42,0,,,,, +206,28,3,4579,853,795.059,114,8,E5,p,11,144,76,11,,,,, +206,28,3,4579,853,795.393,,,,,,144,76,0,,,,, +206,29,3,4580,967,795.393,57,16,G#4,pp+,9,144,68,9,,,,, +206,29,3,4580,967,795.56,,,,,,144,68,0,,,,, +206,30,3,4581,1024,795.56,,,,,,176,102,0,,,,, +206,31,3,4582,1052,795.642,28,32,C2,pp+,9,144,36,9,,,,, +206,31,3,4582,1052,795.724,,,,,,144,36,0,,,,, +206,32,3,4583,1080,795.724,29,32,F#2,pp,8,144,42,8,,,,, +206,32,3,4583,1080,795.809,,,,,,144,42,0,,,,, +206,33,3,4584,1109,795.809,114,8,E5,pp,8,144,76,8,,,,, +206,33,3,4584,1109,796.143,,,,,,144,76,0,,,,, +206,34,3,4585,1223,796.143,28,32,G#4,pp,8,144,68,8,,,,, +206,34,3,4585,1223,796.225,,,,,,144,68,0,,,,, +206,35,3,4586,1251,796.225,29,32,A4,pp,8,144,69,8,,,,, +206,35,3,4586,1251,796.31,,,,,,144,69,0,,,,, +206,36,3,4587,1280,796.31,,,,,,176,102,0,,,,, +206,38,0,4588,1408,796.535,,,,,,176,64,0,,,,,^ +206,37,3,4589,1408,796.685,25,32,A1,ppp,5,144,33,5,,,,, +206,37,3,4589,1408,796.758,,,,,,144,33,0,,,,, +206,40,3,4590,1433,796.758,26,32,G5,ppp,5,144,79,5,,,,, +206,40,3,4590,1433,796.834,,,,,,144,79,0,,,,, +206,41,3,4591,1459,796.834,25,32,A1,ppp,5,144,33,5,,,,, +206,39,0,4592,1408,796.835,,,,,,176,64,127,,,,,V +206,41,3,4591,1459,796.908,,,,,,144,33,0,,,,, +206,42,3,4593,1484,796.908,52,16,G5,ppp+,6,144,79,6,,,,, +206,42,3,4593,1484,797.06,,,,,,144,79,0,,,,, +207,0,0,4594,0,797.06,,,,,,,,,207,,,, +207,1,1,4595,0,797.06,,,,,,176,102,0,,,,, +207,2,3,4596,0,797.06,25,32,A#1,ppp+,6,144,34,6,,,,, +207,2,3,4596,0,797.133,,,,,,144,34,0,,,,, +207,3,3,4597,25,797.133,26,32,A1,ppp+,6,144,33,6,,,,, +207,3,3,4597,25,797.209,,,,,,144,33,0,,,,, +207,4,3,4598,51,797.209,25,32,A#1,ppp+,6,144,34,6,,,,, +207,5,1,4599,56,797.224,57,16,G5,ppp+,6,144,79,6,,,,, +207,4,3,4598,51,797.283,,,,,,144,34,0,,,,, +207,6,3,4600,76,797.283,52,16,A1,ppp+,6,144,33,6,,,,, +207,5,1,4599,56,797.391,,,,,,144,79,0,,,,, +207,7,1,4601,113,797.391,57,16,C#5,pp-,7,144,73,7,,,,, +207,6,3,4600,76,797.435,,,,,,144,33,0,,,,, +207,8,3,4602,128,797.435,25,32,A#1,pp-,7,144,34,7,,,,, +207,8,3,4602,128,797.508,,,,,,144,34,0,,,,, +207,9,3,4603,153,797.508,26,32,A1,pp-,7,144,33,7,,,,, +207,7,1,4601,113,797.558,,,,,,144,73,0,,,,, +207,10,1,4604,170,797.558,86,16,G5,pp-,7,144,79,7,,,,, +207,9,3,4603,153,797.584,,,,,,144,33,0,,,,, +207,11,3,4605,179,797.584,25,32,A#1,pp-,7,144,34,7,,,,, +207,11,3,4605,179,797.658,,,,,,144,34,0,,,,, +207,12,3,4606,204,797.658,52,16,A1,pp-,7,144,33,7,,,,, +207,10,1,4604,170,797.81,,,,,,144,79,0,,,,, +207,12,3,4606,204,797.81,,,,,,144,33,0,,,,, +207,13,1,4607,256,797.81,56,16,C#5,pp,8,144,73,8,,,,, +207,14,3,4608,256,797.81,25,32,A#1,pp,8,144,34,8,,,,, +207,14,3,4608,256,797.883,,,,,,144,34,0,,,,, +207,15,3,4609,281,797.883,26,32,A1,pp,8,144,33,8,,,,, +207,15,3,4609,281,797.959,,,,,,144,33,0,,,,, +207,16,3,4610,307,797.959,25,32,A#1,pp,8,144,34,8,,,,, +207,13,1,4607,256,797.974,,,,,,144,73,0,,,,, +207,17,1,4611,312,797.974,57,16,G5,pp,8,144,79,8,,,,, +207,16,3,4610,307,798.033,,,,,,144,34,0,,,,, +207,18,3,4612,332,798.033,52,16,A1,pp,8,144,33,8,,,,, +207,17,1,4611,312,798.141,,,,,,144,79,0,,,,, +207,19,1,4613,369,798.141,57,16,C#5,pp+,9,144,73,9,,,,, +207,18,3,4612,332,798.185,,,,,,144,33,0,,,,, +207,20,3,4614,384,798.185,25,32,A#1,pp+,9,144,34,9,,,,, +207,20,3,4614,384,798.258,,,,,,144,34,0,,,,, +207,21,3,4615,409,798.258,26,32,A1,pp+,9,144,33,9,,,,, +207,19,1,4613,369,798.308,,,,,,144,73,0,,,,, +207,22,1,4616,426,798.308,86,16,G5,pp+,9,144,79,9,,,,, +207,24,0,4617,460,798.334,,,,,,176,64,0,,,,,^ +207,21,3,4615,409,798.334,,,,,,144,33,0,,,,, +207,23,3,4618,435,798.334,25,32,A#1,pp+,9,144,34,9,,,,, +207,23,3,4618,435,798.408,,,,,,144,34,0,,,,, +207,25,3,4619,460,798.408,52,16,A1,pp+,9,144,33,9,,,,, +207,26,0,4620,460,798.408,,,,,,,,,,5970,,, +207,22,1,4616,426,798.56,,,,,,144,79,0,,,,, +207,25,3,4619,460,798.56,,,,,,144,33,0,,,,, +207,28,3,4621,512,798.56,512,2,A#2,p,11,144,46,11,,,,, +207,29,1,4622,512,798.56,28,32,A4,p,11,144,69,11,,,,, +207,27,0,4623,512,798.634,,,,,,176,64,127,,,,,V +207,29,1,4622,512,798.642,,,,,,144,69,0,,,,, +207,30,1,4624,540,798.642,28,32,C2,p,11,144,36,11,,,,, +207,30,1,4624,540,798.724,,,,,,144,36,0,,,,, +207,31,1,4625,568,798.724,29,32,F#2,p-,10,144,42,10,,,,, +207,31,1,4625,568,798.809,,,,,,144,42,0,,,,, +207,32,1,4626,597,798.809,114,8,E5,p-,10,144,76,10,,,,, +207,32,1,4626,597,799.143,,,,,,144,76,0,,,,, +207,33,1,4627,711,799.143,57,16,G#4,pp+,9,144,68,9,,,,, +207,34,1,4628,768,799.31,56,16,G#4,,,,,,,,,, +207,33,1,4627,711,799.474,,,,,,144,68,0,,,,, +207,35,1,4629,824,799.474,57,16,E5,pp-,7,144,76,7,,,,, +207,35,1,4629,824,799.641,,,,,,144,76,0,,,,, +207,36,1,4630,881,799.641,57,16,G#4,ppp+,6,144,68,6,,,,, +207,36,1,4630,881,799.808,,,,,,144,68,0,,,,, +207,37,1,4631,938,799.808,57,16,A4,ppp+,6,144,69,6,,,,, +207,39,0,4632,1023,799.908,,,,,,176,64,0,,,,,^ +207,37,1,4631,938,799.975,,,,,,144,69,0,,,,, +207,38,1,4633,995,799.975,29,32,G#4,ppp,5,144,68,5,,,,, +207,28,3,4621,512,800.06,,,,,,144,46,0,,,,, +207,38,1,4633,995,800.06,,,,,,144,68,0,,,,, +207,41,3,4634,1024,800.06,,,,,,176,102,0,,,,, +207,42,1,4635,1024,800.06,25,32,C2,ppp,5,144,36,5,,,,, +207,42,1,4635,1024,800.133,,,,,,144,36,0,,,,, +207,43,1,4636,1049,800.133,26,32,A5,ppp,5,144,81,5,,,,, +207,40,0,4637,1024,800.208,,,,,,176,64,127,,,,,V +207,43,1,4636,1049,800.209,,,,,,144,81,0,,,,, +207,44,1,4638,1075,800.209,25,32,E6,ppp,5,144,88,5,,,,, +207,44,1,4638,1075,800.283,,,,,,144,88,0,,,,, +207,45,1,4639,1100,800.283,26,32,A5,ppp,5,144,81,5,,,,, +207,45,1,4639,1100,800.359,,,,,,144,81,0,,,,, +207,46,1,4640,1126,800.359,26,32,E6,ppp,5,144,88,5,,,,, +207,47,1,4641,1152,800.435,25,32,E6,,,,,,,,,, +207,46,1,4640,1126,800.508,,,,,,144,88,0,,,,, +207,48,1,4642,1177,800.508,26,32,A5,ppp,5,144,81,5,,,,, +207,48,1,4642,1177,800.584,,,,,,144,81,0,,,,, +207,49,1,4643,1203,800.584,51,16,E6,ppp,5,144,88,5,,,,, +207,49,1,4643,1203,800.734,,,,,,144,88,0,,,,, +207,50,1,4644,1254,800.734,26,32,F#3,ppp,5,144,54,5,,,,, +207,50,1,4644,1254,800.81,,,,,,144,54,0,,,,, +207,51,1,4645,1280,800.81,25,32,C2,ppp,5,144,36,5,,,,, +207,51,1,4645,1280,800.883,,,,,,144,36,0,,,,, +207,52,1,4646,1305,800.883,26,32,A5,ppp,5,144,81,5,,,,, +207,52,1,4646,1305,800.959,,,,,,144,81,0,,,,, +207,53,1,4647,1331,800.959,25,32,E6,ppp,5,144,88,5,,,,, +207,53,1,4647,1331,801.033,,,,,,144,88,0,,,,, +207,54,1,4648,1356,801.033,26,32,F#3,ppp,5,144,54,5,,,,, +207,54,1,4648,1356,801.109,,,,,,144,54,0,,,,, +207,55,1,4649,1382,801.109,26,32,G#5,ppp,5,144,80,5,,,,, +207,56,1,4650,1408,801.185,25,32,G#5,,,,,,,,,, +207,55,1,4649,1382,801.258,,,,,,144,80,0,,,,, +207,57,1,4651,1433,801.258,26,32,A5,ppp,5,144,81,5,,,,, +207,57,1,4651,1433,801.334,,,,,,144,81,0,,,,, +207,58,1,4652,1459,801.334,25,32,F#3,ppp,5,144,54,5,,,,, +207,58,1,4652,1459,801.408,,,,,,144,54,0,,,,, +207,59,1,4653,1484,801.408,52,16,A4,ppp,5,144,69,5,,,,, +207,59,1,4653,1484,801.56,,,,,,144,69,0,,,,, +208,0,0,4654,0,801.56,,,,,,,,,208,,,, +208,1,1,4655,0,801.56,512,2,C2,ppp,5,144,36,5,,,,, +208,2,2,4656,0,801.56,,,,,,176,102,0,,,,, +208,3,3,4657,0,801.56,512,2,A#2,p,11,144,46,11,,,,, +208,4,4,4658,0,801.56,,,,,,176,102,0,,,,, +208,5,0,4659,512,802.941,,,,,,176,64,0,,,,,^ +208,1,1,4655,0,803.06,,,,,,144,36,0,,,,, +208,3,3,4657,0,803.06,,,,,,144,46,0,,,,, +208,6,1,4660,512,803.06,,,,,,176,102,0,,,,, +208,7,3,4661,512,803.06,21,32,C2,f,20,144,36,20,,,,, +208,7,3,4661,512,803.121,,,,,,144,36,0,,,,, +208,9,3,4662,533,803.121,21,32,A5,f-,19,144,81,19,,,,, +208,9,3,4662,533,803.183,,,,,,144,81,0,,,,, +208,10,3,4663,554,803.183,22,32,E6,f-,19,144,88,19,,,,, +208,8,0,4664,533,803.241,,,,,,176,64,127,,,,,V +208,10,3,4663,554,803.247,,,,,,144,88,0,,,,, +208,11,3,4665,576,803.247,32,32,C1,mf+,18,144,24,18,,,,, +208,11,3,4665,576,803.341,,,,,,144,24,0,,,,, +208,12,3,4666,608,803.341,32,32,E6,mf+,18,144,88,18,,,,, +208,12,3,4666,608,803.435,,,,,,144,88,0,,,,, +208,13,3,4667,640,803.435,21,32,C3,mf,17,144,48,17,,,,, +208,13,3,4667,640,803.496,,,,,,144,48,0,,,,, +208,14,3,4668,661,803.496,21,32,A5,mf-,16,144,81,16,,,,, +208,14,3,4668,661,803.558,,,,,,144,81,0,,,,, +208,15,3,4669,682,803.558,22,32,E6,mf-,16,144,88,16,,,,, +208,15,3,4669,682,803.622,,,,,,144,88,0,,,,, +208,16,3,4670,704,803.622,32,32,C2,mp+,15,144,36,15,,,,, +208,16,3,4670,704,803.716,,,,,,144,36,0,,,,, +208,17,3,4671,736,803.716,32,32,E6,mp,14,144,88,14,,,,, +208,17,3,4671,736,803.81,,,,,,144,88,0,,,,, +208,18,2,4672,768,803.81,,,,,,176,102,0,,,,, +208,19,3,4673,768,803.81,21,32,F#3,mp-,13,144,54,13,,,,, +208,20,4,4674,768,803.81,,,,,,176,102,0,,,,, +208,19,3,4673,768,803.871,,,,,,144,54,0,,,,, +208,21,3,4675,789,803.871,21,32,G#5,mp-,13,144,80,13,,,,, +208,21,3,4675,789,803.933,,,,,,144,80,0,,,,, +208,22,3,4676,810,803.933,22,32,A5,p+,12,144,81,12,,,,, +208,22,3,4676,810,803.997,,,,,,144,81,0,,,,, +208,23,3,4677,832,803.997,21,32,F#3,p+,12,144,54,12,,,,, +208,23,3,4677,832,804.059,,,,,,144,54,0,,,,, +208,24,3,4678,853,804.059,21,32,E6,p,11,144,88,11,,,,, +208,24,3,4678,853,804.12,,,,,,144,88,0,,,,, +208,25,3,4679,874,804.12,22,32,G#5,p,11,144,80,11,,,,, +208,25,3,4679,874,804.185,,,,,,144,80,0,,,,, +208,26,3,4680,896,804.185,21,32,C3,p-,10,144,48,10,,,,, +208,26,3,4680,896,804.246,,,,,,144,48,0,,,,, +208,27,3,4681,917,804.246,21,32,E6,p-,10,144,88,10,,,,, +208,27,3,4681,917,804.308,,,,,,144,88,0,,,,, +208,28,3,4682,938,804.308,22,32,F#3,pp+,9,144,54,9,,,,, +208,30,0,4683,981,804.356,,,,,,176,64,0,,,,,^ +208,28,3,4682,938,804.372,,,,,,144,54,0,,,,, +208,29,3,4684,960,804.372,21,32,G#5,pp+,9,144,80,9,,,,, +208,29,3,4684,960,804.434,,,,,,144,80,0,,,,, +208,31,3,4685,981,804.434,21,32,A5,pp,8,144,81,8,,,,, +208,31,3,4685,981,804.495,,,,,,144,81,0,,,,, +208,32,3,4686,1002,804.495,22,32,A6,pp,8,144,93,8,,,,, +208,32,3,4686,1002,804.56,,,,,,144,93,0,,,,, +208,33,0,4687,1024,804.577,,,,,,,,,,,63,, +208,34,0,4688,1024,804.577,,,,,,,,,,5971,,, +208,36,1,4689,1024,804.577,512,2,D#5,mp,14,144,75,14,,,,, +208,37,2,4690,1024,804.577,102,8,D3,pp,8,144,50,8,,,,, +208,38,2,4691,1024,804.577,128,8,E4,pp,8,144,64,8,,,,, +208,39,3,4692,1024,804.577,512,2,A#2,p,11,144,46,11,,,,, +208,40,4,4693,1024,804.577,512,2,C2,mf,17,144,36,17,,,,, +208,35,0,4694,1024,804.656,,,,,,176,64,127,,,,,V +208,37,2,4690,1024,804.957,,,,,,144,50,0,,,,, +208,38,2,4691,1024,804.957,,,,,,144,64,0,,,,, +208,41,2,4695,1126,804.957,154,8,E4,pp+,9,144,64,9,,,,, +208,42,2,4696,1126,804.957,128,8,F5,pp+,9,144,77,9,,,,, +208,42,2,4696,1126,805.433,,,,,,144,77,0,,,,, +208,41,2,4695,1126,805.53,,,,,,144,64,0,,,,, +208,43,2,4697,1280,805.53,256,4,D3,p,11,144,50,11,,,,, +208,44,2,4698,1280,805.53,256,4,E4,p,11,144,64,11,,,,, +209,0,0,4699,0,806.482,,,,,,,,,209,,,, +209,1,1,4700,0,806.482,256,4,D#5,,,,,,,,,, +209,2,2,4701,0,806.482,51,16,D3,,,,,,,,,, +209,3,2,4702,0,806.482,64,16,E4,,,,,,,,,, +209,4,3,4703,0,806.482,256,4,A#2,,,,,,,,,, +209,5,4,4704,0,806.482,256,4,C2,,,,,,,,,, +208,43,2,4697,1280,806.672,,,,,,144,50,0,,,,, +209,6,2,4705,51,806.672,205,4,D3,mp+,15,144,50,15,,,,, +209,7,2,4706,51,806.672,256,4,E4,mp+,15,144,64,15,,,,, +209,8,2,4707,51,806.672,256,4,F5,mp+,15,144,77,15,,,,, +208,44,2,4698,1280,806.72,,,,,,144,64,0,,,,, +208,36,1,4689,1024,807.434,,,,,,144,75,0,,,,, +208,39,3,4692,1024,807.434,,,,,,144,46,0,,,,, +208,40,4,4693,1024,807.434,,,,,,144,36,0,,,,, +209,6,2,4705,51,807.434,,,,,,144,50,0,,,,, +209,7,2,4706,51,807.434,,,,,,144,64,0,,,,, +209,8,2,4707,51,807.434,,,,,,144,77,0,,,,, +209,9,1,4708,256,807.434,768,2,D#5,mf,17,144,75,17,,,,, +209,10,2,4709,256,807.434,768,2,D3,mf,17,144,50,17,,,,, +209,11,2,4710,256,807.434,512,2,E4,mf,17,144,64,17,,,,, +209,12,2,4711,256,807.434,512,2,F5,mf,17,144,77,17,,,,, +209,13,3,4712,256,807.434,768,2,A#2,pp,8,144,46,8,,,,, +209,14,4,4713,256,807.434,768,2,C2,pp,8,144,36,8,,,,, +209,11,2,4710,256,809.339,,,,,,144,64,0,,,,, +209,12,2,4711,256,809.339,,,,,,144,77,0,,,,, +209,9,1,4708,256,810.292,,,,,,144,75,0,,,,, +209,10,2,4709,256,810.292,,,,,,144,50,0,,,,, +209,13,3,4712,256,810.292,,,,,,144,46,0,,,,, +209,14,4,4713,256,810.292,,,,,,144,36,0,,,,, +209,15,0,4714,1024,810.292,,,,,,176,64,0,,,,,^ +209,16,1,4715,1024,810.292,64,16,D#5,mp,14,144,75,14,,,,, +209,17,2,4716,1024,810.292,64,16,D3,mp,14,144,50,14,,,,, +209,18,2,4717,1024,810.292,64,16,E4,mp,14,144,64,14,,,,, +209,19,2,4718,1024,810.292,64,16,F5,mp,14,144,77,14,,,,, +209,20,3,4719,1024,810.292,64,16,A#2,mp,14,144,46,14,,,,, +209,21,4,4720,1024,810.292,64,16,C2,mp,14,144,36,14,,,,, +209,16,1,4715,1024,810.53,,,,,,144,75,0,,,,, +209,17,2,4716,1024,810.53,,,,,,144,50,0,,,,, +209,18,2,4717,1024,810.53,,,,,,144,64,0,,,,, +209,19,2,4718,1024,810.53,,,,,,144,77,0,,,,, +209,20,3,4719,1024,810.53,,,,,,144,46,0,,,,, +209,21,4,4720,1024,810.53,,,,,,144,36,0,,,,, +209,22,1,4721,1088,810.53,,,,,,176,102,0,,,,, +209,23,2,4722,1088,810.53,,,,,,176,102,0,,,,, +209,24,3,4723,1088,810.53,,,,,,176,102,0,,,,, +209,25,4,4724,1088,810.53,,,,,,176,102,0,,,,, +209,26,0,4725,1152,810.768,,,,,,176,64,127,,,,,V +209,27,1,4726,1280,811.244,,,,,,176,102,0,,,,, +209,28,2,4727,1280,811.244,,,,,,176,102,0,,,,, +209,29,3,4728,1280,811.244,,,,,,176,102,0,,,,, +209,30,4,4729,1280,811.244,,,,,,176,102,0,,,,, +210,0,0,4730,0,812.196,,,,,,,,,210,,,, +210,1,1,4731,0,812.196,,,,,,176,102,0,,,,, +210,2,3,4732,0,812.196,,,,,,176,102,0,,,,, +210,3,1,4733,85,812.513,,,,,,176,102,0,,,,, +210,4,1,4734,170,812.829,86,8,E4,pp,8,144,64,8,,,,, +210,4,1,4734,170,813.149,,,,,,144,64,0,,,,, +210,5,1,4735,256,813.149,85,8,C6,p,11,144,84,11,,,,, +210,5,1,4735,256,813.465,,,,,,144,84,0,,,,, +210,6,1,4736,341,813.465,171,4,G#3,mp,14,144,56,14,,,,, +210,7,1,4737,341,813.465,256,4,E4,mp,14,144,64,14,,,,, +210,8,1,4738,341,813.465,256,4,C6,mp,14,144,84,14,,,,, +210,9,1,4739,512,814.101,85,8,G#3,,,,,,,,,, +210,10,1,4740,512,814.101,128,8,E4,,,,,,,,,, +210,11,1,4741,512,814.101,128,8,C6,,,,,,,,,, +210,12,1,4742,597,814.417,171,4,G#3,ppp,5,144,56,5,,,,, +210,13,1,4743,597,814.417,256,4,E4,ppp,5,144,64,5,,,,, +210,14,1,4744,597,814.417,256,4,C6,ppp,5,144,84,5,,,,, +210,6,1,4736,341,814.417,,,,,,144,56,0,,,,, +210,7,1,4737,341,814.893,,,,,,144,64,0,,,,, +210,8,1,4738,341,814.893,,,,,,144,84,0,,,,, +210,12,1,4742,597,815.053,,,,,,144,56,0,,,,, +210,15,1,4745,768,815.053,153,8,D3,pp,8,144,50,8,,,,, +210,13,1,4743,597,815.37,,,,,,144,64,0,,,,, +210,14,1,4744,597,815.37,,,,,,144,84,0,,,,, +210,15,1,4745,768,815.623,,,,,,144,50,0,,,,, +210,16,0,4746,921,815.623,,,,,,176,64,0,,,,,^ +210,17,1,4747,921,815.623,103,8,F5,p,11,144,77,11,,,,, +210,17,1,4747,921,816.006,,,,,,144,77,0,,,,, +210,19,1,4748,1024,816.006,512,2,D3,mp,14,144,50,14,,,,, +210,20,1,4749,1024,816.006,512,2,A4,mp,14,144,69,14,,,,, +210,21,1,4750,1024,816.006,512,2,F5,mp,14,144,77,14,,,,, +210,22,3,4751,1024,816.006,,,,,,176,102,0,,,,, +210,18,0,4752,1024,816.006,,,,,,176,64,127,,,,,V +210,23,3,4753,1280,816.958,85,8,A#2,mp,14,144,46,14,,,,, +210,23,3,4753,1280,817.274,,,,,,144,46,0,,,,, +210,24,3,4754,1365,817.274,85,8,C#5,p-,10,144,73,10,,,,, +210,24,3,4754,1365,817.591,,,,,,144,73,0,,,,, +210,25,3,4755,1450,817.591,86,8,A2,ppp,5,144,45,5,,,,, +210,25,3,4755,1450,817.911,,,,,,144,45,0,,,,, +211,0,0,4756,0,817.911,,,,,,,,,211,,,, +211,1,0,4757,0,817.911,,,,,,,,,,,80,, +211,2,1,4758,0,817.911,21,32,F4,ppp,5,144,65,5,,,,, +211,3,3,4759,0,817.911,,,,,,176,102,0,,,,, +210,19,1,4748,1024,817.911,,,,,,144,50,0,,,,, +210,20,1,4749,1024,817.911,,,,,,144,69,0,,,,, +210,21,1,4750,1024,817.911,,,,,,144,77,0,,,,, +211,2,1,4758,0,817.972,,,,,,144,65,0,,,,, +211,4,1,4760,21,817.972,21,32,G5,ppp,5,144,79,5,,,,, +211,4,1,4760,21,818.034,,,,,,144,79,0,,,,, +211,5,1,4761,42,818.034,22,32,F4,ppp,5,144,65,5,,,,, +211,5,1,4761,42,818.098,,,,,,144,65,0,,,,, +211,6,1,4762,64,818.098,32,32,G5,ppp,5,144,79,5,,,,, +211,6,1,4762,64,818.192,,,,,,144,79,0,,,,, +211,7,1,4763,96,818.192,32,32,F4,ppp,5,144,65,5,,,,, +211,7,1,4763,96,818.286,,,,,,144,65,0,,,,, +211,8,1,4764,128,818.286,128,8,C#5,ppp,5,144,73,5,,,,, +211,9,3,4765,128,818.286,128,8,A2,ppp,5,144,45,5,,,,, +211,10,3,4766,128,818.286,128,8,A#2,ppp,5,144,46,5,,,,, +211,8,1,4764,128,818.661,,,,,,144,73,0,,,,, +211,9,3,4765,128,818.661,,,,,,144,45,0,,,,, +211,10,3,4766,128,818.661,,,,,,144,46,0,,,,, +211,11,1,4767,256,818.661,21,32,F4,pp-,7,144,65,7,,,,, +211,12,1,4768,256,818.661,32,32,C#5,pp-,7,144,73,7,,,,, +211,13,3,4769,256,818.661,102,8,A#2,pp-,7,144,46,7,,,,, +211,11,1,4767,256,818.722,,,,,,144,65,0,,,,, +211,14,1,4770,277,818.722,21,32,G5,pp-,7,144,79,7,,,,, +211,12,1,4768,256,818.754,,,,,,144,73,0,,,,, +211,14,1,4770,277,818.784,,,,,,144,79,0,,,,, +211,15,1,4771,298,818.784,22,32,F4,pp-,7,144,65,7,,,,, +211,15,1,4771,298,818.848,,,,,,144,65,0,,,,, +211,16,1,4772,320,818.848,32,32,C#5,pp-,7,144,73,7,,,,, +211,17,1,4773,320,818.848,32,32,G5,pp-,7,144,79,7,,,,, +211,16,1,4772,320,818.942,,,,,,144,73,0,,,,, +211,17,1,4773,320,818.942,,,,,,144,79,0,,,,, +211,18,1,4774,352,818.942,32,32,F4,pp-,7,144,65,7,,,,, +211,13,3,4769,256,818.959,,,,,,144,46,0,,,,, +211,19,3,4775,358,818.959,154,8,A2,pp,8,144,45,8,,,,, +211,18,1,4774,352,819.036,,,,,,144,65,0,,,,, +211,20,1,4776,384,819.036,,,,,,176,102,0,,,,, +211,19,3,4775,358,819.411,,,,,,144,45,0,,,,, +211,21,1,4777,512,819.411,21,32,F4,pp+,9,144,65,9,,,,, +211,22,1,4778,512,819.411,32,32,C#5,pp+,9,144,73,9,,,,, +211,23,3,4779,512,819.411,102,8,A#2,pp+,9,144,46,9,,,,, +211,21,1,4777,512,819.472,,,,,,144,65,0,,,,, +211,24,1,4780,533,819.472,21,32,G5,pp+,9,144,79,9,,,,, +211,22,1,4778,512,819.504,,,,,,144,73,0,,,,, +211,24,1,4780,533,819.534,,,,,,144,79,0,,,,, +211,25,1,4781,554,819.534,22,32,F4,pp+,9,144,65,9,,,,, +211,25,1,4781,554,819.598,,,,,,144,65,0,,,,, +211,26,1,4782,576,819.598,32,32,C#5,pp+,9,144,73,9,,,,, +211,27,1,4783,576,819.598,32,32,G5,pp+,9,144,79,9,,,,, +211,26,1,4782,576,819.692,,,,,,144,73,0,,,,, +211,27,1,4783,576,819.692,,,,,,144,79,0,,,,, +211,28,1,4784,608,819.692,32,32,F4,pp+,9,144,65,9,,,,, +211,23,3,4779,512,819.709,,,,,,144,46,0,,,,, +211,29,3,4785,614,819.709,154,8,A2,pp+,9,144,45,9,,,,, +211,28,1,4784,608,819.786,,,,,,144,65,0,,,,, +211,30,1,4786,640,819.786,,,,,,176,102,0,,,,, +211,29,3,4785,614,820.161,,,,,,144,45,0,,,,, +211,31,1,4787,768,820.161,,,,,,176,102,0,,,,, +211,32,3,4788,768,820.161,,,,,,176,102,0,,,,, +211,33,1,4789,853,820.41,,,,,,176,102,0,,,,, +211,34,0,4790,938,820.635,,,,,,176,64,0,,,,,^ +211,35,1,4791,938,820.659,86,8,G#3,pp+,9,144,56,9,,,,, +211,36,1,4792,938,820.659,128,8,E4,pp+,9,144,64,9,,,,, +211,37,1,4793,938,820.659,128,8,C6,pp+,9,144,84,9,,,,, +211,35,1,4791,938,820.911,,,,,,144,56,0,,,,, +211,39,1,4794,1024,820.911,85,16,A#4,p,11,144,70,11,,,,, +211,38,0,4795,1024,820.935,,,,,,176,64,127,,,,,V +211,36,1,4792,938,821.034,,,,,,144,64,0,,,,, +211,37,1,4793,938,821.034,,,,,,144,84,0,,,,, +211,39,1,4794,1024,821.16,,,,,,144,70,0,,,,, +211,40,1,4796,1109,821.16,85,16,C#6,mp,14,144,85,14,,,,, +211,40,1,4796,1109,821.409,,,,,,144,85,0,,,,, +211,41,1,4797,1194,821.409,29,32,G#3,mf-,16,144,56,16,,,,, +211,42,1,4798,1194,821.409,32,32,E4,mf-,16,144,64,16,,,,, +211,43,1,4799,1194,821.409,32,32,C6,mf-,16,144,84,16,,,,, +211,41,1,4797,1194,821.494,,,,,,144,56,0,,,,, +211,44,1,4800,1223,821.494,28,32,A#4,mf,17,144,70,17,,,,, +211,45,1,4801,1223,821.494,32,32,C#7,mf,17,144,97,17,,,,, +211,42,1,4798,1194,821.502,,,,,,144,64,0,,,,, +211,43,1,4799,1194,821.502,,,,,,144,84,0,,,,, +211,44,1,4800,1223,821.576,,,,,,144,70,0,,,,, +211,46,1,4802,1251,821.576,29,32,G#3,mf,17,144,56,17,,,,, +211,47,1,4803,1251,821.576,32,32,E4,mf,17,144,64,17,,,,, +211,48,1,4804,1251,821.576,32,32,C6,mf,17,144,84,17,,,,, +211,45,1,4801,1223,821.587,,,,,,144,97,0,,,,, +211,46,1,4802,1251,821.661,,,,,,144,56,0,,,,, +211,49,1,4805,1280,821.661,,,,,,176,102,0,,,,, +211,47,1,4803,1251,821.669,,,,,,144,64,0,,,,, +211,48,1,4804,1251,821.669,,,,,,144,84,0,,,,, +212,0,0,4806,0,822.411,,,,,,,,,212,,,, +212,3,0,4807,403,822.411,,,,,,176,64,0,,,,,^ +212,1,1,4808,0,822.411,,,,,,176,102,0,,,,, +212,2,3,4809,0,822.411,,,,,,176,102,0,,,,, +212,4,0,4810,403,822.411,,,,,,,,,,5972,,, +212,6,3,4811,512,822.73,28,32,A#2,ppp,5,144,46,5,,,,, +212,5,0,4812,512,822.73,,,,,,176,64,127,,,,,V +212,6,3,4811,512,822.812,,,,,,144,46,0,,,,, +212,7,3,4813,540,822.812,28,32,E2,ppp,5,144,40,5,,,,, +212,7,3,4813,540,822.894,,,,,,144,40,0,,,,, +212,8,3,4814,568,822.894,29,32,C#7,ppp,5,144,97,5,,,,, +212,8,3,4814,568,822.979,,,,,,144,97,0,,,,, +212,9,3,4815,597,822.979,28,32,A#2,ppp,5,144,46,5,,,,, +212,9,3,4815,597,823.061,,,,,,144,46,0,,,,, +212,10,3,4816,625,823.061,29,32,C#7,ppp,5,144,97,5,,,,, +212,10,3,4816,625,823.146,,,,,,144,97,0,,,,, +212,11,3,4817,654,823.146,28,32,E2,ppp,5,144,40,5,,,,, +212,11,3,4817,654,823.228,,,,,,144,40,0,,,,, +212,12,3,4818,682,823.228,29,32,C6,ppp,5,144,84,5,,,,, +212,12,3,4818,682,823.313,,,,,,144,84,0,,,,, +212,13,3,4819,711,823.313,57,16,G#1,ppp,5,144,32,5,,,,, +212,13,3,4819,711,823.48,,,,,,144,32,0,,,,, +212,14,3,4820,768,823.48,28,32,A#2,ppp,5,144,46,5,,,,, +212,14,3,4820,768,823.562,,,,,,144,46,0,,,,, +212,15,3,4821,796,823.562,28,32,E2,ppp,5,144,40,5,,,,, +212,15,3,4821,796,823.644,,,,,,144,40,0,,,,, +212,16,3,4822,824,823.644,29,32,G#1,ppp,5,144,32,5,,,,, +212,16,3,4822,824,823.729,,,,,,144,32,0,,,,, +212,17,3,4823,853,823.729,28,32,A#2,ppp,5,144,46,5,,,,, +212,17,3,4823,853,823.811,,,,,,144,46,0,,,,, +212,18,3,4824,881,823.811,57,16,E2,ppp,5,144,40,5,,,,, +212,18,3,4824,881,823.978,,,,,,144,40,0,,,,, +212,19,3,4825,938,823.978,29,32,G#1,ppp,5,144,32,5,,,,, +212,19,3,4825,938,824.063,,,,,,144,32,0,,,,, +212,20,3,4826,967,824.063,28,32,A#2,ppp+,6,144,46,6,,,,, +212,20,3,4826,967,824.145,,,,,,144,46,0,,,,, +212,21,3,4827,995,824.145,29,32,E2,ppp+,6,144,40,6,,,,, +212,21,3,4827,995,824.23,,,,,,144,40,0,,,,, +212,22,3,4828,1024,824.23,28,32,A#2,ppp+,6,144,46,6,,,,, +212,23,1,4829,1024,824.23,,,,,,176,102,0,,,,, +212,22,3,4828,1024,824.312,,,,,,144,46,0,,,,, +212,24,3,4830,1052,824.312,28,32,E2,ppp+,6,144,40,6,,,,, +212,25,1,4831,1075,824.379,51,16,C#7,ppp,5,144,97,5,,,,, +212,24,3,4830,1052,824.394,,,,,,144,40,0,,,,, +212,26,3,4832,1080,824.394,29,32,G#1,ppp+,6,144,32,6,,,,, +212,26,3,4832,1080,824.479,,,,,,144,32,0,,,,, +212,27,3,4833,1109,824.479,28,32,A#2,ppp+,6,144,46,6,,,,, +212,25,1,4831,1075,824.529,,,,,,144,97,0,,,,, +212,28,1,4834,1126,824.529,51,16,C6,ppp,5,144,84,5,,,,, +212,27,3,4833,1109,824.561,,,,,,144,46,0,,,,, +212,29,3,4835,1137,824.561,57,16,E2,ppp+,6,144,40,6,,,,, +212,28,1,4834,1126,824.678,,,,,,144,84,0,,,,, +212,30,1,4836,1177,824.678,51,16,C#7,ppp,5,144,97,5,,,,, +212,29,3,4835,1137,824.728,,,,,,144,40,0,,,,, +212,31,3,4837,1194,824.728,29,32,G#1,pp-,7,144,32,7,,,,, +212,31,3,4837,1194,824.813,,,,,,144,32,0,,,,, +212,32,3,4838,1223,824.813,28,32,A#2,pp-,7,144,46,7,,,,, +212,30,1,4836,1177,824.828,,,,,,144,97,0,,,,, +212,33,1,4839,1228,824.828,52,16,C6,ppp,5,144,84,5,,,,, +212,32,3,4838,1223,824.895,,,,,,144,46,0,,,,, +212,34,3,4840,1251,824.895,29,32,E2,pp-,7,144,40,7,,,,, +212,33,1,4839,1228,824.98,,,,,,144,84,0,,,,, +212,34,3,4840,1251,824.98,,,,,,144,40,0,,,,, +212,35,3,4841,1280,824.98,28,32,A#2,pp-,7,144,46,7,,,,, +212,36,1,4842,1280,824.98,,,,,,176,102,0,,,,, +212,35,3,4841,1280,825.062,,,,,,144,46,0,,,,, +212,37,3,4843,1308,825.062,28,32,E2,pp-,7,144,40,7,,,,, +212,38,1,4844,1331,825.129,51,16,C#7,ppp,5,144,97,5,,,,, +212,37,3,4843,1308,825.144,,,,,,144,40,0,,,,, +212,39,3,4845,1336,825.144,29,32,G#1,pp-,7,144,32,7,,,,, +212,39,3,4845,1336,825.229,,,,,,144,32,0,,,,, +212,40,3,4846,1365,825.229,28,32,A#2,pp-,7,144,46,7,,,,, +212,38,1,4844,1331,825.279,,,,,,144,97,0,,,,, +212,41,1,4847,1382,825.279,51,16,C6,ppp,5,144,84,5,,,,, +212,40,3,4846,1365,825.311,,,,,,144,46,0,,,,, +212,42,3,4848,1393,825.311,57,16,E2,pp,8,144,40,8,,,,, +212,41,1,4847,1382,825.428,,,,,,144,84,0,,,,, +212,43,1,4849,1433,825.428,51,16,C#7,ppp,5,144,97,5,,,,, +212,42,3,4848,1393,825.478,,,,,,144,40,0,,,,, +212,44,3,4850,1450,825.478,29,32,G#1,pp,8,144,32,8,,,,, +212,44,3,4850,1450,825.563,,,,,,144,32,0,,,,, +212,45,3,4851,1479,825.563,28,32,A#2,pp,8,144,46,8,,,,, +212,43,1,4849,1433,825.578,,,,,,144,97,0,,,,, +212,46,1,4852,1484,825.578,52,16,C6,ppp,5,144,84,5,,,,, +212,45,3,4851,1479,825.645,,,,,,144,46,0,,,,, +212,47,3,4853,1507,825.645,29,32,E2,pp,8,144,40,8,,,,, +212,46,1,4852,1484,825.73,,,,,,144,84,0,,,,, +212,47,3,4853,1507,825.73,,,,,,144,40,0,,,,, +213,0,0,4854,0,825.73,,,,,,,,,213,,,, +213,1,1,4855,0,825.73,,,,,,176,102,0,,,,, +213,2,3,4856,0,825.73,28,32,A#2,pp,8,144,46,8,,,,, +213,2,3,4856,0,825.812,,,,,,144,46,0,,,,, +213,3,3,4857,28,825.812,28,32,E2,pp,8,144,40,8,,,,, +213,4,1,4858,51,825.879,51,16,C#7,ppp,5,144,97,5,,,,, +213,3,3,4857,28,825.894,,,,,,144,40,0,,,,, +213,5,3,4859,56,825.894,29,32,G#1,pp,8,144,32,8,,,,, +213,5,3,4859,56,825.979,,,,,,144,32,0,,,,, +213,6,3,4860,85,825.979,28,32,A#2,pp+,9,144,46,9,,,,, +213,4,1,4858,51,826.029,,,,,,144,97,0,,,,, +213,7,1,4861,102,826.029,51,16,C6,ppp,5,144,84,5,,,,, +213,6,3,4860,85,826.061,,,,,,144,46,0,,,,, +213,8,3,4862,113,826.061,57,16,E2,pp+,9,144,40,9,,,,, +213,7,1,4861,102,826.178,,,,,,144,84,0,,,,, +213,9,1,4863,153,826.178,51,16,C#7,ppp,5,144,97,5,,,,, +213,8,3,4862,113,826.228,,,,,,144,40,0,,,,, +213,10,3,4864,170,826.228,86,16,G#1,pp+,9,144,32,9,,,,, +213,9,1,4863,153,826.328,,,,,,144,97,0,,,,, +213,11,1,4865,204,826.328,52,16,C6,ppp,5,144,84,5,,,,, +213,10,3,4864,170,826.48,,,,,,144,32,0,,,,, +213,11,1,4865,204,826.48,,,,,,144,84,0,,,,, +213,12,3,4866,256,826.48,28,32,E3,pp,8,144,52,8,,,,, +213,13,1,4867,256,826.48,,,,,,176,102,0,,,,, +213,12,3,4866,256,826.562,,,,,,144,52,0,,,,, +213,14,3,4868,284,826.562,28,32,A#3,pp,8,144,58,8,,,,, +213,14,3,4868,284,826.644,,,,,,144,58,0,,,,, +213,15,3,4869,312,826.644,29,32,C5,pp,8,144,72,8,,,,, +213,15,3,4869,312,826.729,,,,,,144,72,0,,,,, +213,16,3,4870,341,826.729,28,32,C#6,pp,8,144,85,8,,,,, +213,16,3,4870,341,826.811,,,,,,144,85,0,,,,, +213,17,3,4871,369,826.811,29,32,G#2,pp,8,144,44,8,,,,, +213,17,3,4871,369,826.896,,,,,,144,44,0,,,,, +213,18,3,4872,398,826.896,28,32,A#3,pp+,9,144,58,9,,,,, +213,18,3,4872,398,826.978,,,,,,144,58,0,,,,, +213,19,3,4873,426,826.978,29,32,C5,pp+,9,144,72,9,,,,, +213,19,3,4873,426,827.063,,,,,,144,72,0,,,,, +213,20,3,4874,455,827.063,28,32,C#6,pp+,9,144,85,9,,,,, +213,20,3,4874,455,827.145,,,,,,144,85,0,,,,, +213,21,3,4875,483,827.145,29,32,A#3,pp+,9,144,58,9,,,,, +213,21,3,4875,483,827.23,,,,,,144,58,0,,,,, +213,22,3,4876,512,827.23,28,32,E3,pp+,9,144,52,9,,,,, +213,23,1,4877,512,827.23,,,,,,176,102,0,,,,, +213,22,3,4876,512,827.312,,,,,,144,52,0,,,,, +213,24,3,4878,540,827.312,28,32,C5,pp+,9,144,72,9,,,,, +213,24,3,4878,540,827.394,,,,,,144,72,0,,,,, +213,25,3,4879,568,827.394,29,32,G#2,p-,10,144,44,10,,,,, +213,25,3,4879,568,827.479,,,,,,144,44,0,,,,, +213,26,3,4880,597,827.479,28,32,A#3,p-,10,144,58,10,,,,, +213,26,3,4880,597,827.561,,,,,,144,58,0,,,,, +213,27,3,4881,625,827.561,57,16,C#6,p-,10,144,85,10,,,,, +213,27,3,4881,625,827.728,,,,,,144,85,0,,,,, +213,28,3,4882,682,827.728,29,32,E3,p-,10,144,52,10,,,,, +213,28,3,4882,682,827.813,,,,,,144,52,0,,,,, +213,29,3,4883,711,827.813,28,32,C5,p-,10,144,72,10,,,,, +213,29,3,4883,711,827.895,,,,,,144,72,0,,,,, +213,30,3,4884,739,827.895,29,32,G#2,p,11,144,44,11,,,,, +213,30,3,4884,739,827.98,,,,,,144,44,0,,,,, +213,31,3,4885,768,827.98,28,32,A#3,p,11,144,58,11,,,,, +213,32,1,4886,768,827.98,,,,,,176,102,0,,,,, +213,31,3,4885,768,828.062,,,,,,144,58,0,,,,, +213,33,3,4887,796,828.062,28,32,E3,p,11,144,52,11,,,,, +213,34,1,4888,819,828.129,51,16,C#6,p,11,144,85,11,,,,, +213,33,3,4887,796,828.144,,,,,,144,52,0,,,,, +213,35,3,4889,824,828.144,29,32,G#2,p,11,144,44,11,,,,, +213,35,3,4889,824,828.229,,,,,,144,44,0,,,,, +213,36,3,4890,853,828.229,28,32,A#3,p,11,144,58,11,,,,, +213,34,1,4888,819,828.279,,,,,,144,85,0,,,,, +213,37,1,4891,870,828.279,51,16,C5,p,11,144,72,11,,,,, +213,36,3,4890,853,828.311,,,,,,144,58,0,,,,, +213,38,3,4892,881,828.311,57,16,E3,p,11,144,52,11,,,,, +213,37,1,4891,870,828.428,,,,,,144,72,0,,,,, +213,39,1,4893,921,828.428,51,16,C#6,p+,12,144,85,12,,,,, +213,38,3,4892,881,828.478,,,,,,144,52,0,,,,, +213,40,3,4894,938,828.478,29,32,G#2,p+,12,144,44,12,,,,, +213,40,3,4894,938,828.563,,,,,,144,44,0,,,,, +213,41,3,4895,967,828.563,28,32,A#3,p+,12,144,58,12,,,,, +213,39,1,4893,921,828.578,,,,,,144,85,0,,,,, +213,42,1,4896,972,828.578,52,16,C5,p+,12,144,72,12,,,,, +213,41,3,4895,967,828.645,,,,,,144,58,0,,,,, +213,43,3,4897,995,828.645,29,32,E3,p+,12,144,52,12,,,,, +213,42,1,4896,972,828.73,,,,,,144,72,0,,,,, +213,43,3,4897,995,828.73,,,,,,144,52,0,,,,, +213,44,3,4898,1024,828.73,28,32,A#3,p+,12,144,58,12,,,,, +213,45,1,4899,1024,828.73,,,,,,176,102,0,,,,, +213,44,3,4898,1024,828.812,,,,,,144,58,0,,,,, +213,46,3,4900,1052,828.812,28,32,E3,p+,12,144,52,12,,,,, +213,47,1,4901,1075,828.879,51,16,C#6,p+,12,144,85,12,,,,, +213,46,3,4900,1052,828.894,,,,,,144,52,0,,,,, +213,48,3,4902,1080,828.894,29,32,G#2,mp-,13,144,44,13,,,,, +213,48,3,4902,1080,828.979,,,,,,144,44,0,,,,, +213,49,3,4903,1109,828.979,28,32,A#3,mp-,13,144,58,13,,,,, +213,47,1,4901,1075,829.029,,,,,,144,85,0,,,,, +213,50,1,4904,1126,829.029,51,16,C5,mp-,13,144,72,13,,,,, +213,49,3,4903,1109,829.061,,,,,,144,58,0,,,,, +213,51,3,4905,1137,829.061,57,16,E3,mp-,13,144,52,13,,,,, +213,50,1,4904,1126,829.178,,,,,,144,72,0,,,,, +213,52,1,4906,1177,829.178,51,16,C#6,mp-,13,144,85,13,,,,, +213,51,3,4905,1137,829.228,,,,,,144,52,0,,,,, +213,53,3,4907,1194,829.228,29,32,G#2,mp-,13,144,44,13,,,,, +213,53,3,4907,1194,829.313,,,,,,144,44,0,,,,, +213,54,3,4908,1223,829.313,28,32,A#3,mp-,13,144,58,13,,,,, +213,52,1,4906,1177,829.328,,,,,,144,85,0,,,,, +213,55,1,4909,1228,829.328,52,16,C5,mp-,13,144,72,13,,,,, +213,54,3,4908,1223,829.395,,,,,,144,58,0,,,,, +213,56,3,4910,1251,829.395,29,32,E3,mp,14,144,52,14,,,,, +213,55,1,4909,1228,829.48,,,,,,144,72,0,,,,, +213,56,3,4910,1251,829.48,,,,,,144,52,0,,,,, +213,57,3,4911,1280,829.48,28,32,A#3,mp,14,144,58,14,,,,, +213,58,1,4912,1280,829.48,,,,,,176,102,0,,,,, +213,57,3,4911,1280,829.562,,,,,,144,58,0,,,,, +213,59,3,4913,1308,829.562,28,32,E3,mp,14,144,52,14,,,,, +213,60,1,4914,1331,829.629,51,16,C#6,mp,14,144,85,14,,,,, +213,59,3,4913,1308,829.644,,,,,,144,52,0,,,,, +213,61,3,4915,1336,829.644,29,32,G#2,mp,14,144,44,14,,,,, +213,61,3,4915,1336,829.729,,,,,,144,44,0,,,,, +213,62,3,4916,1365,829.729,28,32,A#3,mp,14,144,58,14,,,,, +213,60,1,4914,1331,829.779,,,,,,144,85,0,,,,, +213,63,1,4917,1382,829.779,51,16,C5,mp,14,144,72,14,,,,, +213,62,3,4916,1365,829.811,,,,,,144,58,0,,,,, +213,64,3,4918,1393,829.811,57,16,E3,mp,14,144,52,14,,,,, +213,63,1,4917,1382,829.928,,,,,,144,72,0,,,,, +213,65,1,4919,1433,829.928,51,16,C#6,mp,14,144,85,14,,,,, +213,64,3,4918,1393,829.978,,,,,,144,52,0,,,,, +213,66,3,4920,1450,829.978,29,32,G#2,mp,14,144,44,14,,,,, +213,68,0,4921,1484,830.041,,,,,,176,64,0,,,,,^ +213,66,3,4920,1450,830.063,,,,,,144,44,0,,,,, +213,67,3,4922,1479,830.063,28,32,A#3,mp,14,144,58,14,,,,, +213,65,1,4919,1433,830.078,,,,,,144,85,0,,,,, +213,69,1,4923,1484,830.078,52,16,C5,mp,14,144,72,14,,,,, +213,67,3,4922,1479,830.145,,,,,,144,58,0,,,,, +213,70,3,4924,1507,830.145,29,32,E3,mp,14,144,52,14,,,,, +213,69,1,4923,1484,830.23,,,,,,144,72,0,,,,, +213,70,3,4924,1507,830.23,,,,,,144,52,0,,,,, +214,0,0,4925,0,830.23,,,,,,,,,214,,,, +214,1,0,4926,0,830.23,,,,,,,,,,5973,,, +214,2,0,4927,0,830.23,,,,,,,,,,,63,, +214,4,1,4928,,830.23,,8,F5,p,11,144,77,11,,,,g, +214,4,1,4928,,830.28,,,,,,144,77,0,,,,, +214,5,1,4929,0,830.305,102,8,A3,p,11,144,57,11,,,,, +214,6,3,4930,0,830.305,1024,1,C2,pp,8,144,36,8,,,,, +214,7,4,4931,0,830.305,102,8,E4,mf,17,144,64,17,,,,, +214,3,0,4932,0,830.341,,,,,,176,64,127,,,,,V +214,5,1,4929,0,830.684,,,,,,144,57,0,,,,, +214,7,4,4931,0,830.684,,,,,,144,64,0,,,,, +214,8,1,4933,102,830.684,154,8,A3,p,11,144,57,11,,,,, +214,9,1,4934,102,830.684,128,8,F5,p,11,144,77,11,,,,, +214,10,4,4935,102,830.684,154,8,E4,mp+,15,144,64,15,,,,, +214,11,4,4936,102,830.684,128,8,A#4,mp+,15,144,70,15,,,,, +214,9,1,4934,102,831.161,,,,,,144,77,0,,,,, +214,11,4,4936,102,831.161,,,,,,144,70,0,,,,, +214,8,1,4933,102,831.257,,,,,,144,57,0,,,,, +214,10,4,4935,102,831.257,,,,,,144,64,0,,,,, +214,12,1,4937,256,831.257,102,8,A3,p,11,144,57,11,,,,, +214,13,1,4938,256,831.257,128,8,F5,p,11,144,77,11,,,,, +214,14,4,4939,256,831.257,102,8,E4,mp-,13,144,64,13,,,,, +214,15,4,4940,256,831.257,128,8,A#4,mp-,13,144,70,13,,,,, +214,16,1,4941,358,831.637,154,8,A3,,,,,,,,,, +214,17,1,4942,358,831.637,128,8,F5,,,,,,,,,, +214,18,4,4943,358,831.637,154,8,E4,,,,,,,,,, +214,19,4,4944,358,831.637,128,8,A#4,,,,,,,,,, +214,12,1,4937,256,832.21,,,,,,144,57,0,,,,, +214,13,1,4938,256,832.21,,,,,,144,77,0,,,,, +214,20,1,4945,512,832.21,170,4,E7,mp,14,144,100,14,,,,, +214,21,4,4946,512,832.21,51,16,E4,,,,,,,,,, +214,22,4,4947,512,832.21,64,16,A#4,,,,,,,,,, +214,14,4,4939,256,832.399,,,,,,144,64,0,,,,, +214,23,4,4948,563,832.399,205,4,A3,pp,8,144,57,8,,,,, +214,24,4,4949,563,832.399,256,4,E4,pp,8,144,64,8,,,,, +214,25,4,4950,563,832.399,256,4,A#4,pp,8,144,70,8,,,,, +214,26,4,4951,563,832.399,256,4,F5,pp,8,144,77,8,,,,, +214,15,4,4940,256,832.448,,,,,,144,70,0,,,,, +214,20,1,4945,512,832.842,,,,,,144,100,0,,,,, +214,27,1,4952,682,832.842,256,4,G#6,p,11,144,92,11,,,,, +214,23,4,4948,563,833.162,,,,,,144,57,0,,,,, +214,28,4,4953,768,833.162,,,,,,176,102,0,,,,, +214,24,4,4949,563,833.352,,,,,,144,64,0,,,,, +214,25,4,4950,563,833.352,,,,,,144,70,0,,,,, +214,26,4,4951,563,833.352,,,,,,144,77,0,,,,, +214,27,1,4952,682,833.795,,,,,,144,92,0,,,,, +214,29,1,4954,938,833.795,86,8,F#4,pp,8,144,66,8,,,,, +214,30,1,4955,938,833.795,128,8,G#6,pp,8,144,92,8,,,,, +214,31,1,4956,938,833.795,128,8,E7,pp,8,144,100,8,,,,, +214,32,0,4957,1024,834.046,,,,,,,,,,,80,, +214,33,1,4958,1024,834.046,,,,,,176,102,0,,,,, +214,34,3,4959,1024,834.046,28,32,C#2,ppp,5,144,37,5,,,,, +214,6,3,4930,0,834.114,,,,,,144,36,0,,,,, +214,29,1,4954,938,834.114,,,,,,144,66,0,,,,, +214,34,3,4959,1024,834.129,,,,,,144,37,0,,,,, +214,35,3,4960,1052,834.129,28,32,B1,ppp,5,144,35,5,,,,, +214,35,3,4960,1052,834.211,,,,,,144,35,0,,,,, +214,36,3,4961,1080,834.211,29,32,C#2,ppp,5,144,37,5,,,,, +214,30,1,4955,938,834.271,,,,,,144,92,0,,,,, +214,31,1,4956,938,834.271,,,,,,144,100,0,,,,, +214,36,3,4961,1080,834.296,,,,,,144,37,0,,,,, +214,37,3,4962,1109,834.296,28,32,B1,ppp,5,144,35,5,,,,, +214,37,3,4962,1109,834.378,,,,,,144,35,0,,,,, +214,38,3,4963,1137,834.378,29,32,C#2,ppp,5,144,37,5,,,,, +214,38,3,4963,1137,834.462,,,,,,144,37,0,,,,, +214,39,3,4964,1166,834.462,28,32,B1,ppp,5,144,35,5,,,,, +214,39,3,4964,1166,834.545,,,,,,144,35,0,,,,, +214,40,3,4965,1194,834.545,29,32,C#2,ppp,5,144,37,5,,,,, +214,40,3,4965,1194,834.629,,,,,,144,37,0,,,,, +214,41,3,4966,1223,834.629,28,32,B1,ppp,5,144,35,5,,,,, +214,41,3,4966,1223,834.712,,,,,,144,35,0,,,,, +214,42,3,4967,1251,834.712,29,32,C#2,ppp,5,144,37,5,,,,, +214,42,3,4967,1251,834.796,,,,,,144,37,0,,,,, +214,43,3,4968,1280,834.796,28,32,B1,ppp,5,144,35,5,,,,, +214,43,3,4968,1280,834.879,,,,,,144,35,0,,,,, +214,44,3,4969,1308,834.879,28,32,C#2,ppp,5,144,37,5,,,,, +214,44,3,4969,1308,834.961,,,,,,144,37,0,,,,, +214,46,0,4970,1336,834.961,,,,,,176,64,0,,,,,^ +214,45,3,4971,1336,834.961,29,32,B1,ppp,5,144,35,5,,,,, +214,45,3,4971,1336,835.046,,,,,,144,35,0,,,,, +214,47,3,4972,1365,835.046,57,16,A3,ppp,5,144,57,5,,,,, +214,47,3,4972,1365,835.212,,,,,,144,57,0,,,,, +214,48,3,4973,1422,835.212,57,16,C#2,pp,8,144,37,8,,,,, +214,48,3,4973,1422,835.379,,,,,,144,37,0,,,,, +214,49,3,4974,1479,835.379,57,16,B1,p,11,144,35,11,,,,, +214,49,3,4974,1479,835.546,,,,,,144,35,0,,,,, +215,0,0,4975,0,835.546,,,,,,,,,215,,,, +215,1,0,4976,0,835.546,,,,,,,,,,5974,,, +215,2,1,4977,0,835.546,256,4,F#4,p,11,144,66,11,,,,, +215,3,1,4978,0,835.546,256,4,G#6,p,11,144,92,11,,,,, +215,4,1,4979,0,835.546,256,4,E7,p,11,144,100,11,,,,, +215,5,2,4980,0,835.546,,,,,,176,102,0,,,,, +215,6,3,4981,0,835.546,256,4,E4,mp,14,144,64,14,,,,, +215,7,3,4982,0,835.546,256,4,A#4,mp,14,144,70,14,,,,, +215,8,0,4983,97,835.831,,,,,,176,64,127,,,,,V +215,2,1,4977,0,836.296,,,,,,144,66,0,,,,, +215,3,1,4978,0,836.296,,,,,,144,92,0,,,,, +215,4,1,4979,0,836.296,,,,,,144,100,0,,,,, +215,6,3,4981,0,836.296,,,,,,144,64,0,,,,, +215,7,3,4982,0,836.296,,,,,,144,70,0,,,,, +215,9,1,4984,256,836.296,,,,,,176,102,0,,,,, +215,10,3,4985,256,836.296,56,16,A6,pp,8,144,93,8,,,,, +215,10,3,4985,256,836.461,,,,,,144,93,0,,,,, +215,11,3,4986,312,836.461,29,32,C#6,pp-,7,144,85,7,,,,, +215,11,3,4986,312,836.546,,,,,,144,85,0,,,,, +215,12,3,4987,341,836.546,28,32,D6,pp-,7,144,86,7,,,,, +215,12,3,4987,341,836.628,,,,,,144,86,0,,,,, +215,13,3,4988,369,836.628,29,32,B5,pp-,7,144,83,7,,,,, +215,13,3,4988,369,836.712,,,,,,144,83,0,,,,, +215,14,3,4989,398,836.712,28,32,D6,ppp+,6,144,86,6,,,,, +215,14,3,4989,398,836.795,,,,,,144,86,0,,,,, +215,15,3,4990,426,836.795,29,32,B5,ppp+,6,144,83,6,,,,, +215,15,3,4990,426,836.879,,,,,,144,83,0,,,,, +215,16,3,4991,455,836.879,28,32,D6,ppp,5,144,86,5,,,,, +215,16,3,4991,455,836.962,,,,,,144,86,0,,,,, +215,17,3,4992,483,836.962,29,32,F7,ppp,5,144,101,5,,,,, +215,17,3,4992,483,837.046,,,,,,144,101,0,,,,, +215,18,3,4993,512,837.046,,,,,,176,102,0,,,,, +215,19,1,4994,512,837.046,102,8,A4,mp,14,144,69,14,,,,, +215,20,1,4995,512,837.046,128,8,D#5,mp,14,144,75,14,,,,, +215,21,3,4996,597,837.296,28,32,C#6,ppp,5,144,85,5,,,,, +215,19,1,4994,512,837.345,,,,,,144,69,0,,,,, +215,22,1,4997,614,837.345,51,16,F7,ppp,5,144,101,5,,,,, +215,21,3,4996,597,837.378,,,,,,144,85,0,,,,, +215,23,3,4998,625,837.378,29,32,D6,ppp,5,144,86,5,,,,, +215,20,1,4995,512,837.421,,,,,,144,75,0,,,,, +215,23,3,4998,625,837.462,,,,,,144,86,0,,,,, +215,24,3,4999,654,837.462,28,32,B5,ppp,5,144,83,5,,,,, +215,22,1,4997,614,837.495,,,,,,144,101,0,,,,, +215,25,1,5000,665,837.495,51,16,A6,ppp,5,144,93,5,,,,, +215,24,3,4999,654,837.545,,,,,,144,83,0,,,,, +215,26,3,5001,682,837.545,29,32,C#6,ppp,5,144,85,5,,,,, +215,26,3,5001,682,837.629,,,,,,144,85,0,,,,, +215,27,3,5002,711,837.629,28,32,B5,ppp,5,144,83,5,,,,, +215,25,1,5000,665,837.644,,,,,,144,93,0,,,,, +215,28,1,5003,716,837.644,52,16,F7,ppp,5,144,101,5,,,,, +215,27,3,5002,711,837.712,,,,,,144,83,0,,,,, +215,29,3,5004,739,837.712,29,32,D6,ppp,5,144,86,5,,,,, +215,28,1,5003,716,837.796,,,,,,144,101,0,,,,, +215,29,3,5004,739,837.796,,,,,,144,86,0,,,,, +215,30,3,5005,768,837.796,28,32,C#6,ppp,5,144,85,5,,,,, +215,31,1,5006,768,837.796,,,,,,176,102,0,,,,, +215,30,3,5005,768,837.879,,,,,,144,85,0,,,,, +215,32,3,5007,796,837.879,28,32,D6,ppp,5,144,86,5,,,,, +215,33,1,5008,819,837.946,51,16,A6,ppp,5,144,93,5,,,,, +215,32,3,5007,796,837.961,,,,,,144,86,0,,,,, +215,34,3,5009,824,837.961,29,32,B5,ppp,5,144,83,5,,,,, +215,34,3,5009,824,838.046,,,,,,144,83,0,,,,, +215,35,3,5010,853,838.046,28,32,C#6,ppp,5,144,85,5,,,,, +215,33,1,5008,819,838.095,,,,,,144,93,0,,,,, +215,36,1,5011,870,838.095,51,16,F7,ppp,5,144,101,5,,,,, +215,35,3,5010,853,838.128,,,,,,144,85,0,,,,, +215,37,3,5012,881,838.128,29,32,B5,ppp,5,144,83,5,,,,, +215,37,3,5012,881,838.212,,,,,,144,83,0,,,,, +215,38,3,5013,910,838.212,28,32,D6,ppp,5,144,86,5,,,,, +215,36,1,5011,870,838.245,,,,,,144,101,0,,,,, +215,39,1,5014,921,838.245,51,16,A6,ppp,5,144,93,5,,,,, +215,38,3,5013,910,838.295,,,,,,144,86,0,,,,, +215,40,3,5015,938,838.295,29,32,C#6,ppp,5,144,85,5,,,,, +215,44,0,5016,995,838.354,,,,,,176,64,0,,,,,^ +215,40,3,5015,938,838.379,,,,,,144,85,0,,,,, +215,41,3,5017,967,838.379,28,32,B5,ppp,5,144,83,5,,,,, +215,39,1,5014,921,838.394,,,,,,144,93,0,,,,, +215,42,1,5018,972,838.394,52,16,F7,ppp,5,144,101,5,,,,, +215,41,3,5017,967,838.462,,,,,,144,83,0,,,,, +215,43,3,5019,995,838.462,29,32,D6,ppp,5,144,86,5,,,,, +215,42,1,5018,972,838.546,,,,,,144,101,0,,,,, +215,43,3,5019,995,838.546,,,,,,144,86,0,,,,, +215,45,3,5020,1024,838.546,256,4,E4,pp,8,144,64,8,,,,, +215,46,3,5021,1024,838.546,256,4,A#4,pp,8,144,70,8,,,,, +215,48,1,5022,1024,838.546,256,4,F#4,pp,8,144,66,8,,,,, +215,49,1,5023,1024,838.546,256,4,G#6,pp,8,144,92,8,,,,, +215,50,1,5024,1024,838.546,256,4,F7,pp,8,144,101,8,,,,, +215,51,2,5025,1024,838.546,,,,,,176,102,0,,,,, +215,52,0,5026,1024,838.546,,,,,,,,,,5975,,, +215,53,2,5027,1049,838.62,,,,,,176,102,0,,,,, +215,47,0,5028,1024,838.654,,,,,,176,64,127,,,,,V +215,54,2,5029,1088,838.734,38,32,A6,pp,8,144,93,8,,,,, +215,54,2,5029,1088,838.845,,,,,,144,93,0,,,,, +215,55,2,5030,1126,838.845,26,32,C#6,pp,8,144,85,8,,,,, +215,55,2,5030,1126,838.921,,,,,,144,85,0,,,,, +215,56,2,5031,1152,838.921,25,32,D6,pp,8,144,86,8,,,,, +215,56,2,5031,1152,838.995,,,,,,144,86,0,,,,, +215,57,2,5032,1177,838.995,39,32,B5,pp,8,144,83,8,,,,, +215,57,2,5032,1177,839.109,,,,,,144,83,0,,,,, +215,58,2,5033,1216,839.109,38,32,D6,pp,8,144,86,8,,,,, +215,50,1,5024,1024,839.22,,,,,,144,101,0,,,,, +215,58,2,5033,1216,839.22,,,,,,144,86,0,,,,, +215,59,2,5034,1254,839.22,26,32,F7,pp,8,144,101,8,,,,, +215,45,3,5020,1024,839.296,,,,,,144,64,0,,,,, +215,46,3,5021,1024,839.296,,,,,,144,70,0,,,,, +215,48,1,5022,1024,839.296,,,,,,144,66,0,,,,, +215,49,1,5023,1024,839.296,,,,,,144,92,0,,,,, +215,59,2,5034,1254,839.296,,,,,,144,101,0,,,,, +215,60,3,5035,1280,839.296,256,4,A4,mp,14,144,69,14,,,,, +215,61,3,5036,1280,839.296,256,4,D#5,mp,14,144,75,14,,,,, +215,62,1,5037,1280,839.296,38,32,C#5,pp,8,144,73,8,,,,, +215,63,2,5038,1280,839.296,,,,,,176,102,0,,,,, +215,62,1,5037,1280,839.408,,,,,,144,73,0,,,,, +215,64,1,5039,1318,839.408,38,32,B4,pp,8,144,71,8,,,,, +215,64,1,5039,1318,839.519,,,,,,144,71,0,,,,, +215,65,1,5040,1356,839.519,39,32,D6,pp,8,144,86,8,,,,, +215,65,1,5040,1356,839.633,,,,,,144,86,0,,,,, +215,66,1,5041,1395,839.633,25,32,F7,pp+,9,144,101,9,,,,, +215,66,1,5041,1395,839.707,,,,,,144,101,0,,,,, +215,67,1,5042,1420,839.707,39,32,A6,pp+,9,144,93,9,,,,, +215,67,1,5042,1420,839.821,,,,,,144,93,0,,,,, +215,68,1,5043,1459,839.821,38,32,C#5,pp+,9,144,73,9,,,,, +215,68,1,5043,1459,839.932,,,,,,144,73,0,,,,, +215,69,1,5044,1497,839.932,26,32,B4,pp+,9,144,71,9,,,,, +215,69,1,5044,1497,840.008,,,,,,144,71,0,,,,, +215,70,1,5045,1523,840.008,13,64,A5,p-,10,144,81,10,,,,, +215,60,3,5035,1280,840.046,,,,,,144,69,0,,,,, +215,61,3,5036,1280,840.046,,,,,,144,75,0,,,,, +216,0,0,5046,0,840.046,,,,,,,,,216,,,, +216,1,1,5047,0,840.046,25,32,A5,,,,,,,,,, +216,2,3,5048,0,840.046,,,,,,176,102,0,,,,, +215,70,1,5045,1523,840.12,,,,,,144,81,0,,,,, +216,3,1,5049,25,840.12,39,32,C#4,p-,10,144,61,10,,,,, +216,3,1,5049,25,840.234,,,,,,144,61,0,,,,, +216,4,1,5050,64,840.234,38,32,B3,p-,10,144,59,10,,,,, +216,4,1,5050,64,840.345,,,,,,144,59,0,,,,, +216,5,1,5051,102,840.345,26,32,D5,p-,10,144,74,10,,,,, +216,5,1,5051,102,840.421,,,,,,144,74,0,,,,, +216,6,1,5052,128,840.421,38,32,B3,p-,10,144,59,10,,,,, +216,6,1,5052,128,840.533,,,,,,144,59,0,,,,, +216,7,1,5053,166,840.533,38,32,D5,p,11,144,74,11,,,,, +216,7,1,5053,166,840.644,,,,,,144,74,0,,,,, +216,8,1,5054,204,840.644,26,32,F7,p,11,144,101,11,,,,, +216,8,1,5054,204,840.72,,,,,,144,101,0,,,,, +216,9,1,5055,230,840.72,26,32,A4,p,11,144,69,11,,,,, +216,10,1,5056,256,840.796,25,32,A4,,,,,,,,,, +216,9,1,5055,230,840.87,,,,,,144,69,0,,,,, +216,11,1,5057,281,840.87,39,32,C#3,pp,8,144,49,8,,,,, +216,11,1,5057,281,840.984,,,,,,144,49,0,,,,, +216,12,1,5058,320,840.984,38,32,D4,pp,8,144,62,8,,,,, +216,13,1,5059,358,841.095,51,16,B2,pp,8,144,47,8,,,,, +216,12,1,5058,320,841.17,,,,,,144,62,0,,,,, +216,13,1,5059,358,841.245,,,,,,144,47,0,,,,, +216,14,1,5060,409,841.245,51,16,D4,pp,8,144,62,8,,,,, +216,14,1,5060,409,841.394,,,,,,144,62,0,,,,, +216,15,1,5061,460,841.394,52,16,F6,pp,8,144,89,8,,,,, +216,15,1,5061,460,841.546,,,,,,144,89,0,,,,, +216,16,1,5062,512,841.546,42,16,A4,mp,14,144,69,14,,,,, +216,17,1,5063,512,841.546,64,16,D#5,mp,14,144,75,14,,,,, +216,16,1,5062,512,841.67,,,,,,144,69,0,,,,, +216,18,1,5064,554,841.67,43,16,F#3,mp,14,144,54,14,,,,, +216,17,1,5063,512,841.734,,,,,,144,75,0,,,,, +216,18,1,5064,554,841.796,,,,,,144,54,0,,,,, +216,19,1,5065,597,841.796,43,16,F5,mp,14,144,77,14,,,,, +216,19,1,5065,597,841.921,,,,,,144,77,0,,,,, +216,20,1,5066,640,841.921,85,8,C#4,mp,14,144,61,14,,,,, +216,20,1,5066,640,842.171,,,,,,144,61,0,,,,, +216,21,1,5067,725,842.171,21,32,A4,mf,17,144,69,17,,,,, +216,22,1,5068,725,842.171,32,32,D#5,mf,17,144,75,17,,,,, +216,23,1,5069,725,842.171,32,32,F5,mf,17,144,77,17,,,,, +216,21,1,5067,725,842.232,,,,,,144,69,0,,,,, +216,24,1,5070,746,842.232,22,32,F#3,mf+,18,144,54,18,,,,, +216,22,1,5068,725,842.264,,,,,,144,75,0,,,,, +216,23,1,5069,725,842.264,,,,,,144,77,0,,,,, +216,24,1,5070,746,842.296,,,,,,144,54,0,,,,, +216,25,1,5071,768,842.296,21,32,A4,f-,19,144,69,19,,,,, +216,26,1,5072,768,842.296,32,32,D#5,f-,19,144,75,19,,,,, +216,27,1,5073,768,842.296,32,32,F5,f-,19,144,77,19,,,,, +216,25,1,5071,768,842.358,,,,,,144,69,0,,,,, +216,28,1,5074,789,842.358,21,32,C#4,f-,19,144,61,19,,,,, +216,26,1,5072,768,842.39,,,,,,144,75,0,,,,, +216,27,1,5073,768,842.39,,,,,,144,77,0,,,,, +216,28,1,5074,789,842.42,,,,,,144,61,0,,,,, +216,29,1,5075,810,842.42,32,32,A4,f,20,144,69,20,,,,, +216,30,1,5076,810,842.42,32,32,D#5,f,20,144,75,20,,,,, +216,31,1,5077,810,842.42,32,32,F5,f,20,144,77,20,,,,, +216,29,1,5075,810,842.513,,,,,,144,69,0,,,,, +216,30,1,5076,810,842.513,,,,,,144,75,0,,,,, +216,31,1,5077,810,842.513,,,,,,144,77,0,,,,, +216,32,1,5078,842,842.513,32,32,C#4,f,20,144,61,20,,,,, +216,32,1,5078,842,842.607,,,,,,144,61,0,,,,, +216,33,1,5079,874,842.607,22,32,F#3,f,20,144,54,20,,,,, +216,33,1,5079,874,842.671,,,,,,144,54,0,,,,, +216,34,1,5080,896,842.671,,,,,,176,102,0,,,,, +216,35,1,5081,1024,843.046,,,,,,176,102,0,,,,, +216,36,3,5082,1024,843.046,256,4,E4,mp,14,144,64,14,,,,, +216,37,3,5083,1024,843.046,256,4,A#4,mp,14,144,70,14,,,,, +216,38,3,5084,1024,843.046,256,4,C6,mp,14,144,84,14,,,,, +216,36,3,5082,1024,843.796,,,,,,144,64,0,,,,, +216,37,3,5083,1024,843.796,,,,,,144,70,0,,,,, +216,38,3,5084,1024,843.796,,,,,,144,84,0,,,,, +216,39,1,5085,1280,843.796,,,,,,176,102,0,,,,, +216,40,3,5086,1280,843.796,,,,,,176,102,0,,,,, +216,41,1,5087,1344,843.984,32,32,D#5,f,20,144,75,20,,,,, +216,41,1,5087,1344,844.078,,,,,,144,75,0,,,,, +216,42,1,5088,1376,844.078,32,32,A3,f,20,144,57,20,,,,, +216,42,1,5088,1376,844.171,,,,,,144,57,0,,,,, +216,43,1,5089,1408,844.171,21,32,F#2,f,20,144,42,20,,,,, +216,43,1,5089,1408,844.233,,,,,,144,42,0,,,,, +216,44,1,5090,1429,844.233,21,32,A3,f,20,144,57,20,,,,, +216,45,1,5091,1429,844.233,32,32,D#5,f,20,144,75,20,,,,, +216,46,1,5092,1429,844.233,32,32,F5,f,20,144,77,20,,,,, +216,44,1,5090,1429,844.295,,,,,,144,57,0,,,,, +216,47,1,5093,1450,844.295,22,32,F#2,f,20,144,42,20,,,,, +216,45,1,5091,1429,844.327,,,,,,144,75,0,,,,, +216,46,1,5092,1429,844.327,,,,,,144,77,0,,,,, +216,47,1,5093,1450,844.359,,,,,,144,42,0,,,,, +216,48,1,5094,1472,844.359,32,32,C#3,f,20,144,49,20,,,,, +216,48,1,5094,1472,844.453,,,,,,144,49,0,,,,, +216,49,1,5095,1504,844.453,32,32,F#2,f,20,144,42,20,,,,, +216,49,1,5095,1504,844.546,,,,,,144,42,0,,,,, +217,0,0,5096,0,844.546,,,,,,,,,217,,,, +217,1,1,5097,0,844.546,85,8,E4,mf,17,144,64,17,,,,, +217,2,1,5098,0,844.546,128,8,A#4,mf,17,144,70,17,,,,, +217,3,1,5099,0,844.546,128,8,C6,mf,17,144,84,17,,,,, +217,4,3,5100,0,844.546,,,,,,176,102,0,,,,, +217,1,1,5097,0,844.796,,,,,,144,64,0,,,,, +217,5,1,5101,85,844.796,128,8,G#3,mf+,18,144,56,18,,,,, +217,2,1,5098,0,844.921,,,,,,144,70,0,,,,, +217,3,1,5099,0,844.921,,,,,,144,84,0,,,,, +217,6,0,5102,213,845.12,,,,,,176,64,0,,,,,^ +217,5,1,5101,85,845.171,,,,,,144,56,0,,,,, +217,7,1,5103,213,845.171,43,16,E4,f,20,144,64,20,,,,, +217,8,1,5104,213,845.171,64,16,A#4,f,20,144,70,20,,,,, +217,9,1,5105,213,845.171,64,16,C6,f,20,144,84,20,,,,, +217,10,1,5106,213,845.171,64,16,C#7,f,20,144,97,20,,,,, +217,11,1,5107,256,845.296,768,2,E4,,,,,,,,,, +217,12,1,5108,256,845.296,512,2,A#4,,,,,,,,,, +217,13,1,5109,256,845.296,512,2,C6,,,,,,,,,, +217,14,1,5110,256,845.296,512,2,C#7,,,,,,,,,, +217,15,3,5111,256,845.296,,,,,,176,102,0,,,,, +217,17,3,5112,281,845.37,,,,,,176,102,0,,,,, +217,16,0,5113,281,845.42,,,,,,176,64,127,,,,,V +217,18,3,5114,320,845.484,38,32,A4,mp,14,144,69,14,,,,, +217,18,3,5114,320,845.595,,,,,,144,69,0,,,,, +217,19,3,5115,358,845.595,26,32,C#3,mp,14,144,49,14,,,,, +217,19,3,5115,358,845.671,,,,,,144,49,0,,,,, +217,20,3,5116,384,845.671,25,32,D3,mp-,13,144,50,13,,,,, +217,20,3,5116,384,845.745,,,,,,144,50,0,,,,, +217,21,3,5117,409,845.745,39,32,B2,mp-,13,144,47,13,,,,, +217,21,3,5117,409,845.859,,,,,,144,47,0,,,,, +217,22,3,5118,448,845.859,38,32,D3,mp-,13,144,50,13,,,,, +217,22,3,5118,448,845.97,,,,,,144,50,0,,,,, +217,23,3,5119,486,845.97,26,32,F5,mp-,13,144,77,13,,,,, +217,23,3,5119,486,846.046,,,,,,144,77,0,,,,, +217,24,3,5120,512,846.046,38,32,C#2,p+,12,144,37,12,,,,, +217,25,3,5121,512,846.046,32,32,A4,p+,12,144,69,12,,,,, +217,25,3,5121,512,846.14,,,,,,144,69,0,,,,, +217,24,3,5120,512,846.158,,,,,,144,37,0,,,,, +217,26,3,5122,550,846.158,38,32,B1,p+,12,144,35,12,,,,, +217,26,3,5122,550,846.269,,,,,,144,35,0,,,,, +217,27,3,5123,588,846.269,39,32,D3,p+,12,144,50,12,,,,, +217,27,3,5123,588,846.383,,,,,,144,50,0,,,,, +217,28,3,5124,627,846.383,25,32,B1,p,11,144,35,11,,,,, +217,29,3,5125,627,846.383,32,32,C#2,p,11,144,37,11,,,,, +217,30,3,5126,627,846.383,32,32,F4,p,11,144,65,11,,,,, +217,28,3,5124,627,846.457,,,,,,144,35,0,,,,, +217,31,3,5127,652,846.457,39,32,A3,p,11,144,57,11,,,,, +217,29,3,5125,627,846.477,,,,,,144,37,0,,,,, +217,30,3,5126,627,846.477,,,,,,144,65,0,,,,, +217,31,3,5127,652,846.571,,,,,,144,57,0,,,,, +217,32,3,5128,691,846.571,38,32,C#2,p,11,144,37,11,,,,, +217,32,3,5128,691,846.682,,,,,,144,37,0,,,,, +217,33,3,5129,729,846.682,26,32,B1,p,11,144,35,11,,,,, +217,33,3,5129,729,846.758,,,,,,144,35,0,,,,, +217,34,3,5130,755,846.758,13,64,A2,p-,10,144,45,10,,,,, +217,35,3,5131,768,846.796,25,32,A2,,,,,,,,,, +217,8,1,5104,213,846.858,,,,,,144,70,0,,,,, +217,9,1,5105,213,846.858,,,,,,144,84,0,,,,, +217,10,1,5106,213,846.858,,,,,,144,97,0,,,,, +217,34,3,5130,755,846.87,,,,,,144,45,0,,,,, +217,36,3,5132,793,846.87,39,32,C#1,p-,10,144,25,10,,,,, +217,36,3,5132,793,846.984,,,,,,144,25,0,,,,, +217,37,3,5133,832,846.984,38,32,B0,p-,10,144,23,10,,,,, +217,37,3,5133,832,847.095,,,,,,144,23,0,,,,, +217,38,3,5134,870,847.095,26,32,D2,pp+,9,144,38,9,,,,, +217,38,3,5134,870,847.171,,,,,,144,38,0,,,,, +217,39,3,5135,896,847.171,38,32,B0,pp+,9,144,23,9,,,,, +217,39,3,5135,896,847.283,,,,,,144,23,0,,,,, +217,40,3,5136,934,847.283,38,32,D2,pp+,9,144,38,9,,,,, +217,40,3,5136,934,847.394,,,,,,144,38,0,,,,, +217,41,3,5137,972,847.394,26,32,F3,pp+,9,144,53,9,,,,, +217,41,3,5137,972,847.47,,,,,,144,53,0,,,,, +217,42,3,5138,998,847.47,26,32,A1,pp,8,144,33,8,,,,, +217,7,1,5103,213,847.546,,,,,,144,64,0,,,,, +217,44,0,5139,1024,847.546,,,,,,176,64,0,,,,,^ +217,43,3,5140,1024,847.546,25,32,A1,,,,,,,,,, +217,45,1,5141,1024,847.546,,,,,,176,102,0,,,,, +217,42,3,5138,998,847.62,,,,,,144,33,0,,,,, +217,46,3,5142,1049,847.62,39,32,C#1,pp,8,144,25,8,,,,, +217,46,3,5142,1049,847.734,,,,,,144,25,0,,,,, +217,47,3,5143,1088,847.734,38,32,D1,pp,8,144,26,8,,,,, +217,47,3,5143,1088,847.845,,,,,,144,26,0,,,,, +217,48,3,5144,1126,847.845,51,16,B0,pp,8,144,23,8,,,,, +217,48,3,5144,1126,847.995,,,,,,144,23,0,,,,, +217,49,3,5145,1177,847.995,51,16,D1,pp,8,144,26,8,,,,, +217,49,3,5145,1177,848.144,,,,,,144,26,0,,,,, +217,50,3,5146,1228,848.144,52,16,F2,pp,8,144,41,8,,,,, +217,50,3,5146,1228,848.296,,,,,,144,41,0,,,,, +217,52,1,5147,1280,848.296,,,,,,176,102,0,,,,, +217,53,3,5148,1280,848.296,76,16,B0,pp,8,144,23,8,,,,, +217,54,3,5149,1280,848.296,64,16,C#1,pp,8,144,25,8,,,,, +217,55,3,5150,1280,848.296,64,16,A1,pp,8,144,33,8,,,,, +217,51,0,5151,1280,848.296,,,,,,176,64,127,,,,,V +217,54,3,5149,1280,848.484,,,,,,144,25,0,,,,, +217,55,3,5150,1280,848.484,,,,,,144,33,0,,,,, +217,53,3,5148,1280,848.519,,,,,,144,23,0,,,,, +217,56,3,5152,1356,848.519,52,16,D1,pp,8,144,26,8,,,,, +217,56,3,5152,1356,848.671,,,,,,144,26,0,,,,, +217,57,3,5153,1408,848.671,51,16,F2,pp,8,144,41,8,,,,, +217,57,3,5153,1408,848.821,,,,,,144,41,0,,,,, +217,58,3,5154,1459,848.821,,,,,,176,102,0,,,,, +217,59,1,5155,1472,848.859,32,32,A#1,mp,14,144,34,14,,,,, +217,59,1,5155,1472,848.953,,,,,,144,34,0,,,,, +217,60,1,5156,1504,848.953,32,32,F2,mp-,13,144,41,13,,,,, +217,60,1,5156,1504,849.046,,,,,,144,41,0,,,,, +218,0,0,5157,0,849.046,,,,,,,,,218,,,, +218,1,1,5158,0,849.046,96,16,C#4,p+,12,144,61,12,,,,, +218,2,3,5159,0,849.046,,,,,,176,102,0,,,,, +218,1,1,5158,0,849.328,,,,,,144,61,0,,,,, +218,3,1,5160,96,849.328,32,32,A#1,p-,10,144,34,10,,,,, +218,4,1,5161,96,849.328,32,32,F3,p-,10,144,53,10,,,,, +218,3,1,5160,96,849.421,,,,,,144,34,0,,,,, +218,4,1,5161,96,849.421,,,,,,144,53,0,,,,, +218,5,1,5162,128,849.421,32,32,C#4,pp+,9,144,61,9,,,,, +218,5,1,5162,128,849.515,,,,,,144,61,0,,,,, +218,6,1,5163,160,849.515,96,16,A#1,pp,8,144,34,8,,,,, +218,6,1,5163,160,849.796,,,,,,144,34,0,,,,, +218,7,0,5164,256,849.89,,,,,,,,,,,60,, +218,8,1,5165,256,849.89,1024,1,C#5,pp,8,144,73,8,,,,, +218,9,3,5166,256,849.89,,,,,,176,102,0,,,,, +218,11,0,5167,1280,852.89,,,,,,176,64,0,,,,,^ +218,10,0,5168,1280,852.89,,,,,,,,,,,80,, +218,12,1,5169,1280,852.89,,,,,,176,102,0,,,,, +218,13,3,5170,1280,852.89,,,,,,176,102,0,,,,, +219,0,0,5171,0,853.64,,,,,,,,,219,,,, +219,1,0,5172,0,853.64,,,,,,,,,,5976,,, +219,2,1,5173,0,853.64,512,2,D#5,mp,14,144,75,14,,,,, +219,3,2,5174,0,853.64,341,2,A5,mp,14,144,81,14,,,,, +219,4,3,5175,0,853.64,128,8,G#4,ppp,5,144,68,5,,,,, +219,5,4,5176,0,853.64,,,,,,176,102,0,,,,, +218,8,1,5165,256,853.89,,,,,,144,73,0,,,,, +219,4,3,5175,0,854.015,,,,,,144,68,0,,,,, +219,6,3,5177,128,854.015,128,8,D3,ppp+,6,144,50,6,,,,, +219,6,3,5177,128,854.39,,,,,,144,50,0,,,,, +219,8,3,5178,256,854.39,256,4,F#5,pp,8,144,78,8,,,,, +219,9,4,5179,256,854.39,,,,,,176,102,0,,,,, +219,7,0,5180,256,854.39,,,,,,176,64,127,,,,,V +219,10,4,5181,288,854.484,32,32,A1,ff,22,144,33,22,,,,, +219,10,4,5181,288,854.578,,,,,,144,33,0,,,,, +219,11,4,5182,320,854.578,128,8,G4,ff,22,144,67,22,,,,, +219,3,2,5174,0,854.639,,,,,,144,81,0,,,,, +219,12,2,5183,341,854.639,171,4,D4,mp,14,144,62,14,,,,, +219,11,4,5182,320,854.953,,,,,,144,67,0,,,,, +219,13,4,5184,448,854.953,32,32,A1,pp,8,144,33,8,,,,, +219,13,4,5184,448,855.046,,,,,,144,33,0,,,,, +219,14,0,5185,480,855.046,,,,,,176,64,0,,,,,^ +219,15,4,5186,480,855.046,32,32,G4,pp,8,144,67,8,,,,, +219,2,1,5173,0,855.14,,,,,,144,75,0,,,,, +219,8,3,5178,256,855.14,,,,,,144,78,0,,,,, +219,12,2,5183,341,855.14,,,,,,144,62,0,,,,, +219,15,4,5186,480,855.14,,,,,,144,67,0,,,,, +219,16,1,5187,512,855.14,256,4,F5,mp,14,144,77,14,,,,, +219,17,2,5188,512,855.14,42,16,B2,pp,8,144,47,8,,,,, +219,18,3,5189,512,855.14,512,2,E2,pp,8,144,40,8,,,,, +219,19,4,5190,512,855.14,512,2,A#1,pp,8,144,34,8,,,,, +219,17,2,5188,512,855.263,,,,,,144,47,0,,,,, +219,20,2,5191,554,855.263,43,16,A#6,p,11,144,94,11,,,,, +219,20,2,5191,554,855.389,,,,,,144,94,0,,,,, +219,21,2,5192,597,855.389,,,,,,176,102,0,,,,, +219,22,2,5193,682,855.638,86,8,F7,pp,8,144,101,8,,,,, +219,16,1,5187,512,855.89,,,,,,144,77,0,,,,, +219,22,2,5193,682,855.89,,,,,,144,101,0,,,,, +219,23,1,5194,768,855.89,128,8,D#5,pp-,7,144,75,7,,,,, +219,24,2,5195,768,855.89,256,4,F#5,ppp,5,144,78,5,,,,, +219,23,1,5194,768,856.265,,,,,,144,75,0,,,,, +219,25,1,5196,896,856.265,,,,,,176,102,0,,,,, +219,18,3,5189,512,856.64,,,,,,144,40,0,,,,, +219,19,4,5190,512,856.64,,,,,,144,34,0,,,,, +219,24,2,5195,768,856.64,,,,,,144,78,0,,,,, +219,26,1,5197,,856.64,,8,B3,pp-,7,144,59,7,,,,g, +219,26,1,5197,,856.69,,,,,,144,59,0,,,,, +219,27,1,5198,,856.715,,8,G#4,pp-,7,144,68,7,,,,g, +219,27,1,5198,,856.765,,,,,,144,68,0,,,,, +220,0,0,5199,0,856.79,,,,,,,,,220,,,, +220,1,1,5200,0,856.79,256,4,A4,pp,8,144,69,8,,,,, +220,2,1,5201,0,856.79,256,4,A#5,pp,8,144,82,8,,,,, +220,3,2,5202,0,856.79,,,,,,176,102,0,,,,, +220,4,3,5203,0,856.79,42,16,C#2,pp,8,144,37,8,,,,, +220,5,4,5204,0,856.79,179,8,C1,pp,8,144,24,8,,,,, +220,4,3,5203,0,856.913,,,,,,144,37,0,,,,, +220,6,3,5205,42,856.913,43,16,B1,pp,8,144,35,8,,,,, +220,6,3,5205,42,857.039,,,,,,144,35,0,,,,, +220,7,3,5206,85,857.039,43,16,C#2,pp,8,144,37,8,,,,, +220,7,3,5206,85,857.165,,,,,,144,37,0,,,,, +220,8,3,5207,128,857.165,42,16,B1,pp,8,144,35,8,,,,, +220,8,3,5207,128,857.288,,,,,,144,35,0,,,,, +220,9,3,5208,170,857.288,86,8,A3,pp,8,144,57,8,,,,, +220,5,4,5204,0,857.315,,,,,,144,24,0,,,,, +220,11,4,5209,179,857.315,25,32,E6,pp,8,144,88,8,,,,, +220,10,0,5210,179,857.315,,,,,,176,64,127,,,,,V +220,11,4,5209,179,857.388,,,,,,144,88,0,,,,, +220,12,4,5211,204,857.388,26,32,C1,pp,8,144,24,8,,,,, +220,12,4,5211,204,857.464,,,,,,144,24,0,,,,, +220,13,4,5212,230,857.464,26,32,E6,pp,8,144,88,8,,,,, +220,1,1,5200,0,857.54,,,,,,144,69,0,,,,, +220,2,1,5201,0,857.54,,,,,,144,82,0,,,,, +220,9,3,5208,170,857.54,,,,,,144,57,0,,,,, +220,14,1,5213,256,857.54,256,4,A#5,pp,8,144,82,8,,,,, +220,15,2,5214,256,857.54,,,,,,176,102,0,,,,, +220,16,3,5215,256,857.54,,,,,,176,102,0,,,,, +220,17,4,5216,256,857.54,153,8,E6,,,,,,,,,, +220,13,4,5212,230,857.988,,,,,,144,88,0,,,,, +220,18,4,5217,409,857.988,26,32,A5,pp,8,144,81,8,,,,, +220,18,4,5217,409,858.065,,,,,,144,81,0,,,,, +220,19,4,5218,435,858.065,25,32,F#3,pp,8,144,54,8,,,,, +220,19,4,5218,435,858.138,,,,,,144,54,0,,,,, +220,20,4,5219,460,858.138,52,16,G#5,pp,8,144,80,8,,,,, +220,14,1,5213,256,858.29,,,,,,144,82,0,,,,, +220,20,4,5219,460,858.29,,,,,,144,80,0,,,,, +220,21,1,5220,512,858.29,256,4,D2,pp,8,144,38,8,,,,, +220,22,2,5221,512,858.29,,,,,,176,102,0,,,,, +220,23,3,5222,512,858.29,256,4,C#1,pp,8,144,25,8,,,,, +220,24,4,5223,512,858.29,25,32,A5,pp,8,144,81,8,,,,, +220,24,4,5223,512,858.363,,,,,,144,81,0,,,,, +220,25,4,5224,537,858.363,26,32,G#5,pp,8,144,80,8,,,,, +220,25,4,5224,537,858.44,,,,,,144,80,0,,,,, +220,26,4,5225,563,858.44,25,32,C2,pp,8,144,36,8,,,,, +220,26,4,5225,563,858.513,,,,,,144,36,0,,,,, +220,27,4,5226,588,858.513,26,32,A4,pp,8,144,69,8,,,,, +220,27,4,5226,588,858.589,,,,,,144,69,0,,,,, +220,28,4,5227,614,858.589,77,16,E5,pp,8,144,76,8,,,,, +220,28,4,5227,614,858.815,,,,,,144,76,0,,,,, +220,29,4,5228,691,858.815,25,32,G#4,pp,8,144,68,8,,,,, +220,29,4,5228,691,858.888,,,,,,144,68,0,,,,, +220,30,4,5229,716,858.888,26,32,E5,pp,8,144,76,8,,,,, +220,30,4,5229,716,858.964,,,,,,144,76,0,,,,, +220,31,4,5230,742,858.964,26,32,G#4,pp,8,144,68,8,,,,, +220,21,1,5220,512,859.04,,,,,,144,38,0,,,,, +220,23,3,5222,512,859.04,,,,,,144,25,0,,,,, +220,31,4,5230,742,859.04,,,,,,144,68,0,,,,, +220,32,1,5231,768,859.04,,,,,,176,102,0,,,,, +220,33,2,5232,768,859.04,,,,,,176,102,0,,,,, +220,34,3,5233,768,859.04,64,16,D2,pp,8,144,38,8,,,,, +220,35,4,5234,768,859.04,25,32,E5,pp,8,144,76,8,,,,, +220,35,4,5234,768,859.113,,,,,,144,76,0,,,,, +220,36,4,5235,793,859.113,26,32,G#4,pp,8,144,68,8,,,,, +220,36,4,5235,793,859.19,,,,,,144,68,0,,,,, +220,37,4,5236,819,859.19,25,32,F#2,pp,8,144,42,8,,,,, +220,34,3,5233,768,859.228,,,,,,144,38,0,,,,, +220,38,3,5237,832,859.228,,,,,,176,102,0,,,,, +220,37,4,5236,819,859.263,,,,,,144,42,0,,,,, +220,39,4,5238,844,859.263,26,32,A4,pp,8,144,69,8,,,,, +220,40,1,5239,853,859.289,171,4,F5,pp,8,144,77,8,,,,, +220,39,4,5238,844,859.339,,,,,,144,69,0,,,,, +220,41,4,5240,870,859.339,26,32,G#4,pp,8,144,68,8,,,,, +220,41,4,5240,870,859.415,,,,,,144,68,0,,,,, +220,42,3,5241,896,859.415,32,32,F#4,pp,8,144,66,8,,,,, +220,43,4,5242,896,859.415,25,32,A4,pp,8,144,69,8,,,,, +220,43,4,5242,896,859.488,,,,,,144,69,0,,,,, +220,44,4,5243,921,859.488,26,32,E5,pp,8,144,76,8,,,,, +220,42,3,5241,896,859.509,,,,,,144,66,0,,,,, +220,45,3,5244,928,859.509,32,32,G#3,pp,8,144,56,8,,,,, +220,44,4,5243,921,859.565,,,,,,144,76,0,,,,, +220,46,4,5245,947,859.565,25,32,G#4,pp,8,144,68,8,,,,, +220,45,3,5244,928,859.603,,,,,,144,56,0,,,,, +220,47,3,5246,960,859.603,32,32,D1,pp,8,144,26,8,,,,, +220,46,4,5245,947,859.638,,,,,,144,68,0,,,,, +220,48,4,5247,972,859.638,26,32,F#2,pp,8,144,42,8,,,,, +220,47,3,5246,960,859.696,,,,,,144,26,0,,,,, +220,49,3,5248,992,859.696,,,,,,176,102,0,,,,, +220,48,4,5247,972,859.714,,,,,,144,42,0,,,,, +220,50,4,5249,998,859.714,26,32,A3,pp,8,144,57,8,,,,, +220,51,0,5250,1023,859.787,,,,,,176,64,0,,,,,^ +220,40,1,5239,853,859.79,,,,,,144,77,0,,,,, +220,50,4,5249,998,859.79,,,,,,144,57,0,,,,, +221,0,0,5251,0,859.79,,,,,,,,,221,,,, +221,1,0,5252,0,859.79,,,,,,,,,,5977,,, +221,2,1,5253,0,859.79,,,,,,176,102,0,,,,, +221,3,3,5254,0,859.79,64,16,D4,pp,8,144,62,8,,,,, +221,4,4,5255,0,859.79,256,4,C1,pp,8,144,24,8,,,,, +221,5,4,5256,0,859.79,256,4,E3,mf,17,144,52,17,,,,, +221,6,4,5257,0,859.79,256,4,B3,p,11,144,59,11,,,,, +221,3,3,5254,0,859.978,,,,,,144,62,0,,,,, +221,7,3,5258,64,859.978,192,8,C2,p,11,144,36,11,,,,, +221,9,1,5259,102,860.089,102,8,A2,p,11,144,45,11,,,,, +221,8,0,5260,102,860.089,,,,,,176,64,127,,,,,V +221,9,1,5259,102,860.388,,,,,,144,45,0,,,,, +221,10,1,5261,204,860.388,52,16,A2,mp,14,144,45,14,,,,, +221,11,1,5262,204,860.388,64,16,G5,mp,14,144,79,14,,,,, +221,4,4,5255,0,860.54,,,,,,144,24,0,,,,, +221,5,4,5256,0,860.54,,,,,,144,52,0,,,,, +221,6,4,5257,0,860.54,,,,,,144,59,0,,,,, +221,7,3,5258,64,860.54,,,,,,144,36,0,,,,, +221,10,1,5261,204,860.54,,,,,,144,45,0,,,,, +221,12,1,5263,256,860.54,,,,,,176,102,0,,,,, +221,13,3,5264,256,860.54,64,16,A#2,mp+,15,144,46,15,,,,, +221,14,4,5265,256,860.54,,,,,,176,102,0,,,,, +221,11,1,5262,204,860.575,,,,,,144,79,0,,,,, +221,13,3,5264,256,860.728,,,,,,144,46,0,,,,, +221,15,3,5266,320,860.728,42,16,C#5,mf,17,144,73,17,,,,, +221,15,3,5266,320,860.851,,,,,,144,73,0,,,,, +221,16,3,5267,362,860.851,43,16,A#2,mf+,18,144,46,18,,,,, +221,17,3,5268,362,860.851,64,16,F3,mf+,18,144,53,18,,,,, +221,18,3,5269,362,860.851,64,16,C#5,mf+,18,144,73,18,,,,, +221,16,3,5267,362,860.977,,,,,,144,46,0,,,,, +221,19,3,5270,405,860.977,64,16,A1,f-,19,144,33,19,,,,, +221,17,3,5268,362,861.038,,,,,,144,53,0,,,,, +221,18,3,5269,362,861.038,,,,,,144,73,0,,,,, +221,20,0,5271,469,861.152,,,,,,176,64,0,,,,,^ +221,19,3,5270,405,861.164,,,,,,144,33,0,,,,, +221,21,3,5272,,861.164,,8,A5,f+,21,144,81,21,,,,g, +221,21,3,5272,,861.214,,,,,,144,81,0,,,,, +221,22,3,5273,,861.239,,8,D5,f+,21,144,74,21,,,,g, +221,22,3,5273,,861.289,,,,,,144,74,0,,,,, +221,23,3,5274,469,861.314,43,16,G5,ff,22,144,79,22,,,,, +221,23,3,5274,469,861.44,,,,,,144,79,0,,,,, +221,25,1,5275,512,861.44,32,32,C#2,p,11,144,37,11,,,,, +221,26,3,5276,512,861.44,512,2,A#1,ff,22,144,34,22,,,,, +221,27,4,5277,512,861.44,,,,,,176,102,0,,,,, +221,24,0,5278,512,861.452,,,,,,176,64,127,,,,,V +221,25,1,5275,512,861.534,,,,,,144,37,0,,,,, +221,28,1,5279,544,861.534,32,32,B1,p,11,144,35,11,,,,, +221,28,1,5279,544,861.628,,,,,,144,35,0,,,,, +221,29,1,5280,576,861.628,32,32,D5,p,11,144,74,11,,,,, +221,29,1,5280,576,861.721,,,,,,144,74,0,,,,, +221,30,1,5281,608,861.721,32,32,F6,p,11,144,89,11,,,,, +221,30,1,5281,608,861.815,,,,,,144,89,0,,,,, +221,31,0,5282,640,861.815,,,,,,176,64,0,,,,,^ +221,32,1,5283,640,861.815,,,,,,176,102,0,,,,, +221,33,4,5284,704,862.003,32,32,D4,ff,22,144,62,22,,,,, +221,33,4,5284,704,862.096,,,,,,144,62,0,,,,, +221,34,4,5285,736,862.096,32,32,C2,ff,22,144,36,22,,,,, +221,34,4,5285,736,862.19,,,,,,144,36,0,,,,, +221,36,1,5286,768,862.19,96,16,B3,mf,17,144,59,17,,,,, +221,37,4,5287,768,862.19,256,4,C1,pp,8,144,24,8,,,,, +221,38,4,5288,768,862.19,256,4,A#2,pp,8,144,46,8,,,,, +221,39,4,5289,768,862.19,256,4,E3,pp,8,144,52,8,,,,, +221,35,0,5290,768,862.19,,,,,,176,64,127,,,,,V +221,36,1,5286,768,862.471,,,,,,144,59,0,,,,, +221,40,1,5291,864,862.471,32,32,A#5,mf,17,144,82,17,,,,, +221,41,1,5292,896,862.565,128,8,A#5,,,,,,,,,, +221,26,3,5276,512,862.94,,,,,,144,34,0,,,,, +221,37,4,5287,768,862.94,,,,,,144,24,0,,,,, +221,38,4,5288,768,862.94,,,,,,144,46,0,,,,, +221,39,4,5289,768,862.94,,,,,,144,52,0,,,,, +221,40,1,5291,864,862.94,,,,,,144,82,0,,,,, +222,0,0,5293,0,862.94,,,,,,,,,222,,,, +222,1,1,5294,0,862.94,32,32,C#3,p,11,144,49,11,,,,, +222,2,3,5295,0,862.94,,,,,,176,102,0,,,,, +222,3,4,5296,0,862.94,,,,,,176,102,0,,,,, +222,1,1,5294,0,863.034,,,,,,144,49,0,,,,, +222,4,1,5297,32,863.034,32,32,B2,p+,12,144,47,12,,,,, +222,4,1,5297,32,863.128,,,,,,144,47,0,,,,, +222,5,1,5298,64,863.128,32,32,D5,mp,14,144,74,14,,,,, +222,6,3,5299,85,863.189,,,,,,176,102,0,,,,, +222,5,1,5298,64,863.221,,,,,,144,74,0,,,,, +222,7,1,5300,96,863.221,32,32,F6,mf-,16,144,89,16,,,,, +222,7,1,5300,96,863.315,,,,,,144,89,0,,,,, +222,8,1,5301,128,863.315,128,8,A4,mf,17,144,69,17,,,,, +222,9,3,5302,170,863.438,43,16,E3,p,11,144,52,11,,,,, +222,9,3,5302,170,863.564,,,,,,144,52,0,,,,, +222,10,3,5303,213,863.564,43,16,D4,mp-,13,144,62,13,,,,, +222,10,3,5303,213,863.69,,,,,,144,62,0,,,,, +222,11,1,5304,256,863.69,256,4,A4,,,,,,,,,, +222,12,3,5305,256,863.69,,,,,,176,102,0,,,,, +222,13,4,5306,256,863.69,64,16,A#1,mp+,15,144,34,15,,,,, +222,13,4,5306,256,863.878,,,,,,144,34,0,,,,, +222,14,4,5307,320,863.878,64,16,E3,mf,17,144,52,17,,,,, +222,15,3,5308,341,863.939,,,,,,176,102,0,,,,, +222,16,3,5309,362,864.001,64,16,C1,pp,8,144,24,8,,,,, +222,14,4,5307,320,864.065,,,,,,144,52,0,,,,, +222,17,4,5310,384,864.065,64,16,D4,f,20,144,62,20,,,,, +222,16,3,5309,362,864.188,,,,,,144,24,0,,,,, +222,18,3,5311,426,864.188,43,16,E4,p,11,144,64,11,,,,, +222,17,4,5310,384,864.253,,,,,,144,62,0,,,,, +222,19,4,5312,448,864.253,,,,,,176,102,0,,,,, +222,18,3,5311,426,864.314,,,,,,144,64,0,,,,, +222,20,3,5313,469,864.314,43,16,F#2,p+,12,144,42,12,,,,, +222,8,1,5301,128,864.44,,,,,,144,69,0,,,,, +222,20,3,5313,469,864.44,,,,,,144,42,0,,,,, +222,21,1,5314,512,864.44,512,2,G#4,f,20,144,68,20,,,,, +222,22,3,5315,512,864.44,64,16,E4,mp,14,144,64,14,,,,, +222,23,4,5316,512,864.44,,,,,,176,102,0,,,,, +222,22,3,5315,512,864.628,,,,,,144,64,0,,,,, +222,24,3,5317,576,864.628,32,32,G#3,p,11,144,56,11,,,,, +222,24,3,5317,576,864.721,,,,,,144,56,0,,,,, +222,25,3,5318,608,864.721,32,32,A3,p-,10,144,57,10,,,,, +222,25,3,5318,608,864.815,,,,,,144,57,0,,,,, +222,26,3,5319,640,864.815,32,32,G#3,pp+,9,144,56,9,,,,, +222,26,3,5319,640,864.909,,,,,,144,56,0,,,,, +222,27,3,5320,672,864.909,32,32,A3,pp-,7,144,57,7,,,,, +222,27,3,5320,672,865.003,,,,,,144,57,0,,,,, +222,28,3,5321,704,865.003,21,32,C1,ppp+,6,144,24,6,,,,, +222,28,3,5321,704,865.064,,,,,,144,24,0,,,,, +222,29,3,5322,725,865.064,43,16,F#1,ppp,5,144,30,5,,,,, +222,29,3,5322,725,865.19,,,,,,144,30,0,,,,, +222,30,3,5323,768,865.19,,,,,,176,102,0,,,,, +222,21,1,5314,512,865.94,,,,,,144,68,0,,,,, +223,0,0,5324,0,865.94,,,,,,,,,223,,,, +223,1,1,5325,0,865.94,,,,,,176,102,0,,,,, +223,2,3,5326,0,865.94,,,,,,176,102,0,,,,, +223,3,4,5327,0,865.94,,,,,,176,102,0,,,,, +223,4,0,5328,128,866.315,,,,,,176,64,0,,,,,^ +223,5,3,5329,128,866.315,128,8,A#1,p,11,144,34,11,,,,, +223,6,3,5330,128,866.315,128,8,E3,p,11,144,52,11,,,,, +223,7,3,5331,128,866.315,128,8,D4,p,11,144,62,11,,,,, +223,8,3,5332,128,866.315,128,8,E4,p,11,144,64,11,,,,, +223,9,4,5333,128,866.315,128,8,C1,pp,8,144,24,8,,,,, +223,10,4,5334,128,866.315,128,8,F#1,pp,8,144,30,8,,,,, +223,11,4,5335,128,866.315,128,8,G#3,pp,8,144,56,8,,,,, +223,12,4,5336,128,866.315,128,8,A3,pp,8,144,57,8,,,,, +223,5,3,5329,128,866.69,,,,,,144,34,0,,,,, +223,6,3,5330,128,866.69,,,,,,144,52,0,,,,, +223,7,3,5331,128,866.69,,,,,,144,62,0,,,,, +223,8,3,5332,128,866.69,,,,,,144,64,0,,,,, +223,9,4,5333,128,866.69,,,,,,144,24,0,,,,, +223,10,4,5334,128,866.69,,,,,,144,30,0,,,,, +223,11,4,5335,128,866.69,,,,,,144,56,0,,,,, +223,12,4,5336,128,866.69,,,,,,144,57,0,,,,, +223,14,1,5337,256,866.69,128,8,G#4,mf,17,144,68,17,,,,, +223,15,1,5338,256,866.69,128,8,F#5,mf,17,144,78,17,,,,, +223,16,3,5339,256,866.69,,,,,,176,102,0,,,,, +223,17,4,5340,256,866.69,,,,,,176,102,0,,,,, +223,13,0,5341,256,866.69,,,,,,176,64,127,,,,,V +223,14,1,5337,256,867.065,,,,,,144,68,0,,,,, +223,15,1,5338,256,867.065,,,,,,144,78,0,,,,, +223,18,1,5342,384,867.065,85,8,B3,p,11,144,59,11,,,,, +223,18,1,5342,384,867.314,,,,,,144,59,0,,,,, +223,19,1,5343,469,867.314,21,32,D3,p-,10,144,50,10,,,,, +223,19,1,5343,469,867.376,,,,,,144,50,0,,,,, +223,20,1,5344,490,867.376,22,32,A#5,pp+,9,144,82,9,,,,, +223,20,1,5344,490,867.44,,,,,,144,82,0,,,,, +223,21,1,5345,512,867.44,21,32,B3,pp+,9,144,59,9,,,,, +223,22,3,5346,512,867.44,,,,,,176,102,0,,,,, +223,23,4,5347,512,867.44,,,,,,176,102,0,,,,, +223,21,1,5345,512,867.502,,,,,,144,59,0,,,,, +223,24,1,5348,533,867.502,21,32,A#5,pp,8,144,82,8,,,,, +223,24,1,5348,533,867.563,,,,,,144,82,0,,,,, +223,25,1,5349,554,867.563,32,32,B3,pp,8,144,59,8,,,,, +223,25,1,5349,554,867.657,,,,,,144,59,0,,,,, +223,26,1,5350,586,867.657,32,32,A#6,ppp+,6,144,94,6,,,,, +223,27,1,5351,618,867.751,22,32,D3,ppp,5,144,50,5,,,,, +223,27,1,5351,618,867.815,,,,,,144,50,0,,,,, +223,28,1,5352,640,867.815,,,,,,176,102,0,,,,, +223,26,1,5350,586,867.901,,,,,,144,94,0,,,,, +223,29,1,5353,768,868.19,,,,,,176,102,0,,,,, +224,0,0,5354,0,868.94,,,,,,,,,224,,,, +224,1,1,5355,0,868.94,,,,,,176,102,0,,,,, +224,2,3,5356,0,868.94,,,,,,176,102,0,,,,, +224,3,0,5357,256,869.69,,,,,,176,64,0,,,,,^ +224,4,3,5358,256,869.69,,,,,,176,102,0,,,,, +224,5,0,5359,256,869.69,,,,,,,,,,5978,,, +224,6,3,5360,341,869.939,,,,,,176,102,0,,,,, +224,8,3,5361,,870.113,,8,C2,pp,8,144,36,8,,,,g, +224,8,3,5361,,870.163,,,,,,144,36,0,,,,, +224,9,3,5362,426,870.188,86,8,A4,pp,8,144,69,8,,,,, +224,7,0,5363,426,870.188,,,,,,176,64,127,,,,,V +224,10,3,5364,512,870.44,85,8,A4,,,,,,,,,, +224,9,3,5362,426,870.689,,,,,,144,69,0,,,,, +224,11,3,5365,597,870.689,171,4,F#3,pp,8,144,54,8,,,,, +224,11,3,5365,597,871.19,,,,,,144,54,0,,,,, +224,12,1,5366,,871.19,,8,F#6,pp,8,144,90,8,,,,g, +224,12,1,5366,,871.24,,,,,,144,90,0,,,,, +224,13,1,5367,,871.265,,8,G#5,pp,8,144,80,8,,,,g, +224,13,1,5367,,871.315,,,,,,144,80,0,,,,, +224,14,1,5368,,871.34,,8,F#6,pp,8,144,90,8,,,,g, +224,14,1,5368,,871.39,,,,,,144,90,0,,,,, +224,15,1,5369,768,871.415,32,32,B4,pp,8,144,71,8,,,,, +224,16,3,5370,768,871.415,,,,,,176,102,0,,,,, +224,15,1,5369,768,871.509,,,,,,144,71,0,,,,, +224,17,1,5371,800,871.509,48,32,G#5,pp,8,144,80,8,,,,, +224,17,1,5371,800,871.65,,,,,,144,80,0,,,,, +224,18,1,5372,848,871.65,48,32,F#6,pp,8,144,90,8,,,,, +224,18,1,5372,848,871.79,,,,,,144,90,0,,,,, +224,19,1,5373,896,871.79,32,32,B4,pp+,9,144,71,9,,,,, +224,19,1,5373,896,871.884,,,,,,144,71,0,,,,, +224,20,1,5374,928,871.884,48,32,G#5,p,11,144,80,11,,,,, +224,20,1,5374,928,872.025,,,,,,144,80,0,,,,, +224,21,1,5375,976,872.025,48,32,F#6,p+,12,144,90,12,,,,, +224,21,1,5375,976,872.165,,,,,,144,90,0,,,,, +225,0,0,5376,0,872.165,,,,,,,,,225,,,, +225,1,1,5377,0,872.165,256,4,B3,p+,12,144,59,12,,,,, +225,2,3,5378,0,872.165,85,8,E3,mp,14,144,52,14,,,,, +225,3,3,5379,0,872.165,128,8,D4,mp,14,144,62,14,,,,, +225,2,3,5378,0,872.414,,,,,,144,52,0,,,,, +225,4,3,5380,85,872.414,43,16,A#1,mf-,16,144,34,16,,,,, +225,5,3,5381,128,872.54,42,16,E3,mf-,16,144,52,16,,,,, +225,3,3,5379,0,872.663,,,,,,144,62,0,,,,, +225,5,3,5381,128,872.663,,,,,,144,52,0,,,,, +225,6,3,5382,170,872.663,86,8,D4,mf,17,144,62,17,,,,, +225,4,3,5380,85,872.69,,,,,,144,34,0,,,,, +225,1,1,5377,0,872.915,,,,,,144,59,0,,,,, +225,6,3,5382,170,872.915,,,,,,144,62,0,,,,, +225,7,1,5383,256,872.915,21,32,B3,mp,14,144,59,14,,,,, +225,8,3,5384,256,872.915,,,,,,176,102,0,,,,, +225,9,1,5385,277,872.977,21,32,F#6,mp+,15,144,90,15,,,,, +225,9,1,5385,277,873.038,,,,,,144,90,0,,,,, +225,10,1,5386,298,873.038,32,32,G#5,mf-,16,144,80,16,,,,, +225,7,1,5383,256,873.065,,,,,,144,59,0,,,,, +225,10,1,5386,298,873.132,,,,,,144,80,0,,,,, +225,11,1,5387,330,873.132,32,32,F#6,mf+,18,144,90,18,,,,, +225,11,1,5387,330,873.226,,,,,,144,90,0,,,,, +225,12,1,5388,362,873.226,64,16,B3,f,20,144,59,20,,,,, +225,12,1,5388,362,873.413,,,,,,144,59,0,,,,, +225,13,1,5389,426,873.413,64,16,A#6,f,20,144,94,20,,,,, +225,13,1,5389,426,873.601,,,,,,144,94,0,,,,, +225,14,1,5390,490,873.601,22,32,D3,f,20,144,50,20,,,,, +225,14,1,5390,490,873.665,,,,,,144,50,0,,,,, +225,15,1,5391,512,873.665,,,,,,176,102,0,,,,, +225,16,3,5392,512,873.665,170,4,A3,p,11,144,57,11,,,,, +225,16,3,5392,512,874.163,,,,,,144,57,0,,,,, +225,17,3,5393,682,874.163,342,2,F#2,p,11,144,42,11,,,,, +225,18,1,5394,768,874.415,,,,,,176,102,0,,,,, +225,19,1,5395,853,874.664,,,,,,176,102,0,,,,, +225,20,0,5396,938,874.889,,,,,,176,64,0,,,,,^ +225,21,1,5397,938,874.913,86,8,D3,f,20,144,50,20,,,,, +225,22,1,5398,938,874.913,128,8,B3,f,20,144,59,20,,,,, +225,23,1,5399,938,874.913,128,8,G#5,f,20,144,80,20,,,,, +225,24,1,5400,938,874.913,128,8,F#6,f,20,144,90,20,,,,, +225,25,1,5401,938,874.913,128,8,A#6,f,20,144,94,20,,,,, +225,17,3,5393,682,875.165,,,,,,144,42,0,,,,, +225,21,1,5397,938,875.165,,,,,,144,50,0,,,,, +226,0,0,5402,0,875.165,,,,,,,,,226,,,, +226,2,1,5403,0,875.165,85,8,A#1,ff,22,144,34,22,,,,, +226,3,1,5404,0,875.165,128,8,C#5,ff,22,144,73,22,,,,, +226,4,3,5405,0,875.165,64,16,A#3,f,20,144,58,20,,,,, +226,1,0,5406,0,875.189,,,,,,176,64,127,,,,,V +225,22,1,5398,938,875.288,,,,,,144,59,0,,,,, +225,23,1,5399,938,875.288,,,,,,144,80,0,,,,, +225,24,1,5400,938,875.288,,,,,,144,90,0,,,,, +225,25,1,5401,938,875.288,,,,,,144,94,0,,,,, +226,4,3,5405,0,875.353,,,,,,144,58,0,,,,, +226,5,3,5407,64,875.353,42,16,C#6,f,20,144,85,20,,,,, +226,2,1,5403,0,875.414,,,,,,144,34,0,,,,, +226,6,1,5408,85,875.414,85,8,E5,p,11,144,76,11,,,,, +226,5,3,5407,64,875.476,,,,,,144,85,0,,,,, +226,7,3,5409,106,875.476,22,32,G#1,f,20,144,32,20,,,,, +226,3,1,5404,0,875.54,,,,,,144,73,0,,,,, +226,7,3,5409,106,875.54,,,,,,144,32,0,,,,, +226,8,3,5410,128,875.54,,,,,,176,102,0,,,,, +226,6,1,5408,85,875.663,,,,,,144,76,0,,,,, +226,9,1,5411,170,875.663,86,8,G#4,p,11,144,68,11,,,,, +226,10,3,5412,213,875.789,,,,,,176,102,0,,,,, +226,11,3,5413,234,875.851,22,32,E3,mf,17,144,52,17,,,,, +226,9,1,5411,170,875.915,,,,,,144,68,0,,,,, +226,11,3,5413,234,875.915,,,,,,144,52,0,,,,, +226,12,1,5414,256,875.915,,,,,,176,102,0,,,,, +226,13,3,5415,256,875.915,21,32,D4,mf,17,144,62,17,,,,, +226,13,3,5415,256,875.977,,,,,,144,62,0,,,,, +226,14,3,5416,277,875.977,21,32,A#1,ff,22,144,34,22,,,,, +226,14,3,5416,277,876.038,,,,,,144,34,0,,,,, +226,15,3,5417,298,876.038,22,32,E3,ff,22,144,52,22,,,,, +226,15,3,5417,298,876.103,,,,,,144,52,0,,,,, +226,16,3,5418,320,876.103,21,32,A#1,ff,22,144,34,22,,,,, +226,17,3,5419,320,876.103,32,32,D4,ff,22,144,62,22,,,,, +226,16,3,5418,320,876.164,,,,,,144,34,0,,,,, +226,18,1,5420,341,876.164,,,,,,176,102,0,,,,, +226,19,3,5421,341,876.164,21,32,F#1,ff,22,144,30,22,,,,, +226,20,3,5422,341,876.164,32,32,E3,ff,22,144,52,22,,,,, +226,17,3,5419,320,876.196,,,,,,144,62,0,,,,, +226,19,3,5421,341,876.226,,,,,,144,30,0,,,,, +226,21,3,5423,362,876.226,22,32,A#1,ff,22,144,34,22,,,,, +226,22,3,5424,362,876.226,32,32,G2,ff,22,144,43,22,,,,, +226,23,3,5425,362,876.226,32,32,D4,ff,22,144,62,22,,,,, +226,20,3,5422,341,876.258,,,,,,144,52,0,,,,, +226,21,3,5423,362,876.29,,,,,,144,34,0,,,,, +226,24,3,5426,384,876.29,,,,,,176,102,0,,,,, +226,22,3,5424,362,876.32,,,,,,144,43,0,,,,, +226,23,3,5425,362,876.32,,,,,,144,62,0,,,,, +226,26,0,5427,448,876.358,,,,,,176,64,0,,,,,^ +226,25,1,5428,426,876.413,,,,,,176,102,0,,,,, +226,28,1,5429,469,876.539,43,16,D3,ff,22,144,50,22,,,,, +226,29,1,5430,469,876.539,64,16,B3,ff,22,144,59,22,,,,, +226,30,1,5431,469,876.539,64,16,G#5,ff,22,144,80,22,,,,, +226,31,1,5432,469,876.539,64,16,F#6,ff,22,144,90,22,,,,, +226,32,1,5433,469,876.539,64,16,A#6,ff,22,144,94,22,,,,, +226,27,0,5434,469,876.658,,,,,,176,64,127,,,,,V +226,33,1,5435,512,876.665,256,4,D3,,,,,,,,,, +226,34,1,5436,512,876.665,256,4,B3,,,,,,,,,, +226,35,1,5437,512,876.665,256,4,G#5,,,,,,,,,, +226,36,1,5438,512,876.665,256,4,F#6,,,,,,,,,, +226,37,1,5439,512,876.665,256,4,A#6,,,,,,,,,, +226,38,3,5440,512,876.665,,,,,,176,102,0,,,,, +226,39,3,5441,640,877.04,21,32,A#4,p,11,144,70,11,,,,, +226,39,3,5441,640,877.102,,,,,,144,70,0,,,,, +226,40,3,5442,661,877.102,21,32,F#4,p+,12,144,66,12,,,,, +226,40,3,5442,661,877.163,,,,,,144,66,0,,,,, +226,41,3,5443,682,877.163,22,32,E6,mp-,13,144,88,13,,,,, +226,41,3,5443,682,877.228,,,,,,144,88,0,,,,, +226,42,3,5444,704,877.228,32,32,A#4,mp,14,144,70,14,,,,, +226,42,3,5444,704,877.321,,,,,,144,70,0,,,,, +226,43,3,5445,736,877.321,32,32,E6,mp+,15,144,88,15,,,,, +226,43,3,5445,736,877.415,,,,,,144,88,0,,,,, +226,44,1,5446,768,877.415,224,8,D3,,,,,,,,,, +226,45,1,5447,768,877.415,128,8,B3,,,,,,,,,, +226,46,1,5448,768,877.415,128,8,G#5,,,,,,,,,, +226,47,1,5449,768,877.415,128,8,F#6,,,,,,,,,, +226,48,1,5450,768,877.415,128,8,A#6,,,,,,,,,, +226,49,3,5451,768,877.415,21,32,A#4,mf-,16,144,70,16,,,,, +226,49,3,5451,768,877.477,,,,,,144,70,0,,,,, +226,50,3,5452,789,877.477,21,32,G5,mf,17,144,79,17,,,,, +226,50,3,5452,789,877.538,,,,,,144,79,0,,,,, +226,51,3,5453,810,877.538,22,32,D7,mf+,18,144,98,18,,,,, +226,51,3,5453,810,877.603,,,,,,144,98,0,,,,, +226,52,3,5454,832,877.603,32,32,E6,f-,19,144,88,19,,,,, +226,52,3,5454,832,877.696,,,,,,144,88,0,,,,, +226,53,3,5455,864,877.696,32,32,D7,f+,21,144,98,21,,,,, +226,53,3,5455,864,877.79,,,,,,144,98,0,,,,, +226,54,3,5456,896,877.79,21,32,F#3,ff,22,144,54,22,,,,, +226,29,1,5430,469,877.852,,,,,,144,59,0,,,,, +226,30,1,5431,469,877.852,,,,,,144,80,0,,,,, +226,31,1,5432,469,877.852,,,,,,144,90,0,,,,, +226,32,1,5433,469,877.852,,,,,,144,94,0,,,,, +226,54,3,5456,896,877.852,,,,,,144,54,0,,,,, +226,55,3,5457,917,877.852,21,32,E6,ff,22,144,88,22,,,,, +226,55,3,5457,917,877.913,,,,,,144,88,0,,,,, +226,56,3,5458,938,877.913,22,32,G5,ff,22,144,79,22,,,,, +226,56,3,5458,938,877.978,,,,,,144,79,0,,,,, +226,57,3,5459,960,877.978,32,32,F#3,ff,22,144,54,22,,,,, +226,60,0,5460,1023,878.014,,,,,,176,64,0,,,,,^ +226,28,1,5429,469,878.071,,,,,,144,50,0,,,,, +226,57,3,5459,960,878.071,,,,,,144,54,0,,,,, +226,58,1,5461,992,878.071,32,32,A4,mp,14,144,69,14,,,,, +226,59,3,5462,992,878.071,32,32,G5,ff,22,144,79,22,,,,, +226,58,1,5461,992,878.165,,,,,,144,69,0,,,,, +226,59,3,5462,992,878.165,,,,,,144,79,0,,,,, +227,0,0,5463,0,878.165,,,,,,,,,227,,,, +227,2,1,5464,0,878.165,32,32,F#3,mf,17,144,54,17,,,,, +227,3,1,5465,0,878.165,32,32,A4,mf,17,144,69,17,,,,, +227,4,3,5466,0,878.165,,,,,,176,102,0,,,,, +227,2,1,5464,0,878.259,,,,,,144,54,0,,,,, +227,3,1,5465,0,878.259,,,,,,144,69,0,,,,, +227,5,1,5467,32,878.259,224,8,F#3,f,20,144,54,20,,,,, +227,6,1,5468,32,878.259,128,8,C#4,f,20,144,61,20,,,,, +227,1,0,5469,0,878.314,,,,,,176,64,127,,,,,V +227,7,3,5470,64,878.353,32,32,A4,mp,14,144,69,14,,,,, +227,7,3,5470,64,878.446,,,,,,144,69,0,,,,, +227,8,3,5471,96,878.446,32,32,C#2,mp,14,144,37,14,,,,, +227,8,3,5471,96,878.54,,,,,,144,37,0,,,,, +227,9,3,5472,128,878.54,128,8,D3,mp,14,144,50,14,,,,, +227,6,1,5468,32,878.634,,,,,,144,61,0,,,,, +227,10,0,5473,256,878.765,,,,,,176,64,0,,,,,^ +227,5,1,5467,32,878.915,,,,,,144,54,0,,,,, +227,9,3,5472,128,878.915,,,,,,144,50,0,,,,, +227,12,1,5474,256,878.915,,,,,,176,102,0,,,,, +227,13,3,5475,256,878.915,85,8,B2,mp,14,144,47,14,,,,, +227,11,0,5476,256,879.065,,,,,,176,64,127,,,,,V +227,13,3,5475,256,879.164,,,,,,144,47,0,,,,, +227,14,1,5477,341,879.164,,,,,,176,102,0,,,,, +227,15,3,5478,341,879.164,85,8,A#6,ff,22,144,94,22,,,,, +227,15,3,5478,341,879.413,,,,,,144,94,0,,,,, +227,16,1,5479,426,879.413,86,8,A#6,ff,22,144,94,22,,,,, +227,17,3,5480,426,879.413,86,8,D2,ff,22,144,38,22,,,,, +227,18,3,5481,426,879.413,128,8,B2,ff,22,144,47,22,,,,, +227,16,1,5479,426,879.665,,,,,,144,94,0,,,,, +227,17,3,5480,426,879.665,,,,,,144,38,0,,,,, +227,19,0,5482,512,879.665,,,,,,176,64,0,,,,,^ +227,20,1,5483,512,879.665,,,,,,176,102,0,,,,, +227,21,3,5484,512,879.665,,,,,,176,102,0,,,,, +227,22,0,5485,512,879.665,,,,,,,,,,5979,,, +227,18,3,5481,426,879.788,,,,,,144,47,0,,,,, +227,24,3,5486,640,880.04,48,32,D5,pp,8,144,74,8,,,,, +227,23,0,5487,640,880.04,,,,,,176,64,127,,,,,V +227,24,3,5486,640,880.181,,,,,,144,74,0,,,,, +227,25,3,5488,688,880.181,32,32,C2,pp,8,144,36,8,,,,, +227,25,3,5488,688,880.275,,,,,,144,36,0,,,,, +227,26,3,5489,720,880.275,48,32,A#2,pp,8,144,46,8,,,,, +227,26,3,5489,720,880.415,,,,,,144,46,0,,,,, +227,27,1,5490,768,880.415,48,32,F#5,pp,8,144,78,8,,,,, +227,28,3,5491,768,880.415,,,,,,176,102,0,,,,, +227,27,1,5490,768,880.556,,,,,,144,78,0,,,,, +227,29,1,5492,816,880.556,32,32,D#6,pp,8,144,87,8,,,,, +227,30,3,5493,816,880.556,,,,,,176,102,0,,,,, +227,29,1,5492,816,880.65,,,,,,144,87,0,,,,, +227,31,1,5494,848,880.65,48,32,D5,p,11,144,74,11,,,,, +227,32,1,5495,848,880.65,32,32,F#5,p,11,144,78,11,,,,, +227,33,3,5496,848,880.65,48,32,C2,p,11,144,36,11,,,,, +227,34,3,5497,848,880.65,32,32,A#2,p,11,144,46,11,,,,, +227,32,1,5495,848,880.743,,,,,,144,78,0,,,,, +227,34,3,5497,848,880.743,,,,,,144,46,0,,,,, +227,31,1,5494,848,880.79,,,,,,144,74,0,,,,, +227,33,3,5496,848,880.79,,,,,,144,36,0,,,,, +227,35,1,5498,896,880.79,48,32,D#5,f,20,144,75,20,,,,, +227,36,3,5499,896,880.79,,,,,,176,102,0,,,,, +227,35,1,5498,896,880.931,,,,,,144,75,0,,,,, +227,37,1,5500,944,880.931,32,32,D#5,f,20,144,75,20,,,,, +227,38,3,5501,944,880.931,32,32,A3,f,20,144,57,20,,,,, +227,42,0,5502,1000,880.98,,,,,,176,64,0,,,,,^ +227,37,1,5500,944,881.025,,,,,,144,75,0,,,,, +227,38,3,5501,944,881.025,,,,,,144,57,0,,,,, +227,39,1,5503,976,881.025,48,32,D#5,f,20,144,75,20,,,,, +227,40,1,5504,976,881.025,32,32,F5,f,20,144,77,20,,,,, +227,41,3,5505,976,881.025,48,32,A3,f,20,144,57,20,,,,, +227,40,1,5504,976,881.118,,,,,,144,77,0,,,,, +227,39,1,5503,976,881.165,,,,,,144,75,0,,,,, +227,41,3,5505,976,881.165,,,,,,144,57,0,,,,, +228,0,0,5506,0,881.165,,,,,,,,,228,,,, +228,2,1,5507,0,881.165,85,8,D5,p,11,144,74,11,,,,, +228,3,1,5508,0,881.165,128,8,F#5,p,11,144,78,11,,,,, +228,4,1,5509,0,881.165,128,8,D#6,p,11,144,87,11,,,,, +228,5,3,5510,0,881.165,85,8,C2,p,11,144,36,11,,,,, +228,6,3,5511,0,881.165,128,8,A#2,p,11,144,46,11,,,,, +228,1,0,5512,0,881.28,,,,,,176,64,127,,,,,V +228,2,1,5507,0,881.414,,,,,,144,74,0,,,,, +228,5,3,5510,0,881.414,,,,,,144,36,0,,,,, +228,7,1,5513,85,881.414,,,,,,176,102,0,,,,, +228,8,3,5514,85,881.414,32,32,F#4,mp-,13,144,66,13,,,,, +228,8,3,5514,85,881.508,,,,,,144,66,0,,,,, +228,9,3,5515,117,881.508,21,32,B2,mp,14,144,47,14,,,,, +228,3,1,5508,0,881.54,,,,,,144,78,0,,,,, +228,4,1,5509,0,881.54,,,,,,144,87,0,,,,, +228,6,3,5511,0,881.54,,,,,,144,46,0,,,,, +228,9,3,5515,117,881.57,,,,,,144,47,0,,,,, +228,10,3,5516,138,881.57,32,32,F#4,mp,14,144,66,14,,,,, +228,10,3,5516,138,881.663,,,,,,144,66,0,,,,, +228,11,3,5517,170,881.663,22,32,B2,mp+,15,144,47,15,,,,, +228,11,3,5517,170,881.728,,,,,,144,47,0,,,,, +228,12,3,5518,192,881.728,32,32,G#3,mp+,15,144,56,15,,,,, +228,12,3,5518,192,881.821,,,,,,144,56,0,,,,, +228,13,3,5519,224,881.821,32,32,F#5,mf-,16,144,78,16,,,,, +228,13,3,5519,224,881.915,,,,,,144,78,0,,,,, +228,14,1,5520,256,881.915,,,,,,176,102,0,,,,, +228,15,3,5521,256,881.915,21,32,B1,mf,17,144,35,17,,,,, +228,15,3,5521,256,881.977,,,,,,144,35,0,,,,, +228,16,3,5522,277,881.977,21,32,G#4,mf,17,144,68,17,,,,, +228,16,3,5522,277,882.038,,,,,,144,68,0,,,,, +228,17,3,5523,298,882.038,22,32,D1,mf+,18,144,26,18,,,,, +228,17,3,5523,298,882.103,,,,,,144,26,0,,,,, +228,18,3,5524,320,882.103,32,32,A#5,mf+,18,144,82,18,,,,, +228,18,3,5524,320,882.196,,,,,,144,82,0,,,,, +228,19,3,5525,352,882.196,32,32,D1,f-,19,144,26,19,,,,, +228,19,3,5525,352,882.29,,,,,,144,26,0,,,,, +228,20,3,5526,384,882.29,32,32,F#5,f,20,144,78,20,,,,, +228,20,3,5526,384,882.384,,,,,,144,78,0,,,,, +228,21,3,5527,416,882.384,21,32,B2,f+,21,144,47,21,,,,, +228,21,3,5527,416,882.446,,,,,,144,47,0,,,,, +228,22,3,5528,437,882.446,21,32,G#4,f+,21,144,68,21,,,,, +228,22,3,5528,437,882.507,,,,,,144,68,0,,,,, +228,23,3,5529,458,882.507,22,32,D2,f+,21,144,38,21,,,,, +228,24,3,5530,480,882.571,32,32,A#5,ff,22,144,82,22,,,,, +228,24,3,5530,480,882.665,,,,,,144,82,0,,,,, +228,25,1,5531,512,882.665,,,,,,176,102,0,,,,, +228,26,3,5532,512,882.665,,,,,,176,102,0,,,,, +228,23,3,5529,458,882.796,,,,,,144,38,0,,,,, +228,27,1,5533,560,882.806,48,32,D3,mp,14,144,50,14,,,,, +228,27,1,5533,560,882.946,,,,,,144,50,0,,,,, +228,28,1,5534,608,882.946,32,32,F6,mf-,16,144,89,16,,,,, +228,28,1,5534,608,883.04,,,,,,144,89,0,,,,, +228,29,1,5535,640,883.04,48,32,B2,mf,17,144,47,17,,,,, +228,29,1,5535,640,883.181,,,,,,144,47,0,,,,, +228,30,1,5536,688,883.181,48,32,D3,mf+,18,144,50,18,,,,, +228,30,1,5536,688,883.321,,,,,,144,50,0,,,,, +228,31,1,5537,736,883.321,32,32,F6,f,20,144,89,20,,,,, +228,31,1,5537,736,883.415,,,,,,144,89,0,,,,, +228,32,1,5538,768,883.415,256,4,G#4,fff,24,144,68,23,,,,, +228,33,3,5539,768,883.415,,,,,,176,102,0,,,,, +228,34,3,5540,896,883.79,16,64,F#2,fff,24,144,42,23,,,,, +228,34,3,5540,896,883.837,,,,,,144,42,0,,,,, +228,35,0,5541,912,883.837,,,,,,176,64,0,,,,,^ +228,36,3,5542,912,883.837,16,64,C#3,fff,24,144,49,23,,,,, +228,36,3,5542,912,883.884,,,,,,144,49,0,,,,, +228,37,3,5543,928,883.884,96,16,D#5,fff,24,144,75,23,,,,, +229,0,0,5544,0,884.165,,,,,,,,,229,,,, +229,1,1,5545,0,884.165,128,8,G#4,,,,,,,,,, +229,2,2,5546,0,884.165,128,8,A#2,fff,24,144,46,23,,,,, +229,3,3,5547,0,884.165,128,8,D#5,,,,,,,,,, +228,32,1,5538,768,884.54,,,,,,144,68,0,,,,, +228,37,3,5543,928,884.54,,,,,,144,75,0,,,,, +229,2,2,5546,0,884.54,,,,,,144,46,0,,,,, +229,4,1,5548,128,884.54,,,,,,176,102,0,,,,, +229,5,2,5549,128,884.54,,,,,,176,102,0,,,,, +229,6,3,5550,128,884.54,,,,,,176,102,0,,,,, +229,8,3,5551,149,884.602,21,32,E3,p,11,144,52,11,,,,, +229,7,0,5552,149,884.602,,,,,,176,64,127,,,,,V +229,8,3,5551,149,884.663,,,,,,144,52,0,,,,, +229,9,3,5553,170,884.663,22,32,A#3,p+,12,144,58,12,,,,, +229,9,3,5553,170,884.728,,,,,,144,58,0,,,,, +229,10,3,5554,192,884.728,21,32,E3,mp-,13,144,52,13,,,,, +229,10,3,5554,192,884.789,,,,,,144,52,0,,,,, +229,11,3,5555,213,884.789,21,32,A#3,mp,14,144,58,14,,,,, +229,11,3,5555,213,884.851,,,,,,144,58,0,,,,, +229,12,3,5556,234,884.851,22,32,E3,mp,14,144,52,14,,,,, +229,12,3,5556,234,884.915,,,,,,144,52,0,,,,, +229,13,1,5557,256,884.915,,,,,,176,102,0,,,,, +229,14,2,5558,256,884.915,,,,,,176,102,0,,,,, +229,15,3,5559,256,884.915,21,32,C4,mp+,15,144,60,15,,,,, +229,15,3,5559,256,884.977,,,,,,144,60,0,,,,, +229,16,3,5560,277,884.977,21,32,G#2,mf-,16,144,44,16,,,,, +229,16,3,5560,277,885.038,,,,,,144,44,0,,,,, +229,17,3,5561,298,885.038,86,8,C#7,mf,17,144,97,17,,,,, +229,17,3,5561,298,885.29,,,,,,144,97,0,,,,, +229,18,3,5562,384,885.29,,,,,,176,102,0,,,,, +229,19,1,5563,512,885.665,,,,,,176,102,0,,,,, +229,20,2,5564,512,885.665,,,,,,176,102,0,,,,, +229,21,3,5565,512,885.665,256,4,C1,mf,17,144,24,17,,,,, +229,22,2,5566,576,885.853,64,16,D4,mp,14,144,62,14,,,,, +229,22,2,5566,576,886.04,,,,,,144,62,0,,,,, +229,23,2,5567,640,886.04,128,8,A5,mp,14,144,81,14,,,,, +229,24,1,5568,682,886.163,171,4,A#2,fff,24,144,46,23,,,,, +229,25,1,5569,682,886.163,256,4,E5,fff,24,144,76,23,,,,, +229,21,3,5565,512,886.415,,,,,,144,24,0,,,,, +229,23,2,5567,640,886.415,,,,,,144,81,0,,,,, +229,26,2,5570,768,886.415,,,,,,176,102,0,,,,, +229,27,3,5571,768,886.415,,,,,,176,102,0,,,,, +229,24,1,5568,682,886.664,,,,,,144,46,0,,,,, +229,25,1,5569,682,886.664,,,,,,144,76,0,,,,, +229,28,1,5572,853,886.664,171,4,E5,fff,24,144,76,23,,,,, +229,29,1,5573,853,886.664,256,4,D7,fff,24,144,98,23,,,,, +229,30,3,5574,853,886.664,,,,,,176,102,0,,,,, +229,31,3,5575,981,887.039,43,16,G#3,mp,14,144,56,14,,,,, +229,32,3,5576,981,887.039,64,16,E4,mp,14,144,64,14,,,,, +229,33,3,5577,981,887.039,64,16,A#4,mp,14,144,70,14,,,,, +229,34,3,5578,981,887.039,64,16,C6,mp,14,144,84,14,,,,, +229,35,3,5579,981,887.039,64,16,C#7,mp,14,144,97,14,,,,, +229,36,0,5580,1023,887.162,,,,,,176,64,0,,,,,^ +229,28,1,5572,853,887.165,,,,,,144,76,0,,,,, +229,31,3,5575,981,887.165,,,,,,144,56,0,,,,, +230,0,0,5581,0,887.165,,,,,,,,,230,,,, +230,1,1,5582,0,887.165,512,2,G#4,fff,24,144,68,23,,,,, +230,2,1,5583,0,887.165,512,2,F#5,fff,24,144,78,23,,,,, +230,3,3,5584,0,887.165,,,,,,176,102,0,,,,, +229,32,3,5576,981,887.227,,,,,,144,64,0,,,,, +229,33,3,5577,981,887.227,,,,,,144,70,0,,,,, +229,34,3,5578,981,887.227,,,,,,144,84,0,,,,, +229,35,3,5579,981,887.227,,,,,,144,97,0,,,,, +229,29,1,5573,853,887.414,,,,,,144,98,0,,,,, +230,5,3,5585,128,887.54,384,4,C1,ppp,5,144,24,5,,,,, +230,4,0,5586,128,887.54,,,,,,176,64,127,,,,,V +230,1,1,5582,0,888.665,,,,,,144,68,0,,,,, +230,2,1,5583,0,888.665,,,,,,144,78,0,,,,, +230,5,3,5585,128,888.665,,,,,,144,24,0,,,,, +230,6,1,5587,512,888.665,,,,,,176,102,0,,,,, +230,7,3,5588,512,888.665,256,4,E3,ppp,5,144,52,5,,,,, +230,7,3,5588,512,889.415,,,,,,144,52,0,,,,, +230,8,1,5589,768,889.415,256,4,A#3,pp,8,144,58,8,,,,, +230,9,3,5590,768,889.415,25,32,A2,ppp,5,144,45,5,,,,, +230,9,3,5590,768,889.488,,,,,,144,45,0,,,,, +230,10,3,5591,793,889.488,26,32,G#2,ppp,5,144,44,5,,,,, +230,10,3,5591,793,889.565,,,,,,144,44,0,,,,, +230,11,3,5592,819,889.565,25,32,A2,ppp,5,144,45,5,,,,, +230,11,3,5592,819,889.638,,,,,,144,45,0,,,,, +230,12,3,5593,844,889.638,26,32,G#2,ppp,5,144,44,5,,,,, +230,12,3,5593,844,889.714,,,,,,144,44,0,,,,, +230,13,0,5594,870,889.714,,,,,,176,64,0,,,,,^ +230,14,3,5595,870,889.714,26,32,A2,ppp,5,144,45,5,,,,, +230,14,3,5595,870,889.79,,,,,,144,45,0,,,,, +230,15,3,5596,896,889.79,51,16,G#2,ppp,5,144,44,5,,,,, +230,15,3,5596,896,889.94,,,,,,144,44,0,,,,, +230,16,3,5597,947,889.94,77,16,A2,ppp,5,144,45,5,,,,, +230,16,3,5597,947,890.165,,,,,,144,45,0,,,,, +231,0,0,5598,0,890.165,,,,,,,,,231,,,, +231,1,1,5599,0,890.165,128,8,A#3,,,,,,,,,, +231,2,3,5600,0,890.165,170,4,F#2,ppp,5,144,42,5,,,,, +230,8,1,5589,768,890.54,,,,,,144,58,0,,,,, +231,3,1,5601,128,890.54,128,8,F#5,pp,8,144,78,8,,,,, +231,2,3,5600,0,890.663,,,,,,144,42,0,,,,, +231,4,3,5602,170,890.663,22,32,F#1,fff,24,144,30,23,,,,, +231,4,3,5602,170,890.728,,,,,,144,30,0,,,,, +231,6,3,5603,192,890.728,10,64,G3,f,20,144,55,20,,,,, +231,5,0,5604,192,890.728,,,,,,176,64,127,,,,,V +231,6,3,5603,192,890.757,,,,,,144,55,0,,,,, +231,7,3,5605,202,890.757,11,64,E3,mf+,18,144,52,18,,,,, +231,7,3,5605,202,890.789,,,,,,144,52,0,,,,, +231,8,3,5606,213,890.789,11,64,A#1,mp+,15,144,34,15,,,,, +231,8,3,5606,213,890.821,,,,,,144,34,0,,,,, +231,9,3,5607,224,890.821,10,64,F#1,mp-,13,144,30,13,,,,, +231,9,3,5607,224,890.851,,,,,,144,30,0,,,,, +231,10,3,5608,234,890.851,11,64,D4,p-,10,144,62,10,,,,, +231,10,3,5608,234,890.883,,,,,,144,62,0,,,,, +231,11,0,5609,245,890.883,,,,,,176,64,0,,,,,^ +231,12,3,5610,245,890.883,11,64,G3,pp,8,144,55,8,,,,, +231,12,3,5610,245,890.915,,,,,,144,55,0,,,,, +231,13,1,5611,256,890.915,128,8,F#5,,,,,,,,,, +231,14,3,5612,256,890.915,512,2,A#1,pp,8,144,34,8,,,,, +231,3,1,5601,128,891.29,,,,,,144,78,0,,,,, +231,16,1,5613,384,891.29,25,32,D5,pp,8,144,74,8,,,,, +231,15,0,5614,384,891.29,,,,,,176,64,127,,,,,V +231,16,1,5613,384,891.363,,,,,,144,74,0,,,,, +231,17,1,5615,409,891.363,26,32,D#6,pp,8,144,87,8,,,,, +231,17,1,5615,409,891.44,,,,,,144,87,0,,,,, +231,18,1,5616,435,891.44,25,32,D5,pp,8,144,74,8,,,,, +231,18,1,5616,435,891.513,,,,,,144,74,0,,,,, +231,19,1,5617,460,891.513,26,32,D#6,pp,8,144,87,8,,,,, +231,19,1,5617,460,891.589,,,,,,144,87,0,,,,, +231,20,1,5618,486,891.589,26,32,D5,pp,8,144,74,8,,,,, +231,20,1,5618,486,891.665,,,,,,144,74,0,,,,, +231,21,1,5619,512,891.665,51,16,D#6,pp,8,144,87,8,,,,, +231,21,1,5619,512,891.815,,,,,,144,87,0,,,,, +231,22,1,5620,563,891.815,77,16,D5,pp,8,144,74,8,,,,, +231,22,1,5620,563,892.04,,,,,,144,74,0,,,,, +231,23,1,5621,640,892.04,128,8,C3,pp,8,144,48,8,,,,, +231,23,1,5621,640,892.415,,,,,,144,48,0,,,,, +231,24,1,5622,768,892.415,,,,,,176,102,0,,,,, +231,25,3,5623,768,892.415,256,4,A#1,,,,,,,,,, +231,26,3,5624,768,892.415,256,4,C2,ppp,5,144,36,5,,,,, +231,27,3,5625,768,892.415,256,4,F#2,ppp,5,144,42,5,,,,, +231,28,3,5626,768,892.415,256,4,G#2,ppp,5,144,44,5,,,,, +231,29,3,5627,768,892.415,256,4,A2,ppp,5,144,45,5,,,,, +231,30,1,5628,864,892.696,64,16,D#5,ff,22,144,75,22,,,,, +231,30,1,5628,864,892.884,,,,,,144,75,0,,,,, +231,31,1,5629,928,892.884,96,16,A3,ff,22,144,57,22,,,,, +231,32,1,5630,928,892.884,64,16,D#5,ff,22,144,75,22,,,,, +231,33,0,5631,1023,893.014,,,,,,176,64,0,,,,,^ +231,32,1,5630,928,893.071,,,,,,144,75,0,,,,, +231,14,3,5612,256,893.165,,,,,,144,34,0,,,,, +231,31,1,5629,928,893.165,,,,,,144,57,0,,,,, +232,0,0,5632,0,893.165,,,,,,,,,232,,,, +232,2,1,5633,0,893.165,512,2,G#4,p,11,144,68,11,,,,, +232,3,1,5634,0,893.165,512,2,F#5,p,11,144,78,11,,,,, +232,4,3,5635,0,893.165,51,16,C2,,,,,,,,,, +232,5,3,5636,0,893.165,64,16,F#2,,,,,,,,,, +232,6,3,5637,0,893.165,64,16,G#2,,,,,,,,,, +232,7,3,5638,0,893.165,64,16,A2,,,,,,,,,, +232,1,0,5639,0,893.314,,,,,,176,64,127,,,,,V +231,26,3,5624,768,893.315,,,,,,144,36,0,,,,, +232,8,3,5640,51,893.315,25,32,A2,ppp,5,144,45,5,,,,, +231,27,3,5625,768,893.353,,,,,,144,42,0,,,,, +231,28,3,5626,768,893.353,,,,,,144,44,0,,,,, +231,29,3,5627,768,893.353,,,,,,144,45,0,,,,, +232,8,3,5640,51,893.388,,,,,,144,45,0,,,,, +232,9,3,5641,76,893.388,26,32,G#2,ppp,5,144,44,5,,,,, +232,9,3,5641,76,893.464,,,,,,144,44,0,,,,, +232,10,3,5642,102,893.464,26,32,A2,ppp,5,144,45,5,,,,, +232,10,3,5642,102,893.54,,,,,,144,45,0,,,,, +232,11,3,5643,128,893.54,51,16,G#2,ppp,5,144,44,5,,,,, +232,11,3,5643,128,893.69,,,,,,144,44,0,,,,, +232,12,3,5644,179,893.69,77,16,A2,ppp,5,144,45,5,,,,, +232,12,3,5644,179,893.915,,,,,,144,45,0,,,,, +232,13,3,5645,256,893.915,102,8,F#2,ppp,5,144,42,5,,,,, +232,13,3,5645,256,894.214,,,,,,144,42,0,,,,, +232,14,3,5646,358,894.214,154,8,C2,ppp,5,144,36,5,,,,, +232,15,3,5647,358,894.214,128,8,F#2,ppp,5,144,42,5,,,,, +232,16,3,5648,358,894.214,128,8,G#2,ppp,5,144,44,5,,,,, +232,17,3,5649,358,894.214,128,8,A2,ppp,5,144,45,5,,,,, +232,18,3,5650,358,894.214,128,8,E3,ppp,5,144,52,5,,,,, +232,2,1,5633,0,894.665,,,,,,144,68,0,,,,, +232,3,1,5634,0,894.665,,,,,,144,78,0,,,,, +232,19,0,5651,512,894.665,,,,,,176,64,0,,,,,^ +232,20,1,5652,512,894.665,64,16,B2,f,20,144,47,20,,,,, +232,21,1,5653,512,894.665,64,16,G#4,f,20,144,68,20,,,,, +232,22,1,5654,512,894.665,64,16,F#5,f,20,144,78,20,,,,, +232,23,3,5655,512,894.665,128,8,C2,,,,,,,,,, +232,24,3,5656,512,894.665,128,8,F#2,,,,,,,,,, +232,25,3,5657,512,894.665,128,8,G#2,,,,,,,,,, +232,26,3,5658,512,894.665,128,8,A2,,,,,,,,,, +232,27,3,5659,512,894.665,128,8,E3,,,,,,,,,, +232,20,1,5652,512,894.853,,,,,,144,47,0,,,,, +232,21,1,5653,512,894.853,,,,,,144,68,0,,,,, +232,22,1,5654,512,894.853,,,,,,144,78,0,,,,, +232,28,1,5660,576,894.853,192,8,B2,pp,8,144,47,8,,,,, +232,29,1,5661,576,894.853,128,8,G#4,pp,8,144,68,8,,,,, +232,30,1,5662,576,894.853,128,8,F#5,pp,8,144,78,8,,,,, +232,15,3,5647,358,894.964,,,,,,144,42,0,,,,, +232,16,3,5648,358,894.964,,,,,,144,44,0,,,,, +232,17,3,5649,358,894.964,,,,,,144,45,0,,,,, +232,18,3,5650,358,894.964,,,,,,144,52,0,,,,, +232,14,3,5646,358,895.04,,,,,,144,36,0,,,,, +232,31,3,5663,640,895.04,,,,,,176,102,0,,,,, +232,32,3,5664,672,895.134,32,32,F#2,f,20,144,42,20,,,,, +232,33,3,5665,672,895.134,32,32,A3,f,20,144,57,20,,,,, +232,29,1,5661,576,895.228,,,,,,144,68,0,,,,, +232,30,1,5662,576,895.228,,,,,,144,78,0,,,,, +232,32,3,5664,672,895.228,,,,,,144,42,0,,,,, +232,33,3,5665,672,895.228,,,,,,144,57,0,,,,, +232,34,3,5666,704,895.228,32,32,C#3,mp,14,144,49,14,,,,, +232,34,3,5666,704,895.321,,,,,,144,49,0,,,,, +232,35,3,5667,736,895.321,32,32,D#5,pp,8,144,75,8,,,,, +232,36,3,5668,736,895.321,32,32,F5,pp,8,144,77,8,,,,, +232,28,1,5660,576,895.415,,,,,,144,47,0,,,,, +232,35,3,5667,736,895.415,,,,,,144,75,0,,,,, +232,36,3,5668,736,895.415,,,,,,144,77,0,,,,, +232,38,1,5669,768,895.415,102,8,A#3,pp,8,144,58,8,,,,, +232,39,3,5670,768,895.415,,,,,,176,102,0,,,,, +232,37,0,5671,768,895.415,,,,,,176,64,127,,,,,V +232,38,1,5669,768,895.714,,,,,,144,58,0,,,,, +232,40,1,5672,870,895.714,154,8,F#5,pp,8,144,78,8,,,,, +232,40,1,5672,870,896.165,,,,,,144,78,0,,,,, +233,0,0,5673,0,896.165,,,,,,,,,233,,,, +233,1,1,5674,0,896.165,25,32,D5,pp,8,144,74,8,,,,, +233,2,3,5675,0,896.165,,,,,,176,102,0,,,,, +233,1,1,5674,0,896.238,,,,,,144,74,0,,,,, +233,3,1,5676,25,896.238,26,32,D#6,pp,8,144,87,8,,,,, +233,3,1,5676,25,896.315,,,,,,144,87,0,,,,, +233,4,1,5677,51,896.315,51,16,D5,pp,8,144,74,8,,,,, +233,4,1,5677,51,896.464,,,,,,144,74,0,,,,, +233,5,1,5678,102,896.464,154,8,C3,pp,8,144,48,8,,,,, +233,5,1,5678,102,896.915,,,,,,144,48,0,,,,, +233,6,1,5679,256,896.915,,,,,,176,102,0,,,,, +233,7,3,5680,256,896.915,102,8,C1,ppp,5,144,24,5,,,,, +233,7,3,5680,256,897.214,,,,,,144,24,0,,,,, +233,8,3,5681,358,897.214,154,8,E3,ppp,5,144,52,5,,,,, +233,8,3,5681,358,897.665,,,,,,144,52,0,,,,, +233,9,1,5682,512,897.665,,,,,,176,102,0,,,,, +233,10,3,5683,512,897.665,25,32,A2,ppp,5,144,45,5,,,,, +233,10,3,5683,512,897.738,,,,,,144,45,0,,,,, +233,11,3,5684,537,897.738,26,32,G#2,ppp,5,144,44,5,,,,, +233,11,3,5684,537,897.815,,,,,,144,44,0,,,,, +233,12,3,5685,563,897.815,51,16,A2,ppp,5,144,45,5,,,,, +233,12,3,5685,563,897.964,,,,,,144,45,0,,,,, +233,13,3,5686,614,897.964,154,8,F#2,ppp,5,144,42,5,,,,, +233,13,3,5686,614,898.415,,,,,,144,42,0,,,,, +233,14,3,5687,768,898.415,,,,,,176,102,0,,,,, +234,0,0,5688,0,899.165,,,,,,,,,234,,,, +234,1,1,5689,0,899.165,,,,,,176,102,0,,,,, +234,2,3,5690,0,899.165,,,,,,176,102,0,,,,, +234,3,0,5691,768,901.415,,,,,,176,64,0,,,,,^ +234,4,3,5692,768,901.415,,,,,,176,102,0,,,,, +234,5,0,5693,768,901.415,,,,,,,,,,5980,,, +234,6,0,5694,1023,902.321,,,,,,,,,,,66,, +235,0,0,5695,0,902.324,,,,,,,,,235,,,, +235,2,1,5696,0,902.324,512,2,A#4,mp,14,144,70,14,,,,, +235,3,1,5697,0,902.324,512,2,A#6,f,20,144,94,20,,,,, +235,4,2,5698,0,902.324,,,,,,176,102,0,,,,, +235,5,3,5699,0,902.324,,,,,,176,102,0,,,,, +235,1,0,5700,0,902.324,,,,,,176,64,127,,,,,V +235,6,3,5701,256,903.233,768,2,A1,ppp,5,144,33,5,,,,, +235,7,0,5702,512,903.993,,,,,,176,64,0,,,,,^ +235,8,1,5703,512,904.143,512,2,D2,mp,14,144,38,14,,,,, +235,9,1,5704,512,904.143,512,2,E4,pp,8,144,64,8,,,,, +235,2,1,5696,0,904.143,,,,,,144,70,0,,,,, +235,3,1,5697,0,904.143,,,,,,144,94,0,,,,, +235,,,5705,512,904.293,,,,,,176,64,127,,,,,V +235,6,3,5701,256,905.961,,,,,,144,33,0,,,,, +235,8,1,5703,512,905.961,,,,,,144,38,0,,,,, +235,9,1,5704,512,905.961,,,,,,144,64,0,,,,, +235,10,1,5706,1024,905.961,,,,,,176,102,0,,,,, +235,11,3,5707,1024,905.961,,,,,,176,102,0,,,,, +235,12,1,5708,1408,907.324,128,8,C6,p,11,144,84,11,,,,, +235,13,1,5709,1408,907.324,128,8,G6,ppp,5,144,91,5,,,,, +235,13,1,5709,1408,907.779,,,,,,144,91,0,,,,, +236,0,0,5710,0,907.779,,,,,,,,,236,,,, +236,1,1,5711,0,907.779,128,8,F3,ppp,5,144,53,5,,,,, +236,2,1,5712,0,907.779,128,8,C6,,,,,,,,,, +236,3,4,5713,0,907.779,,,,,,176,102,0,,,,, +236,4,3,5714,0,907.779,,,,,,176,102,0,,,,, +236,5,2,5715,0,907.779,,,,,,176,102,0,,,,, +235,12,1,5708,1408,908.233,,,,,,144,84,0,,,,, +236,1,1,5711,0,908.233,,,,,,144,53,0,,,,, +236,6,1,5716,128,908.233,25,32,C#3,ppp,5,144,49,5,,,,, +236,7,3,5717,128,908.233,128,8,F3,ppp,5,144,53,5,,,,, +236,8,4,5718,128,908.233,128,8,A#1,ppp,5,144,34,5,,,,, +236,9,0,5719,153,908.263,,,,,,176,64,0,,,,,^ +236,6,1,5716,128,908.322,,,,,,144,49,0,,,,, +236,10,1,5720,153,908.322,26,32,B2,ppp,5,144,47,5,,,,, +236,10,1,5720,153,908.415,,,,,,144,47,0,,,,, +236,11,1,5721,179,908.415,25,32,C#3,ppp,5,144,49,5,,,,, +236,11,1,5721,179,908.503,,,,,,144,49,0,,,,, +236,13,1,5722,204,908.503,52,16,B2,ppp,5,144,47,5,,,,, +236,12,0,5723,204,908.563,,,,,,176,64,127,,,,,V +236,13,1,5722,204,908.688,,,,,,144,47,0,,,,, +236,14,3,5724,256,908.688,256,4,F3,,,,,,,,,, +236,15,4,5725,256,908.688,128,8,A#1,,,,,,,,,, +236,16,1,5726,256,908.688,25,32,C#3,ppp,5,144,49,5,,,,, +236,16,1,5726,256,908.777,,,,,,144,49,0,,,,, +236,17,1,5727,281,908.777,26,32,B2,ppp,5,144,47,5,,,,, +236,17,1,5727,281,908.869,,,,,,144,47,0,,,,, +236,18,1,5728,307,908.869,25,32,C#3,ppp,5,144,49,5,,,,, +236,19,0,5729,332,908.9,,,,,,176,64,0,,,,,^ +236,18,1,5728,307,908.958,,,,,,144,49,0,,,,, +236,20,1,5730,332,908.958,52,16,F7,ppp,5,144,101,5,,,,, +236,20,1,5730,332,909.143,,,,,,144,101,0,,,,, +236,22,4,5731,384,909.143,128,8,D4,pp,8,144,62,8,,,,, +236,23,1,5732,384,909.143,,,,,,176,102,0,,,,, +236,8,4,5718,128,909.143,,,,,,144,34,0,,,,, +236,21,0,5733,384,909.2,,,,,,176,64,127,,,,,V +236,24,1,5734,435,909.324,25,32,A4,ppp,5,144,69,5,,,,, +236,24,1,5734,435,909.412,,,,,,144,69,0,,,,, +236,25,1,5735,460,909.412,26,32,D3,ppp,5,144,50,5,,,,, +236,25,1,5735,460,909.505,,,,,,144,50,0,,,,, +236,26,1,5736,486,909.505,26,32,C#2,ppp,5,144,37,5,,,,, +236,26,1,5736,486,909.597,,,,,,144,37,0,,,,, +236,27,1,5737,512,909.597,,,,,,176,102,0,,,,, +236,28,2,5738,,909.597,,8,G#4,f,20,144,68,20,,,,g, +236,22,4,5731,384,909.597,,,,,,144,62,0,,,,, +236,7,3,5717,128,909.597,,,,,,144,53,0,,,,, +236,28,2,5738,,909.647,,,,,,144,68,0,,,,, +236,29,2,5739,512,909.672,341,2,C6,f,20,144,84,20,,,,, +236,30,2,5740,512,909.672,512,2,E6,f,20,144,88,20,,,,, +236,31,2,5741,512,909.672,512,2,C#7,p,11,144,97,11,,,,, +236,32,3,5742,512,909.672,25,32,D3,pp,8,144,50,8,,,,, +236,33,4,5743,512,909.672,,,,,,176,102,0,,,,, +236,32,3,5742,512,909.761,,,,,,144,50,0,,,,, +236,34,3,5744,537,909.761,26,32,C#2,pp,8,144,37,8,,,,, +236,34,3,5744,537,909.853,,,,,,144,37,0,,,,, +236,35,3,5745,563,909.853,25,32,D3,pp,8,144,50,8,,,,, +236,35,3,5745,563,909.942,,,,,,144,50,0,,,,, +236,36,3,5746,588,909.942,52,16,C#2,pp,8,144,37,8,,,,, +236,36,3,5746,588,910.127,,,,,,144,37,0,,,,, +236,37,3,5747,640,910.127,25,32,D3,pp,8,144,50,8,,,,, +236,37,3,5747,640,910.215,,,,,,144,50,0,,,,, +236,38,3,5748,665,910.215,26,32,C#2,pp,8,144,37,8,,,,, +236,38,3,5748,665,910.308,,,,,,144,37,0,,,,, +236,39,3,5749,691,910.308,25,32,D3,pp,8,144,50,8,,,,, +236,39,3,5749,691,910.396,,,,,,144,50,0,,,,, +236,40,3,5750,716,910.396,52,16,F6,pp,8,144,89,8,,,,, +236,41,0,5751,739,910.424,,,,,,176,64,0,,,,,^ +236,40,3,5750,716,910.581,,,,,,144,89,0,,,,, +236,42,1,5752,768,910.581,128,8,C1,mf,17,144,24,17,,,,, +236,43,3,5753,768,910.581,25,32,B1,ppp,5,144,35,5,,,,, +236,44,4,5754,768,910.581,,,,,,176,102,0,,,,, +236,43,3,5753,768,910.67,,,,,,144,35,0,,,,, +236,46,3,5755,793,910.67,26,32,D2,ppp,5,144,38,5,,,,, +236,45,0,5756,793,910.724,,,,,,176,64,127,,,,,V +236,46,3,5755,793,910.762,,,,,,144,38,0,,,,, +236,47,3,5757,819,910.762,25,32,B1,ppp,5,144,35,5,,,,, +236,47,3,5757,819,910.851,,,,,,144,35,0,,,,, +236,48,3,5758,844,910.851,52,16,D2,ppp,5,144,38,5,,,,, +236,49,2,5759,853,910.883,341,2,E4,p,11,144,64,11,,,,, +236,29,2,5739,512,910.883,,,,,,144,84,0,,,,, +236,48,3,5758,844,911.036,,,,,,144,38,0,,,,, +236,50,1,5760,896,911.036,,,,,,176,102,0,,,,, +236,51,3,5761,896,911.036,32,32,B1,ppp,5,144,35,5,,,,, +236,42,1,5752,768,911.036,,,,,,144,24,0,,,,, +236,51,3,5761,896,911.149,,,,,,144,35,0,,,,, +236,52,3,5762,928,911.149,32,32,D2,ppp,5,144,38,5,,,,, +236,52,3,5762,928,911.263,,,,,,144,38,0,,,,, +236,53,3,5763,960,911.263,32,32,A2,ppp,5,144,45,5,,,,, +236,54,0,5764,992,911.283,,,,,,176,64,0,,,,,^ +236,53,3,5763,960,911.377,,,,,,144,45,0,,,,, +236,55,3,5765,992,911.377,32,32,F5,ppp,5,144,77,5,,,,, +236,55,3,5765,992,911.49,,,,,,144,77,0,,,,, +236,57,1,5766,1024,911.49,512,2,F#4,f,20,144,66,20,,,,, +236,58,1,5767,1024,911.49,512,2,F#5,mp,14,144,78,14,,,,, +236,59,3,5768,1024,911.49,512,2,C#2,ppp,5,144,37,5,,,,, +236,30,2,5740,512,911.49,,,,,,144,88,0,,,,, +236,31,2,5741,512,911.49,,,,,,144,97,0,,,,, +236,56,0,5769,1024,911.583,,,,,,176,64,127,,,,,V +236,49,2,5759,853,912.094,,,,,,144,64,0,,,,, +236,60,2,5770,1194,912.094,33,16,F#7,p,11,144,102,11,,,,, +236,60,2,5770,1194,912.211,,,,,,144,102,0,,,,, +236,61,2,5771,1227,912.211,53,16,A4,p+,12,144,69,12,,,,, +236,61,2,5771,1227,912.399,,,,,,144,69,0,,,,, +236,62,2,5772,1280,912.399,33,16,F#6,mp,14,144,90,14,,,,, +236,62,2,5772,1280,912.517,,,,,,144,90,0,,,,, +236,63,2,5773,1313,912.517,52,16,G#2,mp+,15,144,44,15,,,,, +236,63,2,5773,1313,912.701,,,,,,144,44,0,,,,, +236,64,2,5774,1365,912.701,33,16,F#6,mf,17,144,90,17,,,,, +236,64,2,5774,1365,912.818,,,,,,144,90,0,,,,, +236,65,2,5775,1398,912.818,52,16,A4,mf+,18,144,69,18,,,,, +236,65,2,5775,1398,913.003,,,,,,144,69,0,,,,, +236,66,2,5776,1450,913.003,16,32,G#2,f,20,144,44,20,,,,, +236,66,2,5776,1450,913.06,,,,,,144,44,0,,,,, +236,67,2,5777,1466,913.06,35,16,A4,f,20,144,69,20,,,,, +236,67,2,5777,1466,913.184,,,,,,144,69,0,,,,, +236,68,2,5778,1501,913.184,17,32,F#6,f+,21,144,90,21,,,,, +236,68,2,5778,1501,913.244,,,,,,144,90,0,,,,, +236,69,2,5779,1518,913.244,18,32,G#1,ff,22,144,32,22,,,,, +236,57,1,5766,1024,913.308,,,,,,144,66,0,,,,, +236,58,1,5767,1024,913.308,,,,,,144,78,0,,,,, +236,59,3,5768,1024,913.308,,,,,,144,37,0,,,,, +236,69,2,5779,1518,913.308,,,,,,144,32,0,,,,, +237,0,0,5780,0,913.308,,,,,,,,,237,,,, +237,1,1,5781,0,913.308,,,,,,176,102,0,,,,, +237,2,2,5782,0,913.308,,,,,,176,102,0,,,,, +237,3,3,5783,0,913.308,341,2,A3,ff,22,144,57,22,,,,, +237,4,4,5784,0,913.308,,,,,,176,102,0,,,,, +237,3,3,5783,0,914.519,,,,,,144,57,0,,,,, +237,5,3,5785,341,914.519,171,4,C3,mf-,16,144,48,16,,,,, +237,6,0,5786,426,914.821,,,,,,176,64,0,,,,,^ +237,7,1,5787,512,915.127,153,8,A5,p,11,144,81,11,,,,, +237,8,2,5788,512,915.127,153,8,G#4,ff,22,144,68,22,,,,, +237,9,2,5789,512,915.127,128,8,D#5,f,20,144,75,20,,,,, +237,11,3,5790,512,915.127,512,2,C3,,,,,,,,,, +237,12,4,5791,512,915.127,384,4,E1,mf,17,144,28,17,,,,, +237,13,4,5792,512,915.127,256,4,B1,pp,8,144,35,8,,,,, +237,10,0,5793,512,915.127,,,,,,176,64,127,,,,,V +237,9,2,5789,512,915.581,,,,,,144,75,0,,,,, +237,7,1,5787,512,915.67,,,,,,144,81,0,,,,, +237,8,2,5788,512,915.67,,,,,,144,68,0,,,,, +237,14,1,5794,665,915.67,103,8,A5,p,11,144,81,11,,,,, +237,15,2,5795,665,915.67,103,8,G#4,mf,17,144,68,17,,,,, +237,16,2,5796,665,915.67,128,8,D#5,mf,17,144,75,17,,,,, +237,13,4,5792,512,916.036,,,,,,144,35,0,,,,, +237,17,1,5797,768,916.036,128,8,A5,,,,,,,,,, +237,18,2,5798,768,916.036,128,8,G#4,,,,,,,,,, +237,19,2,5799,768,916.036,128,8,D#5,,,,,,,,,, +237,23,0,5800,896,916.34,,,,,,176,64,0,,,,,^ +237,12,4,5791,512,916.49,,,,,,144,28,0,,,,, +237,14,1,5794,665,916.49,,,,,,144,81,0,,,,, +237,15,2,5795,665,916.49,,,,,,144,68,0,,,,, +237,20,1,5801,896,916.49,128,8,A5,p,11,144,81,11,,,,, +237,21,2,5802,896,916.49,128,8,G#4,p,11,144,68,11,,,,, +237,22,2,5803,896,916.49,128,8,D#5,p,11,144,75,11,,,,, +237,24,4,5804,896,916.49,128,8,E1,p,11,144,28,11,,,,, +237,16,2,5796,665,916.579,,,,,,144,75,0,,,,, +237,23,0,5805,896,916.64,,,,,,176,64,127,,,,,V +237,5,3,5785,341,916.945,,,,,,144,48,0,,,,, +237,25,1,5806,1024,916.945,102,8,A5,,,,,,,,,, +237,26,2,5807,1024,916.945,102,8,G#4,,,,,,,,,, +237,27,2,5808,1024,916.945,128,8,D#5,,,,,,,,,, +237,28,3,5809,1024,916.945,128,8,G#3,ppp,5,144,56,5,,,,, +237,29,4,5810,1024,916.945,102,8,E1,,,,,,,,,, +237,30,0,5811,1126,917.157,,,,,,176,64,0,,,,,^ +237,20,1,5801,896,917.307,,,,,,144,81,0,,,,, +237,21,2,5802,896,917.307,,,,,,144,68,0,,,,, +237,24,4,5804,896,917.307,,,,,,144,28,0,,,,, +237,31,1,5812,1126,917.307,154,8,A5,ppp,5,144,81,5,,,,, +237,32,2,5813,1126,917.307,154,8,G#4,ppp,5,144,68,5,,,,, +237,33,2,5814,1126,917.307,128,8,D#5,ppp,5,144,75,5,,,,, +237,34,4,5815,1126,917.307,154,8,E1,ppp,5,144,28,5,,,,, +237,22,2,5803,896,917.399,,,,,,144,75,0,,,,, +237,35,3,5816,1152,917.399,25,32,F#6,ppp,5,144,90,5,,,,, +237,28,3,5809,1024,917.399,,,,,,144,56,0,,,,, +237,30,0,5817,1126,917.457,,,,,,176,64,127,,,,,V +237,35,3,5816,1152,917.488,,,,,,144,90,0,,,,, +237,36,3,5818,1177,917.488,26,32,C4,ppp,5,144,60,5,,,,, +237,36,3,5818,1177,917.58,,,,,,144,60,0,,,,, +237,37,3,5819,1203,917.58,25,32,A4,ppp,5,144,69,5,,,,, +237,37,3,5819,1203,917.669,,,,,,144,69,0,,,,, +237,38,3,5820,1228,917.669,52,16,C4,ppp,5,144,60,5,,,,, +237,38,3,5820,1228,917.854,,,,,,144,60,0,,,,, +237,39,1,5821,1280,917.854,256,4,A5,,,,,,,,,, +237,40,2,5822,1280,917.854,256,4,G#4,,,,,,,,,, +237,41,2,5823,1280,917.854,256,4,D#5,,,,,,,,,, +237,42,4,5824,1280,917.854,256,4,A3,p,11,144,57,11,,,,, +237,43,4,5825,1280,917.854,256,4,G#4,p,11,144,68,11,,,,, +237,44,3,5826,1280,917.854,25,32,A4,ppp,5,144,69,5,,,,, +237,34,4,5815,1126,917.854,,,,,,144,28,0,,,,, +237,44,3,5826,1280,917.943,,,,,,144,69,0,,,,, +237,45,3,5827,1305,917.943,26,32,C4,ppp,5,144,60,5,,,,, +237,45,3,5827,1305,918.035,,,,,,144,60,0,,,,, +237,46,3,5828,1331,918.035,25,32,A4,p,11,144,69,11,,,,, +237,46,3,5828,1331,918.124,,,,,,144,69,0,,,,, +237,47,3,5829,1356,918.124,52,16,C4,p,11,144,60,11,,,,, +237,47,3,5829,1356,918.308,,,,,,144,60,0,,,,, +237,48,3,5830,1408,918.308,25,32,A4,p+,12,144,69,12,,,,, +237,48,3,5830,1408,918.397,,,,,,144,69,0,,,,, +237,49,3,5831,1433,918.397,26,32,C4,p+,12,144,60,12,,,,, +237,49,3,5831,1433,918.49,,,,,,144,60,0,,,,, +237,50,3,5832,1459,918.49,25,32,A4,p+,12,144,69,12,,,,, +237,50,3,5832,1459,918.578,,,,,,144,69,0,,,,, +237,51,3,5833,1484,918.578,52,16,E2,p+,12,144,40,12,,,,, +237,51,3,5833,1484,918.763,,,,,,144,40,0,,,,, +238,0,0,5834,0,918.763,,,,,,,,,238,,,, +238,1,1,5835,0,918.763,512,2,A5,,,,,,,,,, +238,2,2,5836,0,918.763,512,2,G#4,,,,,,,,,, +238,3,2,5837,0,918.763,512,2,D#5,,,,,,,,,, +238,4,3,5838,0,918.763,25,32,C4,mp-,13,144,60,13,,,,, +238,5,4,5839,0,918.763,512,2,D3,mp-,13,144,50,13,,,,, +238,6,4,5840,0,918.763,512,2,A3,,,,,,,,,, +238,7,4,5841,0,918.763,512,2,G#4,,,,,,,,,, +238,4,3,5838,0,918.852,,,,,,144,60,0,,,,, +238,8,3,5842,25,918.852,26,32,A4,mp-,13,144,69,13,,,,, +238,8,3,5842,25,918.944,,,,,,144,69,0,,,,, +238,9,3,5843,51,918.944,25,32,E2,mp-,13,144,40,13,,,,, +238,9,3,5843,51,919.033,,,,,,144,40,0,,,,, +238,10,3,5844,76,919.033,52,16,F#5,mp-,13,144,78,13,,,,, +238,10,3,5844,76,919.218,,,,,,144,78,0,,,,, +238,11,3,5845,128,919.218,51,16,A4,mp,14,144,69,14,,,,, +238,11,3,5845,128,919.399,,,,,,144,69,0,,,,, +238,12,3,5846,179,919.399,77,16,C4,mp,14,144,60,14,,,,, +238,12,3,5846,179,919.672,,,,,,144,60,0,,,,, +238,13,3,5847,256,919.672,51,16,F#5,mp+,15,144,78,15,,,,, +238,13,3,5847,256,919.853,,,,,,144,78,0,,,,, +238,14,3,5848,307,919.853,77,16,G#2,mp+,15,144,44,15,,,,, +238,14,3,5848,307,920.127,,,,,,144,44,0,,,,, +238,15,3,5849,384,920.127,128,8,B2,pp,8,144,47,8,,,,, +238,16,3,5850,384,920.127,128,8,C3,mp,14,144,48,14,,,,, +237,33,2,5814,1126,920.489,,,,,,144,75,0,,,,, +238,5,4,5839,0,920.581,,,,,,144,50,0,,,,, +238,17,0,5851,512,920.581,,,,,,176,64,0,,,,,^ +238,18,1,5852,512,920.581,,,,,,176,102,0,,,,, +238,19,2,5853,512,920.581,,,,,,176,102,0,,,,, +238,20,3,5854,512,920.581,512,2,A#1,pp,8,144,34,8,,,,, +238,21,3,5855,512,920.581,512,2,B2,,,,,,,,,, +238,22,3,5856,512,920.581,512,2,C3,,,,,,,,,, +238,23,4,5857,512,920.581,,,,,,176,102,0,,,,, +237,42,4,5824,1280,920.581,,,,,,144,57,0,,,,, +237,43,4,5825,1280,920.581,,,,,,144,68,0,,,,, +237,31,1,5812,1126,920.581,,,,,,144,81,0,,,,, +237,32,2,5813,1126,920.581,,,,,,144,68,0,,,,, +238,25,1,5858,640,921.036,,,,,,176,102,0,,,,, +238,24,0,5859,640,921.036,,,,,,176,64,127,,,,,V +238,26,1,5860,716,921.306,26,32,B2,pp,8,144,47,8,,,,, +238,26,1,5860,716,921.398,,,,,,144,47,0,,,,, +238,27,1,5861,742,921.398,26,32,D2,pp,8,144,38,8,,,,, +238,27,1,5861,742,921.49,,,,,,144,38,0,,,,, +238,28,1,5862,768,921.49,25,32,B2,pp-,7,144,47,7,,,,, +238,28,1,5862,768,921.579,,,,,,144,47,0,,,,, +238,29,1,5863,793,921.579,26,32,D2,pp-,7,144,38,7,,,,, +238,29,1,5863,793,921.671,,,,,,144,38,0,,,,, +238,30,1,5864,819,921.671,25,32,B2,ppp+,6,144,47,6,,,,, +238,30,1,5864,819,921.76,,,,,,144,47,0,,,,, +238,31,1,5865,844,921.76,52,16,D2,ppp+,6,144,38,6,,,,, +238,31,1,5865,844,921.945,,,,,,144,38,0,,,,, +238,32,1,5866,896,921.945,51,16,B2,ppp,5,144,47,5,,,,, +238,32,1,5866,896,922.126,,,,,,144,47,0,,,,, +238,33,1,5867,947,922.126,77,16,D2,ppp,5,144,38,5,,,,, +238,20,3,5854,512,922.399,,,,,,144,34,0,,,,, +238,33,1,5867,947,922.399,,,,,,144,38,0,,,,, +238,34,0,5868,1024,922.399,,,,,,176,64,0,,,,,^ +238,35,1,5869,1024,922.399,,,,,,176,102,0,,,,, +238,36,3,5870,1024,922.399,,,,,,176,102,0,,,,, +238,37,4,5871,1024,922.399,128,8,A#1,pp,8,144,34,8,,,,, +238,38,4,5872,1024,922.399,128,8,D2,pp,8,144,38,8,,,,, +238,39,4,5873,1024,922.399,128,8,B2,pp,8,144,47,8,,,,, +238,40,4,5874,1024,922.399,128,8,C3,pp,8,144,48,8,,,,, +238,41,0,5875,1024,922.399,,,,,,,,,,5981,,, +238,15,3,5849,384,922.474,,,,,,144,47,0,,,,, +238,16,3,5850,384,922.474,,,,,,144,48,0,,,,, +238,37,4,5871,1024,922.854,,,,,,144,34,0,,,,, +238,38,4,5872,1024,922.854,,,,,,144,38,0,,,,, +238,39,4,5873,1024,922.854,,,,,,144,47,0,,,,, +238,40,4,5874,1024,922.854,,,,,,144,48,0,,,,, +238,42,1,5876,1152,922.854,384,4,C6,ppp,5,144,84,5,,,,, +238,43,1,5877,1152,922.854,256,4,A#6,ppp,5,144,94,5,,,,, +238,44,4,5878,1152,922.854,,,,,,176,102,0,,,,, +238,45,3,5879,1280,923.308,25,32,C3,pp,8,144,48,8,,,,, +238,46,4,5880,1280,923.308,,,,,,176,102,0,,,,, +238,47,3,5881,1305,923.397,26,32,A#1,pp,8,144,34,8,,,,, +238,48,3,5882,1305,923.397,32,32,C3,,,,,,,,,, +238,49,3,5883,1331,923.49,25,32,A#1,,,,,,,,,, +238,50,3,5884,1331,923.49,32,32,B2,pp,8,144,47,8,,,,, +238,51,3,5885,1331,923.49,32,32,C3,,,,,,,,,, +238,52,3,5886,1356,923.578,26,32,A#1,,,,,,,,,, +238,53,3,5887,1356,923.578,32,32,D2,pp,8,144,38,8,,,,, +238,54,3,5888,1356,923.578,32,32,B2,,,,,,,,,, +238,55,3,5889,1356,923.578,32,32,C3,,,,,,,,,, +238,56,3,5890,1382,923.671,26,32,A#1,,,,,,,,,, +238,57,3,5891,1382,923.671,32,32,D2,,,,,,,,,, +238,58,3,5892,1382,923.671,32,32,F#2,pp,8,144,42,8,,,,, +238,59,3,5893,1382,923.671,32,32,B2,,,,,,,,,, +238,60,3,5894,1382,923.671,32,32,C3,,,,,,,,,, +238,61,3,5895,1408,923.763,128,8,A#1,,,,,,,,,, +238,62,3,5896,1408,923.763,128,8,D2,,,,,,,,,, +238,63,3,5897,1408,923.763,128,8,F#2,,,,,,,,,, +238,64,3,5898,1408,923.763,128,8,B2,,,,,,,,,, +238,65,3,5899,1408,923.763,128,8,C3,,,,,,,,,, +238,43,1,5877,1152,923.763,,,,,,144,94,0,,,,, +239,0,0,5900,0,924.218,,,,,,,,,239,,,, +239,1,1,5901,0,924.218,,,,,,176,102,0,,,,, +239,2,3,5902,0,924.218,256,4,A#1,,,,,,,,,, +239,3,3,5903,0,924.218,256,4,D2,,,,,,,,,, +239,4,3,5904,0,924.218,256,4,F#2,,,,,,,,,, +239,5,3,5905,0,924.218,256,4,B2,,,,,,,,,, +239,6,3,5906,0,924.218,256,4,C3,,,,,,,,,, +239,7,4,5907,0,924.218,,,,,,176,102,0,,,,, +238,42,1,5876,1152,924.218,,,,,,144,84,0,,,,, +239,8,4,5908,153,924.761,103,8,C1,pp,8,144,24,8,,,,, +239,9,3,5909,256,925.127,153,8,A#1,pp,8,144,34,8,,,,, +239,10,3,5910,256,925.127,128,8,D2,pp,8,144,38,8,,,,, +239,11,3,5911,256,925.127,128,8,F#2,pp,8,144,42,8,,,,, +239,12,3,5912,256,925.127,128,8,B2,pp,8,144,47,8,,,,, +239,13,3,5913,256,925.127,128,8,C3,pp,8,144,48,8,,,,, +239,14,4,5914,256,925.127,256,4,C1,,,,,,,,,, +238,47,3,5881,1305,925.127,,,,,,144,34,0,,,,, +238,58,3,5892,1382,925.148,,,,,,144,42,0,,,,, +238,53,3,5887,1356,925.169,,,,,,144,38,0,,,,, +238,50,3,5884,1331,925.194,,,,,,144,47,0,,,,, +238,45,3,5879,1280,925.215,,,,,,144,48,0,,,,, +239,10,3,5910,256,925.581,,,,,,144,38,0,,,,, +239,11,3,5911,256,925.581,,,,,,144,42,0,,,,, +239,12,3,5912,256,925.581,,,,,,144,47,0,,,,, +239,13,3,5913,256,925.581,,,,,,144,48,0,,,,, +239,9,3,5909,256,925.67,,,,,,144,34,0,,,,, +239,15,3,5915,409,925.67,51,16,A#1,pp,8,144,34,8,,,,, +239,16,3,5916,409,925.67,64,16,D2,pp,8,144,38,8,,,,, +239,17,3,5917,409,925.67,64,16,F#2,pp,8,144,42,8,,,,, +239,18,3,5918,409,925.67,64,16,B2,pp,8,144,47,8,,,,, +239,19,3,5919,409,925.67,64,16,C3,pp,8,144,48,8,,,,, +239,15,3,5915,409,925.851,,,,,,144,34,0,,,,, +239,20,3,5920,460,925.851,,,,,,176,102,0,,,,, +239,16,3,5916,409,925.897,,,,,,144,38,0,,,,, +239,17,3,5917,409,925.897,,,,,,144,42,0,,,,, +239,18,3,5918,409,925.897,,,,,,144,47,0,,,,, +239,19,3,5919,409,925.897,,,,,,144,48,0,,,,, +239,21,3,5921,512,926.036,512,2,C#1,ppp,5,144,25,5,,,,, +239,22,3,5922,512,926.036,512,2,G#2,ppp,5,144,44,5,,,,, +239,23,4,5923,512,926.036,256,4,C1,,,,,,,,,, +239,24,4,5924,768,926.945,153,8,C1,,,,,,,,,, +239,8,4,5908,153,927.488,,,,,,144,24,0,,,,, +239,25,4,5925,921,927.488,,,,,,176,102,0,,,,, +239,27,4,5926,947,927.58,25,32,A#2,ppp,5,144,46,5,,,,, +239,26,0,5927,947,927.58,,,,,,176,64,127,,,,,V +239,27,4,5926,947,927.669,,,,,,144,46,0,,,,, +239,28,4,5928,972,927.669,26,32,C#2,ppp,5,144,37,5,,,,, +239,28,4,5928,972,927.762,,,,,,144,37,0,,,,, +239,29,4,5929,998,927.762,26,32,A#2,ppp,5,144,46,5,,,,, +239,29,4,5929,998,927.854,,,,,,144,46,0,,,,, +239,30,1,5930,,927.854,,8,E3,ppp,5,144,52,5,,,,g, +239,21,3,5921,512,927.854,,,,,,144,25,0,,,,, +239,22,3,5922,512,927.854,,,,,,144,44,0,,,,, +239,30,1,5930,,927.904,,,,,,144,52,0,,,,, +239,31,1,5931,1024,927.929,512,2,A#3,ppp,5,144,58,5,,,,, +239,32,3,5932,1024,927.929,,,,,,176,102,0,,,,, +239,33,4,5933,1024,927.929,51,16,C#2,ppp,5,144,37,5,,,,, +239,33,4,5933,1024,928.11,,,,,,144,37,0,,,,, +239,34,4,5934,1075,928.11,25,32,A#2,ppp,5,144,46,5,,,,, +239,34,4,5934,1075,928.199,,,,,,144,46,0,,,,, +239,35,4,5935,1100,928.199,26,32,C#2,ppp,5,144,37,5,,,,, +239,35,4,5935,1100,928.291,,,,,,144,37,0,,,,, +239,36,4,5936,1126,928.291,26,32,A#2,ppp,5,144,46,5,,,,, +239,36,4,5936,1126,928.383,,,,,,144,46,0,,,,, +239,37,4,5937,1152,928.383,25,32,C#2,ppp,5,144,37,5,,,,, +239,37,4,5937,1152,928.472,,,,,,144,37,0,,,,, +239,38,4,5938,1177,928.472,26,32,A#2,ppp,5,144,46,5,,,,, +239,38,4,5938,1177,928.565,,,,,,144,46,0,,,,, +239,39,4,5939,1203,928.565,25,32,E5,ppp,5,144,76,5,,,,, +239,39,4,5939,1203,928.653,,,,,,144,76,0,,,,, +239,40,4,5940,1228,928.653,26,32,A#2,ppp,5,144,46,5,,,,, +239,40,4,5940,1228,928.746,,,,,,144,46,0,,,,, +239,41,4,5941,1254,928.746,26,32,C#2,ppp,5,144,37,5,,,,, +239,41,4,5941,1254,928.838,,,,,,144,37,0,,,,, +239,42,3,5942,1280,928.838,,,,,,176,102,0,,,,, +239,43,4,5943,1280,928.838,51,16,E5,ppp,5,144,76,5,,,,, +239,43,4,5943,1280,929.019,,,,,,144,76,0,,,,, +239,44,4,5944,1331,929.019,77,16,A#2,ppp,5,144,46,5,,,,, +239,44,4,5944,1331,929.293,,,,,,144,46,0,,,,, +239,45,4,5945,1408,929.293,51,16,E5,ppp,5,144,76,5,,,,, +239,45,4,5945,1408,929.474,,,,,,144,76,0,,,,, +239,46,4,5946,1459,929.474,77,16,A#2,ppp,5,144,46,5,,,,, +239,46,4,5946,1459,929.747,,,,,,144,46,0,,,,, +240,0,0,5947,0,929.747,,,,,,,,,240,,,, +240,1,1,5948,0,929.747,,,,,,176,102,0,,,,, +240,2,2,5949,0,929.747,51,16,C#2,ppp,5,144,37,5,,,,, +240,3,3,5950,0,929.747,,,,,,176,102,0,,,,, +240,4,4,5951,0,929.747,,,,,,176,102,0,,,,, +239,31,1,5931,1024,929.747,,,,,,144,58,0,,,,, +240,2,2,5949,0,929.928,,,,,,144,37,0,,,,, +240,5,2,5952,51,929.928,102,8,E5,ppp,5,144,76,5,,,,, +240,5,2,5952,51,930.29,,,,,,144,76,0,,,,, +240,6,2,5953,153,930.29,103,8,A#2,ppp,5,144,46,5,,,,, +240,7,4,5954,192,930.429,32,32,F#1,p,11,144,30,11,,,,, +240,7,4,5954,192,930.543,,,,,,144,30,0,,,,, +240,8,4,5955,224,930.543,32,32,G2,p-,10,144,43,10,,,,, +240,6,2,5953,153,930.656,,,,,,144,46,0,,,,, +240,8,4,5955,224,930.656,,,,,,144,43,0,,,,, +240,9,1,5956,256,930.656,,,,,,176,102,0,,,,, +240,10,2,5957,256,930.656,768,2,D6,pp,8,144,86,8,,,,, +240,11,4,5958,256,930.656,153,8,G#3,ppp,5,144,56,5,,,,, +240,11,4,5958,256,931.199,,,,,,144,56,0,,,,, +240,12,4,5959,409,931.199,103,8,C6,ppp,5,144,84,5,,,,, +240,13,0,5960,457,931.37,,,,,,176,64,0,,,,,^ +240,16,4,5961,,931.49,,8,F#2,ppp,5,144,42,5,,,,g, +240,16,4,5961,,931.54,,,,,,144,42,0,,,,, +240,12,4,5959,409,931.565,,,,,,144,84,0,,,,, +240,14,1,5962,512,931.565,,,,,,176,102,0,,,,, +240,15,3,5963,512,931.565,,,,,,176,102,0,,,,, +240,17,4,5964,512,931.565,1024,1,C1,ppp,5,144,24,5,,,,, +240,18,1,5965,640,932.02,25,32,E7,pp,8,144,100,8,,,,, +240,18,1,5965,640,932.109,,,,,,144,100,0,,,,, +240,19,1,5966,665,932.109,26,32,C#5,pp,8,144,73,8,,,,, +240,19,1,5966,665,932.201,,,,,,144,73,0,,,,, +240,20,1,5967,691,932.201,25,32,G#6,pp+,9,144,92,9,,,,, +240,20,1,5967,691,932.29,,,,,,144,92,0,,,,, +240,21,1,5968,716,932.29,26,32,A#5,pp+,9,144,82,9,,,,, +240,21,1,5968,716,932.382,,,,,,144,82,0,,,,, +240,22,1,5969,742,932.382,26,32,C7,pp+,9,144,96,9,,,,, +240,22,1,5969,742,932.474,,,,,,144,96,0,,,,, +240,24,3,5970,768,932.474,,,,,,176,102,0,,,,, +240,25,1,5971,768,932.474,25,32,E7,p-,10,144,100,10,,,,, +240,23,0,5972,768,932.474,,,,,,176,64,127,,,,,V +240,25,1,5971,768,932.563,,,,,,144,100,0,,,,, +240,26,1,5973,793,932.563,26,32,C#4,p-,10,144,61,10,,,,, +240,26,1,5973,793,932.655,,,,,,144,61,0,,,,, +240,27,1,5974,819,932.655,25,32,G#5,p-,10,144,80,10,,,,, +240,27,1,5974,819,932.744,,,,,,144,80,0,,,,, +240,28,1,5975,844,932.744,26,32,A#4,p,11,144,70,11,,,,, +240,28,1,5975,844,932.837,,,,,,144,70,0,,,,, +240,29,1,5976,870,932.837,26,32,C7,p,11,144,96,11,,,,, +240,29,1,5976,870,932.929,,,,,,144,96,0,,,,, +240,30,1,5977,896,932.929,,,,,,176,102,0,,,,, +240,31,3,5978,960,933.156,32,32,F#1,p,11,144,30,11,,,,, +240,31,3,5978,960,933.27,,,,,,144,30,0,,,,, +240,32,3,5979,992,933.27,32,32,G2,p,11,144,43,11,,,,, +240,32,3,5979,992,933.383,,,,,,144,43,0,,,,, +240,33,1,5980,1024,933.383,21,32,C#4,p,11,144,61,11,,,,, +240,34,2,5981,1024,933.383,256,4,D5,pp,8,144,74,8,,,,, +240,35,3,5982,1024,933.383,,,,,,176,102,0,,,,, +240,10,2,5957,256,933.383,,,,,,144,86,0,,,,, +240,33,1,5980,1024,933.458,,,,,,144,61,0,,,,, +240,36,1,5983,1045,933.458,21,32,G#5,p,11,144,80,11,,,,, +240,36,1,5983,1045,933.533,,,,,,144,80,0,,,,, +240,37,1,5984,1066,933.533,22,32,A#4,p+,12,144,70,12,,,,, +240,37,1,5984,1066,933.611,,,,,,144,70,0,,,,, +240,38,1,5985,1088,933.611,21,32,G#5,p+,12,144,80,12,,,,, +240,38,1,5985,1088,933.685,,,,,,144,80,0,,,,, +240,39,1,5986,1109,933.685,21,32,A#4,p+,12,144,70,12,,,,, +240,39,1,5986,1109,933.76,,,,,,144,70,0,,,,, +240,40,1,5987,1130,933.76,22,32,G#5,p+,12,144,80,12,,,,, +240,40,1,5987,1130,933.838,,,,,,144,80,0,,,,, +240,41,1,5988,1152,933.838,21,32,A#4,mp-,13,144,70,13,,,,, +240,41,1,5988,1152,933.913,,,,,,144,70,0,,,,, +240,42,1,5989,1173,933.913,21,32,G#5,mp-,13,144,80,13,,,,, +240,43,0,5990,1177,933.927,,,,,,176,64,0,,,,,^ +240,42,1,5989,1173,933.987,,,,,,144,80,0,,,,, +240,44,1,5991,1194,933.987,32,32,A#4,mp-,13,144,70,13,,,,, +240,44,1,5991,1194,934.101,,,,,,144,70,0,,,,, +240,45,1,5992,1226,934.101,32,32,G#5,mp,14,144,80,14,,,,, +240,45,1,5992,1226,934.214,,,,,,144,80,0,,,,, +240,46,1,5993,1258,934.214,22,32,C6,mp,14,144,84,14,,,,, +240,34,2,5981,1024,934.293,,,,,,144,74,0,,,,, +240,46,1,5993,1258,934.293,,,,,,144,84,0,,,,, +240,47,1,5994,1280,934.293,,,,,,176,102,0,,,,, +240,48,2,5995,1280,934.293,,,,,,176,102,0,,,,, +240,49,3,5996,1280,934.293,,,,,,176,102,0,,,,, +240,50,2,5997,1344,934.52,64,16,D5,pp,8,144,74,8,,,,, +240,51,3,5998,1344,934.52,64,16,F#1,pp,8,144,30,8,,,,, +240,52,3,5999,1344,934.52,64,16,G2,pp,8,144,43,8,,,,, +240,50,2,5997,1344,934.747,,,,,,144,74,0,,,,, +240,51,3,5998,1344,934.747,,,,,,144,30,0,,,,, +240,52,3,5999,1344,934.747,,,,,,144,43,0,,,,, +240,54,2,6000,1408,934.747,,,,,,176,102,0,,,,, +240,55,3,6001,1408,934.747,,,,,,176,102,0,,,,, +240,53,0,6002,1408,934.747,,,,,,176,64,127,,,,,V +240,56,3,6003,1472,934.974,21,32,A#2,pp,8,144,46,8,,,,, +240,56,3,6003,1472,935.049,,,,,,144,46,0,,,,, +240,57,3,6004,1493,935.049,21,32,F#2,pp,8,144,42,8,,,,, +240,57,3,6004,1493,935.123,,,,,,144,42,0,,,,, +240,58,3,6005,1514,935.123,22,32,A#2,pp,8,144,46,8,,,,, +240,58,3,6005,1514,935.202,,,,,,144,46,0,,,,, +241,0,0,6006,0,935.202,,,,,,,,,241,,,, +241,1,1,6007,0,935.202,,,,,,176,102,0,,,,, +241,2,3,6008,0,935.202,256,4,C#2,pp,8,144,37,8,,,,, +241,3,4,6009,0,935.202,51,16,F#2,pp,8,144,42,8,,,,, +240,17,4,5964,512,935.202,,,,,,144,24,0,,,,, +241,3,4,6009,0,935.383,,,,,,144,42,0,,,,, +241,4,4,6010,51,935.383,25,32,A#2,pp,8,144,46,8,,,,, +241,4,4,6010,51,935.471,,,,,,144,46,0,,,,, +241,5,4,6011,76,935.471,52,16,F#2,pp,8,144,42,8,,,,, +241,5,4,6011,76,935.656,,,,,,144,42,0,,,,, +241,6,1,6012,128,935.656,42,16,E4,pp,8,144,64,8,,,,, +241,7,4,6013,128,935.656,,,,,,176,102,0,,,,, +241,6,1,6012,128,935.805,,,,,,144,64,0,,,,, +241,8,1,6014,170,935.805,43,16,D5,pp,8,144,74,8,,,,, +241,9,0,6015,213,935.808,,,,,,176,64,0,,,,,^ +241,8,1,6014,170,935.958,,,,,,144,74,0,,,,, +241,11,1,6016,213,935.958,43,16,E4,pp,8,144,64,8,,,,, +241,12,4,6017,213,935.958,43,16,F#2,pp,8,144,42,8,,,,, +241,13,4,6018,213,935.958,64,16,A#2,pp,8,144,46,8,,,,, +241,14,4,6019,213,935.958,64,16,G3,pp,8,144,55,8,,,,, +241,10,0,6020,213,936.108,,,,,,176,64,127,,,,,V +241,2,3,6008,0,936.111,,,,,,144,37,0,,,,, +241,11,1,6016,213,936.111,,,,,,144,64,0,,,,, +241,12,4,6017,213,936.111,,,,,,144,42,0,,,,, +241,15,1,6021,256,936.111,256,4,D5,pp,8,144,74,8,,,,, +241,16,3,6022,256,936.111,,,,,,176,102,0,,,,, +241,17,4,6023,256,936.111,,,,,,176,102,0,,,,, +241,13,4,6018,213,936.185,,,,,,144,46,0,,,,, +241,14,4,6019,213,936.185,,,,,,144,55,0,,,,, +241,18,0,6024,384,936.565,,,,,,176,64,0,,,,,^ +241,19,4,6025,384,936.565,,,,,,176,102,0,,,,, +241,20,0,6026,384,936.565,,,,,,,,,,5982,,, +241,15,1,6021,256,937.02,,,,,,144,74,0,,,,, +241,21,1,6027,512,937.02,,,,,,176,102,0,,,,, +241,22,3,6028,512,937.02,1024,1,C1,pppp,2,144,24,2,,,,, +241,23,4,6029,512,937.02,,,,,,176,102,0,,,,, +241,24,1,6030,554,937.169,43,16,E4,pp,8,144,64,8,,,,, +241,25,1,6031,554,937.169,64,16,D5,pp,8,144,74,8,,,,, +241,26,4,6032,554,937.169,43,16,F#2,pp,8,144,42,8,,,,, +241,27,4,6033,554,937.169,64,16,A#2,pp,8,144,46,8,,,,, +241,28,4,6034,554,937.169,64,16,G3,pp,8,144,55,8,,,,, +241,24,1,6030,554,937.322,,,,,,144,64,0,,,,, +241,26,4,6032,554,937.322,,,,,,144,42,0,,,,, +241,29,1,6035,597,937.322,,,,,,176,102,0,,,,, +241,30,4,6036,597,937.322,,,,,,176,102,0,,,,, +241,25,1,6031,554,937.396,,,,,,144,74,0,,,,, +241,27,4,6033,554,937.396,,,,,,144,46,0,,,,, +241,28,4,6034,554,937.396,,,,,,144,55,0,,,,, +241,31,1,6037,682,937.623,,,,,,176,102,0,,,,, +241,32,1,6038,768,937.929,,,,,,176,102,0,,,,, +241,33,4,6039,768,937.929,,,,,,176,102,0,,,,, +241,35,1,6040,,938.688,,8,A#3,mp,14,144,58,14,,,,g, +241,35,1,6040,,938.738,,,,,,144,58,0,,,,, +241,36,1,6041,,938.763,,8,D5,mp,14,144,74,14,,,,g, +241,36,1,6041,,938.813,,,,,,144,74,0,,,,, +241,37,1,6042,1024,938.838,64,16,F#5,mp,14,144,78,14,,,,, +241,38,4,6043,1024,938.838,256,4,C4,pp,8,144,60,8,,,,, +241,39,4,6044,1024,938.838,256,4,G#4,pp,8,144,68,8,,,,, +241,40,4,6045,1024,938.838,256,4,E6,pp,8,144,88,8,,,,, +241,34,0,6046,1024,938.838,,,,,,176,64,127,,,,,V +241,37,1,6042,1024,939.065,,,,,,144,78,0,,,,, +241,41,1,6047,1088,939.065,21,32,D#6,mp+,15,144,87,15,,,,, +241,41,1,6047,1088,939.14,,,,,,144,87,0,,,,, +241,42,1,6048,1109,939.14,21,32,D5,mf,17,144,74,17,,,,, +241,42,1,6048,1109,939.214,,,,,,144,74,0,,,,, +241,43,1,6049,1130,939.214,22,32,C3,mf+,18,144,48,18,,,,, +241,43,1,6049,1130,939.293,,,,,,144,48,0,,,,, +241,44,1,6050,1152,939.293,51,16,A#3,p,11,144,58,11,,,,, +241,45,1,6051,1203,939.474,77,16,C#7,mp+,15,144,97,15,,,,, +241,44,1,6050,1152,939.549,,,,,,144,58,0,,,,, +241,45,1,6051,1203,939.747,,,,,,144,97,0,,,,, +241,46,0,6052,1280,939.747,,,,,,176,64,0,,,,,^ +241,47,1,6053,1280,939.747,153,8,A#3,f,20,144,58,20,,,,, +241,48,1,6054,1280,939.747,128,8,C6,f,20,144,84,20,,,,, +241,49,1,6055,1280,939.747,128,8,C#7,f,20,144,97,20,,,,, +241,50,4,6056,1280,939.747,,,,,,176,102,0,,,,, +241,38,4,6043,1024,939.822,,,,,,144,60,0,,,,, +241,39,4,6044,1024,939.822,,,,,,144,68,0,,,,, +241,40,4,6045,1024,939.822,,,,,,144,88,0,,,,, +241,48,1,6054,1280,940.202,,,,,,144,84,0,,,,, +241,49,1,6055,1280,940.202,,,,,,144,97,0,,,,, +241,47,1,6053,1280,940.29,,,,,,144,58,0,,,,, +241,51,1,6057,1433,940.29,103,8,C6,mp,14,144,84,14,,,,, +241,52,4,6058,1433,940.29,103,8,G#2,p,11,144,44,11,,,,, +241,51,1,6057,1433,940.656,,,,,,144,84,0,,,,, +241,52,4,6058,1433,940.656,,,,,,144,44,0,,,,, +242,0,0,6059,0,940.656,,,,,,,,,242,,,, +242,2,1,6060,0,940.656,42,16,F#5,mp,14,144,78,14,,,,, +242,3,3,6061,0,940.656,,,,,,176,102,0,,,,, +242,4,4,6062,0,940.656,256,4,C4,p,11,144,60,11,,,,, +242,5,4,6063,0,940.656,256,4,G#4,p,11,144,68,11,,,,, +242,6,4,6064,0,940.656,256,4,E6,p,11,144,88,11,,,,, +242,1,0,6065,0,940.656,,,,,,176,64,127,,,,,V +241,22,3,6028,512,940.731,,,,,,144,24,0,,,,, +242,2,1,6060,0,940.805,,,,,,144,78,0,,,,, +242,7,1,6066,42,940.805,43,16,D#6,mp,14,144,87,14,,,,, +242,7,1,6066,42,940.958,,,,,,144,87,0,,,,, +242,8,1,6067,85,940.958,43,16,C2,mp,14,144,36,14,,,,, +242,8,1,6067,85,941.111,,,,,,144,36,0,,,,, +242,9,1,6068,128,941.111,,,,,,176,102,0,,,,, +242,4,4,6062,0,941.565,,,,,,144,60,0,,,,, +242,5,4,6063,0,941.565,,,,,,144,68,0,,,,, +242,6,4,6064,0,941.565,,,,,,144,88,0,,,,, +242,10,0,6069,256,941.565,,,,,,176,64,0,,,,,^ +242,11,1,6070,256,941.565,,,,,,176,102,0,,,,, +242,12,4,6071,256,941.565,256,4,C4,ppp,5,144,60,5,,,,, +242,13,4,6072,256,941.565,256,4,G#4,ppp,5,144,68,5,,,,, +242,14,4,6073,256,941.565,256,4,E6,ppp,5,144,88,5,,,,, +242,12,4,6071,256,942.474,,,,,,144,60,0,,,,, +242,13,4,6072,256,942.474,,,,,,144,68,0,,,,, +242,14,4,6073,256,942.474,,,,,,144,88,0,,,,, +242,15,1,6074,512,942.474,,,,,,176,102,0,,,,, +242,16,3,6075,512,942.474,,,,,,176,102,0,,,,, +242,17,4,6076,512,942.474,1024,1,C1,pppp,2,144,24,2,,,,, +242,18,1,6077,682,943.078,43,16,D#6,p,11,144,87,11,,,,, +242,18,1,6077,682,943.231,,,,,,144,87,0,,,,, +242,19,1,6078,725,943.231,43,16,C2,p+,12,144,36,12,,,,, +242,19,1,6078,725,943.383,,,,,,144,36,0,,,,, +242,21,1,6079,768,943.383,85,8,A#2,p+,12,144,46,12,,,,, +242,22,3,6080,768,943.383,,,,,,176,102,0,,,,, +242,20,0,6081,768,943.383,,,,,,176,64,127,,,,,V +242,21,1,6079,768,943.685,,,,,,144,46,0,,,,, +242,23,1,6082,853,943.685,128,8,F#5,mp-,13,144,78,13,,,,, +242,24,3,6083,853,943.685,,,,,,176,102,0,,,,, +242,23,1,6082,853,944.14,,,,,,144,78,0,,,,, +242,25,1,6084,981,944.14,43,16,F#5,mp+,15,144,78,15,,,,, +242,26,3,6085,981,944.14,43,16,B2,pppp,2,144,47,2,,,,, +242,25,1,6084,981,944.293,,,,,,144,78,0,,,,, +242,27,1,6086,1024,944.293,,,,,,176,102,0,,,,, +242,28,3,6087,1024,944.293,256,4,B2,,,,,,,,,, +242,26,3,6085,981,945.202,,,,,,144,47,0,,,,, +242,29,1,6088,1280,945.202,42,16,D#6,mp+,15,144,87,15,,,,, +242,30,3,6089,1280,945.202,42,16,C4,pppp,2,144,60,2,,,,, +242,31,3,6090,1280,945.202,64,16,G#4,pppp,2,144,68,2,,,,, +242,29,1,6088,1280,945.351,,,,,,144,87,0,,,,, +242,32,1,6091,1322,945.351,43,16,F#5,mp+,15,144,78,15,,,,, +242,33,3,6092,1322,945.351,43,16,C4,,,,,,,,,, +242,31,3,6090,1280,945.429,,,,,,144,68,0,,,,, +242,34,1,6093,1365,945.503,171,4,F#5,,,,,,,,,, +242,35,3,6094,1365,945.503,171,4,C4,,,,,,,,,, +242,36,0,6095,1472,945.883,,,,,,176,64,0,,,,,^ +242,17,4,6076,512,946.111,,,,,,144,24,0,,,,, +242,30,3,6089,1280,946.111,,,,,,144,60,0,,,,, +242,32,1,6091,1322,946.111,,,,,,144,78,0,,,,, +243,0,0,6096,0,946.111,,,,,,,,,243,,,, +243,2,1,6097,,946.111,,8,E4,p,11,144,64,11,,,,g, +243,6,3,6098,,946.111,,8,G#2,mp,14,144,44,14,,,,g, +243,2,1,6097,,946.161,,,,,,144,64,0,,,,, +243,6,3,6098,,946.161,,,,,,144,44,0,,,,, +243,3,1,6099,,946.186,,8,A#2,p,11,144,46,11,,,,g, +243,3,1,6099,,946.236,,,,,,144,46,0,,,,, +243,7,3,6100,,946.261,,8,C4,mp,14,144,60,14,,,,g, +243,7,3,6100,,946.311,,,,,,144,60,0,,,,, +243,4,1,6101,,946.336,,8,E5,p,11,144,76,11,,,,g, +243,4,1,6101,,946.386,,,,,,144,76,0,,,,, +243,5,1,6102,0,946.486,51,16,F#5,p,11,144,78,11,,,,, +243,8,3,6103,0,946.486,25,32,F#2,mp,14,144,42,14,,,,, +243,1,0,6104,0,946.486,,,,,,176,64,127,,,,,V +243,8,3,6103,0,946.574,,,,,,144,42,0,,,,, +243,9,3,6105,25,946.574,26,32,G3,mp,14,144,55,14,,,,, +243,9,3,6105,25,946.667,,,,,,144,55,0,,,,, +243,10,1,6106,51,946.667,25,32,G2,p,11,144,43,11,,,,, +243,11,3,6107,51,946.667,25,32,D6,mp,14,144,86,14,,,,, +243,5,1,6102,0,946.667,,,,,,144,78,0,,,,, +243,14,0,6108,86,946.716,,,,,,176,64,0,,,,,^ +243,10,1,6106,51,946.756,,,,,,144,43,0,,,,, +243,11,3,6107,51,946.756,,,,,,144,86,0,,,,, +243,12,1,6109,76,946.756,26,32,F#5,p,11,144,78,11,,,,, +243,13,3,6110,76,946.756,26,32,F#2,mp,14,144,42,14,,,,, +243,12,1,6109,76,946.848,,,,,,144,78,0,,,,, +243,13,3,6110,76,946.848,,,,,,144,42,0,,,,, +243,15,1,6111,102,946.848,,,,,,176,102,0,,,,, +243,16,3,6112,102,946.848,26,32,G3,mp,14,144,55,14,,,,, +243,16,3,6112,102,946.94,,,,,,144,55,0,,,,, +243,18,1,6113,128,946.94,,,,,,176,102,0,,,,, +243,19,3,6114,128,946.94,21,32,A#1,mf,17,144,34,17,,,,, +243,19,3,6114,128,947.015,,,,,,144,34,0,,,,, +243,20,3,6115,149,947.015,21,32,E3,mp,14,144,52,14,,,,, +243,17,0,6116,128,947.016,,,,,,176,64,127,,,,,V +243,20,3,6115,149,947.089,,,,,,144,52,0,,,,, +243,21,3,6117,170,947.089,22,32,F#1,p,11,144,30,11,,,,, +243,21,3,6117,170,947.168,,,,,,144,30,0,,,,, +243,22,3,6118,192,947.168,21,32,D4,pp,8,144,62,8,,,,, +243,22,3,6118,192,947.242,,,,,,144,62,0,,,,, +243,23,0,6119,213,947.242,,,,,,176,64,0,,,,,^ +243,24,3,6120,213,947.242,21,32,F#1,ppp,5,144,30,5,,,,, +243,24,3,6120,213,947.317,,,,,,144,30,0,,,,, +243,25,3,6121,234,947.317,22,32,G2,ppp,5,144,43,5,,,,, +243,25,3,6121,234,947.395,,,,,,144,43,0,,,,, +243,26,1,6122,256,947.395,128,8,E5,ppp,5,144,76,5,,,,, +243,27,3,6123,256,947.395,256,4,C1,ppp,5,144,24,5,,,,, +243,26,1,6122,256,947.849,,,,,,144,76,0,,,,, +243,28,1,6124,384,947.849,85,8,E5,ppp+,6,144,76,6,,,,, +243,29,1,6125,384,947.849,128,8,G#5,ppp+,6,144,80,6,,,,, +243,28,1,6124,384,948.151,,,,,,144,76,0,,,,, +243,30,1,6126,469,948.151,43,16,C4,pp-,7,144,60,7,,,,, +243,27,3,6123,256,948.304,,,,,,144,24,0,,,,, +243,29,1,6125,384,948.304,,,,,,144,80,0,,,,, +243,32,1,6127,512,948.304,85,8,C4,,,,,,,,,, +243,33,3,6128,512,948.304,512,2,F#1,ppp,5,144,30,5,,,,, +243,34,3,6129,512,948.304,512,2,A#1,ppp,5,144,34,5,,,,, +243,35,3,6130,512,948.304,512,2,G2,ppp,5,144,43,5,,,,, +243,36,3,6131,512,948.304,512,2,E3,ppp,5,144,52,5,,,,, +243,37,3,6132,512,948.304,512,2,D4,ppp,5,144,62,5,,,,, +243,31,0,6133,512,948.304,,,,,,176,64,127,,,,,V +243,30,1,6126,469,948.606,,,,,,144,60,0,,,,, +243,38,1,6134,597,948.606,128,8,E5,pp,8,144,76,8,,,,, +243,38,1,6134,597,949.06,,,,,,144,76,0,,,,, +243,39,1,6135,725,949.06,43,16,G#5,pp+,9,144,80,9,,,,, +243,40,1,6136,768,949.213,256,4,G#5,,,,,,,,,, +243,41,0,6137,1023,950.118,,,,,,176,64,0,,,,,^ +243,33,3,6128,512,950.122,,,,,,144,30,0,,,,, +243,34,3,6129,512,950.122,,,,,,144,34,0,,,,, +243,35,3,6130,512,950.122,,,,,,144,43,0,,,,, +243,36,3,6131,512,950.122,,,,,,144,52,0,,,,, +243,37,3,6132,512,950.122,,,,,,144,62,0,,,,, +243,39,1,6135,725,950.122,,,,,,144,80,0,,,,, +243,42,1,6138,1024,950.122,,,,,,176,102,0,,,,, +243,43,3,6139,1024,950.122,128,8,F#1,pp,8,144,30,8,,,,, +243,44,3,6140,1024,950.122,128,8,A#1,pp,8,144,34,8,,,,, +243,45,3,6141,1024,950.122,128,8,G2,pp,8,144,43,8,,,,, +243,46,3,6142,1024,950.122,128,8,E3,pp,8,144,52,8,,,,, +243,47,3,6143,1024,950.122,128,8,D4,pp,8,144,62,8,,,,, +243,43,3,6139,1024,950.577,,,,,,144,30,0,,,,, +243,44,3,6140,1024,950.577,,,,,,144,34,0,,,,, +243,45,3,6141,1024,950.577,,,,,,144,43,0,,,,, +243,46,3,6142,1024,950.577,,,,,,144,52,0,,,,, +243,47,3,6143,1024,950.577,,,,,,144,62,0,,,,, +243,48,1,6144,,950.577,,8,E4,ppp,5,144,64,5,,,,g, +243,48,1,6144,,950.627,,,,,,144,64,0,,,,, +243,49,1,6145,,950.652,,8,A#2,ppp,5,144,46,5,,,,g, +243,49,1,6145,,950.702,,,,,,144,46,0,,,,, +243,50,1,6146,,950.727,,8,E4,ppp,5,144,64,5,,,,g, +243,50,1,6146,,950.777,,,,,,144,64,0,,,,, +243,51,1,6147,1152,950.802,128,8,D5,ppp,5,144,74,5,,,,, +243,52,3,6148,1152,950.802,,,,,,176,102,0,,,,, +243,53,0,6149,1152,950.802,,,,,,,,,,5983,,, +243,51,1,6147,1152,951.256,,,,,,144,74,0,,,,, +243,55,1,6150,1280,951.256,64,16,E5,p,11,144,76,11,,,,, +243,56,3,6151,1280,951.256,21,32,F#5,mf,17,144,78,17,,,,, +243,54,0,6152,1280,951.256,,,,,,176,64,127,,,,,V +243,56,3,6151,1280,951.331,,,,,,144,78,0,,,,, +243,57,3,6153,1301,951.331,21,32,A4,mf,17,144,69,17,,,,, +243,57,3,6153,1301,951.405,,,,,,144,69,0,,,,, +243,58,3,6154,1322,951.405,86,8,E2,mf,17,144,40,17,,,,, +243,55,1,6150,1280,951.483,,,,,,144,76,0,,,,, +243,59,1,6155,1344,951.483,,,,,,176,102,0,,,,, +243,60,1,6156,1376,951.597,32,32,C4,mf,17,144,60,17,,,,, +243,58,3,6154,1322,951.711,,,,,,144,40,0,,,,, +243,60,1,6156,1376,951.711,,,,,,144,60,0,,,,, +243,61,1,6157,1408,951.711,32,32,F#5,mf,17,144,78,17,,,,, +243,62,3,6158,1408,951.711,64,16,E5,mp,14,144,76,14,,,,, +243,63,3,6159,1408,951.711,64,16,G#5,mp,14,144,80,14,,,,, +243,61,1,6157,1408,951.824,,,,,,144,78,0,,,,, +243,64,1,6160,1440,951.824,32,32,C4,mf,17,144,60,17,,,,, +243,62,3,6158,1408,951.938,,,,,,144,76,0,,,,, +243,63,3,6159,1408,951.938,,,,,,144,80,0,,,,, +243,64,1,6160,1440,951.938,,,,,,144,60,0,,,,, +243,65,1,6161,1472,951.938,32,32,A4,mf,17,144,69,17,,,,, +243,66,3,6162,1472,951.938,,,,,,176,102,0,,,,, +243,65,1,6161,1472,952.052,,,,,,144,69,0,,,,, +243,67,0,6163,1504,952.052,,,,,,176,64,0,,,,,^ +243,68,1,6164,1504,952.052,32,32,E2,mf,17,144,40,17,,,,, +243,68,1,6164,1504,952.165,,,,,,144,40,0,,,,, +244,0,0,6165,0,952.165,,,,,,,,,244,,,, +244,1,1,6166,0,952.165,,,,,,176,102,0,,,,, +244,2,2,6167,0,952.165,,,,,,176,102,0,,,,, +244,3,3,6168,0,952.165,512,2,C1,ppp,5,144,24,5,,,,, +244,4,2,6169,102,952.527,154,8,G#2,mf,17,144,44,17,,,,, +244,5,2,6170,102,952.527,128,8,C6,mf,17,144,84,17,,,,, +244,6,2,6171,102,952.527,128,8,C#7,mf,17,144,97,17,,,,, +244,7,0,6172,139,952.659,,,,,,176,64,127,,,,,V +244,8,1,6173,192,952.847,32,32,D5,p,11,144,74,11,,,,, +244,8,1,6173,192,952.961,,,,,,144,74,0,,,,, +244,9,1,6174,224,952.961,32,32,C2,p+,12,144,36,12,,,,, +244,5,2,6170,102,952.982,,,,,,144,84,0,,,,, +244,6,2,6171,102,952.982,,,,,,144,97,0,,,,, +244,4,2,6169,102,953.074,,,,,,144,44,0,,,,, +244,9,1,6174,224,953.074,,,,,,144,36,0,,,,, +244,10,1,6175,256,953.074,21,32,D#6,mp,14,144,87,14,,,,, +244,16,2,6176,256,953.074,,,,,,176,102,0,,,,, +244,10,1,6175,256,953.149,,,,,,144,87,0,,,,, +244,11,1,6177,277,953.149,32,32,D5,mp+,15,144,74,15,,,,, +244,11,1,6177,277,953.263,,,,,,144,74,0,,,,, +244,12,1,6178,309,953.263,32,32,C2,mf-,16,144,36,16,,,,, +244,12,1,6178,309,953.376,,,,,,144,36,0,,,,, +244,13,1,6179,341,953.376,21,32,D#6,mf+,18,144,87,18,,,,, +244,13,1,6179,341,953.451,,,,,,144,87,0,,,,, +244,14,1,6180,362,953.451,22,32,C2,f-,19,144,36,19,,,,, +244,15,1,6181,362,953.451,32,32,D5,f-,19,144,74,19,,,,, +244,14,1,6180,362,953.529,,,,,,144,36,0,,,,, +244,16,0,6182,384,953.529,,,,,,176,64,0,,,,,^ +244,17,1,6183,384,953.529,128,8,D#6,f,20,144,87,20,,,,, +244,15,1,6181,362,953.564,,,,,,144,74,0,,,,, +244,3,3,6168,0,953.983,,,,,,144,24,0,,,,, +244,17,1,6183,384,953.983,,,,,,144,87,0,,,,, +244,19,1,6184,,953.983,,8,D6,f,20,144,86,20,,,,g, +244,19,1,6184,,954.033,,,,,,144,86,0,,,,, +244,20,1,6185,512,954.058,384,4,A#5,f,20,144,82,20,,,,, +244,21,3,6186,512,954.058,,,,,,176,102,0,,,,, +244,18,0,6187,546,954.179,,,,,,176,64,127,,,,,V +244,20,1,6185,512,955.422,,,,,,144,82,0,,,,, +244,22,1,6188,896,955.422,,,,,,176,102,0,,,,, +244,23,1,6189,917,955.497,43,16,G#4,p,11,144,68,11,,,,, +244,23,1,6189,917,955.649,,,,,,144,68,0,,,,, +244,24,1,6190,960,955.649,42,16,F#5,pp,8,144,78,8,,,,, +244,28,0,6191,1015,955.664,,,,,,176,64,0,,,,,^ +244,24,1,6190,960,955.798,,,,,,144,78,0,,,,, +244,25,1,6192,1002,955.798,22,32,D3,ppp,5,144,50,5,,,,, +244,26,1,6193,1002,955.798,32,32,G#4,ppp,5,144,68,5,,,,, +244,27,1,6194,1002,955.798,32,32,F#5,ppp,5,144,78,5,,,,, +244,29,0,6195,1015,955.798,,,,,,,,,,5984,,, +244,31,1,6196,1024,955.83,85,8,F#4,mp,14,144,66,14,,,,, +244,32,2,6197,1024,955.83,256,4,G#3,mp,14,144,56,14,,,,, +244,33,3,6198,1024,955.83,512,2,C1,ppp,5,144,24,5,,,,, +244,25,1,6192,1002,955.877,,,,,,144,50,0,,,,, +244,26,1,6193,1002,955.912,,,,,,144,68,0,,,,, +244,27,1,6194,1002,955.912,,,,,,144,78,0,,,,, +244,30,0,6199,1024,955.964,,,,,,176,64,127,,,,,V +244,31,1,6196,1024,956.132,,,,,,144,66,0,,,,, +244,34,1,6200,1109,956.132,171,4,F#4,mp+,15,144,66,15,,,,, +244,35,1,6201,1109,956.132,256,4,A5,mp+,15,144,81,15,,,,, +244,32,2,6197,1024,956.74,,,,,,144,56,0,,,,, +244,34,1,6200,1109,956.74,,,,,,144,66,0,,,,, +244,36,1,6202,1280,956.74,,,,,,176,102,0,,,,, +244,37,2,6203,1280,956.74,256,4,G#3,p,11,144,56,11,,,,, +244,35,1,6201,1109,957.041,,,,,,144,81,0,,,,, +244,33,3,6198,1024,957.649,,,,,,144,24,0,,,,, +244,37,2,6203,1280,957.649,,,,,,144,56,0,,,,, +245,0,0,6204,0,957.649,,,,,,,,,245,,,, +245,1,1,6205,0,957.649,128,8,G#3,f,20,144,56,20,,,,, +245,2,1,6206,0,957.649,128,8,F#5,f,20,144,78,20,,,,, +245,3,1,6207,0,957.649,128,8,A5,f,20,144,81,20,,,,, +245,4,3,6208,0,957.649,256,4,D3,pp,8,144,50,8,,,,, +245,5,3,6209,0,957.649,256,4,B3,pp,8,144,59,8,,,,, +245,1,1,6205,0,958.103,,,,,,144,56,0,,,,, +245,2,1,6206,0,958.103,,,,,,144,78,0,,,,, +245,3,1,6207,0,958.103,,,,,,144,81,0,,,,, +245,6,1,6210,128,958.103,32,32,C4,mf-,16,144,60,16,,,,, +245,6,1,6210,128,958.217,,,,,,144,60,0,,,,, +245,7,1,6211,160,958.217,32,32,E3,mp,14,144,52,14,,,,, +245,8,1,6212,192,958.33,64,16,A4,mp-,13,144,69,13,,,,, +245,5,3,6209,0,958.558,,,,,,144,59,0,,,,, +245,8,1,6212,192,958.558,,,,,,144,69,0,,,,, +245,9,1,6213,256,958.558,85,8,C4,p,11,144,60,11,,,,, +245,10,1,6214,256,958.558,128,8,A4,p,11,144,69,11,,,,, +245,11,1,6215,256,958.558,128,8,A5,p,11,144,81,11,,,,, +245,12,3,6216,256,958.558,256,4,B3,ppp,5,144,59,5,,,,, +245,7,1,6211,160,958.705,,,,,,144,52,0,,,,, +245,9,1,6213,256,958.86,,,,,,144,60,0,,,,, +245,13,1,6217,,958.86,,8,A#5,pp,8,144,82,8,,,,g, +245,13,1,6217,,958.91,,,,,,144,82,0,,,,, +245,4,3,6208,0,958.933,,,,,,144,50,0,,,,, +245,14,1,6218,341,958.935,85,8,F#6,pp,8,144,90,8,,,,, +245,10,1,6214,256,959.012,,,,,,144,69,0,,,,, +245,11,1,6215,256,959.012,,,,,,144,81,0,,,,, +245,14,1,6218,341,959.236,,,,,,144,90,0,,,,, +245,15,1,6219,426,959.236,43,16,D#7,p-,10,144,99,10,,,,, +245,15,1,6219,426,959.389,,,,,,144,99,0,,,,, +245,17,1,6220,469,959.389,43,16,C5,p,11,144,72,11,,,,, +245,16,0,6221,489,959.46,,,,,,176,64,0,,,,,^ +245,12,3,6216,256,959.467,,,,,,144,59,0,,,,, +245,17,1,6220,469,959.542,,,,,,144,72,0,,,,, +245,18,1,6222,512,959.542,64,16,D#7,p,11,144,99,11,,,,, +245,19,3,6223,512,959.542,21,32,F#3,ppp,5,144,54,5,,,,, +245,19,3,6223,512,959.616,,,,,,144,54,0,,,,, +245,20,3,6224,533,959.616,21,32,C3,ppp,5,144,48,5,,,,, +245,20,3,6224,533,959.691,,,,,,144,48,0,,,,, +245,21,3,6225,554,959.691,,,,,,176,102,0,,,,, +245,18,1,6222,512,959.769,,,,,,144,99,0,,,,, +245,22,1,6226,576,959.769,64,16,D6,mp-,13,144,86,13,,,,, +245,23,3,6227,597,959.844,,,,,,176,102,0,,,,, +245,22,1,6226,576,959.996,,,,,,144,86,0,,,,, +245,24,1,6228,640,959.996,85,8,C3,mp,14,144,48,14,,,,, +245,26,3,6229,661,960.071,21,32,A#2,pp,8,144,46,8,,,,, +245,25,0,6230,661,960.071,,,,,,176,64,127,,,,,V +245,26,3,6229,661,960.145,,,,,,144,46,0,,,,, +245,27,3,6231,682,960.145,22,32,D3,pp+,9,144,50,9,,,,, +245,27,3,6231,682,960.224,,,,,,144,50,0,,,,, +245,28,3,6232,704,960.224,21,32,F#3,p-,10,144,54,10,,,,, +245,24,1,6228,640,960.298,,,,,,144,48,0,,,,, +245,28,3,6232,704,960.298,,,,,,144,54,0,,,,, +245,29,1,6233,725,960.298,,,,,,176,102,0,,,,, +245,30,3,6234,725,960.298,21,32,C2,p,11,144,36,11,,,,, +245,30,3,6234,725,960.373,,,,,,144,36,0,,,,, +245,31,1,6235,746,960.373,22,32,A4,mp,14,144,69,14,,,,, +245,32,3,6236,746,960.373,22,32,D#4,p,11,144,63,11,,,,, +245,31,1,6235,746,960.451,,,,,,144,69,0,,,,, +245,32,3,6236,746,960.451,,,,,,144,63,0,,,,, +245,33,1,6237,768,960.451,85,8,E4,mp,14,144,64,14,,,,, +245,34,3,6238,768,960.451,32,32,A#2,p+,12,144,46,12,,,,, +245,34,3,6238,768,960.565,,,,,,144,46,0,,,,, +245,35,3,6239,800,960.565,32,32,F#3,mp,14,144,54,14,,,,, +245,35,3,6239,800,960.678,,,,,,144,54,0,,,,, +245,36,3,6240,832,960.678,32,32,D#5,mp+,15,144,75,15,,,,, +245,33,1,6237,768,960.753,,,,,,144,64,0,,,,, +245,37,1,6241,853,960.753,85,8,G#4,mp,14,144,68,14,,,,, +245,36,3,6240,832,960.792,,,,,,144,75,0,,,,, +245,38,3,6242,864,960.792,21,32,A#2,mf-,16,144,46,16,,,,, +245,39,3,6243,864,960.792,32,32,D4,mf-,16,144,62,16,,,,, +245,38,3,6242,864,960.866,,,,,,144,46,0,,,,, +245,40,3,6244,885,960.866,21,32,F#4,mf,17,144,66,17,,,,, +245,39,3,6243,864,960.905,,,,,,144,62,0,,,,, +245,40,3,6244,885,960.941,,,,,,144,66,0,,,,, +245,41,3,6245,906,960.941,22,32,C2,mf+,18,144,36,18,,,,, +245,42,3,6246,906,960.941,32,32,D4,mf+,18,144,62,18,,,,, +245,41,3,6245,906,961.019,,,,,,144,36,0,,,,, +245,43,3,6247,928,961.019,32,32,D#5,f-,19,144,75,19,,,,, +245,37,1,6241,853,961.055,,,,,,144,68,0,,,,, +245,42,3,6246,906,961.055,,,,,,144,62,0,,,,, +245,44,1,6248,938,961.055,,,,,,176,102,0,,,,, +245,43,3,6247,928,961.133,,,,,,144,75,0,,,,, +245,45,3,6249,960,961.133,32,32,D4,f,20,144,62,20,,,,, +245,45,3,6249,960,961.246,,,,,,144,62,0,,,,, +245,46,0,6250,992,961.246,,,,,,176,64,0,,,,,^ +245,47,3,6251,992,961.246,32,32,C1,f,20,144,24,20,,,,, +245,47,3,6251,992,961.36,,,,,,144,24,0,,,,, +245,48,1,6252,1024,961.36,85,8,F#4,f,20,144,66,20,,,,, +245,52,3,6253,1024,961.36,,,,,,176,102,0,,,,, +245,48,1,6252,1024,961.662,,,,,,144,66,0,,,,, +245,49,3,6254,,961.662,,8,D4,f,20,144,62,20,,,,g, +245,49,3,6254,,961.712,,,,,,144,62,0,,,,, +245,50,3,6255,,961.737,,8,A#1,f,20,144,34,20,,,,g, +245,50,3,6255,,961.787,,,,,,144,34,0,,,,, +245,51,3,6256,,961.812,,8,C1,f,20,144,24,20,,,,g, +245,51,3,6256,,961.862,,,,,,144,24,0,,,,, +245,53,1,6257,1109,961.887,171,4,F#4,f,20,144,66,20,,,,, +245,54,1,6258,1109,961.887,256,4,D#5,f,20,144,75,20,,,,, +245,56,3,6259,1216,962.267,64,16,D5,ppp,5,144,74,5,,,,, +245,55,0,6260,1216,962.267,,,,,,176,64,127,,,,,V +245,56,3,6259,1216,962.494,,,,,,144,74,0,,,,, +245,57,1,6261,1280,962.494,256,4,F#4,,,,,,,,,, +245,58,1,6262,1280,962.494,256,4,D#5,,,,,,,,,, +245,59,3,6263,1280,962.494,64,16,F#2,ppp,5,144,42,5,,,,, +245,59,3,6263,1280,962.721,,,,,,144,42,0,,,,, +245,60,3,6264,1344,962.721,64,16,G3,ppp,5,144,55,5,,,,, +245,61,0,6265,1408,962.912,,,,,,176,64,0,,,,,^ +245,60,3,6264,1344,962.949,,,,,,144,55,0,,,,, +245,62,3,6266,1408,962.949,,,,,,176,102,0,,,,, +245,64,3,6267,,963.101,,8,A#1,ppp,5,144,34,5,,,,g, +245,64,3,6267,,963.151,,,,,,144,34,0,,,,, +245,65,3,6268,1472,963.176,64,16,F#1,ppp,5,144,30,5,,,,, +245,63,0,6269,1472,963.212,,,,,,176,64,127,,,,,V +246,0,0,6270,0,963.403,,,,,,,,,246,,,, +246,1,1,6271,0,963.403,192,8,E4,mf,17,144,64,17,,,,, +246,2,3,6272,0,963.403,32,32,F#1,,,,,,,,,, +246,3,4,6273,0,963.403,1536,1,C1,pppp,2,144,24,2,,,,, +245,65,3,6268,1472,963.517,,,,,,144,30,0,,,,, +246,4,3,6274,32,963.517,96,16,G2,ppp-,4,144,43,4,,,,, +245,53,1,6257,1109,963.628,,,,,,144,66,0,,,,, +246,4,3,6274,32,963.858,,,,,,144,43,0,,,,, +246,5,3,6275,128,963.858,128,8,E3,ppp-,4,144,52,4,,,,, +245,54,1,6258,1109,963.93,,,,,,144,75,0,,,,, +246,1,1,6271,0,964.085,,,,,,144,64,0,,,,, +246,6,1,6276,192,964.085,32,32,C6,mf+,18,144,84,18,,,,, +246,6,1,6276,192,964.199,,,,,,144,84,0,,,,, +246,7,1,6277,224,964.199,32,32,A#4,mf+,18,144,70,18,,,,, +246,5,3,6275,128,964.312,,,,,,144,52,0,,,,, +246,7,1,6277,224,964.312,,,,,,144,70,0,,,,, +246,8,1,6278,256,964.312,32,32,G#3,f,20,144,56,20,,,,, +246,9,3,6279,256,964.312,170,4,D4,pppp+,3,144,62,3,,,,, +246,8,1,6278,256,964.426,,,,,,144,56,0,,,,, +246,10,1,6280,288,964.426,32,32,C#6,f+,21,144,85,21,,,,, +246,10,1,6280,288,964.54,,,,,,144,85,0,,,,, +246,11,1,6281,320,964.54,,,,,,176,102,0,,,,, +246,9,3,6279,256,964.916,,,,,,144,62,0,,,,, +246,12,3,6282,426,964.916,22,32,E3,pppp,2,144,52,2,,,,, +246,12,3,6282,426,964.994,,,,,,144,52,0,,,,, +246,13,3,6283,448,964.994,21,32,D5,pppp,2,144,74,2,,,,, +246,15,0,6284,480,965.015,,,,,,176,64,0,,,,,^ +246,13,3,6283,448,965.069,,,,,,144,74,0,,,,, +246,14,3,6285,469,965.069,21,32,F#1,pppp,2,144,30,2,,,,, +246,14,3,6285,469,965.143,,,,,,144,30,0,,,,, +246,16,3,6286,490,965.143,22,32,G2,pppp,2,144,43,2,,,,, +246,16,3,6286,490,965.221,,,,,,144,43,0,,,,, +246,18,1,6287,512,965.221,,,,,,176,102,0,,,,, +246,19,3,6288,512,965.221,64,16,E6,pppp,2,144,88,2,,,,, +246,17,0,6289,512,965.315,,,,,,176,64,127,,,,,V +246,19,3,6288,512,965.449,,,,,,144,88,0,,,,, +246,20,3,6290,576,965.449,192,8,G#2,pppp,2,144,44,2,,,,, +246,21,1,6291,768,966.13,,,,,,176,102,0,,,,, +246,22,3,6292,768,966.13,768,2,G#2,,,,,,,,,, +246,23,1,6293,960,966.812,12,64,C6,pp,8,144,84,8,,,,, +246,23,1,6293,960,966.855,,,,,,144,84,0,,,,, +246,24,1,6294,972,966.855,13,64,F#6,pp,8,144,90,8,,,,, +246,24,1,6294,972,966.901,,,,,,144,90,0,,,,, +246,25,1,6295,985,966.901,13,64,E7,pp,8,144,100,8,,,,, +246,25,1,6295,985,966.947,,,,,,144,100,0,,,,, +246,26,1,6296,998,966.947,13,64,A7,pp+,9,144,105,9,,,,, +246,26,1,6296,998,966.993,,,,,,144,105,0,,,,, +246,27,1,6297,1011,966.993,13,64,G#7,pp+,9,144,104,9,,,,, +246,27,1,6297,1011,967.04,,,,,,144,104,0,,,,, +246,28,1,6298,1024,967.04,19,64,F#6,pp+,9,144,90,9,,,,, +246,28,1,6298,1024,967.107,,,,,,144,90,0,,,,, +246,29,1,6299,1043,967.107,13,64,A7,p-,10,144,105,10,,,,, +246,29,1,6299,1043,967.153,,,,,,144,105,0,,,,, +246,30,1,6300,1056,967.153,12,64,G#7,p-,10,144,104,10,,,,, +246,30,1,6300,1056,967.196,,,,,,144,104,0,,,,, +246,31,1,6301,1068,967.196,20,64,E7,p-,10,144,100,10,,,,, +246,31,1,6301,1068,967.267,,,,,,144,100,0,,,,, +246,32,1,6302,1088,967.267,14,64,G#7,p-,10,144,104,10,,,,, +246,32,1,6302,1088,967.317,,,,,,144,104,0,,,,, +246,33,1,6303,1102,967.317,14,64,A7,p,11,144,105,11,,,,, +246,33,1,6303,1102,967.366,,,,,,144,105,0,,,,, +246,34,1,6304,1116,967.366,14,64,C6,p,11,144,84,11,,,,, +246,34,1,6304,1116,967.416,,,,,,144,84,0,,,,, +246,35,1,6305,1130,967.416,29,32,F#6,p,11,144,90,11,,,,, +246,35,1,6305,1130,967.519,,,,,,144,90,0,,,,, +246,36,1,6306,1159,967.519,28,32,A7,p+,12,144,105,12,,,,, +246,36,1,6306,1159,967.618,,,,,,144,105,0,,,,, +246,37,1,6307,1187,967.618,29,32,C6,p+,12,144,84,12,,,,, +246,38,1,6308,1187,967.618,32,32,F#6,p+,12,144,90,12,,,,, +246,37,1,6307,1187,967.721,,,,,,144,84,0,,,,, +246,39,1,6309,1216,967.721,21,32,E7,mp-,13,144,100,13,,,,, +246,38,1,6308,1187,967.732,,,,,,144,90,0,,,,, +246,39,1,6309,1216,967.796,,,,,,144,100,0,,,,, +246,40,1,6310,1237,967.796,21,32,A7,mp-,13,144,105,13,,,,, +246,40,1,6310,1237,967.87,,,,,,144,105,0,,,,, +246,41,1,6311,1258,967.87,22,32,G#7,mp,14,144,104,14,,,,, +246,41,1,6311,1258,967.949,,,,,,144,104,0,,,,, +246,42,1,6312,1280,967.949,25,32,C6,mp,14,144,84,14,,,,, +246,43,0,6313,1305,967.957,,,,,,176,64,0,,,,,^ +246,42,1,6312,1280,968.037,,,,,,144,84,0,,,,, +246,44,1,6314,1305,968.037,26,32,E7,mp,14,144,100,14,,,,, +246,44,1,6314,1305,968.13,,,,,,144,100,0,,,,, +246,45,1,6315,1331,968.13,13,64,G#7,mp,14,144,104,14,,,,, +246,45,1,6315,1331,968.176,,,,,,144,104,0,,,,, +246,46,1,6316,1344,968.176,21,32,F#6,pp,8,144,90,8,,,,, +246,46,1,6316,1344,968.25,,,,,,144,90,0,,,,, +246,48,1,6317,1365,968.25,21,32,G#4,p-,10,144,68,10,,,,, +246,47,0,6318,1344,968.257,,,,,,176,64,127,,,,,V +246,48,1,6317,1365,968.325,,,,,,144,68,0,,,,, +246,49,1,6319,1386,968.325,22,32,F#6,p+,12,144,90,12,,,,, +246,49,1,6319,1386,968.403,,,,,,144,90,0,,,,, +246,50,1,6320,1408,968.403,21,32,C5,mp,14,144,72,14,,,,, +246,50,1,6320,1408,968.478,,,,,,144,72,0,,,,, +246,51,1,6321,1429,968.478,21,32,A5,mf-,16,144,81,16,,,,, +246,51,1,6321,1429,968.552,,,,,,144,81,0,,,,, +246,52,1,6322,1450,968.552,22,32,C5,mf+,18,144,72,18,,,,, +246,52,1,6322,1450,968.63,,,,,,144,72,0,,,,, +246,53,1,6323,1472,968.63,64,16,E4,f,20,144,64,20,,,,, +246,54,0,6324,1535,968.818,,,,,,176,64,0,,,,,^ +246,53,1,6323,1472,968.858,,,,,,144,64,0,,,,, +247,0,0,6325,0,968.858,,,,,,,,,247,,,, +247,1,0,6326,0,968.858,,,,,,,,,,5985,,, +247,2,0,6327,0,968.858,,,,,,,,,,,51,, +247,5,1,6328,0,968.858,64,16,E5,pp,8,144,76,8,,,,, +247,6,3,6329,,968.858,,8,D6,p,11,144,86,11,,,,g, +247,6,3,6329,,968.908,,,,,,144,86,0,,,,, +246,3,4,6273,0,968.933,,,,,,144,24,0,,,,, +247,7,3,6330,,968.933,,8,F5,p,11,144,77,11,,,,g, +246,20,3,6290,576,968.933,,,,,,144,44,0,,,,, +247,7,3,6330,,968.983,,,,,,144,77,0,,,,, +247,4,1,6331,,969.008,,8,C8,pp,8,144,108,8,,,,g, +247,4,1,6331,,969.058,,,,,,144,108,0,,,,, +247,8,3,6332,0,969.083,256,4,C#5,p,11,144,73,11,,,,, +247,3,0,6333,0,969.118,,,,,,176,64,127,,,,,V +247,5,1,6328,0,969.152,,,,,,144,76,0,,,,, +247,9,1,6334,64,969.377,21,32,C8,p-,10,144,108,10,,,,, +247,9,1,6334,64,969.473,,,,,,144,108,0,,,,, +247,10,1,6335,85,969.473,85,8,E5,p-,10,144,76,10,,,,, +247,10,1,6335,85,969.864,,,,,,144,76,0,,,,, +247,11,1,6336,170,969.864,22,32,G#4,p+,12,144,68,12,,,,, +247,11,1,6336,170,969.965,,,,,,144,68,0,,,,, +247,12,1,6337,192,969.965,21,32,C#7,p+,12,144,97,12,,,,, +247,12,1,6337,192,970.062,,,,,,144,97,0,,,,, +247,13,1,6338,213,970.062,21,32,C8,mp-,13,144,108,13,,,,, +247,13,1,6338,213,970.158,,,,,,144,108,0,,,,, +247,14,1,6339,234,970.158,22,32,C#7,mp-,13,144,97,13,,,,, +247,8,3,6332,0,970.259,,,,,,144,73,0,,,,, +247,14,1,6339,234,970.259,,,,,,144,97,0,,,,, +247,15,1,6340,256,970.259,48,32,E5,mp-,13,144,76,13,,,,, +247,16,3,6341,256,970.259,256,4,A7,mp-,13,144,105,13,,,,, +247,15,1,6340,256,970.48,,,,,,144,76,0,,,,, +247,17,1,6342,304,970.48,16,64,G#4,mp,14,144,68,14,,,,, +247,17,1,6342,304,970.553,,,,,,144,68,0,,,,, +247,18,1,6343,320,970.553,16,64,C#7,mp,14,144,97,14,,,,, +247,18,1,6343,320,970.627,,,,,,144,97,0,,,,, +247,19,1,6344,336,970.627,16,64,A#7,mp+,15,144,106,15,,,,, +247,19,1,6344,336,970.7,,,,,,144,106,0,,,,, +247,20,1,6345,352,970.7,16,64,C8,mp+,15,144,108,15,,,,, +247,20,1,6345,352,970.774,,,,,,144,108,0,,,,, +247,21,1,6346,368,970.774,16,64,C#7,mp+,15,144,97,15,,,,, +247,21,1,6346,368,970.847,,,,,,144,97,0,,,,, +247,22,1,6347,384,970.847,32,32,C8,mf-,16,144,108,16,,,,, +247,22,1,6347,384,970.994,,,,,,144,108,0,,,,, +247,23,1,6348,416,970.994,16,64,C#7,mf-,16,144,97,16,,,,, +247,23,1,6348,416,971.068,,,,,,144,97,0,,,,, +247,24,1,6349,432,971.068,32,32,E4,mf-,16,144,64,16,,,,, +247,24,1,6349,432,971.215,,,,,,144,64,0,,,,, +247,25,1,6350,464,971.215,16,64,G#3,mf,17,144,56,17,,,,, +247,25,1,6350,464,971.289,,,,,,144,56,0,,,,, +247,26,1,6351,480,971.289,16,64,C#6,mf,17,144,85,17,,,,, +247,26,1,6351,480,971.362,,,,,,144,85,0,,,,, +247,27,1,6352,496,971.362,16,64,A#6,mf,17,144,94,17,,,,, +247,16,3,6341,256,971.436,,,,,,144,105,0,,,,, +247,27,1,6352,496,971.436,,,,,,144,94,0,,,,, +247,28,1,6353,,971.436,,8,D6,mp,14,144,86,14,,,,g, +247,28,1,6353,,971.486,,,,,,144,86,0,,,,, +247,29,1,6354,,971.511,,8,F5,mp,14,144,77,14,,,,g, +247,29,1,6354,,971.561,,,,,,144,77,0,,,,, +247,30,1,6355,512,971.586,192,8,C#5,mp,14,144,73,14,,,,, +247,34,3,6356,512,971.586,128,8,E3,mp,14,144,52,14,,,,, +247,35,3,6357,640,972.174,16,64,C#4,mf,17,144,61,17,,,,, +247,35,3,6357,640,972.247,,,,,,144,61,0,,,,, +247,36,3,6358,656,972.247,16,64,C5,mf+,18,144,72,18,,,,, +247,34,3,6356,512,972.249,,,,,,144,52,0,,,,, +247,36,3,6358,656,972.321,,,,,,144,72,0,,,,, +247,37,3,6359,672,972.321,32,32,C#4,mf+,18,144,61,18,,,,, +247,37,3,6359,672,972.468,,,,,,144,61,0,,,,, +247,38,1,6360,704,972.468,64,16,A4,f-,19,144,69,19,,,,, +247,39,3,6361,704,972.468,48,32,E3,f-,19,144,52,19,,,,, +247,30,1,6355,512,972.543,,,,,,144,73,0,,,,, +247,39,3,6361,704,972.689,,,,,,144,52,0,,,,, +247,40,3,6362,752,972.689,16,64,G#2,f,20,144,44,20,,,,, +247,38,1,6360,704,972.762,,,,,,144,69,0,,,,, +247,40,3,6362,752,972.762,,,,,,144,44,0,,,,, +247,41,1,6363,768,972.762,64,16,A6,mp,14,144,93,14,,,,, +247,42,3,6364,768,972.762,256,4,C#2,mf,17,144,37,17,,,,, +247,41,1,6363,768,973.056,,,,,,144,93,0,,,,, +247,43,1,6365,832,973.056,21,32,F#5,mp,14,144,78,14,,,,, +247,43,1,6365,832,973.153,,,,,,144,78,0,,,,, +247,44,1,6366,853,973.153,21,32,G#3,mp+,15,144,56,15,,,,, +247,44,1,6366,853,973.249,,,,,,144,56,0,,,,, +247,45,1,6367,874,973.249,22,32,F#5,mf,17,144,78,17,,,,, +247,45,1,6367,874,973.35,,,,,,144,78,0,,,,, +247,46,1,6368,896,973.35,21,32,C4,mf+,18,144,60,18,,,,, +247,46,1,6368,896,973.447,,,,,,144,60,0,,,,, +247,47,1,6369,917,973.447,21,32,A4,f-,19,144,69,19,,,,, +247,47,1,6369,917,973.543,,,,,,144,69,0,,,,, +247,48,0,6370,938,973.543,,,,,,176,64,0,,,,,^ +247,49,1,6371,938,973.543,22,32,C4,f+,21,144,60,21,,,,, +247,49,1,6371,938,973.644,,,,,,144,60,0,,,,, +247,50,1,6372,960,973.644,16,64,E3,ff,22,144,52,22,,,,, +247,51,1,6373,960,973.644,16,64,C5,p,11,144,72,11,,,,, +247,50,1,6372,960,973.718,,,,,,144,52,0,,,,, +247,51,1,6373,960,973.718,,,,,,144,72,0,,,,, +247,52,1,6374,976,973.718,16,64,C#4,p,11,144,61,11,,,,, +247,52,1,6374,976,973.792,,,,,,144,61,0,,,,, +247,53,1,6375,992,973.792,16,64,E2,p,11,144,40,11,,,,, +247,53,1,6375,992,973.865,,,,,,144,40,0,,,,, +247,54,1,6376,1008,973.865,16,64,G#1,p,11,144,32,11,,,,, +247,55,0,6377,1008,973.865,,,,,,,,,,5986,,, +247,42,3,6364,768,973.939,,,,,,144,37,0,,,,, +247,54,1,6376,1008,973.939,,,,,,144,32,0,,,,, +247,57,1,6378,1024,973.939,256,4,C6,pp,8,144,84,8,,,,, +247,58,3,6379,1024,973.939,512,2,C#2,mf,17,144,37,17,,,,, +247,56,0,6380,1024,973.939,,,,,,176,64,127,,,,,V +247,31,3,6381,,975.115,,8,C#4,mp,14,144,61,14,,,,g, +247,31,3,6381,,975.165,,,,,,144,61,0,,,,, +247,57,1,6378,1024,975.19,,,,,,144,84,0,,,,, +247,32,3,6382,,975.19,,8,C6,mp,14,144,84,14,,,,g, +247,33,3,6383,,975.265,,8,A#5,mp,14,144,82,14,,,,g, +247,33,3,6383,,975.315,,,,,,144,82,0,,,,, +247,32,3,6382,,975.34,,,,,,144,84,0,,,,, +247,59,1,6384,,975.34,,8,D6,mp,14,144,86,14,,,,g, +247,59,1,6384,,975.39,,,,,,144,86,0,,,,, +247,60,1,6385,,975.415,,8,F5,mp,14,144,77,14,,,,g, +247,60,1,6385,,975.465,,,,,,144,77,0,,,,, +247,61,1,6386,1280,975.49,42,16,C#5,mp,14,144,73,14,,,,, +247,61,1,6386,1280,975.683,,,,,,144,73,0,,,,, +247,62,1,6387,1322,975.683,32,32,C#5,pp,8,144,73,8,,,,, +247,62,1,6387,1322,975.83,,,,,,144,73,0,,,,, +247,63,1,6388,1354,975.83,22,32,E4,pp+,9,144,64,9,,,,, +247,63,1,6388,1354,975.931,,,,,,144,64,0,,,,, +247,64,1,6389,1376,975.931,21,32,A#5,p-,10,144,82,10,,,,, +247,64,1,6389,1376,976.028,,,,,,144,82,0,,,,, +247,65,1,6390,1397,976.028,21,32,G#3,p,11,144,56,11,,,,, +247,65,1,6390,1397,976.124,,,,,,144,56,0,,,,, +247,66,1,6391,1418,976.124,32,32,E4,p+,12,144,64,12,,,,, +247,66,1,6391,1418,976.271,,,,,,144,64,0,,,,, +247,67,1,6392,1450,976.271,22,32,G#3,mp-,13,144,56,13,,,,, +247,67,1,6392,1450,976.372,,,,,,144,56,0,,,,, +247,68,1,6393,1472,976.372,21,32,A#5,mp,14,144,82,14,,,,, +247,68,1,6393,1472,976.469,,,,,,144,82,0,,,,, +247,69,1,6394,1493,976.469,,,,,,176,102,0,,,,, +248,0,0,6395,0,976.667,,,,,,,,,248,,,, +248,1,1,6396,,976.667,,8,D7,mf,17,144,98,17,,,,g, +248,1,1,6396,,976.717,,,,,,144,98,0,,,,, +248,2,1,6397,,976.742,,8,F6,mf,17,144,89,17,,,,g, +248,2,1,6397,,976.792,,,,,,144,89,0,,,,, +248,3,1,6398,0,976.817,128,8,C#6,mf+,18,144,85,18,,,,, +248,4,3,6399,0,976.817,768,2,C#2,,,,,,,,,, +248,3,1,6398,0,977.405,,,,,,144,85,0,,,,, +248,5,1,6400,128,977.405,32,32,A7,f+,21,144,105,21,,,,, +248,5,1,6400,128,977.552,,,,,,144,105,0,,,,, +248,6,1,6401,160,977.552,32,32,B2,ff,22,144,47,22,,,,, +248,6,1,6401,160,977.699,,,,,,144,47,0,,,,, +248,7,1,6402,192,977.699,21,32,F#7,ff,22,144,102,22,,,,, +248,7,1,6402,192,977.795,,,,,,144,102,0,,,,, +248,8,1,6403,213,977.795,21,32,G#1,ff,22,144,32,22,,,,, +248,8,1,6403,213,977.892,,,,,,144,32,0,,,,, +248,9,1,6404,234,977.892,22,32,F#7,ff,22,144,102,22,,,,, +248,9,1,6404,234,977.993,,,,,,144,102,0,,,,, +248,10,1,6405,256,977.993,21,32,C2,ff,22,144,36,22,,,,, +248,10,1,6405,256,978.09,,,,,,144,36,0,,,,, +248,11,1,6406,277,978.09,21,32,A6,ff,22,144,93,22,,,,, +248,11,1,6406,277,978.186,,,,,,144,93,0,,,,, +248,12,1,6407,298,978.186,22,32,C2,ff,22,144,36,22,,,,, +248,12,1,6407,298,978.287,,,,,,144,36,0,,,,, +248,13,1,6408,320,978.287,64,16,E1,ff,22,144,28,22,,,,, +248,13,1,6408,320,978.581,,,,,,144,28,0,,,,, +248,14,0,6409,384,978.581,,,,,,176,64,0,,,,,^ +248,15,1,6410,384,978.581,128,8,G#2,ff,22,144,44,22,,,,, +248,15,1,6410,384,979.169,,,,,,144,44,0,,,,, +248,17,1,6411,512,979.169,128,8,C#5,p,11,144,73,11,,,,, +248,16,0,6412,512,979.169,,,,,,176,64,127,,,,,V +248,17,1,6411,512,979.758,,,,,,144,73,0,,,,, +248,18,1,6413,640,979.758,85,8,A6,mp,14,144,93,14,,,,, +248,18,1,6413,640,980.148,,,,,,144,93,0,,,,, +248,19,1,6414,725,980.148,43,16,C#4,mf-,16,144,61,16,,,,, +248,19,1,6414,725,980.346,,,,,,144,61,0,,,,, +248,20,1,6415,768,980.346,21,32,A6,mf,17,144,93,17,,,,, +248,21,3,6416,768,980.346,192,8,C#2,,,,,,,,,, +248,20,1,6415,768,980.442,,,,,,144,93,0,,,,, +248,22,1,6417,789,980.442,32,32,D5,mf,17,144,74,17,,,,, +248,22,1,6417,789,980.59,,,,,,144,74,0,,,,, +248,23,1,6418,821,980.59,32,32,C#4,mf+,18,144,61,18,,,,, +248,23,1,6418,821,980.737,,,,,,144,61,0,,,,, +248,24,1,6419,853,980.737,21,32,A5,f-,19,144,81,19,,,,, +248,24,1,6419,853,980.833,,,,,,144,81,0,,,,, +248,25,1,6420,874,980.833,22,32,D5,f-,19,144,74,19,,,,, +247,58,3,6379,1024,980.928,,,,,,144,37,0,,,,, +248,25,1,6420,874,980.934,,,,,,144,74,0,,,,, +248,26,1,6421,896,980.934,21,32,B3,f,20,144,59,20,,,,, +248,27,1,6422,896,980.934,32,32,A5,f,20,144,81,20,,,,, +248,26,1,6421,896,981.031,,,,,,144,59,0,,,,, +248,28,1,6423,917,981.031,21,32,F4,f,20,144,65,20,,,,, +248,29,1,6424,917,981.031,32,32,D5,f,20,144,74,20,,,,, +248,27,1,6422,896,981.081,,,,,,144,81,0,,,,, +248,28,1,6423,917,981.127,,,,,,144,65,0,,,,, +248,30,1,6425,938,981.127,86,8,B3,f,20,144,59,20,,,,, +248,29,1,6424,917,981.178,,,,,,144,74,0,,,,, +248,31,3,6426,960,981.228,32,32,A4,ff,22,144,69,22,,,,, +248,31,3,6426,960,981.375,,,,,,144,69,0,,,,, +248,32,3,6427,992,981.375,32,32,C#2,ff,22,144,37,22,,,,, +248,30,1,6425,938,981.522,,,,,,144,59,0,,,,, +248,32,3,6427,992,981.522,,,,,,144,37,0,,,,, +248,33,1,6428,1024,981.522,,,,,,176,102,0,,,,, +248,34,3,6429,1024,981.522,512,2,B1,ff,22,144,35,22,,,,, +248,35,3,6430,1024,981.522,512,2,C#2,ff,22,144,37,22,,,,, +248,36,3,6431,1024,981.522,512,2,A4,ff,22,144,69,22,,,,, +248,37,1,6432,1066,981.715,22,32,C#5,p,11,144,73,11,,,,, +248,37,1,6432,1066,981.817,,,,,,144,73,0,,,,, +248,38,1,6433,1088,981.817,21,32,E4,p,11,144,64,11,,,,, +248,38,1,6433,1088,981.913,,,,,,144,64,0,,,,, +248,39,1,6434,1109,981.913,21,32,G#3,mp-,13,144,56,13,,,,, +248,39,1,6434,1109,982.01,,,,,,144,56,0,,,,, +248,40,1,6435,1130,982.01,22,32,A#5,mp+,15,144,82,15,,,,, +248,40,1,6435,1130,982.111,,,,,,144,82,0,,,,, +248,41,1,6436,1152,982.111,32,32,G#3,mf,17,144,56,17,,,,, +248,42,1,6437,1152,982.111,32,32,E4,mf,17,144,64,17,,,,, +248,43,1,6438,1184,982.258,32,32,C#5,mf,17,144,73,17,,,,, +248,44,1,6439,1184,982.258,32,32,A#5,mf,17,144,82,17,,,,, +248,43,1,6438,1184,982.405,,,,,,144,73,0,,,,, +248,44,1,6439,1184,982.405,,,,,,144,82,0,,,,, +248,45,1,6440,1216,982.405,,,,,,176,102,0,,,,, +248,41,1,6436,1152,982.483,,,,,,144,56,0,,,,, +248,42,1,6437,1152,982.483,,,,,,144,64,0,,,,, +248,46,1,6441,1280,982.699,,,,,,176,102,0,,,,, +248,47,1,6442,1312,982.846,32,32,G#2,ff,22,144,44,22,,,,, +248,47,1,6442,1312,982.993,,,,,,144,44,0,,,,, +248,48,1,6443,1344,982.993,64,16,F#6,ff,22,144,90,22,,,,, +248,48,1,6443,1344,983.287,,,,,,144,90,0,,,,, +248,49,1,6444,1408,983.287,85,8,A5,p,11,144,81,11,,,,, +248,49,1,6444,1408,983.678,,,,,,144,81,0,,,,, +248,50,1,6445,1493,983.678,43,16,C#4,mp,14,144,61,14,,,,, +248,50,1,6445,1493,983.875,,,,,,144,61,0,,,,, +249,0,0,6446,0,983.875,,,,,,,,,249,,,, +249,1,1,6447,0,983.875,21,32,A5,mp+,15,144,81,15,,,,, +249,2,3,6448,0,983.875,,,,,,176,102,0,,,,, +249,3,4,6449,0,983.875,,,,,,176,102,0,,,,, +249,1,1,6447,0,983.972,,,,,,144,81,0,,,,, +249,4,1,6450,21,983.972,32,32,D5,mf-,16,144,74,16,,,,, +248,34,3,6429,1024,984.1,,,,,,144,35,0,,,,, +248,35,3,6430,1024,984.1,,,,,,144,37,0,,,,, +248,36,3,6431,1024,984.1,,,,,,144,69,0,,,,, +249,4,1,6450,21,984.119,,,,,,144,74,0,,,,, +249,5,1,6451,53,984.119,32,32,C#3,mf-,16,144,49,16,,,,, +249,5,1,6451,53,984.266,,,,,,144,49,0,,,,, +249,6,1,6452,85,984.266,21,32,A5,mf,17,144,81,17,,,,, +249,6,1,6452,85,984.362,,,,,,144,81,0,,,,, +249,7,1,6453,106,984.362,22,32,D5,mf+,18,144,74,18,,,,, +249,7,1,6453,106,984.464,,,,,,144,74,0,,,,, +249,8,1,6454,128,984.464,21,32,B2,f-,19,144,47,19,,,,, +249,9,1,6455,128,984.464,32,32,A5,f-,19,144,81,19,,,,, +249,8,1,6454,128,984.56,,,,,,144,47,0,,,,, +249,10,1,6456,149,984.56,21,32,F4,f-,19,144,65,19,,,,, +249,9,1,6455,128,984.611,,,,,,144,81,0,,,,, +249,10,1,6456,149,984.657,,,,,,144,65,0,,,,, +249,11,1,6457,170,984.657,43,16,B2,f,20,144,47,20,,,,, +249,12,1,6458,213,984.854,43,16,F4,f,20,144,65,20,,,,, +249,11,1,6457,170,985.004,,,,,,144,47,0,,,,, +249,13,1,6459,256,985.052,21,32,F4,,,,,,,,,, +249,12,1,6458,213,985.148,,,,,,144,65,0,,,,, +249,14,1,6460,277,985.148,43,16,B2,mp-,13,144,47,13,,,,, +249,14,1,6460,277,985.346,,,,,,144,47,0,,,,, +249,15,0,6461,320,985.346,,,,,,176,64,0,,,,,^ +249,16,1,6462,320,985.346,64,16,F3,pp,8,144,53,8,,,,, +249,16,1,6462,320,985.64,,,,,,144,53,0,,,,, +249,17,1,6463,384,985.64,,,,,,176,102,0,,,,, +249,18,3,6464,384,985.64,128,8,B1,ff,22,144,35,22,,,,, +249,19,3,6465,384,985.64,128,8,C#2,ff,22,144,37,22,,,,, +249,20,3,6466,384,985.64,128,8,A4,ff,22,144,69,22,,,,, +249,22,1,6467,512,986.228,,,,,,176,102,0,,,,, +249,23,3,6468,512,986.228,128,8,B1,,,,,,,,,, +249,24,3,6469,512,986.228,128,8,C#2,,,,,,,,,, +249,25,3,6470,512,986.228,128,8,A4,,,,,,,,,, +249,21,0,6471,512,986.228,,,,,,176,64,127,,,,,V +249,26,1,6472,533,986.325,32,32,C#6,p,11,144,85,11,,,,, +249,26,1,6472,533,986.472,,,,,,144,85,0,,,,, +249,27,1,6473,565,986.472,32,32,C7,p+,12,144,96,12,,,,, +249,27,1,6473,565,986.619,,,,,,144,96,0,,,,, +249,28,1,6474,597,986.619,21,32,C#6,mp-,13,144,85,13,,,,, +249,28,1,6474,597,986.715,,,,,,144,85,0,,,,, +249,29,0,6475,618,986.715,,,,,,176,64,0,,,,,^ +249,30,1,6476,618,986.715,32,32,C7,mp-,13,144,96,13,,,,, +249,18,3,6464,384,986.817,,,,,,144,35,0,,,,, +249,19,3,6465,384,986.817,,,,,,144,37,0,,,,, +249,20,3,6466,384,986.817,,,,,,144,69,0,,,,, +249,31,3,6477,640,986.817,,,,,,176,102,0,,,,, +249,30,1,6476,618,986.862,,,,,,144,96,0,,,,, +249,32,1,6478,650,986.862,32,32,C#6,mp,14,144,85,14,,,,, +249,32,1,6478,650,987.01,,,,,,144,85,0,,,,, +249,33,1,6479,682,987.01,86,8,E4,mp+,15,144,64,15,,,,, +249,33,1,6479,682,987.405,,,,,,144,64,0,,,,, +249,35,1,6480,768,987.405,16,64,C#3,p,11,144,49,11,,,,, +249,36,3,6481,768,987.405,,,,,,176,102,0,,,,, +249,37,4,6482,768,987.405,,,,,,176,102,0,,,,, +249,34,0,6483,768,987.405,,,,,,176,64,127,,,,,V +249,35,1,6480,768,987.478,,,,,,144,49,0,,,,, +249,38,1,6484,784,987.478,24,64,D4,p+,12,144,62,12,,,,, +249,38,1,6484,784,987.589,,,,,,144,62,0,,,,, +249,39,1,6485,808,987.589,16,64,C#3,mp-,13,144,49,13,,,,, +249,39,1,6485,808,987.662,,,,,,144,49,0,,,,, +249,40,1,6486,824,987.662,16,64,D4,mp,14,144,62,14,,,,, +249,40,1,6486,824,987.736,,,,,,144,62,0,,,,, +249,41,1,6487,840,987.736,16,64,C#3,mp+,15,144,49,15,,,,, +249,42,1,6488,840,987.736,16,64,F3,mp+,15,144,53,15,,,,, +249,41,1,6487,840,987.809,,,,,,144,49,0,,,,, +249,42,1,6488,840,987.809,,,,,,144,53,0,,,,, +249,43,1,6489,856,987.809,24,64,A4,mf-,16,144,69,16,,,,, +249,43,1,6489,856,987.919,,,,,,144,69,0,,,,, +249,44,1,6490,880,987.919,16,64,F3,mf,17,144,53,17,,,,, +249,44,1,6490,880,987.993,,,,,,144,53,0,,,,, +249,45,1,6491,896,987.993,16,64,A5,mf+,18,144,81,18,,,,, +249,45,1,6491,896,988.067,,,,,,144,81,0,,,,, +249,46,1,6492,912,988.067,16,64,B2,f-,19,144,47,19,,,,, +249,47,1,6493,912,988.067,16,64,C#3,f-,19,144,49,19,,,,, +249,46,1,6492,912,988.14,,,,,,144,47,0,,,,, +249,47,1,6493,912,988.14,,,,,,144,49,0,,,,, +249,48,1,6494,928,988.14,24,64,A5,f-,19,144,81,19,,,,, +249,48,1,6494,928,988.25,,,,,,144,81,0,,,,, +249,49,1,6495,952,988.25,24,64,B2,f+,21,144,47,21,,,,, +249,50,1,6496,952,988.25,16,64,C#3,f+,21,144,49,21,,,,, +249,51,1,6497,952,988.25,16,64,F3,f+,21,144,53,21,,,,, +249,50,1,6496,952,988.324,,,,,,144,49,0,,,,, +249,51,1,6497,952,988.324,,,,,,144,53,0,,,,, +249,49,1,6495,952,988.361,,,,,,144,47,0,,,,, +249,52,1,6498,976,988.361,48,32,B1,ff,22,144,35,22,,,,, +249,54,1,6499,1024,988.581,38,32,E6,pp,8,144,88,8,,,,, +249,55,3,6500,,988.581,,8,F2,p,11,144,41,11,,,,g, +249,55,3,6500,,988.631,,,,,,144,41,0,,,,, +249,53,1,6501,,988.656,,8,C4,p,11,144,60,11,,,,g, +249,56,3,6502,,988.656,,8,A6,p,11,144,93,11,,,,g, +249,53,1,6501,,988.706,,,,,,144,60,0,,,,, +249,56,3,6502,,988.706,,,,,,144,93,0,,,,, +249,54,1,6499,1024,988.756,,,,,,144,88,0,,,,, +249,57,3,6503,1024,988.806,512,2,D#4,p,11,144,63,11,,,,, +249,58,3,6504,1024,988.806,512,2,G4,p,11,144,67,11,,,,, +249,59,4,6505,1024,988.806,512,2,D4,ff,22,144,62,22,,,,, +249,52,1,6498,976,988.956,,,,,,144,35,0,,,,, +249,60,1,6506,1062,988.981,38,32,G#6,pp+,9,144,92,9,,,,, +249,60,1,6506,1062,989.155,,,,,,144,92,0,,,,, +249,61,1,6507,1100,989.155,26,32,A6,p,11,144,93,11,,,,, +249,61,1,6507,1100,989.275,,,,,,144,93,0,,,,, +249,62,1,6508,1126,989.275,77,16,E6,p,11,144,88,11,,,,, +249,62,1,6508,1126,989.629,,,,,,144,88,0,,,,, +249,63,1,6509,1203,989.629,77,16,G#6,p-,10,144,92,10,,,,, +249,63,1,6509,1203,989.983,,,,,,144,92,0,,,,, +249,64,1,6510,1280,989.983,256,4,C3,pp,8,144,48,8,,,,, +249,65,1,6511,1280,989.983,256,4,E6,pp,8,144,88,8,,,,, +249,66,1,6512,1280,989.983,256,4,G#6,pp,8,144,92,8,,,,, +250,0,0,6513,0,991.159,,,,,,,,,250,,,, +250,1,1,6514,0,991.159,,,,,,176,102,0,,,,, +250,2,3,6515,0,991.159,,,,,,176,102,0,,,,, +250,3,4,6516,0,991.159,256,4,D4,,,,,,,,,, +249,57,3,6503,1024,991.309,,,,,,144,63,0,,,,, +249,58,3,6504,1024,991.309,,,,,,144,67,0,,,,, +249,64,1,6510,1280,991.309,,,,,,144,48,0,,,,, +249,65,1,6511,1280,991.309,,,,,,144,88,0,,,,, +249,66,1,6512,1280,991.309,,,,,,144,92,0,,,,, +250,4,3,6517,256,992.336,512,2,A#1,ff,22,144,34,22,,,,, +250,5,4,6518,256,992.336,170,4,D4,,,,,,,,,, +250,6,0,6519,426,993.117,,,,,,176,64,0,,,,,^ +250,7,4,6520,426,993.117,86,8,C#3,p,11,144,49,11,,,,, +250,8,4,6521,426,993.117,128,8,D4,p,11,144,62,11,,,,, +249,59,4,6505,1024,993.267,,,,,,144,62,0,,,,, +250,7,4,6520,426,993.512,,,,,,144,49,0,,,,, +250,9,1,6522,512,993.512,,,,,,176,102,0,,,,, +250,10,4,6523,512,993.512,,,,,,176,102,0,,,,, +250,8,4,6521,426,993.705,,,,,,144,62,0,,,,, +250,11,4,6524,682,994.293,,,,,,176,102,0,,,,, +250,12,0,6525,682,994.293,,,,,,,,,,5987,,, +250,4,3,6517,256,994.689,,,,,,144,34,0,,,,, +250,14,3,6526,768,994.689,768,2,A#1,ff,22,144,34,22,,,,, +250,13,0,6527,768,994.689,,,,,,176,64,127,,,,,V +250,15,4,6528,,995.079,,8,F2,p,11,144,41,11,,,,g, +250,15,4,6528,,995.129,,,,,,144,41,0,,,,, +250,16,4,6529,,995.154,,8,A6,p,11,144,93,11,,,,g, +250,16,4,6529,,995.204,,,,,,144,93,0,,,,, +250,17,4,6530,853,995.229,0,8,C4,p,11,,,,,,,, +250,18,4,6531,853,995.229,171,4,D#4,p,11,144,63,11,,,,, +250,19,4,6532,853,995.229,256,4,G4,p,11,144,67,11,,,,, +250,18,4,6531,853,996.015,,,,,,144,63,0,,,,, +250,20,4,6533,1024,996.015,,,,,,176,102,0,,,,, +250,19,4,6532,853,996.406,,,,,,144,67,0,,,,, +250,21,1,6534,1280,997.192,,,,,,176,102,0,,,,, +250,22,4,6535,1280,997.192,256,4,F#3,p,11,144,54,11,,,,, +250,23,1,6536,1382,997.66,154,8,C3,p,11,144,48,11,,,,, +250,24,1,6537,1382,997.66,128,8,E6,p,11,144,88,11,,,,, +250,25,1,6538,1382,997.66,128,8,G#6,p,11,144,92,11,,,,, +250,14,3,6526,768,998.218,,,,,,144,34,0,,,,, +250,24,1,6537,1382,998.249,,,,,,144,88,0,,,,, +250,25,1,6538,1382,998.249,,,,,,144,92,0,,,,, +250,22,4,6535,1280,998.368,,,,,,144,54,0,,,,, +250,23,1,6536,1382,998.368,,,,,,144,48,0,,,,, +251,0,0,6539,0,998.368,,,,,,,,,251,,,, +251,1,1,6540,0,998.368,307,4,E6,mp,14,144,88,14,,,,, +251,2,1,6541,0,998.368,256,4,G#6,mp,14,144,92,14,,,,, +251,3,1,6542,0,998.368,256,4,A6,mp,14,144,93,14,,,,, +251,4,3,6543,0,998.368,,,,,,176,102,0,,,,, +251,2,1,6541,0,999.544,,,,,,144,92,0,,,,, +251,3,1,6542,0,999.544,,,,,,144,93,0,,,,, +251,1,1,6540,0,999.779,,,,,,144,88,0,,,,, +251,5,1,6544,307,999.779,205,4,E6,p-,10,144,88,10,,,,, +251,6,1,6545,307,999.779,256,4,G#6,p-,10,144,92,10,,,,, +251,7,1,6546,307,999.779,256,4,A6,p-,10,144,93,10,,,,, +251,8,3,6547,448,1000.427,64,16,G#2,ff,22,144,44,22,,,,, +251,5,1,6544,307,1000.721,,,,,,144,88,0,,,,, +251,8,3,6547,448,1000.721,,,,,,144,44,0,,,,, +251,9,1,6548,512,1000.721,384,4,A4,pp,8,144,69,8,,,,, +251,10,1,6549,512,1000.721,256,4,F#6,pp,8,144,90,8,,,,, +251,11,3,6550,512,1000.721,128,8,A#3,ff,22,144,58,22,,,,, +251,6,1,6545,307,1000.955,,,,,,144,92,0,,,,, +251,7,1,6546,307,1000.955,,,,,,144,93,0,,,,, +251,11,3,6550,512,1001.309,,,,,,144,58,0,,,,, +251,12,3,6551,640,1001.309,16,64,D4,f,20,144,62,20,,,,, +251,12,3,6551,640,1001.383,,,,,,144,62,0,,,,, +251,13,3,6552,656,1001.383,16,64,B2,f+,21,144,47,21,,,,, +251,14,3,6553,656,1001.383,16,64,C#3,f+,21,144,49,21,,,,, +251,13,3,6552,656,1001.456,,,,,,144,47,0,,,,, +251,14,3,6553,656,1001.456,,,,,,144,49,0,,,,, +251,15,3,6554,672,1001.456,24,64,A5,f+,21,144,81,21,,,,, +251,15,3,6554,672,1001.567,,,,,,144,81,0,,,,, +251,16,3,6555,696,1001.567,24,64,B2,ff,22,144,47,22,,,,, +251,17,3,6556,696,1001.567,16,64,C#3,ff,22,144,49,22,,,,, +251,18,3,6557,696,1001.567,16,64,F3,ff,22,144,53,22,,,,, +251,17,3,6556,696,1001.64,,,,,,144,49,0,,,,, +251,18,3,6557,696,1001.64,,,,,,144,53,0,,,,, +251,16,3,6555,696,1001.677,,,,,,144,47,0,,,,, +251,19,3,6558,720,1001.677,48,32,B1,ff+,23,144,35,23,,,,, +251,10,1,6549,512,1001.897,,,,,,144,90,0,,,,, +251,19,3,6558,720,1001.897,,,,,,144,35,0,,,,, +251,20,3,6559,768,1001.897,128,8,C#3,fff,24,144,49,23,,,,, +251,21,3,6560,768,1001.897,128,8,D4,fff,24,144,62,23,,,,, +251,22,1,6561,896,1002.486,64,16,F#6,ff,22,144,90,22,,,,, +251,23,3,6562,896,1002.486,128,8,G#2,ff,22,144,44,22,,,,, +251,9,1,6548,512,1002.711,,,,,,144,69,0,,,,, +251,20,3,6559,768,1002.711,,,,,,144,49,0,,,,, +251,21,3,6560,768,1002.711,,,,,,144,62,0,,,,, +251,22,1,6561,896,1002.78,,,,,,144,90,0,,,,, +251,24,1,6563,960,1002.78,64,16,A4,ff,22,144,69,22,,,,, +251,24,1,6563,960,1003.074,,,,,,144,69,0,,,,, +251,25,1,6564,1024,1003.074,,,,,,176,102,0,,,,, +251,26,3,6565,1024,1003.074,,,,,,176,102,0,,,,, +251,23,3,6562,896,1003.074,,,,,,144,44,0,,,,, +251,27,3,6566,1152,1003.662,16,64,F3,f,20,144,53,20,,,,, +251,28,3,6567,1152,1003.662,16,64,A4,f,20,144,69,20,,,,, +251,27,3,6566,1152,1003.736,,,,,,144,53,0,,,,, +251,28,3,6567,1152,1003.736,,,,,,144,69,0,,,,, +251,29,3,6568,1168,1003.736,16,64,C#3,f,20,144,49,20,,,,, +251,30,3,6569,1168,1003.736,16,64,D4,f,20,144,62,20,,,,, +251,29,3,6568,1168,1003.809,,,,,,144,49,0,,,,, +251,30,3,6569,1168,1003.809,,,,,,144,62,0,,,,, +251,31,3,6570,1184,1003.809,24,64,A5,f+,21,144,81,21,,,,, +251,31,3,6570,1184,1003.919,,,,,,144,81,0,,,,, +251,32,3,6571,1208,1003.919,24,64,B2,f+,21,144,47,21,,,,, +251,33,3,6572,1208,1003.919,16,64,C#3,f+,21,144,49,21,,,,, +251,34,3,6573,1208,1003.919,16,64,F3,f+,21,144,53,21,,,,, +251,33,3,6572,1208,1003.993,,,,,,144,49,0,,,,, +251,34,3,6573,1208,1003.993,,,,,,144,53,0,,,,, +251,32,3,6571,1208,1004.03,,,,,,144,47,0,,,,, +251,35,3,6574,1232,1004.03,48,32,B1,f+,21,144,35,21,,,,, +251,35,3,6574,1232,1004.25,,,,,,144,35,0,,,,, +251,36,3,6575,1280,1004.25,192,8,C#3,ff,22,144,49,22,,,,, +251,37,3,6576,1280,1004.25,128,8,D4,ff,22,144,62,22,,,,, +251,37,3,6576,1280,1004.839,,,,,,144,62,0,,,,, +251,38,1,6577,1408,1004.839,64,16,F#6,ff,22,144,90,22,,,,, +251,36,3,6575,1280,1005.133,,,,,,144,49,0,,,,, +251,38,1,6577,1408,1005.133,,,,,,144,90,0,,,,, +251,39,1,6578,1472,1005.133,64,16,A4,ff,22,144,69,22,,,,, +251,40,3,6579,1472,1005.133,64,16,G#2,ff,22,144,44,22,,,,, +251,39,1,6578,1472,1005.427,,,,,,144,69,0,,,,, +251,40,3,6579,1472,1005.427,,,,,,144,44,0,,,,, +252,0,0,6580,0,1005.427,,,,,,,,,252,,,, +252,1,1,6581,0,1005.427,,,,,,176,102,0,,,,, +252,2,3,6582,0,1005.427,256,4,A#3,ff,22,144,58,22,,,,, +252,2,3,6582,0,1006.603,,,,,,144,58,0,,,,, +252,3,3,6583,256,1006.603,256,4,B1,ff,22,144,35,22,,,,, +252,4,3,6584,256,1006.603,256,4,C#2,ff,22,144,37,22,,,,, +252,5,3,6585,256,1006.603,256,4,A4,ff,22,144,69,22,,,,, +252,6,0,6586,427,1007.389,,,,,,176,64,0,,,,,^ +252,3,3,6583,256,1007.78,,,,,,144,35,0,,,,, +252,4,3,6584,256,1007.78,,,,,,144,37,0,,,,, +252,5,3,6585,256,1007.78,,,,,,144,69,0,,,,, +252,7,1,6587,512,1007.78,85,8,G#4,pp,8,144,68,8,,,,, +252,8,3,6588,512,1007.78,64,16,C3,p,11,144,48,11,,,,, +252,9,0,6589,542,1007.918,,,,,,176,64,127,,,,,V +252,8,3,6588,512,1008.074,,,,,,144,48,0,,,,, +252,10,3,6590,576,1008.074,192,8,E4,p,11,144,64,11,,,,, +252,7,1,6587,512,1008.17,,,,,,144,68,0,,,,, +252,11,1,6591,597,1008.17,85,8,C6,pp+,9,144,84,9,,,,, +252,11,1,6591,597,1008.561,,,,,,144,84,0,,,,, +252,12,1,6592,682,1008.561,43,16,A#3,pp+,9,144,58,9,,,,, +252,12,1,6592,682,1008.759,,,,,,144,58,0,,,,, +252,13,1,6593,725,1008.759,43,16,G#4,p-,10,144,68,10,,,,, +252,14,1,6594,768,1008.956,64,16,A#3,p-,10,144,58,10,,,,, +252,15,1,6595,768,1008.956,64,16,C6,p-,10,144,84,10,,,,, +252,16,3,6596,768,1008.956,,,,,,176,102,0,,,,, +252,10,3,6590,576,1009.106,,,,,,144,64,0,,,,, +252,13,1,6593,725,1009.106,,,,,,144,68,0,,,,, +252,14,1,6594,768,1009.25,,,,,,144,58,0,,,,, +252,15,1,6595,768,1009.25,,,,,,144,84,0,,,,, +252,17,1,6597,832,1009.25,42,16,G#4,p,11,144,68,11,,,,, +252,18,3,6598,853,1009.347,85,8,E4,p,11,144,64,11,,,,, +252,17,1,6597,832,1009.443,,,,,,144,68,0,,,,, +252,19,1,6599,874,1009.443,64,16,A#3,p,11,144,58,11,,,,, +252,20,1,6600,874,1009.443,64,16,G#4,p,11,144,68,11,,,,, +252,18,3,6598,853,1009.737,,,,,,144,64,0,,,,, +252,19,1,6599,874,1009.737,,,,,,144,58,0,,,,, +252,20,1,6600,874,1009.737,,,,,,144,68,0,,,,, +252,21,1,6601,938,1009.737,43,16,G#4,p+,12,144,68,12,,,,, +252,22,3,6602,938,1009.737,86,8,G#2,p,11,144,44,11,,,,, +252,21,1,6601,938,1009.935,,,,,,144,68,0,,,,, +252,23,1,6603,981,1009.935,43,16,A#3,p+,12,144,58,12,,,,, +252,24,1,6604,981,1009.935,64,16,G#4,p+,12,144,68,12,,,,, +252,25,1,6605,981,1009.935,64,16,C7,p+,12,144,96,12,,,,, +252,22,3,6602,938,1010.133,,,,,,144,44,0,,,,, +252,23,1,6603,981,1010.133,,,,,,144,58,0,,,,, +252,26,1,6606,1024,1010.133,16,64,C8,pp,8,144,108,8,,,,, +252,27,3,6607,1024,1010.133,,,,,,176,102,0,,,,, +252,26,1,6606,1024,1010.206,,,,,,144,108,0,,,,, +252,28,1,6608,1040,1010.206,16,64,E4,pp,8,144,64,8,,,,, +252,24,1,6604,981,1010.229,,,,,,144,68,0,,,,, +252,25,1,6605,981,1010.229,,,,,,144,96,0,,,,, +252,28,1,6608,1040,1010.28,,,,,,144,64,0,,,,, +252,29,1,6609,1056,1010.28,16,64,C#5,pp+,9,144,73,9,,,,, +252,29,1,6609,1056,1010.353,,,,,,144,73,0,,,,, +252,30,1,6610,1072,1010.353,16,64,E4,pp+,9,144,64,9,,,,, +252,30,1,6610,1072,1010.427,,,,,,144,64,0,,,,, +252,31,1,6611,1088,1010.427,24,64,C#5,p-,10,144,73,10,,,,, +252,31,1,6611,1088,1010.537,,,,,,144,73,0,,,,, +252,32,1,6612,1112,1010.537,24,64,E4,p-,10,144,64,10,,,,, +252,32,1,6612,1112,1010.647,,,,,,144,64,0,,,,, +252,33,1,6613,1136,1010.647,16,64,C#5,p,11,144,73,11,,,,, +252,33,1,6613,1136,1010.721,,,,,,144,73,0,,,,, +252,34,1,6614,1152,1010.721,24,64,C7,p,11,144,96,11,,,,, +252,34,1,6614,1152,1010.831,,,,,,144,96,0,,,,, +252,35,1,6615,1176,1010.831,24,64,D6,p+,12,144,86,12,,,,, +252,36,3,6616,1194,1010.914,86,8,A5,p+,12,144,81,12,,,,, +252,37,1,6617,1200,1010.942,16,64,E4,mp-,13,144,64,13,,,,, +252,35,1,6615,1176,1010.942,,,,,,144,86,0,,,,, +252,37,1,6617,1200,1011.015,,,,,,144,64,0,,,,, +252,38,1,6618,1216,1011.015,16,64,C#5,mp-,13,144,73,13,,,,, +252,38,1,6618,1216,1011.089,,,,,,144,73,0,,,,, +252,39,1,6619,1232,1011.089,16,64,A#6,mp-,13,144,94,13,,,,, +252,39,1,6619,1232,1011.162,,,,,,144,94,0,,,,, +252,40,1,6620,1248,1011.162,16,64,C7,mp,14,144,96,14,,,,, +252,40,1,6620,1248,1011.236,,,,,,144,96,0,,,,, +252,41,1,6621,1264,1011.236,16,64,E4,mp,14,144,64,14,,,,, +252,36,3,6616,1194,1011.309,,,,,,144,81,0,,,,, +252,41,1,6621,1264,1011.309,,,,,,144,64,0,,,,, +252,42,1,6622,1280,1011.309,16,64,A#6,mp+,15,144,94,15,,,,, +252,43,3,6623,1280,1011.309,,,,,,176,102,0,,,,, +252,42,1,6622,1280,1011.383,,,,,,144,94,0,,,,, +252,44,1,6624,1296,1011.383,24,64,G#3,mp+,15,144,56,15,,,,, +252,45,1,6625,1296,1011.383,16,64,E4,mp+,15,144,64,15,,,,, +252,45,1,6625,1296,1011.456,,,,,,144,64,0,,,,, +252,44,1,6624,1296,1011.493,,,,,,144,56,0,,,,, +252,46,1,6626,1320,1011.493,16,64,A#5,mf-,16,144,82,16,,,,, +252,46,1,6626,1320,1011.567,,,,,,144,82,0,,,,, +252,47,1,6627,1336,1011.567,24,64,G#2,mf-,16,144,44,16,,,,, +252,47,1,6627,1336,1011.677,,,,,,144,44,0,,,,, +252,48,1,6628,1360,1011.677,16,64,A#5,mf,17,144,82,17,,,,, +252,49,1,6629,1360,1011.677,16,64,C6,mf,17,144,84,17,,,,, +252,48,1,6628,1360,1011.75,,,,,,144,82,0,,,,, +252,49,1,6629,1360,1011.75,,,,,,144,84,0,,,,, +252,50,1,6630,1376,1011.75,24,64,G#2,mf,17,144,44,17,,,,, +252,51,1,6631,1376,1011.75,16,64,E3,mf,17,144,52,17,,,,, +252,51,1,6631,1376,1011.824,,,,,,144,52,0,,,,, +252,50,1,6630,1376,1011.861,,,,,,144,44,0,,,,, +252,52,1,6632,1400,1011.861,24,64,A#5,mf+,18,144,82,18,,,,, +252,53,1,6633,1400,1011.861,16,64,C6,mf+,18,144,84,18,,,,, +252,53,1,6633,1400,1011.934,,,,,,144,84,0,,,,, +252,52,1,6632,1400,1011.971,,,,,,144,82,0,,,,, +252,54,1,6634,1424,1011.971,16,64,G#1,mf+,18,144,32,18,,,,, +252,54,1,6634,1424,1012.044,,,,,,144,32,0,,,,, +252,55,1,6635,1440,1012.044,24,64,C#4,f-,19,144,61,19,,,,, +252,55,1,6635,1440,1012.155,,,,,,144,61,0,,,,, +252,56,1,6636,1464,1012.155,24,64,E3,f-,19,144,52,19,,,,, +252,57,1,6637,1464,1012.155,16,64,C#4,f-,19,144,61,19,,,,, +252,57,1,6637,1464,1012.228,,,,,,144,61,0,,,,, +252,56,1,6636,1464,1012.265,,,,,,144,52,0,,,,, +252,58,1,6638,1488,1012.265,24,64,G#1,f,20,144,32,20,,,,, +252,59,0,6639,1512,1012.28,,,,,,176,64,0,,,,,^ +252,58,1,6638,1488,1012.375,,,,,,144,32,0,,,,, +252,60,1,6640,1512,1012.375,24,64,G#2,f,20,144,44,20,,,,, +252,61,1,6641,1512,1012.375,16,64,A#5,f,20,144,82,20,,,,, +252,61,1,6641,1512,1012.449,,,,,,144,82,0,,,,, +252,60,1,6640,1512,1012.486,,,,,,144,44,0,,,,, +253,0,0,6642,0,1012.486,,,,,,,,,253,,,, +253,1,0,6643,0,1012.486,,,,,,,,,,5988,,, +253,3,1,6644,0,1012.486,512,2,C6,ff,22,144,84,22,,,,, +253,4,3,6645,0,1012.486,341,2,D#4,p,11,144,63,11,,,,, +253,5,3,6646,0,1012.486,512,2,G4,p,11,144,67,11,,,,, +253,2,0,6647,0,1012.58,,,,,,176,64,127,,,,,V +253,4,3,6645,0,1014.053,,,,,,144,63,0,,,,, +253,5,3,6646,0,1014.053,,,,,,144,67,0,,,,, +253,6,3,6648,341,1014.053,43,16,D#4,mf+,18,144,63,18,,,,, +253,7,3,6649,341,1014.053,64,16,G4,mf+,18,144,67,18,,,,, +253,8,3,6650,341,1014.053,64,16,C#7,mf+,18,144,97,18,,,,, +253,9,3,6651,341,1014.053,64,16,A7,mf+,18,144,105,18,,,,, +253,6,3,6648,341,1014.25,,,,,,144,63,0,,,,, +253,7,3,6649,341,1014.25,,,,,,144,67,0,,,,, +253,10,3,6652,384,1014.25,128,8,D#4,f-,19,144,63,19,,,,, +253,11,3,6653,384,1014.25,128,8,F#4,f-,19,144,66,19,,,,, +253,12,3,6654,384,1014.25,128,8,G4,f-,19,144,67,19,,,,, +253,13,3,6655,384,1014.25,128,8,D#6,f-,19,144,87,19,,,,, +253,8,3,6650,341,1014.347,,,,,,144,97,0,,,,, +253,9,3,6651,341,1014.347,,,,,,144,105,0,,,,, +253,10,3,6652,384,1014.839,,,,,,144,63,0,,,,, +253,11,3,6653,384,1014.839,,,,,,144,66,0,,,,, +253,12,3,6654,384,1014.839,,,,,,144,67,0,,,,, +253,13,3,6655,384,1014.839,,,,,,144,87,0,,,,, +253,14,1,6656,512,1014.839,85,8,C6,,,,,,,,,, +253,15,3,6657,512,1014.839,512,2,B1,ff,22,144,35,22,,,,, +253,16,3,6658,512,1014.839,512,2,C#2,ff,22,144,37,22,,,,, +253,17,3,6659,512,1014.839,512,2,D3,ff,22,144,50,22,,,,, +253,18,3,6660,512,1014.839,512,2,A4,ff,22,144,69,22,,,,, +253,3,1,6644,0,1015.229,,,,,,144,84,0,,,,, +253,19,1,6661,597,1015.229,171,4,C#4,ff,22,144,61,22,,,,, +253,20,1,6662,597,1015.229,256,4,C6,ff,22,144,84,22,,,,, +253,21,1,6663,768,1016.015,85,16,C#4,,,,,,,,,, +253,22,1,6664,768,1016.015,64,16,C6,,,,,,,,,, +253,23,0,6665,768,1016.015,,,,,,,,,,5989,,, +253,19,1,6661,597,1016.406,,,,,,144,61,0,,,,, +253,24,1,6666,853,1016.406,28,32,C6,p,11,144,84,11,,,,, +253,24,1,6666,853,1016.534,,,,,,144,84,0,,,,, +253,25,1,6667,881,1016.534,29,32,E3,p+,12,144,52,12,,,,, +253,26,1,6668,881,1016.534,32,32,C#4,p+,12,144,61,12,,,,, +253,25,1,6667,881,1016.668,,,,,,144,52,0,,,,, +253,27,1,6669,910,1016.668,28,32,G#2,mp,14,144,44,14,,,,, +253,26,1,6668,881,1016.681,,,,,,144,61,0,,,,, +253,20,1,6662,597,1016.7,,,,,,144,84,0,,,,, +253,27,1,6669,910,1016.796,,,,,,144,44,0,,,,, +253,28,1,6670,938,1016.796,86,16,A#5,mp+,15,144,82,15,,,,, +253,15,3,6657,512,1017.192,,,,,,144,35,0,,,,, +253,16,3,6658,512,1017.192,,,,,,144,37,0,,,,, +253,17,3,6659,512,1017.192,,,,,,144,50,0,,,,, +253,18,3,6660,512,1017.192,,,,,,144,69,0,,,,, +253,28,1,6670,938,1017.192,,,,,,144,82,0,,,,, +253,29,1,6671,1024,1017.192,,,,,,176,102,0,,,,, +253,30,3,6672,1024,1017.192,32,32,B1,ff,22,144,35,22,,,,, +253,31,3,6673,1024,1017.192,32,32,C#2,ff,22,144,37,22,,,,, +253,32,3,6674,1024,1017.192,32,32,D3,ff,22,144,50,22,,,,, +253,33,3,6675,1024,1017.192,32,32,A4,ff,22,144,69,22,,,,, +253,30,3,6672,1024,1017.339,,,,,,144,35,0,,,,, +253,31,3,6673,1024,1017.339,,,,,,144,37,0,,,,, +253,32,3,6674,1024,1017.339,,,,,,144,50,0,,,,, +253,33,3,6675,1024,1017.339,,,,,,144,69,0,,,,, +253,34,1,6676,1056,1017.339,224,8,F7,ff,22,144,101,22,,,,, +253,35,3,6677,1056,1017.339,128,8,D3,ff,22,144,50,22,,,,, +253,35,3,6677,1056,1017.927,,,,,,144,50,0,,,,, +253,36,3,6678,1184,1017.927,,,,,,176,102,0,,,,, +253,37,3,6679,1216,1018.074,64,16,A2,ff,22,144,45,22,,,,, +253,34,1,6676,1056,1018.368,,,,,,144,101,0,,,,, +253,37,3,6679,1216,1018.368,,,,,,144,45,0,,,,, +253,38,1,6680,1280,1018.368,85,8,C4,ff,22,144,60,22,,,,, +253,39,1,6681,1280,1018.368,128,8,A4,ff,22,144,69,22,,,,, +253,40,1,6682,1280,1018.368,128,8,F#6,ff,22,144,90,22,,,,, +253,41,3,6683,1280,1018.368,,,,,,176,102,0,,,,, +253,38,1,6680,1280,1018.759,,,,,,144,60,0,,,,, +253,42,1,6684,1365,1018.759,171,4,C#4,ff,22,144,61,22,,,,, +253,43,1,6685,1365,1018.759,256,4,C6,ff,22,144,84,22,,,,, +253,44,3,6686,1365,1018.759,,,,,,176,102,0,,,,, +253,39,1,6681,1280,1018.956,,,,,,144,69,0,,,,, +253,40,1,6682,1280,1018.956,,,,,,144,90,0,,,,, +253,45,3,6687,1493,1019.347,43,16,C#3,ff,22,144,49,22,,,,, +253,46,3,6688,1493,1019.347,64,16,D4,ff,22,144,62,22,,,,, +253,42,1,6684,1365,1019.544,,,,,,144,61,0,,,,, +253,45,3,6687,1493,1019.544,,,,,,144,49,0,,,,, +254,0,0,6689,0,1019.544,,,,,,,,,254,,,, +254,1,1,6690,0,1019.544,128,8,C#7,ff,22,144,97,22,,,,, +254,2,3,6691,0,1019.544,128,8,A#3,ff,22,144,58,22,,,,, +253,46,3,6688,1493,1019.641,,,,,,144,62,0,,,,, +253,43,1,6685,1365,1019.935,,,,,,144,84,0,,,,, +254,1,1,6690,0,1020.133,,,,,,144,97,0,,,,, +254,2,3,6691,0,1020.133,,,,,,144,58,0,,,,, +254,3,1,6692,128,1020.133,,,,,,176,102,0,,,,, +254,4,3,6693,128,1020.133,32,32,D3,ff,22,144,50,22,,,,, +254,4,3,6693,128,1020.28,,,,,,144,50,0,,,,, +254,5,1,6694,160,1020.28,96,16,F7,ff,22,144,101,22,,,,, +254,6,3,6695,160,1020.28,96,16,D3,ff,22,144,50,22,,,,, +254,5,1,6694,160,1020.721,,,,,,144,101,0,,,,, +254,6,3,6695,160,1020.721,,,,,,144,50,0,,,,, +254,7,1,6696,256,1020.721,,,,,,176,102,0,,,,, +254,8,3,6697,256,1020.721,32,32,C4,ff,22,144,60,22,,,,, +254,9,3,6698,256,1020.721,32,32,A4,ff,22,144,69,22,,,,, +254,8,3,6697,256,1020.868,,,,,,144,60,0,,,,, +254,9,3,6698,256,1020.868,,,,,,144,69,0,,,,, +254,10,3,6699,288,1020.868,96,16,E2,ff,22,144,40,22,,,,, +254,10,3,6699,288,1021.309,,,,,,144,40,0,,,,, +254,11,3,6700,384,1021.309,128,8,E2,ff,22,144,40,22,,,,, +254,12,3,6701,384,1021.309,128,8,G#2,ff,22,144,44,22,,,,, +254,13,3,6702,384,1021.309,128,8,C4,ff,22,144,60,22,,,,, +254,14,3,6703,384,1021.309,128,8,A4,ff,22,144,69,22,,,,, +254,15,1,6704,426,1021.502,86,8,C#4,ff,22,144,61,22,,,,, +254,16,1,6705,426,1021.502,128,8,C6,ff,22,144,84,22,,,,, +254,11,3,6700,384,1021.897,,,,,,144,40,0,,,,, +254,12,3,6701,384,1021.897,,,,,,144,44,0,,,,, +254,13,3,6702,384,1021.897,,,,,,144,60,0,,,,, +254,14,3,6703,384,1021.897,,,,,,144,69,0,,,,, +254,15,1,6704,426,1021.897,,,,,,144,61,0,,,,, +254,17,1,6706,512,1021.897,,,,,,176,102,0,,,,, +254,18,3,6707,512,1021.897,32,32,E2,ff,22,144,40,22,,,,, +254,19,3,6708,512,1021.897,32,32,G#2,ff,22,144,44,22,,,,, +254,20,3,6709,512,1021.897,32,32,C4,ff,22,144,60,22,,,,, +254,21,3,6710,512,1021.897,32,32,A4,ff,22,144,69,22,,,,, +254,18,3,6707,512,1022.044,,,,,,144,40,0,,,,, +254,19,3,6708,512,1022.044,,,,,,144,44,0,,,,, +254,20,3,6709,512,1022.044,,,,,,144,60,0,,,,, +254,21,3,6710,512,1022.044,,,,,,144,69,0,,,,, +254,22,1,6711,544,1022.044,64,16,F#6,ff,22,144,90,22,,,,, +254,23,3,6712,544,1022.044,32,32,C#2,ff,22,144,37,22,,,,, +254,24,3,6713,544,1022.044,32,32,D3,ff,22,144,50,22,,,,, +254,16,1,6705,426,1022.09,,,,,,144,84,0,,,,, +254,23,3,6712,544,1022.192,,,,,,144,37,0,,,,, +254,24,3,6713,544,1022.192,,,,,,144,50,0,,,,, +254,25,3,6714,576,1022.192,32,32,B1,ff,22,144,35,22,,,,, +254,22,1,6711,544,1022.339,,,,,,144,90,0,,,,, +254,25,3,6714,576,1022.339,,,,,,144,35,0,,,,, +254,26,1,6715,608,1022.339,32,32,F7,ff,22,144,101,22,,,,, +254,27,3,6716,608,1022.339,32,32,D3,ff,22,144,50,22,,,,, +254,26,1,6715,608,1022.486,,,,,,144,101,0,,,,, +254,28,1,6717,640,1022.486,,,,,,176,102,0,,,,, +254,29,3,6718,640,1022.486,96,16,D3,,,,,,,,,, +254,27,3,6716,608,1022.927,,,,,,144,50,0,,,,, +254,30,1,6719,736,1022.927,32,32,F7,ff,22,144,101,22,,,,, +254,31,3,6720,736,1022.927,32,32,B1,ff,22,144,35,22,,,,, +254,32,3,6721,736,1022.927,32,32,C#2,ff,22,144,37,22,,,,, +254,33,3,6722,736,1022.927,32,32,D3,ff,22,144,50,22,,,,, +254,30,1,6719,736,1023.074,,,,,,144,101,0,,,,, +254,31,3,6720,736,1023.074,,,,,,144,35,0,,,,, +254,32,3,6721,736,1023.074,,,,,,144,37,0,,,,, +254,33,3,6722,736,1023.074,,,,,,144,50,0,,,,, +254,34,1,6723,768,1023.074,,,,,,176,102,0,,,,, +254,35,3,6724,768,1023.074,224,8,A#1,ff,22,144,34,22,,,,, +254,36,1,6725,853,1023.465,43,16,C#4,ff,22,144,61,22,,,,, +254,37,1,6726,853,1023.465,64,16,C6,ff,22,144,84,22,,,,, +254,36,1,6725,853,1023.662,,,,,,144,61,0,,,,, +254,38,1,6727,896,1023.662,96,16,C4,ff,22,144,60,22,,,,, +254,39,1,6728,896,1023.662,64,16,A4,ff,22,144,69,22,,,,, +254,40,1,6729,896,1023.662,64,16,F#6,ff,22,144,90,22,,,,, +254,37,1,6726,853,1023.759,,,,,,144,84,0,,,,, +254,39,1,6728,896,1023.956,,,,,,144,69,0,,,,, +254,40,1,6729,896,1023.956,,,,,,144,90,0,,,,, +254,35,3,6724,768,1024.103,,,,,,144,34,0,,,,, +254,38,1,6727,896,1024.103,,,,,,144,60,0,,,,, +254,41,1,6730,992,1024.103,32,32,C4,ff,22,144,60,22,,,,, +254,42,1,6731,992,1024.103,32,32,A4,ff,22,144,69,22,,,,, +254,43,3,6732,992,1024.103,32,32,E2,ff,22,144,40,22,,,,, +254,44,3,6733,992,1024.103,32,32,G#2,ff,22,144,44,22,,,,, +254,41,1,6730,992,1024.25,,,,,,144,60,0,,,,, +254,42,1,6731,992,1024.25,,,,,,144,69,0,,,,, +254,43,3,6732,992,1024.25,,,,,,144,40,0,,,,, +254,44,3,6733,992,1024.25,,,,,,144,44,0,,,,, +254,45,1,6734,1024,1024.25,,,,,,176,102,0,,,,, +254,46,3,6735,1024,1024.25,85,8,A#1,ff,22,144,34,22,,,,, +254,46,3,6735,1024,1024.641,,,,,,144,34,0,,,,, +254,47,1,6736,1109,1024.641,43,16,A5,ff,22,144,81,22,,,,, +254,48,3,6737,1109,1024.641,43,16,C#3,ff,22,144,49,22,,,,, +254,49,3,6738,1109,1024.641,64,16,D4,ff,22,144,62,22,,,,, +254,47,1,6736,1109,1024.839,,,,,,144,81,0,,,,, +254,48,3,6737,1109,1024.839,,,,,,144,49,0,,,,, +254,50,1,6739,1152,1024.839,32,32,C4,ff,22,144,60,22,,,,, +254,51,1,6740,1152,1024.839,32,32,A4,ff,22,144,69,22,,,,, +254,52,3,6741,1152,1024.839,128,8,E2,ff,22,144,40,22,,,,, +254,53,3,6742,1152,1024.839,128,8,G#2,ff,22,144,44,22,,,,, +254,49,3,6738,1109,1024.935,,,,,,144,62,0,,,,, +254,54,1,6743,1184,1024.986,96,16,F#6,ff,22,144,90,22,,,,, +254,50,1,6739,1152,1024.986,,,,,,144,60,0,,,,, +254,51,1,6740,1152,1024.986,,,,,,144,69,0,,,,, +254,52,3,6741,1152,1025.427,,,,,,144,40,0,,,,, +254,53,3,6742,1152,1025.427,,,,,,144,44,0,,,,, +254,54,1,6743,1184,1025.427,,,,,,144,90,0,,,,, +254,55,1,6744,1280,1025.427,,,,,,176,102,0,,,,, +254,56,3,6745,1280,1025.427,,,,,,176,102,0,,,,, +254,57,1,6746,1365,1025.817,43,16,D#4,mp,14,144,63,14,,,,, +254,58,1,6747,1365,1025.817,64,16,G4,mp,14,144,67,14,,,,, +254,59,1,6748,1365,1025.817,64,16,C6,mp,14,144,84,14,,,,, +254,60,1,6749,1365,1025.817,64,16,A6,mp,14,144,93,14,,,,, +254,57,1,6746,1365,1026.015,,,,,,144,63,0,,,,, +254,58,1,6747,1365,1026.015,,,,,,144,67,0,,,,, +254,61,1,6750,1408,1026.015,85,8,D#4,mp+,15,144,63,15,,,,, +254,62,1,6751,1408,1026.015,128,8,F#4,mp+,15,144,66,15,,,,, +254,63,1,6752,1408,1026.015,128,8,G4,mp+,15,144,67,15,,,,, +254,64,1,6753,1408,1026.015,128,8,D#6,mp+,15,144,87,15,,,,, +254,65,3,6754,1408,1026.015,,,,,,176,102,0,,,,, +254,59,1,6748,1365,1026.112,,,,,,144,84,0,,,,, +254,60,1,6749,1365,1026.112,,,,,,144,93,0,,,,, +254,66,3,6755,1429,1026.112,21,32,A4,ff,22,144,69,22,,,,, +254,66,3,6755,1429,1026.208,,,,,,144,69,0,,,,, +254,67,3,6756,1450,1026.208,22,32,C#2,ff,22,144,37,22,,,,, +254,68,3,6757,1472,1026.309,21,32,B1,ff,22,144,35,22,,,,, +254,67,3,6756,1450,1026.309,,,,,,144,37,0,,,,, +254,61,1,6750,1408,1026.406,,,,,,144,63,0,,,,, +254,68,3,6757,1472,1026.406,,,,,,144,35,0,,,,, +254,69,1,6758,1493,1026.406,,,,,,176,102,0,,,,, +254,70,3,6759,1493,1026.406,21,32,D3,ff,22,144,50,22,,,,, +254,70,3,6759,1493,1026.502,,,,,,144,50,0,,,,, +254,71,1,6760,1514,1026.502,22,32,F7,ff,22,144,101,22,,,,, +254,72,3,6761,1514,1026.502,22,32,B1,ff,22,144,35,22,,,,, +254,73,3,6762,1514,1026.502,32,32,C#2,ff,22,144,37,22,,,,, +254,74,0,6763,1535,1026.599,,,,,,176,64,0,,,,,^ +254,62,1,6751,1408,1026.603,,,,,,144,66,0,,,,, +254,63,1,6752,1408,1026.603,,,,,,144,67,0,,,,, +254,64,1,6753,1408,1026.603,,,,,,144,87,0,,,,, +255,0,0,6764,0,1026.603,,,,,,,,,255,,,, +255,1,1,6765,0,1026.603,85,8,F#6,ff,22,144,90,22,,,,, +255,2,3,6766,0,1026.603,128,8,E2,ff,22,144,40,22,,,,, +255,3,3,6767,0,1026.603,128,8,G#2,ff,22,144,44,22,,,,, +254,71,1,6760,1514,1026.603,,,,,,144,101,0,,,,, +254,72,3,6761,1514,1026.603,,,,,,144,35,0,,,,, +254,73,3,6762,1514,1026.649,,,,,,144,37,0,,,,, +255,1,1,6765,0,1026.994,,,,,,144,90,0,,,,, +255,4,1,6768,85,1026.994,85,8,C#4,ff,22,144,61,22,,,,, +255,5,1,6769,85,1026.994,128,8,C6,ff,22,144,84,22,,,,, +255,2,3,6766,0,1027.192,,,,,,144,40,0,,,,, +255,3,3,6767,0,1027.192,,,,,,144,44,0,,,,, +255,6,3,6770,128,1027.192,32,32,E2,ff,22,144,40,22,,,,, +255,7,3,6771,128,1027.192,32,32,G#2,ff,22,144,44,22,,,,, +255,8,3,6772,128,1027.192,32,32,C4,ff,22,144,60,22,,,,, +255,9,3,6773,128,1027.192,32,32,A4,ff,22,144,69,22,,,,, +255,6,3,6770,128,1027.339,,,,,,144,40,0,,,,, +255,7,3,6771,128,1027.339,,,,,,144,44,0,,,,, +255,8,3,6772,128,1027.339,,,,,,144,60,0,,,,, +255,9,3,6773,128,1027.339,,,,,,144,69,0,,,,, +255,10,3,6774,160,1027.339,32,32,A4,ff,22,144,69,22,,,,, +255,4,1,6768,85,1027.385,,,,,,144,61,0,,,,, +255,12,1,6775,170,1027.385,,,,,,176,102,0,,,,, +255,11,0,6776,170,1027.385,,,,,,176,64,127,,,,,V +255,13,3,6777,192,1027.486,32,32,B1,ff,22,144,35,22,,,,, +255,10,3,6774,160,1027.486,,,,,,144,69,0,,,,, +255,5,1,6769,85,1027.582,,,,,,144,84,0,,,,, +255,13,3,6777,192,1027.633,,,,,,144,35,0,,,,, +255,14,3,6778,224,1027.633,32,32,C#2,ff,22,144,37,22,,,,, +255,15,3,6779,224,1027.633,32,32,D3,ff,22,144,50,22,,,,, +255,16,1,6780,256,1027.78,96,16,C#7,ff,22,144,97,22,,,,, +255,17,3,6781,256,1027.78,85,8,A#3,ff,22,144,58,22,,,,, +255,14,3,6778,224,1027.78,,,,,,144,37,0,,,,, +255,15,3,6779,224,1027.78,,,,,,144,50,0,,,,, +255,17,3,6781,256,1028.17,,,,,,144,58,0,,,,, +255,18,3,6782,341,1028.17,,,,,,176,102,0,,,,, +255,16,1,6780,256,1028.221,,,,,,144,97,0,,,,, +255,19,1,6783,352,1028.221,32,32,C4,ff,22,144,60,22,,,,, +255,20,1,6784,352,1028.221,32,32,A4,ff,22,144,69,22,,,,, +255,21,1,6785,352,1028.221,32,32,F#6,ff,22,144,90,22,,,,, +255,19,1,6783,352,1028.368,,,,,,144,60,0,,,,, +255,20,1,6784,352,1028.368,,,,,,144,69,0,,,,, +255,21,1,6785,352,1028.368,,,,,,144,90,0,,,,, +255,22,1,6786,384,1028.368,128,8,C4,ff,22,144,60,22,,,,, +255,23,1,6787,384,1028.368,128,8,A4,ff,22,144,69,22,,,,, +255,24,1,6788,384,1028.368,128,8,F#6,ff,22,144,90,22,,,,, +255,25,1,6789,384,1028.368,128,8,F7,ff,22,144,101,22,,,,, +255,26,3,6790,426,1028.561,43,16,F3,ff,22,144,53,22,,,,, +255,26,3,6790,426,1028.759,,,,,,144,53,0,,,,, +255,27,3,6791,469,1028.759,43,16,B0,ff,22,144,23,22,,,,, +255,22,1,6786,384,1028.956,,,,,,144,60,0,,,,, +255,23,1,6787,384,1028.956,,,,,,144,69,0,,,,, +255,24,1,6788,384,1028.956,,,,,,144,90,0,,,,, +255,25,1,6789,384,1028.956,,,,,,144,101,0,,,,, +255,27,3,6791,469,1028.956,,,,,,144,23,0,,,,, +255,28,1,6792,512,1028.956,170,4,A5,ff,22,144,81,22,,,,, +255,29,3,6793,512,1028.956,85,8,C#3,ff,22,144,49,22,,,,, +255,30,3,6794,512,1028.956,128,8,F3,ff,22,144,53,22,,,,, +255,31,3,6795,512,1028.956,128,8,D4,ff,22,144,62,22,,,,, +255,29,3,6793,512,1029.347,,,,,,144,49,0,,,,, +255,32,3,6796,597,1029.347,128,8,B0,ff,22,144,23,22,,,,, +255,30,3,6794,512,1029.544,,,,,,144,53,0,,,,, +255,31,3,6795,512,1029.544,,,,,,144,62,0,,,,, +255,28,1,6792,512,1029.737,,,,,,144,81,0,,,,, +255,33,1,6797,682,1029.737,,,,,,176,102,0,,,,, +255,32,3,6796,597,1029.935,,,,,,144,23,0,,,,, +255,34,1,6798,725,1029.935,43,16,A5,ff,22,144,81,22,,,,, +255,35,3,6799,725,1029.935,43,16,C#3,ff,22,144,49,22,,,,, +255,36,3,6800,725,1029.935,64,16,F3,ff,22,144,53,22,,,,, +255,37,3,6801,725,1029.935,64,16,D4,ff,22,144,62,22,,,,, +255,34,1,6798,725,1030.133,,,,,,144,81,0,,,,, +255,35,3,6799,725,1030.133,,,,,,144,49,0,,,,, +255,38,1,6802,768,1030.133,,,,,,176,102,0,,,,, +255,39,3,6803,768,1030.133,170,4,B0,ff,22,144,23,22,,,,, +255,36,3,6800,725,1030.229,,,,,,144,53,0,,,,, +255,37,3,6801,725,1030.229,,,,,,144,62,0,,,,, +255,40,1,6804,896,1030.721,32,32,B1,ff,22,144,35,22,,,,, +255,41,1,6805,896,1030.721,32,32,C#2,ff,22,144,37,22,,,,, +255,42,1,6806,896,1030.721,32,32,D3,ff,22,144,50,22,,,,, +255,43,1,6807,896,1030.721,32,32,A4,ff,22,144,69,22,,,,, +255,40,1,6804,896,1030.868,,,,,,144,35,0,,,,, +255,41,1,6805,896,1030.868,,,,,,144,37,0,,,,, +255,42,1,6806,896,1030.868,,,,,,144,50,0,,,,, +255,43,1,6807,896,1030.868,,,,,,144,69,0,,,,, +255,44,1,6808,928,1030.868,32,32,E2,ff,22,144,40,22,,,,, +255,45,1,6809,928,1030.868,32,32,G#2,ff,22,144,44,22,,,,, +255,46,1,6810,928,1030.868,32,32,C4,ff,22,144,60,22,,,,, +255,47,1,6811,928,1030.868,32,32,A4,ff,22,144,69,22,,,,, +255,39,3,6803,768,1030.914,,,,,,144,23,0,,,,, +255,48,3,6812,938,1030.914,,,,,,176,102,0,,,,, +255,44,1,6808,928,1031.015,,,,,,144,40,0,,,,, +255,45,1,6809,928,1031.015,,,,,,144,44,0,,,,, +255,46,1,6810,928,1031.015,,,,,,144,60,0,,,,, +255,47,1,6811,928,1031.015,,,,,,144,69,0,,,,, +255,49,1,6813,960,1031.015,,,,,,176,102,0,,,,, +255,50,1,6814,981,1031.112,43,16,A5,ff,22,144,81,22,,,,, +255,51,3,6815,981,1031.112,43,16,C#3,ff,22,144,49,22,,,,, +255,52,3,6816,981,1031.112,64,16,F3,ff,22,144,53,22,,,,, +255,53,3,6817,981,1031.112,64,16,D4,ff,22,144,62,22,,,,, +255,50,1,6814,981,1031.309,,,,,,144,81,0,,,,, +255,51,3,6815,981,1031.309,,,,,,144,49,0,,,,, +255,52,3,6816,981,1031.309,,,,,,144,53,0,,,,, +255,53,3,6817,981,1031.309,,,,,,144,62,0,,,,, +255,54,1,6818,1024,1031.309,,,,,,176,102,0,,,,, +255,55,3,6819,1024,1031.309,85,8,A#1,ff,22,144,34,22,,,,, +255,56,3,6820,1024,1031.309,128,8,C#3,ff,22,144,49,22,,,,, +255,57,3,6821,1024,1031.309,128,8,F3,ff,22,144,53,22,,,,, +255,58,3,6822,1024,1031.309,128,8,D4,ff,22,144,62,22,,,,, +255,55,3,6819,1024,1031.7,,,,,,144,34,0,,,,, +255,59,3,6823,1109,1031.7,171,4,B0,ff,22,144,23,22,,,,, +255,56,3,6820,1024,1031.897,,,,,,144,49,0,,,,, +255,57,3,6821,1024,1031.897,,,,,,144,53,0,,,,, +255,58,3,6822,1024,1031.897,,,,,,144,62,0,,,,, +255,60,1,6824,1152,1031.897,,,,,,176,102,0,,,,, +255,61,1,6825,1184,1032.044,32,32,C4,ff,22,144,60,22,,,,, +255,62,1,6826,1184,1032.044,32,32,A4,ff,22,144,69,22,,,,, +255,63,1,6827,1184,1032.044,32,32,F#6,ff,22,144,90,22,,,,, +255,61,1,6825,1184,1032.192,,,,,,144,60,0,,,,, +255,62,1,6826,1184,1032.192,,,,,,144,69,0,,,,, +255,63,1,6827,1184,1032.192,,,,,,144,90,0,,,,, +255,64,1,6828,1216,1032.192,64,16,C4,ff,22,144,60,22,,,,, +255,65,1,6829,1216,1032.192,64,16,A4,ff,22,144,69,22,,,,, +255,66,1,6830,1216,1032.192,64,16,F#6,ff,22,144,90,22,,,,, +255,67,1,6831,1216,1032.192,64,16,F7,ff,22,144,101,22,,,,, +255,64,1,6828,1216,1032.486,,,,,,144,60,0,,,,, +255,65,1,6829,1216,1032.486,,,,,,144,69,0,,,,, +255,66,1,6830,1216,1032.486,,,,,,144,90,0,,,,, +255,67,1,6831,1216,1032.486,,,,,,144,101,0,,,,, +255,68,1,6832,1280,1032.486,85,8,C4,ff,22,144,60,22,,,,, +255,69,1,6833,1280,1032.486,128,8,A4,ff,22,144,69,22,,,,, +255,70,3,6834,1280,1032.486,128,8,E2,ff,22,144,40,22,,,,, +255,71,3,6835,1280,1032.486,128,8,G#2,ff,22,144,44,22,,,,, +255,59,3,6823,1109,1032.486,,,,,,144,23,0,,,,, +255,68,1,6832,1280,1032.876,,,,,,144,60,0,,,,, +255,72,1,6836,1365,1032.876,171,4,C#4,ff,22,144,61,22,,,,, +255,73,1,6837,1365,1032.876,256,4,C6,ff,22,144,84,22,,,,, +255,69,1,6833,1280,1033.074,,,,,,144,69,0,,,,, +255,70,3,6834,1280,1033.074,,,,,,144,40,0,,,,, +255,71,3,6835,1280,1033.074,,,,,,144,44,0,,,,, +255,74,3,6838,1408,1033.074,,,,,,176,102,0,,,,, +255,75,3,6839,1440,1033.221,32,32,A4,ff,22,144,69,22,,,,, +255,76,3,6840,1472,1033.368,32,32,B1,ff,22,144,35,22,,,,, +255,75,3,6839,1440,1033.368,,,,,,144,69,0,,,,, +255,76,3,6840,1472,1033.515,,,,,,144,35,0,,,,, +255,77,3,6841,1504,1033.515,32,32,C#2,ff,22,144,37,22,,,,, +255,78,3,6842,1504,1033.515,32,32,D3,ff,22,144,50,22,,,,, +255,77,3,6841,1504,1033.662,,,,,,144,37,0,,,,, +255,78,3,6842,1504,1033.662,,,,,,144,50,0,,,,, +256,0,0,6843,0,1033.662,,,,,,,,,256,,,, +256,1,1,6844,0,1033.662,,,,,,176,102,0,,,,, +256,2,3,6845,0,1033.662,85,8,B1,ff,22,144,35,22,,,,, +256,3,3,6846,0,1033.662,128,8,C#2,ff,22,144,37,22,,,,, +256,4,3,6847,0,1033.662,128,8,D3,ff,22,144,50,22,,,,, +255,72,1,6836,1365,1033.662,,,,,,144,61,0,,,,, +255,73,1,6837,1365,1034.053,,,,,,144,84,0,,,,, +256,2,3,6845,0,1034.053,,,,,,144,35,0,,,,, +256,5,1,6848,85,1034.053,171,4,C#4,ff,22,144,61,22,,,,, +256,6,1,6849,85,1034.053,256,4,C6,ff,22,144,84,22,,,,, +256,7,3,6850,85,1034.053,,,,,,176,102,0,,,,, +256,3,3,6846,0,1034.25,,,,,,144,37,0,,,,, +256,4,3,6847,0,1034.25,,,,,,144,50,0,,,,, +256,8,3,6851,170,1034.443,43,16,F3,ff,22,144,53,22,,,,, +256,8,3,6851,170,1034.641,,,,,,144,53,0,,,,, +256,9,3,6852,213,1034.641,43,16,B0,ff,22,144,23,22,,,,, +256,5,1,6848,85,1034.839,,,,,,144,61,0,,,,, +256,9,3,6852,213,1034.839,,,,,,144,23,0,,,,, +256,10,0,6853,256,1034.839,,,,,,176,64,0,,,,,^ +256,11,1,6854,256,1034.839,,,,,,176,102,0,,,,, +256,12,3,6855,256,1034.839,,,,,,176,102,0,,,,, +256,13,3,6856,277,1034.935,21,32,A4,ff,22,144,69,22,,,,, +256,13,3,6856,277,1035.032,,,,,,144,69,0,,,,, +256,14,3,6857,298,1035.032,22,32,C#2,ff,22,144,37,22,,,,, +256,15,3,6858,320,1035.133,21,32,B1,ff,22,144,35,22,,,,, +256,14,3,6857,298,1035.133,,,,,,144,37,0,,,,, +256,6,1,6849,85,1035.229,,,,,,144,84,0,,,,, +256,15,3,6858,320,1035.229,,,,,,144,35,0,,,,, +256,16,3,6859,341,1035.229,21,32,D3,ff,22,144,50,22,,,,, +256,16,3,6859,341,1035.326,,,,,,144,50,0,,,,, +256,17,3,6860,362,1035.326,22,32,B1,ff,22,144,35,22,,,,, +256,18,3,6861,362,1035.326,32,32,C#2,ff,22,144,37,22,,,,, +256,17,3,6860,362,1035.427,,,,,,144,35,0,,,,, +256,19,3,6862,384,1035.427,,,,,,176,102,0,,,,, +256,18,3,6861,362,1035.473,,,,,,144,37,0,,,,, +256,20,3,6863,416,1035.574,32,32,E2,ff,22,144,40,22,,,,, +256,21,3,6864,416,1035.574,32,32,G#2,ff,22,144,44,22,,,,, +256,20,3,6863,416,1035.721,,,,,,144,40,0,,,,, +256,21,3,6864,416,1035.721,,,,,,144,44,0,,,,, +256,22,3,6865,448,1035.721,64,16,E2,ff,22,144,40,22,,,,, +256,23,3,6866,448,1035.721,64,16,G#2,ff,22,144,44,22,,,,, +256,24,3,6867,448,1035.721,64,16,C4,ff,22,144,60,22,,,,, +256,25,3,6868,448,1035.721,64,16,A4,ff,22,144,69,22,,,,, +256,22,3,6865,448,1036.015,,,,,,144,40,0,,,,, +256,23,3,6866,448,1036.015,,,,,,144,44,0,,,,, +256,24,3,6867,448,1036.015,,,,,,144,60,0,,,,, +256,25,3,6868,448,1036.015,,,,,,144,69,0,,,,, +256,27,1,6869,512,1036.015,,,,,,176,102,0,,,,, +256,28,3,6870,512,1036.015,128,8,A#1,ff,22,144,34,22,,,,, +256,26,0,6871,512,1036.015,,,,,,176,64,127,,,,,V +256,29,1,6872,597,1036.406,171,4,C#4,ff,22,144,61,22,,,,, +256,30,1,6873,597,1036.406,256,4,C6,ff,22,144,84,22,,,,, +256,28,3,6870,512,1036.603,,,,,,144,34,0,,,,, +256,31,3,6874,640,1036.603,,,,,,176,102,0,,,,, +256,32,3,6875,672,1036.75,32,32,B1,ff,22,144,35,22,,,,, +256,33,3,6876,672,1036.75,32,32,C#2,ff,22,144,37,22,,,,, +256,34,3,6877,672,1036.75,32,32,D3,ff,22,144,50,22,,,,, +256,35,3,6878,672,1036.75,32,32,A4,ff,22,144,69,22,,,,, +256,32,3,6875,672,1036.897,,,,,,144,35,0,,,,, +256,33,3,6876,672,1036.897,,,,,,144,37,0,,,,, +256,34,3,6877,672,1036.897,,,,,,144,50,0,,,,, +256,35,3,6878,672,1036.897,,,,,,144,69,0,,,,, +256,36,0,6879,704,1036.897,,,,,,176,64,0,,,,,^ +256,37,3,6880,704,1036.897,64,16,E2,ff,22,144,40,22,,,,, +256,38,3,6881,704,1036.897,64,16,G#2,ff,22,144,44,22,,,,, +256,39,3,6882,704,1036.897,64,16,C4,ff,22,144,60,22,,,,, +256,40,3,6883,704,1036.897,64,16,A4,ff,22,144,69,22,,,,, +256,29,1,6872,597,1037.192,,,,,,144,61,0,,,,, +256,37,3,6880,704,1037.192,,,,,,144,40,0,,,,, +256,38,3,6881,704,1037.192,,,,,,144,44,0,,,,, +256,39,3,6882,704,1037.192,,,,,,144,60,0,,,,, +256,40,3,6883,704,1037.192,,,,,,144,69,0,,,,, +256,41,1,6884,768,1037.192,85,8,A#3,ff,22,144,58,22,,,,, +256,42,1,6885,768,1037.192,128,8,C#7,ff,22,144,97,22,,,,, +256,43,3,6886,768,1037.192,,,,,,176,102,0,,,,, +256,30,1,6873,597,1037.582,,,,,,144,84,0,,,,, +256,41,1,6884,768,1037.582,,,,,,144,58,0,,,,, +256,45,1,6887,853,1037.582,171,4,E3,ff,22,144,52,22,,,,, +256,46,1,6888,853,1037.582,256,4,C#4,ff,22,144,61,22,,,,, +256,47,1,6889,853,1037.582,256,4,C6,ff,22,144,84,22,,,,, +256,44,0,6890,853,1037.582,,,,,,176,64,127,,,,,V +256,42,1,6885,768,1037.78,,,,,,144,97,0,,,,, +256,48,3,6891,896,1037.78,25,32,E4,ff,22,144,64,22,,,,, +256,48,3,6891,896,1037.895,,,,,,144,64,0,,,,, +256,49,3,6892,921,1037.895,51,16,F#3,ff,22,144,54,22,,,,, +256,49,3,6892,921,1038.129,,,,,,144,54,0,,,,, +256,50,3,6893,972,1038.129,26,32,A4,ff,22,144,69,22,,,,, +256,52,0,6894,1024,1038.218,,,,,,176,64,0,,,,,^ +256,50,3,6893,972,1038.249,,,,,,144,69,0,,,,, +256,51,3,6895,998,1038.249,26,32,G#4,ff,22,144,68,22,,,,, +256,45,1,6887,853,1038.368,,,,,,144,52,0,,,,, +256,51,3,6895,998,1038.368,,,,,,144,68,0,,,,, +256,54,1,6896,1024,1038.368,85,8,C#7,ff,22,144,97,22,,,,, +256,55,3,6897,1024,1038.368,85,8,E3,ff,22,144,52,22,,,,, +256,56,3,6898,1024,1038.368,128,8,A#3,ff,22,144,58,22,,,,, +256,53,0,6899,1024,1038.518,,,,,,176,64,127,,,,,V +256,46,1,6888,853,1038.759,,,,,,144,61,0,,,,, +256,47,1,6889,853,1038.759,,,,,,144,84,0,,,,, +256,54,1,6896,1024,1038.759,,,,,,144,97,0,,,,, +256,55,3,6897,1024,1038.759,,,,,,144,52,0,,,,, +256,57,1,6900,1109,1038.759,43,16,C6,ff,22,144,84,22,,,,, +256,58,3,6901,1109,1038.759,43,16,E3,ff,22,144,52,22,,,,, +256,59,3,6902,1109,1038.759,64,16,C#4,ff,22,144,61,22,,,,, +256,56,3,6898,1024,1038.956,,,,,,144,58,0,,,,, +256,57,1,6900,1109,1038.956,,,,,,144,84,0,,,,, +256,58,3,6901,1109,1038.956,,,,,,144,52,0,,,,, +256,60,1,6903,1152,1038.956,128,8,C#7,ff,22,144,97,22,,,,, +256,61,3,6904,1152,1038.956,64,16,E3,ff,22,144,52,22,,,,, +256,62,3,6905,1152,1038.956,64,16,A#3,ff,22,144,58,22,,,,, +256,59,3,6902,1109,1039.053,,,,,,144,61,0,,,,, +256,61,3,6904,1152,1039.25,,,,,,144,52,0,,,,, +256,62,3,6905,1152,1039.25,,,,,,144,58,0,,,,, +256,63,3,6906,1216,1039.25,32,32,E2,ff,22,144,40,22,,,,, +256,64,3,6907,1216,1039.25,32,32,G#2,ff,22,144,44,22,,,,, +256,63,3,6906,1216,1039.397,,,,,,144,40,0,,,,, +256,64,3,6907,1216,1039.397,,,,,,144,44,0,,,,, +256,65,3,6908,1248,1039.397,32,32,C4,ff,22,144,60,22,,,,, +256,66,3,6909,1248,1039.397,32,32,A4,ff,22,144,69,22,,,,, +256,60,1,6903,1152,1039.544,,,,,,144,97,0,,,,, +256,65,3,6908,1248,1039.544,,,,,,144,60,0,,,,, +256,66,3,6909,1248,1039.544,,,,,,144,69,0,,,,, +256,67,1,6910,1280,1039.544,42,16,G#4,ff,22,144,68,22,,,,, +256,68,3,6911,1280,1039.544,,,,,,176,102,0,,,,, +256,67,1,6910,1280,1039.737,,,,,,144,68,0,,,,, +256,69,1,6912,1322,1039.737,43,16,C6,ff,22,144,84,22,,,,, +256,69,1,6912,1322,1039.935,,,,,,144,84,0,,,,, +256,70,1,6913,1365,1039.935,21,32,A#3,ff,22,144,58,22,,,,, +256,70,1,6913,1365,1040.032,,,,,,144,58,0,,,,, +256,71,1,6914,1386,1040.032,22,32,G#4,ff,22,144,68,22,,,,, +256,71,1,6914,1386,1040.133,,,,,,144,68,0,,,,, +256,72,1,6915,1408,1040.133,32,32,A#3,ff,22,144,58,22,,,,, +256,73,1,6916,1408,1040.133,32,32,C6,ff,22,144,84,22,,,,, +256,72,1,6915,1408,1040.28,,,,,,144,58,0,,,,, +256,73,1,6916,1408,1040.28,,,,,,144,84,0,,,,, +256,74,1,6917,1440,1040.28,32,32,G#4,ff,22,144,68,22,,,,, +256,74,1,6917,1440,1040.427,,,,,,144,68,0,,,,, +256,75,1,6918,1472,1040.427,21,32,A#3,ff,22,144,58,22,,,,, +256,77,0,6919,1514,1040.52,,,,,,176,64,0,,,,,^ +256,75,1,6918,1472,1040.523,,,,,,144,58,0,,,,, +256,76,1,6920,1493,1040.523,21,32,G#4,ff,22,144,68,22,,,,, +256,76,1,6920,1493,1040.62,,,,,,144,68,0,,,,, +256,78,1,6921,1514,1040.62,22,32,A#3,ff,22,144,58,22,,,,, +256,78,1,6921,1514,1040.721,,,,,,144,58,0,,,,, +257,0,0,6922,0,1040.721,,,,,,,,,257,,,, +257,1,0,6923,0,1040.721,,,,,,,,,,5989,,, +257,3,1,6924,0,1040.721,64,16,C4,ff,22,144,60,22,,,,, +257,4,1,6925,0,1040.721,64,16,C#4,ff,22,144,61,22,,,,, +257,5,1,6926,0,1040.721,64,16,A4,ff,22,144,69,22,,,,, +257,6,3,6927,0,1040.721,21,32,B1,f,20,144,35,20,,,,, +257,6,3,6927,0,1040.817,,,,,,144,35,0,,,,, +257,7,3,6928,21,1040.817,21,32,A#3,f-,19,144,58,19,,,,, +257,2,0,6929,0,1040.82,,,,,,176,64,127,,,,,V +257,7,3,6928,21,1040.914,,,,,,144,58,0,,,,, +257,8,3,6930,42,1040.914,22,32,G#2,mf+,18,144,44,18,,,,, +257,3,1,6924,0,1041.015,,,,,,144,60,0,,,,, +257,4,1,6925,0,1041.015,,,,,,144,61,0,,,,, +257,5,1,6926,0,1041.015,,,,,,144,69,0,,,,, +257,8,3,6930,42,1041.015,,,,,,144,44,0,,,,, +257,9,1,6931,64,1041.015,,,,,,176,102,0,,,,, +257,10,3,6932,64,1041.015,21,32,A#3,mf,17,144,58,17,,,,, +257,10,3,6932,64,1041.112,,,,,,144,58,0,,,,, +257,11,3,6933,85,1041.112,21,32,G#2,mf,17,144,44,17,,,,, +257,11,3,6933,85,1041.208,,,,,,144,44,0,,,,, +257,12,3,6934,106,1041.208,22,32,A#3,mf-,16,144,58,16,,,,, +257,12,3,6934,106,1041.309,,,,,,144,58,0,,,,, +257,13,3,6935,128,1041.309,21,32,G#2,mp+,15,144,44,15,,,,, +257,15,0,6936,170,1041.403,,,,,,176,64,0,,,,,^ +257,13,3,6935,128,1041.406,,,,,,144,44,0,,,,, +257,14,3,6937,149,1041.406,21,32,D1,mp,14,144,26,14,,,,, +257,14,3,6937,149,1041.502,,,,,,144,26,0,,,,, +257,16,3,6938,170,1041.502,22,32,A#3,mp,14,144,58,14,,,,, +257,16,3,6938,170,1041.603,,,,,,144,58,0,,,,, +257,18,3,6939,192,1041.603,64,16,D1,mp,14,144,26,14,,,,, +257,19,3,6940,192,1041.603,64,16,B1,mp,14,144,35,14,,,,, +257,20,3,6941,192,1041.603,64,16,G#2,mp,14,144,44,14,,,,, +257,17,0,6942,192,1041.703,,,,,,176,64,127,,,,,V +257,18,3,6939,192,1041.897,,,,,,144,26,0,,,,, +257,19,3,6940,192,1041.897,,,,,,144,35,0,,,,, +257,20,3,6941,192,1041.897,,,,,,144,44,0,,,,, +257,21,1,6943,256,1041.897,,,,,,176,102,0,,,,, +257,22,3,6944,256,1041.897,,,,,,176,102,0,,,,, +257,23,1,6945,341,1042.288,43,16,E3,ff,22,144,52,22,,,,, +257,24,1,6946,341,1042.288,64,16,C#4,ff,22,144,61,22,,,,, +257,25,1,6947,341,1042.288,64,16,C6,ff,22,144,84,22,,,,, +257,23,1,6945,341,1042.486,,,,,,144,52,0,,,,, +257,26,1,6948,384,1042.486,128,8,E3,ff,22,144,52,22,,,,, +257,27,1,6949,384,1042.486,128,8,A#3,ff,22,144,58,22,,,,, +257,28,1,6950,384,1042.486,128,8,C#7,ff,22,144,97,22,,,,, +257,24,1,6946,341,1042.582,,,,,,144,61,0,,,,, +257,25,1,6947,341,1042.582,,,,,,144,84,0,,,,, +257,29,3,6951,448,1042.78,32,32,E2,ff,22,144,40,22,,,,, +257,30,3,6952,448,1042.78,32,32,G#2,ff,22,144,44,22,,,,, +257,31,0,6953,480,1042.85,,,,,,176,64,0,,,,,^ +257,29,3,6951,448,1042.927,,,,,,144,40,0,,,,, +257,30,3,6952,448,1042.927,,,,,,144,44,0,,,,, +257,32,3,6954,480,1042.927,32,32,B1,ff,22,144,35,22,,,,, +257,33,3,6955,480,1042.927,32,32,C#2,ff,22,144,37,22,,,,, +257,26,1,6948,384,1043.074,,,,,,144,52,0,,,,, +257,27,1,6949,384,1043.074,,,,,,144,58,0,,,,, +257,28,1,6950,384,1043.074,,,,,,144,97,0,,,,, +257,32,3,6954,480,1043.074,,,,,,144,35,0,,,,, +257,33,3,6955,480,1043.074,,,,,,144,37,0,,,,, +257,35,1,6956,512,1043.074,85,8,F#6,ff,22,144,90,22,,,,, +257,36,3,6957,512,1043.074,32,32,C#2,ff,22,144,37,22,,,,, +257,37,3,6958,512,1043.074,32,32,D3,ff,22,144,50,22,,,,, +257,34,0,6959,512,1043.15,,,,,,176,64,127,,,,,V +257,36,3,6957,512,1043.221,,,,,,144,37,0,,,,, +257,37,3,6958,512,1043.221,,,,,,144,50,0,,,,, +257,38,3,6960,544,1043.221,32,32,B1,ff,22,144,35,22,,,,, +257,39,0,6961,560,1043.294,,,,,,176,64,0,,,,,^ +257,40,3,6962,576,1043.368,,,,,,176,102,0,,,,, +257,38,3,6960,544,1043.368,,,,,,144,35,0,,,,, +257,35,1,6956,512,1043.465,,,,,,144,90,0,,,,, +257,41,1,6963,597,1043.465,43,16,D#4,mf,17,144,63,17,,,,, +257,42,1,6964,597,1043.465,64,16,G4,mf,17,144,67,17,,,,, +257,43,1,6965,597,1043.465,64,16,C#6,mf,17,144,85,17,,,,, +257,44,1,6966,597,1043.465,64,16,A6,mf,17,144,93,17,,,,, +257,41,1,6963,597,1043.662,,,,,,144,63,0,,,,, +257,42,1,6964,597,1043.662,,,,,,144,67,0,,,,, +257,45,1,6967,640,1043.662,128,8,D#4,mf+,18,144,63,18,,,,, +257,46,1,6968,640,1043.662,128,8,F#4,mf+,18,144,66,18,,,,, +257,47,1,6969,640,1043.662,128,8,G4,mf+,18,144,67,18,,,,, +257,48,1,6970,640,1043.662,128,8,D#6,mf+,18,144,87,18,,,,, +257,43,1,6965,597,1043.759,,,,,,144,85,0,,,,, +257,44,1,6966,597,1043.759,,,,,,144,93,0,,,,, +257,45,1,6967,640,1044.25,,,,,,144,63,0,,,,, +257,46,1,6968,640,1044.25,,,,,,144,66,0,,,,, +257,47,1,6969,640,1044.25,,,,,,144,67,0,,,,, +257,48,1,6970,640,1044.25,,,,,,144,87,0,,,,, +257,49,1,6971,768,1044.25,,,,,,176,102,0,,,,, +257,50,3,6972,768,1044.25,128,8,D1,ppp,5,144,26,5,,,,, +257,51,3,6973,768,1044.25,128,8,B1,ppp,5,144,35,5,,,,, +257,52,3,6974,768,1044.25,128,8,G#2,ppp,5,144,44,5,,,,, +257,53,3,6975,768,1044.25,128,8,A#3,ppp,5,144,58,5,,,,, +257,54,1,6976,853,1044.641,43,16,E3,ff,22,144,52,22,,,,, +257,55,1,6977,853,1044.641,64,16,C#4,ff,22,144,61,22,,,,, +257,56,1,6978,853,1044.641,64,16,C6,ff,22,144,84,22,,,,, +257,50,3,6972,768,1044.839,,,,,,144,26,0,,,,, +257,51,3,6973,768,1044.839,,,,,,144,35,0,,,,, +257,52,3,6974,768,1044.839,,,,,,144,44,0,,,,, +257,53,3,6975,768,1044.839,,,,,,144,58,0,,,,, +257,58,1,6979,896,1044.839,64,16,E3,,,,,,,,,, +257,59,1,6980,896,1044.839,64,16,C#4,,,,,,,,,, +257,60,1,6981,896,1044.839,64,16,C#7,ff,22,144,97,22,,,,, +257,61,3,6982,896,1044.839,64,16,E3,ff,22,144,52,22,,,,, +257,62,3,6983,896,1044.839,64,16,A#3,ff,22,144,58,22,,,,, +257,57,0,6984,896,1044.839,,,,,,176,64,127,,,,,V +257,56,1,6978,853,1044.935,,,,,,144,84,0,,,,, +257,60,1,6981,896,1045.133,,,,,,144,97,0,,,,, +257,61,3,6982,896,1045.133,,,,,,144,52,0,,,,, +257,62,3,6983,896,1045.133,,,,,,144,58,0,,,,, +257,63,1,6985,960,1045.133,,,,,,176,102,0,,,,, +257,64,3,6986,960,1045.133,32,32,B1,ff,22,144,35,22,,,,, +257,65,3,6987,960,1045.133,32,32,C#2,ff,22,144,37,22,,,,, +257,54,1,6976,853,1045.133,,,,,,144,52,0,,,,, +257,55,1,6977,853,1045.229,,,,,,144,61,0,,,,, +257,64,3,6986,960,1045.28,,,,,,144,35,0,,,,, +257,65,3,6987,960,1045.28,,,,,,144,37,0,,,,, +257,66,1,6988,992,1045.28,32,32,F7,ff,22,144,101,22,,,,, +257,67,3,6989,992,1045.28,32,32,D3,ff,22,144,50,22,,,,, +257,66,1,6988,992,1045.427,,,,,,144,101,0,,,,, +257,67,3,6989,992,1045.427,,,,,,144,50,0,,,,, +257,68,1,6990,1024,1045.427,,,,,,176,102,0,,,,, +257,69,3,6991,1024,1045.427,128,8,A#1,ff,22,144,34,22,,,,, +257,70,0,6992,1152,1046.003,,,,,,176,64,0,,,,,^ +257,69,3,6991,1024,1046.015,,,,,,144,34,0,,,,, +257,71,3,6993,1152,1046.015,128,8,D1,ppp,5,144,26,5,,,,, +257,72,3,6994,1152,1046.015,128,8,B1,ppp,5,144,35,5,,,,, +257,73,3,6995,1152,1046.015,128,8,G#2,ppp,5,144,44,5,,,,, +257,74,3,6996,1152,1046.015,128,8,A#3,ppp,5,144,58,5,,,,, +257,75,0,6997,1212,1046.303,,,,,,176,64,127,,,,,V +257,71,3,6993,1152,1046.603,,,,,,144,26,0,,,,, +257,72,3,6994,1152,1046.603,,,,,,144,35,0,,,,, +257,73,3,6995,1152,1046.603,,,,,,144,44,0,,,,, +257,74,3,6996,1152,1046.603,,,,,,144,58,0,,,,, +257,76,1,6998,1280,1046.603,,,,,,176,102,0,,,,, +257,77,3,6999,1280,1046.603,,,,,,176,102,0,,,,, +257,78,1,7000,1312,1046.75,32,32,C4,ff,22,144,60,22,,,,, +257,79,1,7001,1312,1046.75,32,32,A4,ff,22,144,69,22,,,,, +257,80,3,7002,1312,1046.75,32,32,E2,ff,22,144,40,22,,,,, +257,81,3,7003,1312,1046.75,32,32,G#2,ff,22,144,44,22,,,,, +257,78,1,7000,1312,1046.897,,,,,,144,60,0,,,,, +257,79,1,7001,1312,1046.897,,,,,,144,69,0,,,,, +257,80,3,7002,1312,1046.897,,,,,,144,40,0,,,,, +257,81,3,7003,1312,1046.897,,,,,,144,44,0,,,,, +257,82,1,7004,1344,1046.897,21,32,C4,ff,22,144,60,22,,,,, +257,83,1,7005,1344,1046.897,32,32,A4,ff,22,144,69,22,,,,, +257,84,1,7006,1344,1046.897,32,32,F#6,ff,22,144,90,22,,,,, +257,85,3,7007,1344,1046.897,,,,,,176,102,0,,,,, +257,82,1,7004,1344,1046.994,,,,,,144,60,0,,,,, +257,86,1,7008,1365,1046.994,43,16,A6,f,20,144,93,20,,,,, +257,87,3,7009,1365,1046.994,43,16,D#4,f,20,144,63,20,,,,, +257,88,3,7010,1365,1046.994,64,16,F#4,f,20,144,66,20,,,,, +257,89,3,7011,1365,1046.994,64,16,G4,f,20,144,67,20,,,,, +257,83,1,7005,1344,1047.044,,,,,,144,69,0,,,,, +257,84,1,7006,1344,1047.044,,,,,,144,90,0,,,,, +257,86,1,7008,1365,1047.192,,,,,,144,93,0,,,,, +257,87,3,7009,1365,1047.192,,,,,,144,63,0,,,,, +257,88,3,7010,1365,1047.192,,,,,,144,66,0,,,,, +257,89,3,7011,1365,1047.192,,,,,,144,67,0,,,,, +257,90,1,7012,1408,1047.192,85,8,D#6,f,20,144,87,20,,,,, +257,91,3,7013,1408,1047.192,85,8,D#4,f,20,144,63,20,,,,, +257,92,3,7014,1408,1047.192,128,8,F#4,f,20,144,66,20,,,,, +257,93,3,7015,1408,1047.192,128,8,G4,f,20,144,67,20,,,,, +257,90,1,7012,1408,1047.582,,,,,,144,87,0,,,,, +257,91,3,7013,1408,1047.582,,,,,,144,63,0,,,,, +257,92,3,7014,1408,1047.582,,,,,,144,66,0,,,,, +257,93,3,7015,1408,1047.582,,,,,,144,67,0,,,,, +257,94,1,7016,1493,1047.582,21,32,D#6,f+,21,144,87,21,,,,, +257,95,1,7017,1493,1047.582,32,32,F#6,f+,21,144,90,21,,,,, +257,96,3,7018,1493,1047.582,21,32,C4,f+,21,144,60,21,,,,, +257,97,3,7019,1493,1047.582,32,32,D#4,f+,21,144,63,21,,,,, +257,98,3,7020,1493,1047.582,32,32,F#4,f+,21,144,66,21,,,,, +257,99,3,7021,1493,1047.582,32,32,G4,f+,21,144,67,21,,,,, +257,100,3,7022,1493,1047.582,32,32,A4,f+,21,144,69,21,,,,, +257,94,1,7016,1493,1047.679,,,,,,144,87,0,,,,, +257,95,1,7017,1493,1047.679,,,,,,144,90,0,,,,, +257,96,3,7018,1493,1047.679,,,,,,144,60,0,,,,, +257,97,3,7019,1493,1047.679,,,,,,144,63,0,,,,, +257,98,3,7020,1493,1047.679,,,,,,144,66,0,,,,, +257,99,3,7021,1493,1047.679,,,,,,144,67,0,,,,, +257,100,3,7022,1493,1047.679,,,,,,144,69,0,,,,, +257,101,1,7023,1514,1047.679,22,32,D#6,f+,21,144,87,21,,,,, +257,102,1,7024,1514,1047.679,32,32,F#6,f+,21,144,90,21,,,,, +257,103,3,7025,1514,1047.679,22,32,C4,f+,21,144,60,21,,,,, +257,104,3,7026,1514,1047.679,32,32,D#4,f+,21,144,63,21,,,,, +257,105,3,7027,1514,1047.679,32,32,F#4,f+,21,144,66,21,,,,, +257,106,3,7028,1514,1047.679,32,32,G4,f+,21,144,67,21,,,,, +257,107,3,7029,1514,1047.679,32,32,A4,f+,21,144,69,21,,,,, +257,101,1,7023,1514,1047.78,,,,,,144,87,0,,,,, +257,103,3,7025,1514,1047.78,,,,,,144,60,0,,,,, +258,0,0,7030,0,1047.78,,,,,,,,,258,,,, +258,1,1,7031,0,1047.78,,,,,,176,102,0,,,,, +258,2,3,7032,0,1047.78,,,,,,176,102,0,,,,, +257,102,1,7024,1514,1047.826,,,,,,144,90,0,,,,, +257,104,3,7026,1514,1047.826,,,,,,144,63,0,,,,, +257,105,3,7027,1514,1047.826,,,,,,144,66,0,,,,, +257,106,3,7028,1514,1047.826,,,,,,144,67,0,,,,, +257,107,3,7029,1514,1047.826,,,,,,144,69,0,,,,, +258,3,1,7033,85,1048.17,43,16,C6,ff,22,144,84,22,,,,, +258,4,3,7034,85,1048.17,43,16,E3,ff,22,144,52,22,,,,, +258,5,3,7035,85,1048.17,64,16,C#4,ff,22,144,61,22,,,,, +258,3,1,7033,85,1048.368,,,,,,144,84,0,,,,, +258,4,3,7034,85,1048.368,,,,,,144,52,0,,,,, +258,6,1,7036,128,1048.368,128,8,C#7,ff,22,144,97,22,,,,, +258,7,3,7037,128,1048.368,128,8,E3,ff,22,144,52,22,,,,, +258,8,3,7038,128,1048.368,128,8,A#3,ff,22,144,58,22,,,,, +258,5,3,7035,85,1048.465,,,,,,144,61,0,,,,, +258,6,1,7036,128,1048.956,,,,,,144,97,0,,,,, +258,7,3,7037,128,1048.956,,,,,,144,52,0,,,,, +258,8,3,7038,128,1048.956,,,,,,144,58,0,,,,, +258,9,1,7039,256,1048.956,32,32,D3,ff,22,144,50,22,,,,, +258,10,1,7040,256,1048.956,32,32,C4,ff,22,144,60,22,,,,, +258,11,3,7041,256,1048.956,32,32,B1,ff,22,144,35,22,,,,, +258,12,3,7042,256,1048.956,32,32,C#2,ff,22,144,37,22,,,,, +258,13,3,7043,256,1048.956,32,32,E2,ff,22,144,40,22,,,,, +258,14,3,7044,256,1048.956,32,32,G#2,ff,22,144,44,22,,,,, +258,9,1,7039,256,1049.103,,,,,,144,50,0,,,,, +258,10,1,7040,256,1049.103,,,,,,144,60,0,,,,, +258,11,3,7041,256,1049.103,,,,,,144,35,0,,,,, +258,12,3,7042,256,1049.103,,,,,,144,37,0,,,,, +258,13,3,7043,256,1049.103,,,,,,144,40,0,,,,, +258,14,3,7044,256,1049.103,,,,,,144,44,0,,,,, +258,15,0,7045,288,1049.103,,,,,,176,64,0,,,,,^ +258,16,1,7046,288,1049.103,32,32,D3,ff,22,144,50,22,,,,, +258,17,1,7047,288,1049.103,32,32,C4,ff,22,144,60,22,,,,, +258,18,3,7048,288,1049.103,32,32,B1,ff,22,144,35,22,,,,, +258,19,3,7049,288,1049.103,32,32,C#2,ff,22,144,37,22,,,,, +258,20,3,7050,288,1049.103,32,32,E2,ff,22,144,40,22,,,,, +258,21,3,7051,288,1049.103,32,32,G#2,ff,22,144,44,22,,,,, +258,16,1,7046,288,1049.25,,,,,,144,50,0,,,,, +258,17,1,7047,288,1049.25,,,,,,144,60,0,,,,, +258,18,3,7048,288,1049.25,,,,,,144,35,0,,,,, +258,19,3,7049,288,1049.25,,,,,,144,37,0,,,,, +258,20,3,7050,288,1049.25,,,,,,144,40,0,,,,, +258,21,3,7051,288,1049.25,,,,,,144,44,0,,,,, +258,22,1,7052,320,1049.25,,,,,,176,102,0,,,,, +258,23,3,7053,320,1049.25,,,,,,176,102,0,,,,, +258,25,1,7054,384,1049.544,,,,,,176,102,0,,,,, +258,26,3,7055,384,1049.544,128,8,D1,ppp,5,144,26,5,,,,, +258,27,3,7056,384,1049.544,128,8,B1,ppp,5,144,35,5,,,,, +258,28,3,7057,384,1049.544,128,8,G#2,ppp,5,144,44,5,,,,, +258,29,3,7058,384,1049.544,128,8,A#3,ppp,5,144,58,5,,,,, +258,24,0,7059,384,1049.544,,,,,,176,64,127,,,,,V +258,26,3,7055,384,1050.133,,,,,,144,26,0,,,,, +258,27,3,7056,384,1050.133,,,,,,144,35,0,,,,, +258,28,3,7057,384,1050.133,,,,,,144,44,0,,,,, +258,29,3,7058,384,1050.133,,,,,,144,58,0,,,,, +258,30,1,7060,512,1050.133,85,8,A#1,ppp,5,144,34,5,,,,, +258,31,3,7061,512,1050.133,21,32,B1,ppp,5,144,35,5,,,,, +258,32,3,7062,512,1050.133,32,32,C#2,ppp,5,144,37,5,,,,, +258,31,3,7061,512,1050.229,,,,,,144,35,0,,,,, +258,33,3,7063,533,1050.229,64,16,D3,ppp,5,144,50,5,,,,, +258,32,3,7062,512,1050.28,,,,,,144,37,0,,,,, +258,30,1,7060,512,1050.523,,,,,,144,34,0,,,,, +258,33,3,7063,533,1050.523,,,,,,144,50,0,,,,, +258,34,1,7064,597,1050.523,21,32,D3,ff,22,144,50,22,,,,, +258,35,1,7065,597,1050.523,32,32,C4,ff,22,144,60,22,,,,, +258,36,3,7066,597,1050.523,21,32,B1,ff,22,144,35,22,,,,, +258,37,3,7067,597,1050.523,32,32,C#2,ff,22,144,37,22,,,,, +258,38,3,7068,597,1050.523,32,32,E2,ff,22,144,40,22,,,,, +258,39,3,7069,597,1050.523,32,32,G#2,ff,22,144,44,22,,,,, +258,46,0,7070,628,1050.543,,,,,,176,64,0,,,,,^ +258,34,1,7064,597,1050.62,,,,,,144,50,0,,,,, +258,35,1,7065,597,1050.62,,,,,,144,60,0,,,,, +258,36,3,7066,597,1050.62,,,,,,144,35,0,,,,, +258,37,3,7067,597,1050.62,,,,,,144,37,0,,,,, +258,38,3,7068,597,1050.62,,,,,,144,40,0,,,,, +258,39,3,7069,597,1050.62,,,,,,144,44,0,,,,, +258,40,1,7071,618,1050.62,22,32,D3,ff,22,144,50,22,,,,, +258,41,1,7072,618,1050.62,32,32,C4,ff,22,144,60,22,,,,, +258,42,3,7073,618,1050.62,22,32,B1,ff,22,144,35,22,,,,, +258,43,3,7074,618,1050.62,32,32,C#2,ff,22,144,37,22,,,,, +258,44,3,7075,618,1050.62,32,32,E2,ff,22,144,40,22,,,,, +258,45,3,7076,618,1050.62,32,32,G#2,ff,22,144,44,22,,,,, +258,42,3,7073,618,1050.721,,,,,,144,35,0,,,,, +258,48,1,7077,640,1050.721,25,32,E4,p,11,144,64,11,,,,, +258,49,3,7078,640,1050.721,128,8,D1,ppp,5,144,26,5,,,,, +258,50,3,7079,640,1050.721,128,8,B1,ppp,5,144,35,5,,,,, +258,51,3,7080,640,1050.721,128,8,A#3,ppp,5,144,58,5,,,,, +258,40,1,7071,618,1050.721,,,,,,144,50,0,,,,, +258,41,1,7072,618,1050.767,,,,,,144,60,0,,,,, +258,43,3,7074,618,1050.767,,,,,,144,37,0,,,,, +258,44,3,7075,618,1050.767,,,,,,144,40,0,,,,, +258,45,3,7076,618,1050.767,,,,,,144,44,0,,,,, +258,48,1,7077,640,1050.836,,,,,,144,64,0,,,,, +258,52,1,7081,665,1050.836,51,16,F#3,p,11,144,54,11,,,,, +258,47,0,7082,640,1050.843,,,,,,176,64,127,,,,,V +258,52,1,7081,665,1051.07,,,,,,144,54,0,,,,, +258,53,1,7083,716,1051.07,26,32,A4,p,11,144,69,11,,,,, +258,53,1,7083,716,1051.19,,,,,,144,69,0,,,,, +258,54,1,7084,742,1051.19,26,32,G#4,p,11,144,68,11,,,,, +258,55,0,7085,742,1051.19,,,,,,,,,,5990,,, +258,56,0,7086,768,1051.233,,,,,,176,64,0,,,,,^ +258,49,3,7078,640,1051.309,,,,,,144,26,0,,,,, +258,50,3,7079,640,1051.309,,,,,,144,35,0,,,,, +258,51,3,7080,640,1051.309,,,,,,144,58,0,,,,, +258,54,1,7084,742,1051.309,,,,,,144,68,0,,,,, +258,57,1,7087,768,1051.309,32,32,B1,f,20,144,35,20,,,,, +258,58,1,7088,768,1051.309,32,32,C#2,f,20,144,37,20,,,,, +258,59,1,7089,768,1051.309,32,32,E2,f,20,144,40,20,,,,, +258,60,1,7090,768,1051.309,32,32,G#2,f,20,144,44,20,,,,, +258,61,1,7091,768,1051.309,32,32,D3,f,20,144,50,20,,,,, +258,62,1,7092,768,1051.309,32,32,C4,f,20,144,60,20,,,,, +258,63,3,7093,768,1051.309,,,,,,176,102,0,,,,, +258,64,3,7094,789,1051.406,21,32,G#1,f,20,144,32,20,,,,, +258,57,1,7087,768,1051.456,,,,,,144,35,0,,,,, +258,58,1,7088,768,1051.456,,,,,,144,37,0,,,,, +258,59,1,7089,768,1051.456,,,,,,144,40,0,,,,, +258,60,1,7090,768,1051.456,,,,,,144,44,0,,,,, +258,61,1,7091,768,1051.456,,,,,,144,50,0,,,,, +258,62,1,7092,768,1051.456,,,,,,144,60,0,,,,, +258,66,1,7095,800,1051.456,,,,,,176,102,0,,,,, +258,64,3,7094,789,1051.502,,,,,,144,32,0,,,,, +258,67,3,7096,810,1051.502,22,32,C3,f-,19,144,48,19,,,,, +258,65,0,7097,800,1051.533,,,,,,176,64,127,,,,,V +258,67,3,7096,810,1051.603,,,,,,144,48,0,,,,, +258,68,1,7098,832,1051.603,,,,,,176,102,0,,,,, +258,69,3,7099,832,1051.603,21,32,F#4,f-,19,144,66,19,,,,, +258,69,3,7099,832,1051.7,,,,,,144,66,0,,,,, +258,70,3,7100,853,1051.7,32,32,A3,mf+,18,144,57,18,,,,, +258,70,3,7100,853,1051.847,,,,,,144,57,0,,,,, +258,71,3,7101,885,1051.847,32,32,F#4,mf,17,144,66,17,,,,, +258,72,1,7102,896,1051.897,,,,,,176,102,0,,,,, +258,71,3,7101,885,1051.994,,,,,,144,66,0,,,,, +258,73,3,7103,917,1051.994,21,32,E1,mf,17,144,28,17,,,,, +258,73,3,7103,917,1052.09,,,,,,144,28,0,,,,, +258,74,3,7104,938,1052.09,22,32,G#1,mf-,16,144,32,16,,,,, +258,74,3,7104,938,1052.192,,,,,,144,32,0,,,,, +258,75,3,7105,960,1052.192,21,32,E1,mp+,15,144,28,15,,,,, +258,76,3,7106,960,1052.192,32,32,C2,mp+,15,144,36,15,,,,, +258,75,3,7105,960,1052.288,,,,,,144,28,0,,,,, +258,77,3,7107,981,1052.288,21,32,F#4,mp+,15,144,66,15,,,,, +258,76,3,7106,960,1052.339,,,,,,144,36,0,,,,, +258,77,3,7107,981,1052.385,,,,,,144,66,0,,,,, +258,78,3,7108,1002,1052.385,22,32,E1,mp,14,144,28,14,,,,, +258,79,3,7109,1002,1052.385,32,32,C2,mp,14,144,36,14,,,,, +258,78,3,7108,1002,1052.486,,,,,,144,28,0,,,,, +258,80,1,7110,1024,1052.486,,,,,,176,102,0,,,,, +258,81,3,7111,1024,1052.486,21,32,G#1,mp,14,144,32,14,,,,, +258,82,3,7112,1024,1052.486,32,32,A2,mp,14,144,45,14,,,,, +258,79,3,7109,1002,1052.532,,,,,,144,36,0,,,,, +258,81,3,7111,1024,1052.582,,,,,,144,32,0,,,,, +258,83,3,7113,1045,1052.582,32,32,F#3,mp-,13,144,54,13,,,,, +258,82,3,7112,1024,1052.633,,,,,,144,45,0,,,,, +258,83,3,7113,1045,1052.729,,,,,,144,54,0,,,,, +258,84,3,7114,1077,1052.729,32,32,A2,p+,12,144,45,12,,,,, +258,84,3,7114,1077,1052.876,,,,,,144,45,0,,,,, +258,85,0,7115,1109,1052.876,,,,,,176,64,0,,,,,^ +258,86,3,7116,1109,1052.876,32,32,E1,p,11,144,28,11,,,,, +258,87,3,7117,1109,1052.876,32,32,G#1,p,11,144,32,11,,,,, +258,86,3,7116,1109,1053.023,,,,,,144,28,0,,,,, +258,87,3,7117,1109,1053.023,,,,,,144,32,0,,,,, +258,88,3,7118,1141,1053.023,32,32,C2,p,11,144,36,11,,,,, +258,89,3,7119,1141,1053.023,32,32,F#3,p,11,144,54,11,,,,, +258,88,3,7118,1141,1053.17,,,,,,144,36,0,,,,, +258,89,3,7119,1141,1053.17,,,,,,144,54,0,,,,, +258,90,3,7120,1173,1053.17,32,32,E1,p-,10,144,28,10,,,,, +258,91,3,7121,1173,1053.17,32,32,G#1,p-,10,144,32,10,,,,, +258,92,3,7122,1173,1053.17,32,32,A2,p-,10,144,45,10,,,,, +258,90,3,7120,1173,1053.317,,,,,,144,28,0,,,,, +258,91,3,7121,1173,1053.317,,,,,,144,32,0,,,,, +258,92,3,7122,1173,1053.317,,,,,,144,45,0,,,,, +258,93,3,7123,1205,1053.317,32,32,C2,pp+,9,144,36,9,,,,, +258,94,3,7124,1205,1053.317,32,32,F#4,pp+,9,144,66,9,,,,, +258,93,3,7123,1205,1053.465,,,,,,144,36,0,,,,, +258,94,3,7124,1205,1053.465,,,,,,144,66,0,,,,, +258,95,3,7125,1237,1053.465,21,32,E1,pp,8,144,28,8,,,,, +258,95,3,7125,1237,1053.561,,,,,,144,28,0,,,,, +258,96,3,7126,1258,1053.561,22,32,A2,pp,8,144,45,8,,,,, +258,96,3,7126,1258,1053.662,,,,,,144,45,0,,,,, +258,97,1,7127,1280,1053.662,170,4,F#5,pp,8,144,78,8,,,,, +258,98,3,7128,1280,1053.662,64,16,E1,pp,8,144,28,8,,,,, +258,99,3,7129,1280,1053.662,64,16,G#1,pp,8,144,32,8,,,,, +258,100,3,7130,1280,1053.662,64,16,C2,pp,8,144,36,8,,,,, +258,98,3,7128,1280,1053.956,,,,,,144,28,0,,,,, +258,99,3,7129,1280,1053.956,,,,,,144,32,0,,,,, +258,100,3,7130,1280,1053.956,,,,,,144,36,0,,,,, +258,101,3,7131,1344,1053.956,,,,,,176,102,0,,,,, +258,102,3,7132,,1054.25,,8,C1,p,11,144,24,11,,,,g, +258,102,3,7132,,1054.3,,,,,,144,24,0,,,,, +258,103,3,7133,,1054.325,,8,F#1,p,11,144,30,11,,,,g, +258,103,3,7133,,1054.375,,,,,,144,30,0,,,,, +258,104,3,7134,1408,1054.4,128,8,E2,p,11,144,40,11,,,,, +258,97,1,7127,1280,1054.443,,,,,,144,78,0,,,,, +258,105,1,7135,1450,1054.593,22,32,A3,pp,8,144,57,8,,,,, +258,105,1,7135,1450,1054.694,,,,,,144,57,0,,,,, +258,106,1,7136,1472,1054.694,64,16,G#2,pp,8,144,44,8,,,,, +258,104,3,7134,1408,1054.989,,,,,,144,40,0,,,,, +258,106,1,7136,1472,1054.989,,,,,,144,44,0,,,,, +259,0,0,7137,0,1054.989,,,,,,,,,259,,,, +259,1,0,7138,0,1054.989,,,,,,,,,,5991,,, +259,3,1,7139,0,1054.989,64,16,F#5,pp,8,144,78,8,,,,, +259,4,3,7140,0,1054.989,,,,,,176,102,0,,,,, +259,2,0,7141,0,1054.989,,,,,,176,64,127,,,,,V +259,3,1,7139,0,1055.283,,,,,,144,78,0,,,,, +259,5,1,7142,64,1055.283,21,32,A3,pp,8,144,57,8,,,,, +259,5,1,7142,64,1055.379,,,,,,144,57,0,,,,, +259,6,1,7143,85,1055.379,43,16,E3,f,20,144,52,20,,,,, +259,7,1,7144,85,1055.379,64,16,C#4,f,20,144,61,20,,,,, +259,8,1,7145,85,1055.379,64,16,C6,f,20,144,84,20,,,,, +259,6,1,7143,85,1055.577,,,,,,144,52,0,,,,, +259,9,1,7146,128,1055.577,128,8,E3,p,11,144,52,11,,,,, +259,10,1,7147,128,1055.577,128,8,A#3,p,11,144,58,11,,,,, +259,11,1,7148,128,1055.577,128,8,C#7,p,11,144,97,11,,,,, +259,12,3,7149,128,1055.577,,,,,,176,102,0,,,,, +259,7,1,7144,85,1055.673,,,,,,144,61,0,,,,, +259,8,1,7145,85,1055.673,,,,,,144,84,0,,,,, +259,13,3,7150,170,1055.77,14,64,C1,p,11,144,24,11,,,,, +259,13,3,7150,170,1055.834,,,,,,144,24,0,,,,, +259,14,3,7151,184,1055.834,15,64,F#1,p+,12,144,30,12,,,,, +259,9,1,7146,128,1055.903,,,,,,144,52,0,,,,, +259,14,3,7151,184,1055.903,,,,,,144,30,0,,,,, +259,15,3,7152,199,1055.903,28,32,E3,mp-,13,144,52,13,,,,, +259,16,3,7153,227,1056.032,14,64,G#3,mp+,15,144,56,15,,,,, +259,16,3,7153,227,1056.096,,,,,,144,56,0,,,,, +259,17,3,7154,241,1056.096,15,64,A3,mp+,15,144,57,15,,,,, +259,10,1,7147,128,1056.165,,,,,,144,58,0,,,,, +259,11,1,7148,128,1056.165,,,,,,144,97,0,,,,, +259,15,3,7152,199,1056.165,,,,,,144,52,0,,,,, +259,17,3,7154,241,1056.165,,,,,,144,57,0,,,,, +259,18,1,7155,256,1056.165,128,8,F#4,ff,22,144,66,22,,,,, +259,19,3,7156,256,1056.165,128,8,A#1,ff,22,144,34,22,,,,, +259,18,1,7155,256,1056.753,,,,,,144,66,0,,,,, +259,19,3,7156,256,1056.753,,,,,,144,34,0,,,,, +259,20,1,7157,384,1056.753,42,16,C6,mp,14,144,84,14,,,,, +259,21,3,7158,384,1056.753,42,16,E3,mp,14,144,52,14,,,,, +259,22,3,7159,384,1056.753,64,16,A#3,mp,14,144,58,14,,,,, +259,23,1,7160,426,1056.946,86,8,C6,,,,,,,,,, +259,24,1,7161,426,1056.946,128,8,C#7,f,20,144,97,20,,,,, +259,25,3,7162,426,1056.946,86,8,E3,,,,,,,,,, +259,26,3,7163,426,1056.946,128,8,A#3,,,,,,,,,, +259,27,3,7164,426,1056.946,128,8,C#4,f,20,144,61,20,,,,, +259,20,1,7157,384,1057.342,,,,,,144,84,0,,,,, +259,21,3,7158,384,1057.342,,,,,,144,52,0,,,,, +259,28,1,7165,512,1057.342,,,,,,176,102,0,,,,, +259,29,3,7166,512,1057.342,28,32,C1,p,11,144,24,11,,,,, +259,29,3,7166,512,1057.47,,,,,,144,24,0,,,,, +259,30,3,7167,540,1057.47,28,32,F#1,p+,12,144,30,12,,,,, +259,24,1,7161,426,1057.535,,,,,,144,97,0,,,,, +259,27,3,7164,426,1057.535,,,,,,144,61,0,,,,, +259,30,3,7167,540,1057.599,,,,,,144,30,0,,,,, +259,31,3,7168,568,1057.599,43,32,E3,mp-,13,144,52,13,,,,, +259,22,3,7159,384,1057.636,,,,,,144,58,0,,,,, +259,31,3,7168,568,1057.796,,,,,,144,52,0,,,,, +259,32,3,7169,611,1057.796,29,32,G#3,mp+,15,144,56,15,,,,, +259,32,3,7169,611,1057.93,,,,,,144,56,0,,,,, +259,33,3,7170,640,1057.93,,,,,,176,102,0,,,,, +259,34,1,7171,768,1058.518,256,4,C6,fff,24,144,84,23,,,,, +259,35,1,7172,768,1058.518,256,4,C#7,fff,24,144,97,23,,,,, +259,36,3,7173,768,1058.518,128,8,E3,fff,24,144,52,23,,,,, +259,37,3,7174,768,1058.518,128,8,A#3,fff,24,144,58,23,,,,, +259,38,3,7175,768,1058.518,128,8,C#4,fff,24,144,61,23,,,,, +259,36,3,7173,768,1059.106,,,,,,144,52,0,,,,, +259,37,3,7174,768,1059.106,,,,,,144,58,0,,,,, +259,38,3,7175,768,1059.106,,,,,,144,61,0,,,,, +259,39,3,7176,896,1059.106,42,32,C1,mp,14,144,24,14,,,,, +259,39,3,7176,896,1059.299,,,,,,144,24,0,,,,, +259,40,3,7177,938,1059.299,43,32,E3,mp+,15,144,52,15,,,,, +259,40,3,7177,938,1059.497,,,,,,144,52,0,,,,, +259,41,3,7178,981,1059.497,14,64,G#4,mf-,16,144,68,16,,,,, +259,41,3,7178,981,1059.561,,,,,,144,68,0,,,,, +259,42,3,7179,995,1059.561,29,32,A4,mf-,16,144,69,16,,,,, +259,42,3,7179,995,1059.694,,,,,,144,69,0,,,,, +259,43,1,7180,1024,1059.694,,,,,,176,102,0,,,,, +259,44,3,7181,1024,1059.694,42,32,C1,mf-,16,144,24,16,,,,, +259,34,1,7171,768,1059.694,,,,,,144,84,0,,,,, +259,35,1,7172,768,1059.694,,,,,,144,97,0,,,,, +259,44,3,7181,1024,1059.887,,,,,,144,24,0,,,,, +259,45,3,7182,1066,1059.887,43,32,E3,mf,17,144,52,17,,,,, +259,45,3,7182,1066,1060.085,,,,,,144,52,0,,,,, +259,46,3,7183,1109,1060.085,43,32,G#4,mf+,18,144,68,18,,,,, +259,47,3,7184,1152,1060.283,128,8,G#4,,,,,,,,,, +259,48,0,7185,1221,1060.585,,,,,,176,64,0,,,,,^ +259,46,3,7183,1109,1060.871,,,,,,144,68,0,,,,, +259,50,1,7186,1280,1060.871,256,4,F#4,pp,8,144,66,8,,,,, +259,51,3,7187,1280,1060.871,256,4,A#1,pp,8,144,34,8,,,,, +259,49,0,7188,1280,1060.885,,,,,,176,64,127,,,,,V +259,50,1,7186,1280,1062.047,,,,,,144,66,0,,,,, +259,51,3,7187,1280,1062.047,,,,,,144,34,0,,,,, +260,0,0,7189,0,1062.047,,,,,,,,,260,,,, +260,1,1,7190,0,1062.047,,,,,,176,102,0,,,,, +260,2,2,7191,0,1062.047,,,,,,176,102,0,,,,, +260,3,3,7192,0,1062.047,,,,,,176,102,0,,,,, +260,4,0,7193,256,1063.224,,,,,,176,64,0,,,,,^ +260,5,2,7194,256,1063.224,192,8,C#2,ppp,5,,,,,,,, +260,6,3,7195,,1063.224,,8,C#2,f,20,144,37,20,,,,g, +260,7,3,7196,,1063.299,,8,D2,f-,19,144,38,19,,,,g, +260,7,3,7196,,1063.349,,,,,,144,38,0,,,,, +260,6,3,7195,,1063.374,,,,,,144,37,0,,,,, +260,8,3,7197,,1063.374,,8,C#2,f-,19,144,37,19,,,,g, +260,9,3,7198,,1063.449,,8,D2,mf+,18,144,38,18,,,,g, +260,9,3,7198,,1063.499,,,,,,144,38,0,,,,, +260,8,3,7197,,1063.524,,,,,,144,37,0,,,,, +260,10,3,7199,,1063.524,,8,C#2,mf,17,144,37,17,,,,g, +260,11,3,7200,,1063.524,,8,A4,mf,17,144,69,17,,,,g, +260,11,3,7200,,1063.574,,,,,,144,69,0,,,,, +260,12,3,7201,,1063.599,,8,B1,mf,17,144,35,17,,,,g, +260,12,3,7201,,1063.649,,,,,,144,35,0,,,,, +260,13,3,7202,,1063.674,,8,F2,mf-,16,144,41,16,,,,g, +260,13,3,7202,,1063.724,,,,,,144,41,0,,,,, +260,14,3,7203,,1063.749,,8,B1,mp+,15,144,35,15,,,,g, +260,15,3,7204,,1063.749,,8,A3,mp+,15,144,57,15,,,,g, +260,14,3,7203,,1063.799,,,,,,144,35,0,,,,, +260,15,3,7204,,1063.799,,,,,,144,57,0,,,,, +260,16,3,7205,,1063.824,,8,F2,mp,14,144,41,14,,,,g, +260,16,3,7205,,1063.874,,,,,,144,41,0,,,,, +260,17,3,7206,,1063.899,,8,B0,mp,14,144,23,14,,,,g, +260,17,3,7206,,1063.949,,,,,,144,23,0,,,,, +260,18,3,7207,,1063.974,,8,F2,mp-,13,144,41,13,,,,g, +260,18,3,7207,,1064.024,,,,,,144,41,0,,,,, +260,10,3,7199,,1064.106,,,,,,144,37,0,,,,, +260,19,3,7208,256,1064.199,128,8,B1,p,11,144,35,11,,,,, +260,20,3,7209,256,1064.199,128,8,D2,p,11,144,38,11,,,,, +260,21,3,7210,256,1064.199,128,8,F2,p,11,144,41,11,,,,, +260,22,3,7211,256,1064.199,128,8,A2,p,11,144,45,11,,,,, +260,19,3,7208,256,1064.787,,,,,,144,35,0,,,,, +260,20,3,7209,256,1064.787,,,,,,144,38,0,,,,, +260,21,3,7210,256,1064.787,,,,,,144,41,0,,,,, +260,22,3,7211,256,1064.787,,,,,,144,45,0,,,,, +260,23,3,7212,384,1064.787,,,,,,176,102,0,,,,, +260,24,2,7213,448,1065.081,,,,,,176,102,0,,,,, +260,25,0,7214,448,1065.081,,,,,,,,,,5992,,, +260,26,1,7215,,1065.375,,8,A6,mf,17,144,93,17,,,,g, +260,29,3,7216,,1065.375,,8,C7,pp,8,144,96,8,,,,g, +260,26,1,7215,,1065.425,,,,,,144,93,0,,,,, +260,29,3,7216,,1065.425,,,,,,144,96,0,,,,, +260,27,1,7217,512,1065.525,512,2,D#4,mf,17,144,63,17,,,,, +260,28,2,7218,512,1065.525,25,32,G6,pp,8,144,91,8,,,,, +260,30,3,7219,512,1065.525,73,16,E7,pp,8,144,100,8,,,,, +260,28,2,7218,512,1065.64,,,,,,144,91,0,,,,, +260,32,2,7220,537,1065.64,26,32,B6,pp,8,144,95,8,,,,, +260,31,0,7221,537,1065.64,,,,,,176,64,127,,,,,V +260,32,2,7220,537,1065.76,,,,,,144,95,0,,,,, +260,33,2,7222,563,1065.76,25,32,G6,pp,8,144,91,8,,,,, +260,30,3,7219,512,1065.861,,,,,,144,100,0,,,,, +260,34,3,7223,585,1065.861,73,16,G#3,pp,8,144,56,8,,,,, +260,33,2,7222,563,1065.875,,,,,,144,91,0,,,,, +260,35,2,7224,588,1065.875,26,32,B6,pp,8,144,95,8,,,,, +260,35,2,7224,588,1065.994,,,,,,144,95,0,,,,, +260,36,2,7225,614,1065.994,26,32,G6,pp,8,144,91,8,,,,, +260,36,2,7225,614,1066.114,,,,,,144,91,0,,,,, +260,37,2,7226,640,1066.114,38,32,B6,pp,8,144,95,8,,,,, +260,38,3,7227,658,1066.196,110,16,D4,pp,8,144,62,8,,,,, +260,34,3,7223,585,1066.196,,,,,,144,56,0,,,,, +260,37,2,7226,640,1066.288,,,,,,144,95,0,,,,, +260,39,2,7228,678,1066.288,38,32,G6,pp,8,144,91,8,,,,, +260,39,2,7228,678,1066.463,,,,,,144,91,0,,,,, +260,40,2,7229,716,1066.463,26,32,B6,pp,8,144,95,8,,,,, +260,40,2,7229,716,1066.582,,,,,,144,95,0,,,,, +260,41,2,7230,742,1066.582,26,32,A7,pp,8,144,105,8,,,,, +260,41,2,7230,742,1066.702,,,,,,144,105,0,,,,, +260,42,2,7231,768,1066.702,21,32,C5,pp,8,144,72,8,,,,, +260,43,3,7232,,1066.702,,8,C7,pp+,9,144,96,9,,,,g, +260,38,3,7227,658,1066.702,,,,,,144,62,0,,,,, +260,43,3,7232,,1066.752,,,,,,144,96,0,,,,, +260,44,3,7233,768,1066.777,32,32,E7,pp+,9,144,100,9,,,,, +260,42,2,7231,768,1066.798,,,,,,144,72,0,,,,, +260,45,2,7234,789,1066.873,21,32,B6,pp,8,144,95,8,,,,, +260,44,3,7233,768,1066.924,,,,,,144,100,0,,,,, +260,46,3,7235,800,1066.924,32,32,G#3,pp+,9,144,56,9,,,,, +260,45,2,7234,789,1066.97,,,,,,144,95,0,,,,, +260,47,2,7236,810,1066.97,22,32,C6,pp,8,144,84,8,,,,, +260,46,3,7235,800,1067.071,,,,,,144,56,0,,,,, +260,47,2,7236,810,1067.071,,,,,,144,84,0,,,,, +260,48,2,7237,832,1067.071,21,32,B6,pp,8,144,95,8,,,,, +260,49,3,7238,832,1067.071,32,32,D4,pp+,9,144,62,9,,,,, +260,50,2,7239,853,1067.167,11,64,B6,,,,,,,,,, +260,48,2,7237,832,1067.218,,,,,,144,95,0,,,,, +260,49,3,7238,832,1067.218,,,,,,144,62,0,,,,, +260,51,2,7240,864,1067.218,32,32,C6,pp,8,144,84,8,,,,, +260,52,3,7241,864,1067.218,32,32,C#4,pp+,9,144,61,9,,,,, +260,51,2,7240,864,1067.365,,,,,,144,84,0,,,,, +260,52,3,7241,864,1067.365,,,,,,144,61,0,,,,, +260,53,2,7242,896,1067.365,42,32,B6,pp,8,144,95,8,,,,, +260,54,3,7243,896,1067.365,,,,,,176,102,0,,,,, +260,53,2,7242,896,1067.558,,,,,,144,95,0,,,,, +260,55,2,7244,938,1067.558,29,32,C6,pp,8,144,84,8,,,,, +260,55,2,7244,938,1067.691,,,,,,144,84,0,,,,, +260,56,2,7245,967,1067.691,28,32,D#7,pp,8,144,99,8,,,,, +260,56,2,7245,967,1067.82,,,,,,144,99,0,,,,, +260,57,2,7246,995,1067.82,29,32,A7,pp,8,144,105,8,,,,, +260,27,1,7217,512,1067.878,,,,,,144,63,0,,,,, +260,57,2,7246,995,1067.953,,,,,,144,105,0,,,,, +260,58,1,7247,1024,1067.953,,,,,,176,102,0,,,,, +260,59,2,7248,1024,1067.953,28,32,C5,pp,8,144,72,8,,,,, +260,60,3,7249,1024,1067.953,146,8,C7,p-,10,144,96,10,,,,, +260,59,2,7248,1024,1068.082,,,,,,144,72,0,,,,, +260,61,2,7250,1052,1068.082,28,32,D#7,pp,8,144,99,8,,,,, +260,61,2,7250,1052,1068.211,,,,,,144,99,0,,,,, +260,62,2,7251,1080,1068.211,43,32,A7,pp,8,144,105,8,,,,, +260,62,2,7251,1080,1068.408,,,,,,144,105,0,,,,, +260,63,2,7252,1123,1068.408,29,32,D#7,pp,8,144,99,8,,,,, +260,63,2,7252,1123,1068.542,,,,,,144,99,0,,,,, +260,64,2,7253,1152,1068.542,42,16,A7,pp,8,144,105,8,,,,, +260,60,3,7249,1024,1068.624,,,,,,144,96,0,,,,, +260,65,3,7254,1170,1068.624,110,16,G#3,p,11,144,56,11,,,,, +260,64,2,7253,1152,1068.735,,,,,,144,105,0,,,,, +260,66,1,7255,1194,1068.735,29,32,C#6,pp,8,144,85,8,,,,, +260,67,2,7256,1194,1068.735,86,8,D#7,pp,8,144,99,8,,,,, +260,66,1,7255,1194,1068.868,,,,,,144,85,0,,,,, +260,68,1,7257,1223,1068.868,28,32,F2,mp,14,144,41,14,,,,, +260,68,1,7257,1223,1068.996,,,,,,144,41,0,,,,, +260,69,1,7258,1251,1068.996,29,32,F#3,mp,14,144,54,14,,,,, +260,69,1,7258,1251,1069.13,,,,,,144,54,0,,,,, +260,70,1,7259,1280,1069.13,,,,,,176,102,0,,,,, +260,71,2,7260,1280,1069.13,,,,,,176,102,0,,,,, +260,72,3,7261,1280,1069.13,36,32,G#3,,,,,,,,,, +260,67,2,7256,1194,1069.13,,,,,,144,99,0,,,,, +260,73,3,7262,1316,1069.295,55,32,E7,p,11,144,100,11,,,,, +260,65,3,7254,1170,1069.295,,,,,,144,56,0,,,,, +260,74,3,7263,1371,1069.548,55,32,G#3,p+,12,144,56,12,,,,, +260,73,3,7262,1316,1069.698,,,,,,144,100,0,,,,, +260,74,3,7263,1371,1069.801,,,,,,144,56,0,,,,, +260,75,3,7264,1426,1069.801,55,32,D5,p+,12,144,74,12,,,,, +260,75,3,7264,1426,1070.053,,,,,,144,74,0,,,,, +260,76,3,7265,1481,1070.053,55,32,C#5,p+,12,144,73,12,,,,, +260,77,0,7266,1535,1070.302,,,,,,176,64,0,,,,,^ +260,76,3,7265,1481,1070.306,,,,,,144,73,0,,,,, +261,0,0,7267,0,1070.306,,,,,,,,,261,,,, +261,5,1,7268,0,1070.306,384,4,A6,p,11,144,93,11,,,,, +261,2,1,7269,,1070.306,,8,G5,p,11,144,79,11,,,,g, +261,6,3,7270,,1070.306,,8,D4,p,11,144,62,11,,,,g, +261,2,1,7269,,1070.356,,,,,,144,79,0,,,,, +261,6,3,7270,,1070.356,,,,,,144,62,0,,,,, +261,3,1,7271,,1070.381,,8,C5,p,11,,,,,,,g, +261,7,3,7272,,1070.381,,8,C5,p,11,144,72,11,,,,g, +261,7,3,7272,,1070.431,,,,,,144,72,0,,,,, +261,4,1,7273,,1070.456,,8,B5,p,11,144,83,11,,,,g, +261,8,3,7274,,1070.456,,8,C#4,p,11,144,61,11,,,,g, +261,4,1,7273,,1070.506,,,,,,144,83,0,,,,, +261,8,3,7274,,1070.506,,,,,,144,61,0,,,,, +261,9,3,7275,0,1070.756,384,4,E5,p,11,144,76,11,,,,, +261,1,0,7276,0,1070.756,,,,,,176,64,127,,,,,V +261,5,1,7268,0,1072.071,,,,,,144,93,0,,,,, +261,10,0,7277,301,1072.14,,,,,,176,64,0,,,,,^ +261,9,3,7275,0,1072.521,,,,,,144,76,0,,,,, +261,12,1,7278,384,1072.521,21,32,G5,mp,14,144,79,14,,,,, +261,13,3,7279,384,1072.521,,,,,,176,102,0,,,,, +261,11,0,7280,384,1072.521,,,,,,176,64,127,,,,,V +261,12,1,7278,384,1072.617,,,,,,144,79,0,,,,, +261,14,1,7281,405,1072.617,21,32,C5,mp,14,144,72,14,,,,, +261,14,1,7281,405,1072.714,,,,,,144,72,0,,,,, +261,15,1,7282,426,1072.714,22,32,G5,mp,14,144,79,14,,,,, +261,16,3,7283,426,1072.714,,,,,,176,102,0,,,,, +261,17,3,7284,440,1072.778,14,32,D4,p,11,144,62,11,,,,, +261,15,1,7282,426,1072.815,,,,,,144,79,0,,,,, +261,18,1,7285,448,1072.815,21,32,B5,mp,14,144,83,14,,,,, +261,17,3,7284,440,1072.843,,,,,,144,62,0,,,,, +261,19,3,7286,454,1072.843,14,32,C5,p+,12,144,72,12,,,,, +261,19,3,7286,454,1072.907,,,,,,144,72,0,,,,, +261,21,3,7287,468,1072.907,14,32,D4,p+,12,144,62,12,,,,, +261,18,1,7285,448,1072.912,,,,,,144,83,0,,,,, +261,20,1,7288,469,1072.912,21,32,C5,mp+,15,144,72,15,,,,, +261,21,3,7287,468,1072.971,,,,,,144,62,0,,,,, +261,22,3,7289,482,1072.971,14,32,C#4,mp-,13,144,61,13,,,,, +261,20,1,7288,469,1073.008,,,,,,144,72,0,,,,, +261,23,1,7290,490,1073.008,22,32,B5,mp+,15,144,83,15,,,,, +261,22,3,7289,482,1073.036,,,,,,144,61,0,,,,, +261,24,3,7291,496,1073.036,16,32,D4,mp-,13,144,62,13,,,,, +261,24,3,7291,496,1073.109,,,,,,144,62,0,,,,, +261,25,1,7292,512,1073.109,384,4,A6,mf,17,144,93,17,,,,, +261,26,3,7293,512,1073.109,85,8,E6,mp,14,144,88,14,,,,, +261,23,1,7290,490,1073.109,,,,,,144,83,0,,,,, +261,26,3,7293,512,1073.5,,,,,,144,88,0,,,,, +261,27,3,7294,597,1073.5,128,8,G#3,mp,14,144,56,14,,,,, +261,27,3,7294,597,1074.088,,,,,,144,56,0,,,,, +261,28,3,7295,725,1074.088,43,16,C#6,f,20,144,85,20,,,,, +261,28,3,7295,725,1074.286,,,,,,144,85,0,,,,, +261,29,3,7296,768,1074.286,42,16,F2,mf,17,144,41,17,,,,, +261,29,3,7296,768,1074.479,,,,,,144,41,0,,,,, +261,30,3,7297,810,1074.479,22,32,F#3,mp,14,144,54,14,,,,, +261,30,3,7297,810,1074.58,,,,,,144,54,0,,,,, +261,31,3,7298,832,1074.58,42,16,F2,p+,12,144,41,12,,,,, +261,31,3,7298,832,1074.773,,,,,,144,41,0,,,,, +261,32,3,7299,874,1074.773,22,32,F#3,p-,10,144,54,10,,,,, +261,25,1,7292,512,1074.874,,,,,,144,93,0,,,,, +261,32,3,7299,874,1074.874,,,,,,144,54,0,,,,, +261,33,1,7300,896,1074.874,42,16,D#6,mf,17,144,87,17,,,,, +261,34,3,7301,896,1074.874,42,16,F2,pp,8,144,41,8,,,,, +261,35,0,7302,938,1075.016,,,,,,176,64,0,,,,,^ +261,33,1,7300,896,1075.067,,,,,,144,87,0,,,,, +261,34,3,7301,896,1075.067,,,,,,144,41,0,,,,, +261,36,1,7303,938,1075.067,43,16,A6,mf,17,144,93,17,,,,, +261,37,3,7304,938,1075.067,,,,,,176,102,0,,,,, +261,36,1,7303,938,1075.265,,,,,,144,93,0,,,,, +261,39,1,7305,981,1075.265,43,16,D#6,mf,17,144,87,17,,,,, +261,38,0,7306,981,1075.316,,,,,,176,64,127,,,,,V +261,39,1,7305,981,1075.462,,,,,,144,87,0,,,,, +261,40,1,7307,1024,1075.462,0,8,G#7,ppp,5,,,,,,,, +261,41,1,7308,1024,1075.462,0,8,E5,ppp,5,,,,,,,, +261,42,1,7309,1024,1075.462,128,8,A5,ppp,5,144,81,5,,,,, +261,43,1,7310,1024,1075.462,0,8,F6,ppp,5,,,,,,,, +261,44,1,7311,1024,1075.462,128,8,D#7,ppp,5,144,99,5,,,,, +261,45,1,7312,1024,1075.462,64,16,G4,ppp,5,144,67,5,,,,, +261,46,1,7313,1024,1075.462,64,16,B6,ppp,5,144,95,5,,,,, +261,47,1,7314,1024,1075.462,64,16,A7,fff,24,144,105,23,,,,, +261,48,3,7315,1024,1075.462,85,8,C5,mf,17,144,72,17,,,,, +261,45,1,7312,1024,1075.756,,,,,,144,67,0,,,,, +261,46,1,7313,1024,1075.756,,,,,,144,95,0,,,,, +261,47,1,7314,1024,1075.756,,,,,,144,105,0,,,,, +261,49,1,7316,1088,1075.756,64,16,G6,ppp,5,144,91,5,,,,, +261,48,3,7315,1024,1075.853,,,,,,144,72,0,,,,, +261,50,3,7317,1109,1075.853,85,8,D3,mf,17,144,50,17,,,,, +261,42,1,7309,1024,1076.05,,,,,,144,81,0,,,,, +261,44,1,7311,1024,1076.05,,,,,,144,99,0,,,,, +261,49,1,7316,1088,1076.05,,,,,,144,91,0,,,,, +261,51,1,7318,1152,1076.05,,,,,,176,102,0,,,,, +261,50,3,7317,1109,1076.243,,,,,,144,50,0,,,,, +261,52,3,7319,1194,1076.243,25,32,E5,mf+,18,144,76,18,,,,, +261,52,3,7319,1194,1076.358,,,,,,144,76,0,,,,, +261,53,3,7320,1219,1076.358,26,32,C#3,f-,19,144,49,19,,,,, +261,53,3,7320,1219,1076.478,,,,,,144,49,0,,,,, +261,54,3,7321,1245,1076.478,17,32,G#2,f-,19,144,44,19,,,,, +261,54,3,7321,1245,1076.556,,,,,,144,44,0,,,,, +261,55,3,7322,1262,1076.556,18,32,C#3,f-,19,144,49,19,,,,, +261,55,3,7322,1262,1076.639,,,,,,144,49,0,,,,, +261,56,1,7323,1280,1076.639,28,32,D#6,f,20,144,87,20,,,,, +261,57,3,7324,1280,1076.639,,,,,,176,102,0,,,,, +261,56,1,7323,1280,1076.767,,,,,,144,87,0,,,,, +261,58,1,7325,1308,1076.767,28,32,C7,f,20,144,96,20,,,,, +261,58,1,7325,1308,1076.896,,,,,,144,96,0,,,,, +261,59,1,7326,1336,1076.896,29,32,D#6,f+,21,144,87,21,,,,, +261,59,1,7326,1336,1077.029,,,,,,144,87,0,,,,, +261,60,1,7327,1365,1077.029,171,8,E7,f+,21,144,100,21,,,,, +261,60,1,7327,1365,1077.815,,,,,,144,100,0,,,,, +262,0,0,7328,0,1077.815,,,,,,,,,262,,,, +262,1,1,7329,0,1077.815,224,8,C6,fff,24,144,84,23,,,,, +262,2,1,7330,0,1077.815,128,8,C#7,fff,24,144,97,23,,,,, +262,3,3,7331,0,1077.815,32,32,E3,fff,24,144,52,23,,,,, +262,4,3,7332,0,1077.815,32,32,A#3,fff,24,144,58,23,,,,, +262,3,3,7331,0,1077.962,,,,,,144,52,0,,,,, +262,4,3,7332,0,1077.962,,,,,,144,58,0,,,,, +262,5,3,7333,32,1077.962,96,16,G#1,fff,24,144,32,23,,,,, +262,2,1,7330,0,1078.403,,,,,,144,97,0,,,,, +262,5,3,7333,32,1078.403,,,,,,144,32,0,,,,, +262,6,3,7334,128,1078.403,96,16,G#1,fff,24,144,32,23,,,,, +262,7,3,7335,128,1078.403,64,16,E3,fff,24,144,52,23,,,,, +262,8,3,7336,128,1078.403,64,16,A#3,fff,24,144,58,23,,,,, +262,7,3,7335,128,1078.697,,,,,,144,52,0,,,,, +262,8,3,7336,128,1078.697,,,,,,144,58,0,,,,, +262,1,1,7329,0,1078.844,,,,,,144,84,0,,,,, +262,6,3,7334,128,1078.844,,,,,,144,32,0,,,,, +262,9,1,7337,224,1078.844,32,32,C6,fff,24,144,84,23,,,,, +262,10,1,7338,224,1078.844,32,32,C#7,fff,24,144,97,23,,,,, +262,11,3,7339,224,1078.844,32,32,G#1,fff,24,144,32,23,,,,, +262,12,3,7340,224,1078.844,32,32,E2,fff,24,144,40,23,,,,, +262,9,1,7337,224,1078.992,,,,,,144,84,0,,,,, +262,10,1,7338,224,1078.992,,,,,,144,97,0,,,,, +262,11,3,7339,224,1078.992,,,,,,144,32,0,,,,, +262,12,3,7340,224,1078.992,,,,,,144,40,0,,,,, +262,13,1,7341,256,1078.992,32,32,C6,ff+,23,144,84,23,,,,, +262,14,1,7342,256,1078.992,32,32,C#7,ff+,23,144,97,23,,,,, +262,15,3,7343,256,1078.992,32,32,G#1,ff+,23,144,32,23,,,,, +262,16,3,7344,256,1078.992,32,32,E2,ff+,23,144,40,23,,,,, +262,14,1,7342,256,1079.139,,,,,,144,97,0,,,,, +262,16,3,7344,256,1079.139,,,,,,144,40,0,,,,, +262,17,1,7345,288,1079.139,96,16,C5,ff,22,144,72,22,,,,, +262,18,3,7346,288,1079.139,96,16,A#3,ff,22,144,58,22,,,,, +262,15,3,7343,256,1079.58,,,,,,144,32,0,,,,, +262,17,1,7345,288,1079.58,,,,,,144,72,0,,,,, +262,18,3,7346,288,1079.58,,,,,,144,58,0,,,,, +262,19,1,7347,384,1079.58,64,16,A#3,mf+,18,144,58,18,,,,, +262,20,1,7348,384,1079.58,64,16,C5,mf+,18,144,72,18,,,,, +262,21,3,7349,384,1079.58,128,8,G#1,mf+,18,144,32,18,,,,, +262,22,3,7350,384,1079.58,128,8,E2,mf+,18,144,40,18,,,,, +262,13,1,7341,256,1079.819,,,,,,144,84,0,,,,, +262,19,1,7347,384,1079.874,,,,,,144,58,0,,,,, +262,20,1,7348,384,1079.874,,,,,,144,72,0,,,,, +262,23,1,7351,448,1079.874,64,16,C5,mf-,16,144,72,16,,,,, +262,24,1,7352,448,1079.874,64,16,C#6,mf-,16,144,85,16,,,,, +262,25,0,7353,511,1080.163,,,,,,176,64,0,,,,,^ +262,26,1,7354,512,1080.168,32,32,C5,,,,,,,,,, +262,27,1,7355,512,1080.168,32,32,C#6,,,,,,,,,, +262,28,3,7356,512,1080.168,32,32,G#1,,,,,,,,,, +262,29,3,7357,512,1080.168,32,32,E2,,,,,,,,,, +262,21,3,7349,384,1080.315,,,,,,144,32,0,,,,, +262,22,3,7350,384,1080.315,,,,,,144,40,0,,,,, +262,23,1,7351,448,1080.315,,,,,,144,72,0,,,,, +262,24,1,7352,448,1080.315,,,,,,144,85,0,,,,, +262,30,1,7358,544,1080.315,96,16,C5,mp-,13,144,72,13,,,,, +262,31,1,7359,544,1080.315,64,16,C#6,mp-,13,144,85,13,,,,, +262,32,3,7360,544,1080.315,32,32,G#1,mp-,13,144,32,13,,,,, +262,33,3,7361,544,1080.315,32,32,E2,mp-,13,144,40,13,,,,, +262,32,3,7360,544,1080.462,,,,,,144,32,0,,,,, +262,33,3,7361,544,1080.462,,,,,,144,40,0,,,,, +262,34,3,7362,576,1080.462,64,16,G#1,p,11,144,32,11,,,,, +262,35,3,7363,576,1080.462,64,16,E2,p,11,144,40,11,,,,, +262,36,3,7364,576,1080.462,64,16,A#2,p,11,144,46,11,,,,, +262,31,1,7359,544,1080.609,,,,,,144,85,0,,,,, +262,30,1,7358,544,1080.756,,,,,,144,72,0,,,,, +262,34,3,7362,576,1080.756,,,,,,144,32,0,,,,, +262,35,3,7363,576,1080.756,,,,,,144,40,0,,,,, +262,36,3,7364,576,1080.756,,,,,,144,46,0,,,,, +262,37,1,7365,640,1080.756,32,32,C4,pp+,9,144,60,9,,,,, +262,38,1,7366,640,1080.756,32,32,C#5,pp+,9,144,73,9,,,,, +262,39,3,7367,640,1080.756,32,32,G#1,pp+,9,144,32,9,,,,, +262,40,3,7368,640,1080.756,32,32,E2,pp+,9,144,40,9,,,,, +262,41,3,7369,640,1080.756,32,32,A#2,pp+,9,144,46,9,,,,, +262,37,1,7365,640,1080.903,,,,,,144,60,0,,,,, +262,38,1,7366,640,1080.903,,,,,,144,73,0,,,,, +262,39,3,7367,640,1080.903,,,,,,144,32,0,,,,, +262,40,3,7368,640,1080.903,,,,,,144,40,0,,,,, +262,41,3,7369,640,1080.903,,,,,,144,46,0,,,,, +262,42,1,7370,672,1080.903,96,16,C4,pp,8,144,60,8,,,,, +262,43,1,7371,672,1080.903,64,16,C#5,pp,8,144,73,8,,,,, +262,44,3,7372,672,1080.903,96,16,G#1,pp,8,144,32,8,,,,, +262,45,3,7373,672,1080.903,64,16,E2,pp,8,144,40,8,,,,, +262,46,3,7374,672,1080.903,64,16,A#2,pp,8,144,46,8,,,,, +262,43,1,7371,672,1081.197,,,,,,144,73,0,,,,, +262,45,3,7373,672,1081.197,,,,,,144,40,0,,,,, +262,46,3,7374,672,1081.197,,,,,,144,46,0,,,,, +262,42,1,7370,672,1081.344,,,,,,144,60,0,,,,, +262,44,3,7372,672,1081.344,,,,,,144,32,0,,,,, +262,47,1,7375,768,1081.344,,,,,,176,102,0,,,,, +262,48,3,7376,768,1081.344,,,,,,176,102,0,,,,, +262,49,0,7377,768,1081.344,,,,,,,,,,5993,,, +262,51,1,7378,810,1081.537,43,16,A7,ff,22,144,105,22,,,,, +262,50,0,7379,810,1081.537,,,,,,176,64,127,,,,,V +262,51,1,7378,810,1081.735,,,,,,144,105,0,,,,, +262,52,1,7380,853,1081.735,171,4,A7,ff,22,144,105,22,,,,, +262,53,3,7381,853,1081.735,102,8,F1,ff,22,144,29,22,,,,, +262,53,3,7381,853,1082.204,,,,,,144,29,0,,,,, +262,54,3,7382,955,1082.204,69,8,F1,ff,22,144,29,22,,,,, +262,54,3,7382,955,1082.521,,,,,,144,29,0,,,,, +262,55,1,7383,1024,1082.521,,,,,,176,102,0,,,,, +262,56,3,7384,1024,1082.521,68,8,F1,ff,22,144,29,22,,,,, +262,57,3,7385,1024,1082.521,128,8,D#3,ff,22,144,51,22,,,,, +262,52,1,7380,853,1082.596,,,,,,144,105,0,,,,, +262,56,3,7384,1024,1082.833,,,,,,144,29,0,,,,, +262,57,3,7385,1024,1082.833,,,,,,144,51,0,,,,, +262,58,3,7386,1092,1082.833,102,8,D#3,ff,22,144,51,22,,,,, +262,58,3,7386,1092,1083.302,,,,,,144,51,0,,,,, +262,59,1,7387,1194,1083.302,86,8,C#6,ff,22,144,85,22,,,,, +262,60,3,7388,1194,1083.302,22,32,D#3,mp,14,144,51,14,,,,, +262,61,3,7389,1194,1083.302,32,32,G#3,mp,14,144,56,14,,,,, +262,60,3,7388,1194,1083.403,,,,,,144,51,0,,,,, +262,61,3,7389,1194,1083.403,,,,,,144,56,0,,,,, +262,62,3,7390,1216,1083.403,64,16,D#3,mp+,15,144,51,15,,,,, +262,63,3,7391,1216,1083.403,64,16,G#3,mp+,15,144,56,15,,,,, +262,64,3,7392,1216,1083.403,64,16,C#4,mp+,15,144,61,15,,,,, +262,62,3,7390,1216,1083.697,,,,,,144,51,0,,,,, +262,63,3,7391,1216,1083.697,,,,,,144,56,0,,,,, +262,64,3,7392,1216,1083.697,,,,,,144,61,0,,,,, +262,65,1,7393,1280,1083.697,170,4,C#6,,,,,,,,,, +262,66,3,7394,1280,1083.697,85,8,D#3,mf,17,144,51,17,,,,, +262,67,3,7395,1280,1083.697,128,8,G#3,mf,17,144,56,17,,,,, +262,68,3,7396,1280,1083.697,128,8,C#4,mf,17,144,61,17,,,,, +262,66,3,7394,1280,1084.088,,,,,,144,51,0,,,,, +262,69,3,7397,1365,1084.088,85,8,G#1,f,20,144,32,20,,,,, +262,67,3,7395,1280,1084.286,,,,,,144,56,0,,,,, +262,68,3,7396,1280,1084.286,,,,,,144,61,0,,,,, +262,59,1,7387,1194,1084.479,,,,,,144,85,0,,,,, +262,69,3,7397,1365,1084.479,,,,,,144,32,0,,,,, +262,70,1,7398,1450,1084.479,43,16,A#5,ff,22,144,82,22,,,,, +262,71,3,7399,1450,1084.479,43,16,G#1,f,20,144,32,20,,,,, +262,70,1,7398,1450,1084.676,,,,,,144,82,0,,,,, +262,71,3,7399,1450,1084.676,,,,,,144,32,0,,,,, +262,72,1,7400,1493,1084.676,43,16,C#6,ff,22,144,85,22,,,,, +262,73,3,7401,1493,1084.676,43,16,F#2,f-,19,144,42,19,,,,, +262,74,0,7402,1535,1084.869,,,,,,176,64,0,,,,,^ +262,72,1,7400,1493,1084.874,,,,,,144,85,0,,,,, +262,73,3,7401,1493,1084.874,,,,,,144,42,0,,,,, +263,0,0,7403,0,1084.874,,,,,,,,,263,,,, +263,2,1,7404,,1084.874,,8,A6,mp,14,144,93,14,,,,g, +263,3,1,7405,,1084.874,,8,C7,mp,14,144,96,14,,,,g, +263,2,1,7404,,1084.924,,,,,,144,93,0,,,,, +263,3,1,7405,,1084.924,,,,,,144,96,0,,,,, +263,4,1,7406,,1084.949,,8,E7,mp+,15,144,100,15,,,,g, +263,4,1,7406,,1084.999,,,,,,144,100,0,,,,, +263,5,1,7407,,1085.024,,8,C7,mf,17,144,96,17,,,,g, +263,5,1,7407,,1085.074,,,,,,144,96,0,,,,, +263,6,1,7408,,1085.099,,8,D5,mf+,18,144,74,18,,,,g, +263,6,1,7408,,1085.149,,,,,,144,74,0,,,,, +263,7,1,7409,,1085.174,,8,C#5,f,20,144,73,20,,,,g, +263,7,1,7409,,1085.224,,,,,,144,73,0,,,,, +263,8,1,7410,,1085.249,,8,G#4,f+,21,144,68,21,,,,g, +263,8,1,7410,,1085.299,,,,,,144,68,0,,,,, +263,9,1,7411,,1085.324,,8,C#5,ff,22,144,73,22,,,,g, +263,9,1,7411,,1085.374,,,,,,144,73,0,,,,, +263,10,1,7412,,1085.399,,,,,,176,102,0,,,,, +263,11,1,7413,0,1085.549,170,4,C6,ff,22,144,84,22,,,,, +263,12,1,7414,0,1085.549,256,4,C#6,p,11,144,85,11,,,,, +263,13,1,7415,0,1085.549,256,4,D#6,p,11,144,87,11,,,,, +263,14,1,7416,0,1085.549,256,4,E6,p,11,144,88,11,,,,, +263,15,3,7417,,1085.549,,,,,,176,102,0,,,,, +263,16,3,7418,,1085.624,,8,D#4,p,11,144,63,11,,,,g, +263,16,3,7418,,1085.674,,,,,,144,63,0,,,,, +263,17,3,7419,,1085.699,,8,F3,p,11,144,53,11,,,,g, +263,17,3,7419,,1085.749,,,,,,144,53,0,,,,, +263,18,3,7420,,1085.774,,8,D#4,p-,10,144,63,10,,,,g, +263,18,3,7420,,1085.824,,,,,,144,63,0,,,,, +263,19,3,7421,,1085.849,,8,F3,p-,10,144,53,10,,,,g, +263,19,3,7421,,1085.899,,,,,,144,53,0,,,,, +263,20,3,7422,,1085.924,,8,D#4,pp+,9,144,63,9,,,,g, +263,20,3,7422,,1085.974,,,,,,144,63,0,,,,, +263,21,3,7423,,1085.999,,8,F3,pp+,9,144,53,9,,,,g, +263,21,3,7423,,1086.049,,,,,,144,53,0,,,,, +263,22,3,7424,,1086.074,,8,F#3,pp,8,144,54,8,,,,g, +263,22,3,7424,,1086.124,,,,,,144,54,0,,,,, +263,23,3,7425,0,1086.149,256,4,C3,pp,8,144,48,8,,,,, +263,1,0,7426,0,1086.149,,,,,,176,64,127,,,,,V +263,11,1,7413,0,1086.33,,,,,,144,84,0,,,,, +263,24,1,7427,170,1086.93,86,8,F#3,mf,17,144,54,17,,,,, +263,12,1,7414,0,1087.175,,,,,,144,85,0,,,,, +263,13,1,7415,0,1087.175,,,,,,144,87,0,,,,, +263,14,1,7416,0,1087.175,,,,,,144,88,0,,,,, +263,25,1,7428,256,1087.325,,,,,,176,102,0,,,,, +263,26,3,7429,256,1087.325,,,,,,176,102,0,,,,, +263,23,3,7425,0,1087.775,,,,,,144,48,0,,,,, +263,24,1,7427,170,1087.775,,,,,,144,54,0,,,,, +263,27,0,7430,512,1088.502,,,,,,176,64,0,,,,,^ +263,29,1,7431,,1088.502,,8,C#7,ff,22,144,97,22,,,,g, +263,29,1,7431,,1088.552,,,,,,144,97,0,,,,, +263,30,1,7432,,1088.577,,8,C8,f+,21,144,108,21,,,,g, +263,30,1,7432,,1088.627,,,,,,144,108,0,,,,, +263,31,1,7433,,1088.652,,8,C#7,f,20,144,97,20,,,,g, +263,31,1,7433,,1088.702,,,,,,144,97,0,,,,, +263,32,1,7434,,1088.727,,8,C8,f,20,144,108,20,,,,g, +263,32,1,7434,,1088.777,,,,,,144,108,0,,,,, +263,33,1,7435,,1088.802,,8,C#7,f-,19,144,97,19,,,,g, +263,33,1,7435,,1088.852,,,,,,144,97,0,,,,, +263,34,1,7436,,1088.877,,8,E6,mf+,18,144,88,18,,,,g, +263,34,1,7436,,1088.927,,,,,,144,88,0,,,,, +263,35,1,7437,,1088.952,,8,A#7,mf,17,144,106,17,,,,g, +263,35,1,7437,,1089.002,,,,,,144,106,0,,,,, +263,36,1,7438,,1089.027,,8,E5,mf-,16,144,76,16,,,,g, +263,36,1,7438,,1089.077,,,,,,144,76,0,,,,, +263,37,1,7439,,1089.102,,8,C7,mf-,16,144,96,16,,,,g, +263,37,1,7439,,1089.152,,,,,,144,96,0,,,,, +263,38,1,7440,,1089.177,,8,E5,mp+,15,144,76,15,,,,g, +263,38,1,7440,,1089.227,,,,,,144,76,0,,,,, +263,39,1,7441,,1089.252,,8,A#6,mp,14,144,94,14,,,,g, +263,39,1,7441,,1089.302,,,,,,144,94,0,,,,, +263,40,1,7442,,1089.327,,8,G#4,mp-,13,144,68,13,,,,g, +263,40,1,7442,,1089.377,,,,,,144,68,0,,,,, +263,41,1,7443,,1089.402,,8,E5,mp-,13,144,76,13,,,,g, +263,41,1,7443,,1089.452,,,,,,144,76,0,,,,, +263,42,1,7444,,1089.477,,8,A#6,p+,12,144,94,12,,,,g, +263,42,1,7444,,1089.527,,,,,,144,94,0,,,,, +263,43,1,7445,,1089.552,,8,E4,p,11,144,64,11,,,,g, +263,43,1,7445,,1089.602,,,,,,144,64,0,,,,, +263,44,1,7446,512,1089.627,256,4,B4,p,11,144,71,11,,,,, +263,45,3,7447,512,1089.627,256,4,G#3,pp,8,144,56,8,,,,, +263,28,0,7448,512,1089.627,,,,,,176,64,127,,,,,V +263,44,1,7446,512,1090.803,,,,,,144,71,0,,,,, +263,45,3,7447,512,1090.803,,,,,,144,56,0,,,,, +263,54,1,7449,768,1090.803,,,,,,176,102,0,,,,, +263,46,1,7450,,1090.803,,8,C#6,pp-,7,144,85,7,,,,g, +263,46,1,7450,,1090.853,,,,,,144,85,0,,,,, +263,47,1,7451,,1090.878,,8,C8,pp-,7,144,108,7,,,,g, +263,47,1,7451,,1090.928,,,,,,144,108,0,,,,, +263,48,1,7452,,1090.953,,8,C#7,ppp+,6,144,97,6,,,,g, +263,48,1,7452,,1091.003,,,,,,144,97,0,,,,, +263,49,1,7453,,1091.028,,8,E5,ppp+,6,144,76,6,,,,g, +263,49,1,7453,,1091.078,,,,,,144,76,0,,,,, +263,50,1,7454,,1091.103,,8,A#7,ppp+,6,144,106,6,,,,g, +263,50,1,7454,,1091.153,,,,,,144,106,0,,,,, +263,51,1,7455,,1091.178,,8,E5,ppp+,6,144,76,6,,,,g, +263,51,1,7455,,1091.228,,,,,,144,76,0,,,,, +263,52,1,7456,,1091.253,,8,C8,ppp,5,144,108,5,,,,g, +263,52,1,7456,,1091.303,,,,,,144,108,0,,,,, +263,53,1,7457,,1091.328,,8,G#4,ppp,5,144,68,5,,,,g, +263,53,1,7457,,1091.378,,,,,,144,68,0,,,,, +263,55,3,7458,768,1091.403,21,32,C#2,pp,8,144,37,8,,,,, +263,55,3,7458,768,1091.5,,,,,,144,37,0,,,,, +263,56,3,7459,789,1091.5,21,32,A3,pp,8,144,57,8,,,,, +263,56,3,7459,789,1091.596,,,,,,144,57,0,,,,, +263,57,3,7460,810,1091.596,22,32,D3,pp,8,144,50,8,,,,, +263,57,3,7460,810,1091.697,,,,,,144,50,0,,,,, +263,58,3,7461,832,1091.697,21,32,C#2,pp,8,144,37,8,,,,, +263,58,3,7461,832,1091.794,,,,,,144,37,0,,,,, +263,59,3,7462,853,1091.794,21,32,A3,pp,8,144,57,8,,,,, +263,59,3,7462,853,1091.89,,,,,,144,57,0,,,,, +263,60,3,7463,874,1091.89,22,32,D3,pp,8,144,50,8,,,,, +263,60,3,7463,874,1091.992,,,,,,144,50,0,,,,, +263,61,3,7464,896,1091.992,21,32,A3,pp,8,144,57,8,,,,, +263,61,3,7464,896,1092.088,,,,,,144,57,0,,,,, +263,62,3,7465,917,1092.088,85,8,D3,pp,8,144,50,8,,,,, +263,63,1,7466,960,1092.286,32,32,A#1,f,20,144,34,20,,,,, +263,63,1,7466,960,1092.433,,,,,,144,34,0,,,,, +263,64,1,7467,992,1092.433,32,32,A#1,f+,21,144,34,21,,,,, +263,65,1,7468,992,1092.433,32,32,F#4,f+,21,144,66,21,,,,, +263,62,3,7465,917,1092.479,,,,,,144,50,0,,,,, +263,66,3,7469,1002,1092.479,,,,,,176,102,0,,,,, +263,64,1,7467,992,1092.58,,,,,,144,34,0,,,,, +263,65,1,7468,992,1092.58,,,,,,144,66,0,,,,, +264,0,0,7470,0,1092.58,,,,,,,,,264,,,, +264,1,0,7471,0,1092.58,,,,,,176,64,0,,,,,^ +264,2,1,7472,0,1092.58,256,4,D#5,ff,22,144,75,22,,,,, +264,3,2,7473,0,1092.58,25,32,C5,ff,22,144,72,22,,,,, +264,5,3,7474,0,1092.58,32,32,A#1,ff,22,144,34,22,,,,, +264,6,3,7475,0,1092.58,32,32,F#4,ff,22,144,66,22,,,,, +264,3,2,7473,0,1092.695,,,,,,144,72,0,,,,, +264,7,2,7476,25,1092.695,,,,,,176,102,0,,,,, +264,5,3,7474,0,1092.727,,,,,,144,34,0,,,,, +264,6,3,7475,0,1092.727,,,,,,144,66,0,,,,, +264,8,3,7477,32,1092.727,,,,,,176,102,0,,,,, +264,9,2,7478,51,1092.814,25,32,C#4,mp,14,144,61,14,,,,, +264,9,2,7478,51,1092.929,,,,,,144,61,0,,,,, +264,10,2,7479,76,1092.929,26,32,A#4,mp-,13,144,70,13,,,,, +264,10,2,7479,76,1093.049,,,,,,144,70,0,,,,, +264,11,2,7480,102,1093.049,26,32,C#4,p+,12,144,61,12,,,,, +264,11,2,7480,102,1093.168,,,,,,144,61,0,,,,, +264,12,3,7481,128,1093.168,21,32,A3,pp,8,144,57,8,,,,, +264,13,2,7482,128,1093.168,76,16,E3,p,11,144,52,11,,,,, +264,12,3,7481,128,1093.265,,,,,,144,57,0,,,,, +264,14,3,7483,149,1093.265,21,32,D3,pp,8,144,50,8,,,,, +264,14,3,7483,149,1093.361,,,,,,144,50,0,,,,, +264,15,3,7484,170,1093.361,43,16,F2,pp,8,144,41,8,,,,, +264,13,2,7482,128,1093.517,,,,,,144,52,0,,,,, +264,16,2,7485,204,1093.517,52,16,G#2,pp,8,144,44,8,,,,, +264,15,3,7484,170,1093.559,,,,,,144,41,0,,,,, +264,17,3,7486,213,1093.559,43,16,B1,pp,8,144,35,8,,,,, +264,17,3,7486,213,1093.756,,,,,,144,35,0,,,,, +264,4,2,7487,256,1093.756,,,,,,176,102,0,,,,, +264,19,1,7488,256,1093.756,,,,,,176,102,0,,,,, +264,20,3,7489,256,1093.756,170,4,B1,pp,8,144,35,8,,,,, +264,21,3,7490,256,1093.756,256,4,F2,pp,8,144,41,8,,,,, +264,22,3,7491,256,1093.756,256,4,D3,pp,8,144,50,8,,,,, +264,23,3,7492,256,1093.756,256,4,A3,pp,8,144,57,8,,,,, +264,18,0,7493,256,1093.756,,,,,,176,64,127,,,,,V +264,2,1,7472,0,1093.756,,,,,,144,75,0,,,,, +264,16,2,7485,204,1093.756,,,,,,144,44,0,,,,, +264,24,1,7494,288,1093.903,32,32,C6,ff,22,144,84,22,,,,, +264,24,1,7494,288,1094.05,,,,,,144,84,0,,,,, +264,25,1,7495,320,1094.05,64,16,D4,ff,22,144,62,22,,,,, +264,26,1,7496,320,1094.05,64,16,C6,ff,22,144,84,22,,,,, +264,25,1,7495,320,1094.344,,,,,,144,62,0,,,,, +264,26,1,7496,320,1094.344,,,,,,144,84,0,,,,, +264,27,1,7497,384,1094.344,,,,,,176,102,0,,,,, +264,20,3,7489,256,1094.537,,,,,,144,35,0,,,,, +264,21,3,7490,256,1094.537,,,,,,144,41,0,,,,, +264,22,3,7491,256,1094.537,,,,,,144,50,0,,,,, +264,23,3,7492,256,1094.537,,,,,,144,57,0,,,,, +264,28,3,7498,426,1094.537,86,8,B1,pp,8,144,35,8,,,,, +264,29,3,7499,426,1094.537,128,8,F2,pp,8,144,41,8,,,,, +264,30,3,7500,426,1094.537,128,8,D3,pp,8,144,50,8,,,,, +264,31,3,7501,426,1094.537,128,8,A3,pp,8,144,57,8,,,,, +264,32,1,7502,440,1094.602,15,64,D#4,pp,8,144,63,8,,,,, +264,32,1,7502,440,1094.671,,,,,,144,63,0,,,,, +264,33,1,7503,455,1094.671,14,64,B3,pp+,9,144,59,9,,,,, +264,33,1,7503,455,1094.735,,,,,,144,59,0,,,,, +264,34,1,7504,469,1094.735,14,64,G#4,p-,10,144,68,10,,,,, +264,34,1,7504,469,1094.799,,,,,,144,68,0,,,,, +264,35,1,7505,483,1094.799,14,64,D#4,p+,12,144,63,12,,,,, +264,35,1,7505,483,1094.864,,,,,,144,63,0,,,,, +264,36,1,7506,497,1094.864,15,64,G#4,mp-,13,144,68,13,,,,, +264,36,1,7506,497,1094.933,,,,,,144,68,0,,,,, +264,37,3,7507,512,1094.933,170,4,B1,,,,,,,,,, +264,38,3,7508,512,1094.933,256,4,F2,,,,,,,,,, +264,39,3,7509,512,1094.933,256,4,D3,,,,,,,,,, +264,40,3,7510,512,1094.933,256,4,A3,,,,,,,,,, +264,41,1,7511,512,1094.933,21,32,D#4,mp,14,144,63,14,,,,, +264,42,2,7512,512,1094.933,,,,,,176,102,0,,,,, +264,41,1,7511,512,1095.029,,,,,,144,63,0,,,,, +264,43,1,7513,533,1095.029,21,32,G#4,mf-,16,144,68,16,,,,, +264,43,1,7513,533,1095.126,,,,,,144,68,0,,,,, +264,44,1,7514,554,1095.126,22,32,B3,mf,17,144,59,17,,,,, +264,44,1,7514,554,1095.227,,,,,,144,59,0,,,,, +264,45,1,7515,576,1095.227,21,32,G1,f-,19,144,31,19,,,,, +264,45,1,7515,576,1095.323,,,,,,144,31,0,,,,, +264,46,1,7516,597,1095.323,43,16,A0,f+,21,144,21,21,,,,, +264,46,1,7516,597,1095.521,,,,,,144,21,0,,,,, +264,47,1,7517,640,1095.521,,,,,,176,102,0,,,,, +264,48,0,7518,660,1095.613,,,,,,176,64,0,,,,,^ +264,28,3,7498,426,1095.714,,,,,,144,35,0,,,,, +264,49,3,7519,682,1095.714,86,8,B0,f,20,144,23,20,,,,, +264,50,3,7520,682,1095.714,128,8,C#2,f,20,144,37,20,,,,, +264,51,3,7521,682,1095.714,128,8,F2,f,20,144,41,20,,,,, +264,52,3,7522,682,1095.714,128,8,D3,f,20,144,50,20,,,,, +264,53,1,7523,704,1095.815,21,32,G1,ff,22,144,31,22,,,,, +264,53,1,7523,704,1095.912,,,,,,144,31,0,,,,, +264,54,1,7524,725,1095.912,43,16,A0,ff,22,144,21,22,,,,, +264,49,3,7519,682,1096.109,,,,,,144,23,0,,,,, +264,55,1,7525,768,1096.109,128,8,A0,,,,,,,,,, +264,56,3,7526,768,1096.109,,,,,,176,102,0,,,,, +264,29,3,7499,426,1096.302,,,,,,144,41,0,,,,, +264,30,3,7500,426,1096.302,,,,,,144,50,0,,,,, +264,31,3,7501,426,1096.302,,,,,,144,57,0,,,,, +264,50,3,7520,682,1096.302,,,,,,144,37,0,,,,, +264,51,3,7521,682,1096.302,,,,,,144,41,0,,,,, +264,52,3,7522,682,1096.302,,,,,,144,50,0,,,,, +264,57,3,7527,853,1096.5,43,16,B0,fff,24,144,23,23,,,,, +264,58,3,7528,853,1096.5,64,16,C#2,fff,24,144,37,23,,,,, +264,59,3,7529,853,1096.5,64,16,F2,fff,24,144,41,23,,,,, +264,60,3,7530,853,1096.5,64,16,D3,fff,24,144,50,23,,,,, +264,57,3,7527,853,1096.697,,,,,,144,23,0,,,,, +264,61,1,7531,896,1096.697,,,,,,176,102,0,,,,, +264,62,3,7532,896,1096.697,,,,,,176,102,0,,,,, +264,63,0,7533,896,1096.697,,,,,,,,,,5994,,, +264,54,1,7524,725,1096.697,,,,,,144,21,0,,,,, +264,58,3,7528,853,1096.794,,,,,,144,37,0,,,,, +264,59,3,7529,853,1096.794,,,,,,144,41,0,,,,, +264,60,3,7530,853,1096.794,,,,,,144,50,0,,,,, +264,64,3,7534,960,1096.992,64,16,C3,p,11,144,48,11,,,,, +264,64,3,7534,960,1097.286,,,,,,144,48,0,,,,, +265,0,0,7535,0,1097.286,,,,,,,,,265,,,, +265,1,1,7536,0,1097.286,64,16,D#3,p,11,144,51,11,,,,, +265,2,1,7537,0,1097.286,64,16,E3,p,11,144,52,11,,,,, +265,3,1,7538,0,1097.286,64,16,D#4,p,11,144,63,11,,,,, +265,4,3,7539,,1097.286,,8,F3,pp,8,144,53,8,,,,g, +265,4,3,7539,,1097.336,,,,,,144,53,0,,,,, +265,5,3,7540,0,1097.361,32,32,G2,pp,8,144,43,8,,,,, +265,3,1,7538,0,1097.508,,,,,,144,63,0,,,,, +265,5,3,7540,0,1097.508,,,,,,144,43,0,,,,, +265,6,3,7541,32,1097.508,21,32,D#4,pp+,9,144,63,9,,,,, +265,1,1,7536,0,1097.58,,,,,,144,51,0,,,,, +265,2,1,7537,0,1097.58,,,,,,144,52,0,,,,, +265,6,3,7541,32,1097.604,,,,,,144,63,0,,,,, +265,7,3,7542,53,1097.604,21,32,E3,pp+,9,144,52,9,,,,, +265,9,1,7543,64,1097.655,64,16,G#3,p+,12,144,56,12,,,,, +265,8,0,7544,64,1097.655,,,,,,176,64,127,,,,,V +265,7,3,7542,53,1097.701,,,,,,144,52,0,,,,, +265,10,3,7545,74,1097.701,22,32,F3,pp+,9,144,53,9,,,,, +265,10,3,7545,74,1097.802,,,,,,144,53,0,,,,, +265,11,3,7546,96,1097.802,21,32,E3,pp+,9,144,52,9,,,,, +265,11,3,7546,96,1097.898,,,,,,144,52,0,,,,, +265,12,3,7547,117,1097.898,21,32,F3,p-,10,144,53,10,,,,, +265,9,1,7543,64,1097.949,,,,,,144,56,0,,,,, +265,13,1,7548,128,1097.949,128,8,A1,mp,14,144,33,14,,,,, +265,12,3,7547,117,1097.995,,,,,,144,53,0,,,,, +265,14,3,7549,138,1097.995,22,32,E3,p-,10,144,52,10,,,,, +265,14,3,7549,138,1098.096,,,,,,144,52,0,,,,, +265,15,3,7550,160,1098.096,32,32,F3,p-,10,144,53,10,,,,, +265,15,3,7550,160,1098.243,,,,,,144,53,0,,,,, +265,16,3,7551,192,1098.243,32,32,E3,p-,10,144,52,10,,,,, +265,16,3,7551,192,1098.39,,,,,,144,52,0,,,,, +265,17,3,7552,224,1098.39,32,32,G2,p,11,144,43,11,,,,, +265,13,1,7548,128,1098.537,,,,,,144,33,0,,,,, +265,17,3,7552,224,1098.537,,,,,,144,43,0,,,,, +265,18,1,7553,256,1098.537,,,,,,176,102,0,,,,, +265,19,3,7554,256,1098.537,21,32,D#5,p,11,144,75,11,,,,, +265,19,3,7554,256,1098.634,,,,,,144,75,0,,,,, +265,20,3,7555,277,1098.634,21,32,E3,p,11,144,52,11,,,,, +265,20,3,7555,277,1098.73,,,,,,144,52,0,,,,, +265,21,3,7556,298,1098.73,22,32,B2,p+,12,144,47,12,,,,, +265,21,3,7556,298,1098.831,,,,,,144,47,0,,,,, +265,22,3,7557,320,1098.831,32,32,D#5,p+,12,144,75,12,,,,, +265,22,3,7557,320,1098.978,,,,,,144,75,0,,,,, +265,23,3,7558,352,1098.978,21,32,B2,p+,12,144,47,12,,,,, +265,23,3,7558,352,1099.075,,,,,,144,47,0,,,,, +265,24,3,7559,373,1099.075,32,32,F4,p+,12,144,65,12,,,,, +265,24,3,7559,373,1099.222,,,,,,144,65,0,,,,, +265,25,3,7560,405,1099.222,32,32,E3,mp-,13,144,52,13,,,,, +265,25,3,7560,405,1099.369,,,,,,144,52,0,,,,, +265,26,3,7561,437,1099.369,32,32,G1,mp-,13,144,31,13,,,,, +265,26,3,7561,437,1099.516,,,,,,144,31,0,,,,, +265,27,3,7562,469,1099.516,21,32,D#6,mp,14,144,87,14,,,,, +265,27,3,7562,469,1099.612,,,,,,144,87,0,,,,, +265,28,3,7563,490,1099.612,22,32,E2,mp,14,144,40,14,,,,, +265,28,3,7563,490,1099.714,,,,,,144,40,0,,,,, +265,29,1,7564,512,1099.714,,,,,,176,102,0,,,,, +265,30,3,7565,512,1099.714,256,4,B1,mp,14,144,35,14,,,,, +265,31,1,7566,576,1100.008,64,16,D4,ff,22,144,62,22,,,,, +265,32,1,7567,576,1100.008,64,16,C6,ff,22,144,84,22,,,,, +265,31,1,7566,576,1100.302,,,,,,144,62,0,,,,, +265,32,1,7567,576,1100.302,,,,,,144,84,0,,,,, +265,33,1,7568,640,1100.302,96,16,D4,ff,22,144,62,22,,,,, +265,34,1,7569,640,1100.302,64,16,C6,ff,22,144,84,22,,,,, +265,35,1,7570,640,1100.302,64,16,E6,ff,22,144,88,22,,,,, +265,34,1,7569,640,1100.596,,,,,,144,84,0,,,,, +265,35,1,7570,640,1100.596,,,,,,144,88,0,,,,, +265,33,1,7568,640,1100.743,,,,,,144,62,0,,,,, +265,36,0,7571,736,1100.743,,,,,,176,64,0,,,,,^ +265,37,1,7572,736,1100.743,,,,,,176,102,0,,,,, +265,30,3,7565,512,1100.89,,,,,,144,35,0,,,,, +265,38,1,7573,768,1100.89,256,4,D4,pp,8,144,62,8,,,,, +265,39,1,7574,768,1100.89,256,4,C6,pp,8,144,84,8,,,,, +265,40,1,7575,768,1100.89,256,4,E6,pp,8,144,88,8,,,,, +265,41,3,7576,768,1100.89,,,,,,176,102,0,,,,, +265,43,3,7577,896,1101.478,32,32,E3,ppp,5,144,52,5,,,,, +265,42,0,7578,896,1101.478,,,,,,176,64,127,,,,,V +265,43,3,7577,896,1101.625,,,,,,144,52,0,,,,, +265,44,3,7579,928,1101.625,21,32,C4,ppp+,6,144,60,6,,,,, +265,44,3,7579,928,1101.722,,,,,,144,60,0,,,,, +265,45,3,7580,949,1101.722,32,32,E3,ppp+,6,144,52,6,,,,, +265,45,3,7580,949,1101.869,,,,,,144,52,0,,,,, +265,46,3,7581,981,1101.869,21,32,C4,pp-,7,144,60,7,,,,, +265,46,3,7581,981,1101.965,,,,,,144,60,0,,,,, +265,47,3,7582,1002,1101.965,22,32,G#3,pp,8,144,56,8,,,,, +265,48,0,7583,1018,1102.015,,,,,,176,64,0,,,,,^ +265,38,1,7573,768,1102.067,,,,,,144,62,0,,,,, +265,39,1,7574,768,1102.067,,,,,,144,84,0,,,,, +265,40,1,7575,768,1102.067,,,,,,144,88,0,,,,, +265,50,1,7584,,1102.067,,8,C4,p,11,144,60,11,,,,g, +265,47,3,7582,1002,1102.067,,,,,,144,56,0,,,,, +265,50,1,7584,,1102.117,,,,,,144,60,0,,,,, +265,51,1,7585,,1102.142,,8,E2,p,11,144,40,11,,,,g, +265,51,1,7585,,1102.192,,,,,,144,40,0,,,,, +265,52,1,7586,,1102.217,,8,C#3,p,11,144,49,11,,,,g, +265,52,1,7586,,1102.267,,,,,,144,49,0,,,,, +265,53,1,7587,1024,1102.292,21,32,G#1,p,11,144,32,11,,,,, +265,54,3,7588,1024,1102.292,512,2,C#1,pp,8,144,25,8,,,,, +265,49,0,7589,1024,1102.315,,,,,,176,64,127,,,,,V +265,53,1,7587,1024,1102.388,,,,,,144,32,0,,,,, +265,55,1,7590,1045,1102.388,85,8,A#3,p-,10,144,58,10,,,,, +265,55,1,7590,1045,1102.779,,,,,,144,58,0,,,,, +265,56,1,7591,1130,1102.779,22,32,C#4,pp,8,144,61,8,,,,, +265,56,1,7591,1130,1102.88,,,,,,144,61,0,,,,, +265,57,1,7592,1152,1102.88,21,32,A#4,pp,8,144,70,8,,,,, +265,57,1,7592,1152,1102.976,,,,,,144,70,0,,,,, +265,58,1,7593,1173,1102.976,21,32,C5,pp-,7,144,72,7,,,,, +265,58,1,7593,1173,1103.073,,,,,,144,72,0,,,,, +265,59,1,7594,1194,1103.073,22,32,C#4,ppp+,6,144,61,6,,,,, +265,59,1,7594,1194,1103.174,,,,,,144,61,0,,,,, +265,60,1,7595,1216,1103.174,21,32,C6,ppp+,6,144,84,6,,,,, +265,60,1,7595,1216,1103.27,,,,,,144,84,0,,,,, +265,61,1,7596,1237,1103.27,11,64,C#4,ppp,5,144,61,5,,,,, +265,61,1,7596,1237,1103.321,,,,,,144,61,0,,,,, +265,62,1,7597,1248,1103.321,32,32,E3,ppp,5,144,52,5,,,,, +265,62,1,7597,1248,1103.468,,,,,,144,52,0,,,,, +265,63,1,7598,1280,1103.468,,,,,,176,102,0,,,,, +265,64,1,7599,1536,1104.644,,,,,,176,102,0,,,,, +265,65,3,7600,1536,1104.644,128,8,C#1,,,,,,,,,, +265,66,0,7601,1664,1105.083,,,,,,176,64,0,,,,,^ +265,68,3,7602,1664,1105.233,21,32,C#1,p,11,144,25,11,,,,, +265,68,3,7602,1664,1105.329,,,,,,144,25,0,,,,, +265,69,3,7603,1685,1105.329,21,32,B1,p+,12,144,35,12,,,,, +265,67,0,7604,1664,1105.383,,,,,,176,64,127,,,,,V +265,70,3,7605,1706,1105.426,86,8,B1,,,,,,,,,, +265,71,3,7606,1792,1105.821,192,8,B1,,,,,,,,,, +265,54,3,7588,1024,1106.508,,,,,,144,25,0,,,,, +265,72,0,7607,1984,1106.553,,,,,,176,64,0,,,,,^ +265,69,3,7603,1685,1106.703,,,,,,144,35,0,,,,, +265,74,3,7608,1984,1106.703,21,32,C#1,p+,12,144,25,12,,,,, +265,74,3,7608,1984,1106.8,,,,,,144,25,0,,,,, +265,75,3,7609,2005,1106.8,21,32,B1,mp,14,144,35,14,,,,, +265,73,0,7610,1984,1106.853,,,,,,176,64,127,,,,,V +265,75,3,7609,2005,1106.896,,,,,,144,35,0,,,,, +265,76,3,7611,2026,1106.896,22,32,G5,mf,17,144,79,17,,,,, +265,77,0,7612,2047,1106.993,,,,,,176,64,0,,,,,^ +265,76,3,7611,2026,1106.997,,,,,,144,79,0,,,,, +266,0,0,7613,0,1106.997,,,,,,,,,266,,,, +266,1,0,7614,0,1106.997,,,,,,,,,,5995,,, +266,2,1,7615,0,1106.997,,,,,,176,102,0,,,,, +266,3,2,7616,,1106.997,,8,A6,ppp,5,144,93,5,,,,g, +266,5,3,7617,,1106.997,,8,D#4,pp,8,144,63,8,,,,g, +266,3,2,7616,,1107.047,,,,,,144,93,0,,,,, +266,5,3,7617,,1107.047,,,,,,144,63,0,,,,, +266,6,3,7618,,1107.072,,8,E3,p,11,144,52,11,,,,g, +266,6,3,7618,,1107.122,,,,,,144,52,0,,,,, +266,4,2,7619,0,1107.222,597,2,D#5,ff,22,144,75,22,,,,, +266,7,3,7620,0,1107.222,256,4,G#2,ppp,5,144,44,5,,,,, +266,8,3,7621,0,1107.222,256,4,B2,mp,14,144,47,14,,,,, +266,9,3,7622,0,1107.222,256,4,D#3,ppp,5,144,51,5,,,,, +266,4,2,7619,0,1108.399,,,,,,144,75,0,,,,, +266,10,1,7623,256,1108.399,128,8,D#5,mf,17,144,75,17,,,,, +266,11,3,7624,256,1108.399,,,,,,176,102,0,,,,, +266,13,3,7625,341,1108.79,,,,,,176,102,0,,,,, +266,12,0,7626,341,1108.79,,,,,,176,64,127,,,,,V +266,14,1,7627,384,1108.987,32,32,D4,mf,17,144,62,17,,,,, +266,14,1,7627,384,1109.134,,,,,,144,62,0,,,,, +266,15,1,7628,416,1109.134,32,32,C1,mf,17,144,24,17,,,,, +266,16,3,7629,426,1109.18,43,16,C3,ppp,5,144,48,5,,,,, +266,15,1,7628,416,1109.281,,,,,,144,24,0,,,,, +266,17,1,7630,448,1109.281,,,,,,176,102,0,,,,, +266,16,3,7629,426,1109.378,,,,,,144,48,0,,,,, +266,18,3,7631,469,1109.378,43,16,E2,ppp,5,144,40,5,,,,, +266,7,3,7620,0,1109.524,,,,,,144,44,0,,,,, +266,8,3,7621,0,1109.524,,,,,,144,47,0,,,,, +266,9,3,7622,0,1109.524,,,,,,144,51,0,,,,, +266,18,3,7631,469,1109.575,,,,,,144,40,0,,,,, +266,19,1,7632,512,1109.575,,,,,,176,102,0,,,,, +266,20,3,7633,512,1109.575,21,32,C3,ppp,5,144,48,5,,,,, +266,20,3,7633,512,1109.672,,,,,,144,48,0,,,,, +266,21,3,7634,533,1109.672,21,32,E2,ppp,5,144,40,5,,,,, +266,21,3,7634,533,1109.768,,,,,,144,40,0,,,,, +266,22,3,7635,554,1109.768,,,,,,176,102,0,,,,, +266,10,1,7623,256,1109.966,,,,,,144,75,0,,,,, +266,23,2,7636,597,1109.966,85,8,D#5,mp,14,144,75,14,,,,, +266,24,3,7637,597,1109.966,,,,,,176,102,0,,,,, +266,23,2,7636,597,1110.357,,,,,,144,75,0,,,,, +266,25,2,7638,682,1110.357,342,2,D#5,mp,14,144,75,14,,,,, +266,26,3,7639,682,1110.357,86,8,C#2,mp,14,144,37,14,,,,, +266,27,3,7640,768,1110.752,256,4,C#2,,,,,,,,,, +266,28,1,7641,1024,1111.928,,,,,,176,102,0,,,,, +266,29,2,7642,1024,1111.928,341,2,D#5,,,,,,,,,, +266,30,3,7643,1024,1111.928,256,4,C#2,,,,,,,,,, +266,26,3,7639,682,1113.105,,,,,,144,37,0,,,,, +266,31,1,7644,1280,1113.105,0,8,A2,pp+,9,,,,,,,, +266,32,1,7645,1280,1113.105,384,4,B4,pp+,9,144,71,9,,,,, +266,33,3,7646,1280,1113.105,85,8,C#2,pp+,9,144,37,9,,,,, +266,34,0,7647,1365,1113.46,,,,,,176,64,0,,,,,^ +266,25,2,7638,682,1113.495,,,,,,144,75,0,,,,, +266,33,3,7646,1280,1113.495,,,,,,144,37,0,,,,, +266,35,2,7648,1365,1113.495,341,2,D#5,pp,8,144,75,8,,,,, +266,36,2,7649,1365,1113.495,512,2,C#6,pp,8,144,85,8,,,,, +266,37,3,7650,1365,1113.495,341,2,C#2,pp,8,144,37,8,,,,, +266,38,3,7651,1365,1113.495,512,2,B2,pp,8,144,47,8,,,,, +266,39,0,7652,1415,1113.76,,,,,,176,64,127,,,,,V +266,32,1,7645,1280,1114.869,,,,,,144,71,0,,,,, +266,40,1,7653,1664,1114.869,21,32,F#2,ppp+,6,144,42,6,,,,, +266,40,1,7653,1664,1114.966,,,,,,144,42,0,,,,, +266,41,1,7654,1685,1114.966,21,32,F1,ppp,5,144,29,5,,,,, +266,35,2,7648,1365,1115.062,,,,,,144,75,0,,,,, +266,37,3,7650,1365,1115.062,,,,,,144,37,0,,,,, +266,38,3,7651,1365,1115.062,,,,,,144,47,0,,,,, +266,41,1,7654,1685,1115.062,,,,,,144,29,0,,,,, +266,42,1,7655,1706,1115.062,22,32,F#2,ppp,5,144,42,5,,,,, +266,43,2,7656,1706,1115.062,,,,,,176,102,0,,,,, +266,44,3,7657,1706,1115.062,342,2,C2,ppp,5,144,36,5,,,,, +266,45,3,7658,1706,1115.062,512,2,B2,ppp,5,144,47,5,,,,, +266,42,1,7655,1706,1115.164,,,,,,144,42,0,,,,, +266,46,1,7659,1728,1115.164,21,32,F1,ppp,5,144,29,5,,,,, +266,46,1,7659,1728,1115.26,,,,,,144,29,0,,,,, +266,47,1,7660,1749,1115.26,,,,,,176,102,0,,,,, +266,48,2,7661,1749,1115.26,43,16,G7,ppp,5,144,103,5,,,,, +266,49,0,7662,1792,1115.44,,,,,,,,,,,56,, +266,50,1,7663,1792,1115.44,,,,,,176,102,0,,,,, +266,51,2,7664,1792,1115.44,,,,,,176,102,0,,,,, +266,48,2,7661,1749,1115.458,,,,,,144,103,0,,,,, +266,36,2,7649,1365,1115.848,,,,,,144,85,0,,,,, +266,52,1,7665,1920,1115.976,25,32,A#1,p,11,144,34,11,,,,, +266,52,1,7665,1920,1116.08,,,,,,144,34,0,,,,, +266,53,1,7666,1945,1116.08,26,32,F#4,pp+,9,144,66,9,,,,, +266,53,1,7666,1945,1116.189,,,,,,144,66,0,,,,, +266,54,1,7667,1971,1116.189,25,32,D#5,ppp+,6,144,75,6,,,,, +266,54,1,7667,1971,1116.294,,,,,,144,75,0,,,,, +266,55,1,7668,1996,1116.294,26,32,D4,ppp-,4,144,62,4,,,,, +266,56,0,7669,2022,1116.403,,,,,,176,64,0,,,,,^ +266,57,1,7670,2022,1116.403,26,32,C1,pppp,2,144,24,2,,,,, +266,55,1,7668,1996,1116.478,,,,,,144,62,0,,,,, +266,57,1,7670,2022,1116.511,,,,,,144,24,0,,,,, +267,0,0,7671,0,1116.511,,,,,,,,,267,,,, +267,1,0,7672,0,1116.511,,,,,,,,,,5996,,, +267,2,1,7673,,1116.511,,8,D#5,f,20,144,75,20,,,,g, +267,2,1,7673,,1116.561,,,,,,144,75,0,,,,, +267,3,1,7674,,1116.586,,8,C3,f-,19,144,48,19,,,,g, +267,3,1,7674,,1116.636,,,,,,144,48,0,,,,, +267,4,1,7675,,1116.661,,8,D#6,f-,19,144,87,19,,,,g, +266,44,3,7657,1706,1116.709,,,,,,144,36,0,,,,, +267,4,1,7675,,1116.711,,,,,,144,87,0,,,,, +267,5,1,7676,0,1116.736,25,32,C#3,mf+,18,144,49,18,,,,, +267,6,3,7677,0,1116.736,85,8,G3,ff,22,144,55,22,,,,, +267,5,1,7676,0,1116.841,,,,,,144,49,0,,,,, +267,8,1,7678,25,1116.841,26,32,B3,mf+,18,144,59,18,,,,, +267,7,0,7679,25,1116.841,,,,,,176,64,127,,,,,V +267,8,1,7678,25,1116.95,,,,,,144,59,0,,,,, +267,9,1,7680,51,1116.95,25,32,C#3,mf,17,144,49,17,,,,, +267,9,1,7680,51,1117.055,,,,,,144,49,0,,,,, +267,10,1,7681,76,1117.055,52,16,B3,mf-,16,144,59,16,,,,, +267,6,3,7677,0,1117.092,,,,,,144,55,0,,,,, +267,11,3,7682,85,1117.092,21,32,F#2,ppp,5,144,42,5,,,,, +267,11,3,7682,85,1117.18,,,,,,144,42,0,,,,, +267,12,3,7683,106,1117.18,22,32,F1,ppp,5,144,29,5,,,,, +267,12,3,7683,106,1117.272,,,,,,144,29,0,,,,, +267,13,3,7684,128,1117.272,21,32,F#2,ppp,5,144,42,5,,,,, +267,14,1,7685,128,1117.272,51,16,B3,,,,,,,,,, +267,13,3,7684,128,1117.36,,,,,,144,42,0,,,,, +267,15,3,7686,149,1117.36,21,32,F1,ppp,5,144,29,5,,,,, +267,15,3,7686,149,1117.448,,,,,,144,29,0,,,,, +267,16,3,7687,170,1117.448,,,,,,176,102,0,,,,, +267,17,1,7688,179,1117.486,25,32,C#3,mp-,13,144,49,13,,,,, +267,10,1,7681,76,1117.486,,,,,,144,59,0,,,,, +266,45,3,7658,1706,1117.49,,,,,,144,47,0,,,,, +267,17,1,7688,179,1117.59,,,,,,144,49,0,,,,, +267,18,1,7689,204,1117.59,26,32,B3,p+,12,144,59,12,,,,, +267,18,1,7689,204,1117.699,,,,,,144,59,0,,,,, +267,19,1,7690,230,1117.699,26,32,G6,p,11,144,91,11,,,,, +267,19,1,7690,230,1117.808,,,,,,144,91,0,,,,, +267,20,1,7691,256,1117.808,,,,,,176,102,0,,,,, +267,21,3,7692,256,1117.808,,,,,,176,102,0,,,,, +267,23,3,7693,,1118.269,,8,C3,p,11,144,48,11,,,,g, +267,23,3,7693,,1118.319,,,,,,144,48,0,,,,, +267,22,1,7694,384,1118.344,21,32,C#4,pp,8,144,61,8,,,,, +267,24,3,7695,384,1118.344,128,8,F#3,p,11,144,54,11,,,,, +267,22,1,7694,384,1118.432,,,,,,144,61,0,,,,, +267,25,1,7696,405,1118.432,21,32,A#4,pp+,9,144,70,9,,,,, +267,25,1,7696,405,1118.519,,,,,,144,70,0,,,,, +267,26,1,7697,426,1118.519,22,32,C#4,pp+,9,144,61,9,,,,, +267,26,1,7697,426,1118.611,,,,,,144,61,0,,,,, +267,27,1,7698,448,1118.611,21,32,A#4,p-,10,144,70,10,,,,, +267,27,1,7698,448,1118.699,,,,,,144,70,0,,,,, +267,28,1,7699,469,1118.699,43,16,C6,p,11,144,84,11,,,,, +267,30,3,7700,,1118.804,,8,C3,mp,14,144,48,14,,,,g, +267,30,3,7700,,1118.854,,,,,,144,48,0,,,,, +267,24,3,7695,384,1118.879,,,,,,144,54,0,,,,, +267,28,1,7699,469,1118.879,,,,,,144,84,0,,,,, +267,29,1,7701,512,1118.879,,,,,,176,102,0,,,,, +267,31,3,7702,512,1118.879,128,8,F#3,mp,14,144,54,14,,,,, +267,31,3,7702,512,1119.415,,,,,,144,54,0,,,,, +267,32,1,7703,640,1119.415,128,8,A4,mf,17,144,69,17,,,,, +267,33,3,7704,640,1119.415,,,,,,176,102,0,,,,, +267,34,0,7705,768,1119.951,,,,,,176,64,0,,,,,^ +267,35,1,7706,768,1119.951,256,4,A4,,,,,,,,,, +267,36,3,7707,768,1119.951,,,,,,176,102,0,,,,, +267,37,1,7708,1024,1121.022,768,2,A4,,,,,,,,,, +267,38,3,7709,1024,1121.022,85,8,D#3,f,20,144,51,20,,,,, +267,39,3,7710,1109,1121.378,43,16,C#1,mp+,15,144,25,15,,,,, +267,39,3,7710,1109,1121.558,,,,,,144,25,0,,,,, +267,40,3,7711,1152,1121.558,25,32,C1,mp-,13,144,24,13,,,,, +267,38,3,7709,1024,1121.603,,,,,,144,51,0,,,,, +267,40,3,7711,1152,1121.663,,,,,,144,24,0,,,,, +267,41,3,7712,1177,1121.663,26,32,B2,p,11,144,47,11,,,,, +267,41,3,7712,1177,1121.771,,,,,,144,47,0,,,,, +267,43,3,7713,1203,1121.771,25,32,C1,p-,10,144,24,10,,,,, +267,42,0,7714,1203,1121.771,,,,,,176,64,127,,,,,V +267,43,3,7713,1203,1121.876,,,,,,144,24,0,,,,, +267,44,3,7715,1228,1121.876,26,32,B1,pp,8,144,35,8,,,,, +267,45,3,7716,1228,1121.876,32,32,D#2,pp,8,144,39,8,,,,, +267,44,3,7715,1228,1121.985,,,,,,144,35,0,,,,, +267,46,3,7717,1254,1121.985,26,32,C1,pp-,7,144,24,7,,,,, +267,45,3,7716,1228,1122.01,,,,,,144,39,0,,,,, +267,46,3,7717,1254,1122.094,,,,,,144,24,0,,,,, +267,47,3,7718,1280,1122.094,25,32,B1,ppp,5,144,35,5,,,,, +267,47,3,7718,1280,1122.198,,,,,,144,35,0,,,,, +267,48,3,7719,1305,1122.198,26,32,G3,ppp,5,144,55,5,,,,, +267,48,3,7719,1305,1122.307,,,,,,144,55,0,,,,, +267,49,3,7720,1331,1122.307,,,,,,176,102,0,,,,, +267,50,3,7721,1382,1122.521,,,,,,176,102,0,,,,, +267,51,3,7722,1408,1122.629,,,,,,176,102,0,,,,, +267,52,3,7723,1536,1123.165,,,,,,176,102,0,,,,, +267,53,0,7724,1792,1124.236,,,,,,176,64,0,,,,,^ +267,54,1,7725,1792,1124.236,,,,,,176,102,0,,,,, +267,55,3,7726,1792,1124.236,128,8,C1,mp,14,144,24,14,,,,, +267,56,3,7727,1792,1124.236,128,8,C#1,mp,14,144,25,14,,,,, +267,57,3,7728,1792,1124.236,128,8,B1,mp,14,144,35,14,,,,, +267,58,3,7729,1792,1124.236,128,8,D#3,mp,14,144,51,14,,,,, +267,59,3,7730,1792,1124.236,128,8,G3,mp,14,144,55,14,,,,, +267,32,1,7703,640,1124.461,,,,,,144,69,0,,,,, +267,55,3,7726,1792,1124.772,,,,,,144,24,0,,,,, +267,56,3,7727,1792,1124.772,,,,,,144,25,0,,,,, +267,57,3,7728,1792,1124.772,,,,,,144,35,0,,,,, +267,58,3,7729,1792,1124.772,,,,,,144,51,0,,,,, +267,59,3,7730,1792,1124.772,,,,,,144,55,0,,,,, +267,60,3,7731,1920,1124.772,128,8,C1,pp,8,144,24,8,,,,, +267,61,3,7732,1920,1124.772,128,8,C#2,pp,8,144,37,8,,,,, +267,62,3,7733,1920,1124.772,128,8,B2,pp,8,144,47,8,,,,, +267,63,3,7734,1920,1124.772,128,8,D#3,pp,8,144,51,8,,,,, +267,64,3,7735,1920,1124.772,128,8,G3,pp,8,144,55,8,,,,, +267,60,3,7731,1920,1125.308,,,,,,144,24,0,,,,, +267,61,3,7732,1920,1125.308,,,,,,144,37,0,,,,, +267,62,3,7733,1920,1125.308,,,,,,144,47,0,,,,, +267,63,3,7734,1920,1125.308,,,,,,144,51,0,,,,, +267,64,3,7735,1920,1125.308,,,,,,144,55,0,,,,, +268,0,0,7736,0,1125.308,,,,,,,,,268,,,, +268,1,0,7737,0,1125.308,,,,,,,,,,5997,,, +268,2,1,7738,0,1125.308,,,,,,176,102,0,,,,, +268,3,3,7739,0,1125.308,512,2,D#4,pp,8,144,63,8,,,,, +268,4,0,7740,42,1125.484,,,,,,176,64,127,,,,,V +268,5,1,7741,256,1126.379,16,64,G#5,pp,8,144,80,8,,,,, +268,5,1,7741,256,1126.446,,,,,,144,80,0,,,,, +268,6,1,7742,272,1126.446,16,64,D#5,pp,8,144,75,8,,,,, +268,6,1,7742,272,1126.513,,,,,,144,75,0,,,,, +268,7,1,7743,288,1126.513,16,64,G#5,pp,8,144,80,8,,,,, +268,7,1,7743,288,1126.58,,,,,,144,80,0,,,,, +268,8,1,7744,304,1126.58,16,64,D#5,pp,8,144,75,8,,,,, +268,8,1,7744,304,1126.647,,,,,,144,75,0,,,,, +268,9,1,7745,320,1126.647,16,64,G#5,pp+,9,144,80,9,,,,, +268,9,1,7745,320,1126.714,,,,,,144,80,0,,,,, +268,10,1,7746,336,1126.714,16,64,D#5,pp+,9,144,75,9,,,,, +268,10,1,7746,336,1126.781,,,,,,144,75,0,,,,, +268,11,1,7747,352,1126.781,16,64,B4,pp+,9,144,71,9,,,,, +268,11,1,7747,352,1126.848,,,,,,144,71,0,,,,, +268,12,1,7748,368,1126.848,24,64,D#5,pp+,9,144,75,9,,,,, +268,12,1,7748,368,1126.949,,,,,,144,75,0,,,,, +268,13,1,7749,392,1126.949,24,64,G#5,pp+,9,144,80,9,,,,, +268,13,1,7749,392,1127.049,,,,,,144,80,0,,,,, +268,14,1,7750,416,1127.049,24,64,B3,pp+,9,144,59,9,,,,, +268,3,3,7739,0,1127.149,,,,,,144,63,0,,,,, +268,14,1,7750,416,1127.149,,,,,,144,59,0,,,,, +268,15,1,7751,440,1127.149,24,64,D#4,p-,10,144,63,10,,,,, +268,16,1,7752,464,1127.25,24,64,G#5,p-,10,144,80,10,,,,, +268,16,1,7752,464,1127.35,,,,,,144,80,0,,,,, +268,17,1,7753,488,1127.35,24,64,B2,p-,10,144,47,10,,,,, +268,17,1,7753,488,1127.451,,,,,,144,47,0,,,,, +268,18,1,7754,512,1127.451,16,64,G#5,p-,10,144,80,10,,,,, +268,19,3,7755,512,1127.451,21,32,A1,pp,8,144,33,8,,,,, +268,18,1,7754,512,1127.518,,,,,,144,80,0,,,,, +268,20,1,7756,528,1127.518,16,64,D#5,p-,10,144,75,10,,,,, +268,19,3,7755,512,1127.539,,,,,,144,33,0,,,,, +268,21,3,7757,533,1127.539,21,32,G2,pp,8,144,43,8,,,,, +268,20,1,7756,528,1127.585,,,,,,144,75,0,,,,, +268,22,1,7758,544,1127.585,16,64,G#5,p-,10,144,80,10,,,,, +268,21,3,7757,533,1127.627,,,,,,144,43,0,,,,, +268,23,3,7759,554,1127.627,22,32,A1,pp,8,144,33,8,,,,, +268,22,1,7758,544,1127.652,,,,,,144,80,0,,,,, +268,24,1,7760,560,1127.652,16,64,D#5,p-,10,144,75,10,,,,, +268,15,1,7751,440,1127.676,,,,,,144,63,0,,,,, +268,23,3,7759,554,1127.719,,,,,,144,33,0,,,,, +268,24,1,7760,560,1127.719,,,,,,144,75,0,,,,, +268,25,1,7761,576,1127.719,16,64,G#5,p,11,144,80,11,,,,, +268,26,3,7762,576,1127.719,32,32,G2,pp+,9,144,43,9,,,,, +268,25,1,7761,576,1127.786,,,,,,144,80,0,,,,, +268,27,1,7763,592,1127.786,16,64,D#5,p,11,144,75,11,,,,, +268,27,1,7763,592,1127.853,,,,,,144,75,0,,,,, +268,28,1,7764,608,1127.853,16,64,B4,p,11,144,71,11,,,,, +268,29,3,7765,608,1127.853,32,32,A1,pp+,9,144,33,9,,,,, +268,26,3,7762,576,1127.853,,,,,,144,43,0,,,,, +268,28,1,7764,608,1127.92,,,,,,144,71,0,,,,, +268,30,1,7766,624,1127.92,24,64,D#5,p,11,144,75,11,,,,, +268,31,3,7767,640,1127.986,32,32,G2,p,11,144,43,11,,,,, +268,29,3,7765,608,1127.986,,,,,,144,33,0,,,,, +268,30,1,7766,624,1128.02,,,,,,144,75,0,,,,, +268,32,1,7768,648,1128.02,24,64,G#5,p,11,144,80,11,,,,, +268,32,1,7768,648,1128.12,,,,,,144,80,0,,,,, +268,33,1,7769,672,1128.12,24,64,B4,p,11,144,71,11,,,,, +268,34,3,7770,672,1128.12,21,32,A1,p,11,144,33,11,,,,, +268,31,3,7767,640,1128.12,,,,,,144,43,0,,,,, +268,34,3,7770,672,1128.208,,,,,,144,33,0,,,,, +268,35,3,7771,693,1128.208,21,32,G2,p+,12,144,43,12,,,,, +268,33,1,7769,672,1128.221,,,,,,144,71,0,,,,, +268,36,1,7772,696,1128.221,24,64,D#5,p+,12,144,75,12,,,,, +268,35,3,7771,693,1128.296,,,,,,144,43,0,,,,, +268,37,3,7773,714,1128.296,22,32,A1,p+,12,144,33,12,,,,, +268,36,1,7772,696,1128.321,,,,,,144,75,0,,,,, +268,38,1,7774,720,1128.321,24,64,G#5,p+,12,144,80,12,,,,, +268,37,3,7773,714,1128.388,,,,,,144,33,0,,,,, +268,39,3,7775,736,1128.388,32,32,G2,mp,14,144,43,14,,,,, +268,38,1,7774,720,1128.422,,,,,,144,80,0,,,,, +268,40,1,7776,744,1128.422,24,64,B4,p+,12,144,71,12,,,,, +268,40,1,7776,744,1128.522,,,,,,144,71,0,,,,, +268,41,1,7777,768,1128.522,,,,,,176,102,0,,,,, +268,42,3,7778,768,1128.522,,,,,,176,102,0,,,,, +268,39,3,7775,736,1128.522,,,,,,144,43,0,,,,, +268,43,1,7779,1024,1129.594,,,,,,176,102,0,,,,, +268,44,3,7780,1024,1129.594,512,2,D#4,pp,8,144,63,8,,,,, +268,45,0,7781,1472,1131.453,,,,,,176,64,0,,,,,^ +268,44,3,7780,1024,1131.736,,,,,,144,63,0,,,,, +268,47,1,7782,1536,1131.736,36,32,E6,p+,12,144,88,12,,,,, +268,48,3,7783,1536,1131.736,,,,,,176,102,0,,,,, +268,46,0,7784,1536,1131.753,,,,,,176,64,127,,,,,V +268,47,1,7782,1536,1131.887,,,,,,144,88,0,,,,, +268,49,1,7785,1572,1131.887,37,32,C#3,mp-,13,144,49,13,,,,, +268,49,1,7785,1572,1132.042,,,,,,144,49,0,,,,, +268,50,1,7786,1609,1132.042,55,32,C#3,mp+,15,144,49,15,,,,, +268,51,1,7787,1609,1132.042,32,32,E6,mp+,15,144,88,15,,,,, +268,51,1,7787,1609,1132.176,,,,,,144,88,0,,,,, +268,50,1,7786,1609,1132.272,,,,,,144,49,0,,,,, +268,52,3,7788,,1132.272,,8,A4,mf,17,144,69,17,,,,g, +268,52,3,7788,,1132.322,,,,,,144,69,0,,,,, +268,53,3,7789,1664,1132.347,256,4,E4,mf,17,144,64,17,,,,, +268,54,1,7790,1664,1132.347,54,32,G#4,mf,17,144,68,17,,,,, +268,55,1,7791,1664,1132.347,32,32,E6,mf,17,144,88,17,,,,, +268,55,1,7791,1664,1132.481,,,,,,144,88,0,,,,, +268,54,1,7790,1664,1132.573,,,,,,144,68,0,,,,, +268,56,1,7792,1718,1132.573,37,32,C6,pp,8,144,84,8,,,,, +268,56,1,7792,1718,1132.728,,,,,,144,84,0,,,,, +268,57,1,7793,1755,1132.728,37,32,A#3,pp,8,144,58,8,,,,, +268,57,1,7793,1755,1132.883,,,,,,144,58,0,,,,, +268,58,1,7794,1792,1132.883,,,,,,176,102,0,,,,, +268,59,3,7795,1920,1133.419,128,8,G#4,mp,14,144,68,14,,,,, +268,53,3,7789,1664,1133.419,,,,,,144,64,0,,,,, +268,59,3,7795,1920,1133.954,,,,,,144,68,0,,,,, +269,0,0,7796,0,1133.954,,,,,,,,,269,,,, +269,1,1,7797,0,1133.954,1536,1,F5,f,20,144,77,20,,,,, +269,2,2,7798,0,1133.954,512,2,A#3,pp,8,144,58,8,,,,, +269,3,2,7799,0,1133.954,512,2,G#4,pp,8,144,68,8,,,,, +269,4,2,7800,0,1133.954,512,2,C6,pp,8,144,84,8,,,,, +269,5,2,7801,0,1133.954,512,2,E6,pp,8,144,88,8,,,,, +269,6,3,7802,0,1133.954,,,,,,176,102,0,,,,, +269,7,4,7803,0,1133.954,512,2,E4,pp,8,144,64,8,,,,, +269,8,4,7804,0,1133.954,512,2,A4,pp,8,144,69,8,,,,, +269,9,2,7805,512,1136.097,128,8,A#3,,,,,,,,,, +269,10,2,7806,512,1136.097,128,8,G#4,,,,,,,,,, +269,11,2,7807,512,1136.097,128,8,C6,,,,,,,,,, +269,12,2,7808,512,1136.097,128,8,E6,,,,,,,,,, +269,13,4,7809,512,1136.097,128,8,E4,,,,,,,,,, +269,14,4,7810,512,1136.097,128,8,A4,,,,,,,,,, +269,15,2,7811,640,1136.633,384,4,A#3,p,11,144,58,11,,,,, +269,16,2,7812,640,1136.633,256,4,G#4,p,11,144,68,11,,,,, +269,17,2,7813,640,1136.633,256,4,C6,p,11,144,84,11,,,,, +269,18,2,7814,640,1136.633,256,4,E6,p,11,144,88,11,,,,, +269,19,4,7815,640,1136.633,384,4,E4,p,11,144,64,11,,,,, +269,20,4,7816,640,1136.633,256,4,A4,p,11,144,69,11,,,,, +269,2,2,7798,0,1136.858,,,,,,144,58,0,,,,, +269,3,2,7799,0,1136.858,,,,,,144,68,0,,,,, +269,4,2,7800,0,1136.858,,,,,,144,84,0,,,,, +269,5,2,7801,0,1136.858,,,,,,144,88,0,,,,, +269,7,4,7803,0,1136.858,,,,,,144,64,0,,,,, +269,8,4,7804,0,1136.858,,,,,,144,69,0,,,,, +269,21,2,7817,1024,1138.24,512,2,A#3,,,,,,,,,, +269,22,2,7818,1024,1138.24,512,2,G#4,,,,,,,,,, +269,23,2,7819,1024,1138.24,512,2,C6,,,,,,,,,, +269,24,2,7820,1024,1138.24,512,2,E6,,,,,,,,,, +269,25,4,7821,1024,1138.24,512,2,E4,,,,,,,,,, +269,26,4,7822,1024,1138.24,512,2,A4,,,,,,,,,, +269,16,2,7812,640,1139.847,,,,,,144,68,0,,,,, +269,17,2,7813,640,1139.847,,,,,,144,84,0,,,,, +269,18,2,7814,640,1139.847,,,,,,144,88,0,,,,, +269,20,4,7816,640,1139.847,,,,,,144,69,0,,,,, +269,1,1,7797,0,1140.383,,,,,,144,77,0,,,,, +269,15,2,7811,640,1140.383,,,,,,144,58,0,,,,, +269,19,4,7815,640,1140.383,,,,,,144,64,0,,,,, +269,27,1,7823,1536,1140.383,512,2,F5,mp,14,144,77,14,,,,, +269,28,2,7824,1536,1140.383,512,2,G#4,ppp,5,144,68,5,,,,, +269,29,3,7825,1536,1140.383,512,2,E2,ppp,5,144,40,5,,,,, +269,30,4,7826,1536,1140.383,512,2,E4,mp,14,144,64,14,,,,, +269,31,4,7827,1536,1140.383,512,2,A4,ppp,5,144,69,5,,,,, +269,28,2,7824,1536,1142.526,,,,,,144,68,0,,,,, +269,29,3,7825,1536,1142.526,,,,,,144,40,0,,,,, +269,30,4,7826,1536,1142.526,,,,,,144,64,0,,,,, +269,31,4,7827,1536,1142.526,,,,,,144,69,0,,,,, +270,0,0,7828,0,1142.526,,,,,,,,,270,,,, +270,1,1,7829,0,1142.526,960,2,F5,,,,,,,,,, +270,2,2,7830,0,1142.526,1024,1,G#4,pp,8,144,68,8,,,,, +270,3,3,7831,0,1142.526,1024,1,D3,pp,8,144,50,8,,,,, +270,4,4,7832,0,1142.526,1024,1,E4,pp,8,144,64,8,,,,, +270,5,4,7833,0,1142.526,1024,1,A4,pp,8,144,69,8,,,,, +269,27,1,7823,1536,1146.544,,,,,,144,77,0,,,,, +270,6,0,7834,960,1146.544,,,,,,176,64,0,,,,,^ +270,7,1,7835,960,1146.544,64,16,D4,f,20,144,62,20,,,,, +270,8,1,7836,960,1146.544,64,16,C6,f,20,144,84,20,,,,, +270,9,1,7837,960,1146.544,64,16,E6,f,20,144,88,20,,,,, +270,2,2,7830,0,1146.811,,,,,,144,68,0,,,,, +270,3,3,7831,0,1146.811,,,,,,144,50,0,,,,, +270,4,4,7832,0,1146.811,,,,,,144,64,0,,,,, +270,5,4,7833,0,1146.811,,,,,,144,69,0,,,,, +270,7,1,7835,960,1146.811,,,,,,144,62,0,,,,, +270,8,1,7836,960,1146.811,,,,,,144,84,0,,,,, +270,9,1,7837,960,1146.811,,,,,,144,88,0,,,,, +270,10,1,7838,1024,1146.811,1024,1,D4,pp,8,144,62,8,,,,, +270,11,1,7839,1024,1146.811,1024,1,C6,pp,8,144,84,8,,,,, +270,12,1,7840,1024,1146.811,1024,1,E6,pp,8,144,88,8,,,,, +270,13,2,7841,1024,1146.811,1024,1,G#4,p,11,144,68,11,,,,, +270,14,3,7842,1024,1146.811,,,,,,176,102,0,,,,, +270,15,4,7843,1024,1146.811,1024,1,E4,pp,8,144,64,8,,,,, +270,16,4,7844,1024,1146.811,1024,1,A4,pp,8,144,69,8,,,,, +270,17,3,7845,1152,1147.347,42,16,G#2,f,20,144,44,20,,,,, +270,17,3,7845,1152,1147.523,,,,,,144,44,0,,,,, +270,18,3,7846,1194,1147.523,86,8,G#2,p,11,144,44,11,,,,, +270,19,3,7847,1194,1147.523,128,8,C#3,p,11,144,49,11,,,,, +270,20,3,7848,1280,1147.883,512,2,G#2,,,,,,,,,, +270,21,3,7849,1280,1147.883,512,2,C#3,,,,,,,,,, +270,18,3,7846,1194,1150.026,,,,,,144,44,0,,,,, +270,23,3,7850,1792,1150.026,32,32,C#2,ppp,5,144,37,5,,,,, +270,22,0,7851,1792,1150.026,,,,,,176,64,127,,,,,V +270,23,3,7850,1792,1150.16,,,,,,144,37,0,,,,, +270,24,3,7852,1824,1150.16,32,32,A3,ppp-,4,144,57,4,,,,, +270,19,3,7847,1194,1150.202,,,,,,144,49,0,,,,, +270,24,3,7852,1824,1150.294,,,,,,144,57,0,,,,, +270,25,3,7853,1856,1150.294,21,32,B1,ppp-,4,144,35,4,,,,, +270,25,3,7853,1856,1150.382,,,,,,144,35,0,,,,, +270,26,3,7854,1877,1150.382,21,32,F2,pppp+,3,144,41,3,,,,, +270,26,3,7854,1877,1150.469,,,,,,144,41,0,,,,, +270,27,3,7855,1898,1150.469,22,32,B1,pppp+,3,144,35,3,,,,, +270,28,3,7856,1898,1150.469,32,32,C#2,pppp+,3,144,37,3,,,,, +270,27,3,7855,1898,1150.561,,,,,,144,35,0,,,,, +270,29,3,7857,1920,1150.561,21,32,F2,pppp+,3,144,41,3,,,,, +270,28,3,7856,1898,1150.603,,,,,,144,37,0,,,,, +270,29,3,7857,1920,1150.649,,,,,,144,41,0,,,,, +270,30,3,7858,1941,1150.649,21,32,B0,pppp,2,144,23,2,,,,, +270,30,3,7858,1941,1150.737,,,,,,144,23,0,,,,, +270,31,3,7859,1962,1150.737,22,32,A3,pppp,2,144,57,2,,,,, +270,31,3,7859,1962,1150.829,,,,,,144,57,0,,,,, +270,32,3,7860,1984,1150.829,21,32,F2,pppp-,1,144,41,1,,,,, +270,32,3,7860,1984,1150.917,,,,,,144,41,0,,,,, +270,33,3,7861,2005,1150.917,43,16,B0,pppp-,1,144,23,1,,,,, +270,10,1,7838,1024,1151.097,,,,,,144,62,0,,,,, +270,11,1,7839,1024,1151.097,,,,,,144,84,0,,,,, +270,12,1,7840,1024,1151.097,,,,,,144,88,0,,,,, +270,13,2,7841,1024,1151.097,,,,,,144,68,0,,,,, +270,15,4,7843,1024,1151.097,,,,,,144,64,0,,,,, +270,16,4,7844,1024,1151.097,,,,,,144,69,0,,,,, +270,33,3,7861,2005,1151.097,,,,,,144,23,0,,,,, +271,0,0,7862,0,1151.097,,,,,,,,,271,,,, +271,1,1,7863,0,1151.097,512,2,G#4,mp,14,144,68,14,,,,, +271,2,2,7864,0,1151.097,512,2,D4,ppp,5,144,62,5,,,,, +271,3,2,7865,0,1151.097,512,2,C6,ppp,5,144,84,5,,,,, +271,4,2,7866,0,1151.097,512,2,E6,ppp,5,144,88,5,,,,, +271,5,3,7867,0,1151.097,,,,,,176,102,0,,,,, +271,6,4,7868,0,1151.097,512,2,E4,mp,14,144,64,14,,,,, +271,7,4,7869,0,1151.097,512,2,A4,mp,14,144,69,14,,,,, +271,8,0,7870,512,1152.563,,,,,,176,64,0,,,,,^ +271,9,1,7871,512,1153.24,,,,,,176,102,0,,,,, +271,10,2,7872,512,1153.24,170,4,F5,f,20,144,77,20,,,,, +271,11,3,7873,512,1153.24,170,4,G1,f,20,144,31,20,,,,, +271,12,3,7874,512,1153.24,256,4,E2,f,20,144,40,20,,,,, +271,13,4,7875,512,1153.24,,,,,,176,102,0,,,,, +271,14,0,7876,682,1153.275,,,,,,176,64,127,,,,,V +271,10,2,7872,512,1153.29,,,,,,144,77,0,,,,, +271,11,3,7873,512,1153.29,,,,,,144,31,0,,,,, +271,12,3,7874,512,1153.29,,,,,,144,40,0,,,,, +271,1,1,7863,0,1153.315,,,,,,144,68,0,,,,, +271,2,2,7864,0,1153.315,,,,,,144,62,0,,,,, +271,3,2,7865,0,1153.315,,,,,,144,84,0,,,,, +271,4,2,7866,0,1153.315,,,,,,144,88,0,,,,, +271,6,4,7868,0,1153.315,,,,,,144,64,0,,,,, +271,7,4,7869,0,1153.315,,,,,,144,69,0,,,,, +271,15,2,7877,682,1153.952,22,32,E3,ppp,5,144,52,5,,,,, +271,16,3,7878,682,1153.952,,,,,,176,102,0,,,,, +271,15,2,7877,682,1154.044,,,,,,144,52,0,,,,, +271,17,2,7879,704,1154.044,21,32,C4,ppp,5,144,60,5,,,,, +271,17,2,7879,704,1154.132,,,,,,144,60,0,,,,, +271,18,2,7880,725,1154.132,21,32,E3,ppp+,6,144,52,6,,,,, +271,18,2,7880,725,1154.219,,,,,,144,52,0,,,,, +271,19,2,7881,746,1154.219,22,32,C4,ppp+,6,144,60,6,,,,, +271,19,2,7881,746,1154.311,,,,,,144,60,0,,,,, +271,20,2,7882,768,1154.311,21,32,E3,pp-,7,144,52,7,,,,, +271,21,2,7883,768,1154.311,32,32,C4,pp-,7,144,60,7,,,,, +271,22,2,7884,768,1154.311,32,32,F#6,pp-,7,144,90,7,,,,, +271,23,3,7885,768,1154.311,,,,,,176,102,0,,,,, +271,20,2,7882,768,1154.399,,,,,,144,52,0,,,,, +271,24,2,7886,789,1154.399,43,16,F4,pp-,7,144,65,7,,,,, +271,21,2,7883,768,1154.445,,,,,,144,60,0,,,,, +271,22,2,7884,768,1154.445,,,,,,144,90,0,,,,, +271,24,2,7886,789,1154.579,,,,,,144,65,0,,,,, +271,25,2,7887,832,1154.579,,,,,,176,102,0,,,,, +271,26,2,7888,853,1154.667,21,32,F#6,pp,8,144,90,8,,,,, +271,26,2,7888,853,1154.755,,,,,,144,90,0,,,,, +271,27,2,7889,874,1154.755,22,32,F5,ppp,5,144,77,5,,,,, +271,27,2,7889,874,1154.847,,,,,,144,77,0,,,,, +271,28,2,7890,896,1154.847,,,,,,176,102,0,,,,, +271,29,3,7891,896,1154.847,,,,,,176,102,0,,,,, +271,30,0,7892,896,1154.847,,,,,,,,,,5998,,, +271,31,0,7893,928,1154.981,,,,,,176,64,0,,,,,^ +271,32,3,7894,928,1154.981,32,32,G3,f,20,144,55,20,,,,, +271,32,3,7894,928,1155.115,,,,,,144,55,0,,,,, +271,33,3,7895,960,1155.115,32,32,G3,pp,8,144,55,8,,,,, +271,34,3,7896,960,1155.115,32,32,B3,pp,8,144,59,8,,,,, +271,33,3,7895,960,1155.249,,,,,,144,55,0,,,,, +271,34,3,7896,960,1155.249,,,,,,144,59,0,,,,, +271,35,3,7897,992,1155.249,32,32,G3,pp,8,144,55,8,,,,, +271,36,3,7898,992,1155.249,32,32,B3,pp,8,144,59,8,,,,, +271,38,1,7899,1024,1155.383,,,,,,176,102,0,,,,, +271,39,2,7900,1024,1155.383,,,,,,176,102,0,,,,, +271,40,3,7901,1024,1155.383,512,2,G3,,,,,,,,,, +271,41,3,7902,1024,1155.383,512,2,B3,,,,,,,,,, +271,42,4,7903,1024,1155.383,,,,,,176,102,0,,,,, +271,37,0,7904,1024,1155.383,,,,,,176,64,127,,,,,V +271,43,2,7905,1408,1156.99,16,64,F#7,ppp,5,144,102,5,,,,, +271,43,2,7905,1408,1157.057,,,,,,144,102,0,,,,, +271,44,2,7906,1424,1157.057,16,64,E5,ppp+,6,144,76,6,,,,, +271,44,2,7906,1424,1157.124,,,,,,144,76,0,,,,, +271,45,2,7907,1440,1157.124,16,64,F6,pp-,7,144,89,7,,,,, +271,45,2,7907,1440,1157.191,,,,,,144,89,0,,,,, +271,46,2,7908,1456,1157.191,16,64,C6,pp,8,144,84,8,,,,, +271,46,2,7908,1456,1157.258,,,,,,144,84,0,,,,, +271,47,2,7909,1472,1157.258,16,64,G#5,pp+,9,144,80,9,,,,, +271,47,2,7909,1472,1157.325,,,,,,144,80,0,,,,, +271,48,2,7910,1488,1157.325,24,64,E4,p-,10,144,64,10,,,,, +271,48,2,7910,1488,1157.425,,,,,,144,64,0,,,,, +271,49,0,7911,1512,1157.425,,,,,,176,64,0,,,,,^ +271,50,2,7912,1512,1157.425,24,64,C6,p,11,144,84,11,,,,, +271,50,2,7912,1512,1157.526,,,,,,144,84,0,,,,, +271,51,2,7913,1536,1157.526,,,,,,176,102,0,,,,, +271,52,3,7914,1536,1157.526,256,4,C3,pp,8,144,48,8,,,,, +271,53,3,7915,1536,1157.526,256,4,G3,pp,8,144,55,8,,,,, +271,54,3,7916,1536,1157.526,256,4,B3,pp,8,144,59,8,,,,, +271,55,4,7917,1536,1157.526,,,,,,176,102,0,,,,, +271,35,3,7897,992,1157.526,,,,,,144,55,0,,,,, +271,36,3,7898,992,1157.526,,,,,,144,59,0,,,,, +271,52,3,7914,1536,1158.597,,,,,,144,48,0,,,,, +271,53,3,7915,1536,1158.597,,,,,,144,55,0,,,,, +271,54,3,7916,1536,1158.597,,,,,,144,59,0,,,,, +271,58,4,7918,,1158.597,,8,D2,mf,17,144,38,17,,,,g, +271,58,4,7918,,1158.647,,,,,,144,38,0,,,,, +271,59,4,7919,,1158.672,,8,C3,mf-,16,144,48,16,,,,g, +271,59,4,7919,,1158.722,,,,,,144,48,0,,,,, +271,60,4,7920,,1158.747,,8,D2,mp,14,144,38,14,,,,g, +271,60,4,7920,,1158.797,,,,,,144,38,0,,,,, +271,61,4,7921,,1158.822,,8,E3,mp-,13,144,52,13,,,,g, +271,61,4,7921,,1158.872,,,,,,144,52,0,,,,, +271,62,4,7922,,1158.897,,8,C#2,p+,12,144,37,12,,,,g, +271,62,4,7922,,1158.947,,,,,,144,37,0,,,,, +271,63,4,7923,,1158.972,,8,A1,p-,10,144,33,10,,,,g, +271,64,4,7924,,1158.972,,8,D2,p-,10,144,38,10,,,,g, +271,65,4,7925,,1158.972,,8,C3,p-,10,144,48,10,,,,g, +271,66,4,7926,,1158.972,,8,E3,p-,10,144,52,10,,,,g, +271,63,4,7923,,1159.022,,,,,,144,33,0,,,,, +271,64,4,7924,,1159.022,,,,,,144,38,0,,,,, +271,65,4,7925,,1159.022,,,,,,144,48,0,,,,, +271,66,4,7926,,1159.022,,,,,,144,52,0,,,,, +271,67,4,7927,,1159.047,,8,C#2,pp+,9,144,37,9,,,,g, +271,67,4,7927,,1159.097,,,,,,144,37,0,,,,, +271,68,4,7928,,1159.122,,8,E4,pp,8,144,64,8,,,,g, +271,68,4,7928,,1159.172,,,,,,144,64,0,,,,, +271,69,4,7929,,1159.197,,8,A1,ppp+,6,144,33,6,,,,g, +271,69,4,7929,,1159.247,,,,,,144,33,0,,,,, +271,70,4,7930,,1159.272,,8,C#2,ppp,5,144,37,5,,,,g, +271,70,4,7930,,1159.322,,,,,,144,37,0,,,,, +271,56,2,7931,1792,1159.572,96,16,G#4,p,11,144,68,11,,,,, +271,57,3,7932,1792,1159.572,,,,,,176,102,0,,,,, +271,71,4,7933,1792,1159.572,,,,,,176,102,0,,,,, +271,56,2,7931,1792,1159.974,,,,,,144,68,0,,,,, +271,72,2,7934,1888,1159.974,64,16,D4,p,11,144,62,11,,,,, +271,72,2,7934,1888,1160.242,,,,,,144,62,0,,,,, +271,73,2,7935,1952,1160.242,96,16,C#3,p,11,144,49,11,,,,, +271,75,4,7936,1984,1160.376,32,32,C#2,ppp,5,144,37,5,,,,, +271,74,0,7937,1984,1160.376,,,,,,176,64,127,,,,,V +271,75,4,7936,1984,1160.51,,,,,,144,37,0,,,,, +271,76,4,7938,2016,1160.51,32,32,C#2,pp,8,144,37,8,,,,, +271,73,2,7935,1952,1160.644,,,,,,144,49,0,,,,, +271,76,4,7938,2016,1160.644,,,,,,144,37,0,,,,, +272,0,0,7939,0,1160.644,,,,,,,,,272,,,, +272,1,1,7940,0,1160.644,32,32,E7,pp,8,144,100,8,,,,, +272,2,3,7941,0,1160.644,128,8,C#2,p,11,144,37,11,,,,, +272,3,3,7942,0,1160.644,128,8,E3,p,11,144,52,11,,,,, +272,1,1,7940,0,1160.778,,,,,,144,100,0,,,,, +272,4,1,7943,32,1160.778,32,32,G#4,pp+,9,144,68,9,,,,, +272,4,1,7943,32,1160.911,,,,,,144,68,0,,,,, +272,5,1,7944,64,1160.911,48,32,A#3,p-,10,144,58,10,,,,, +272,5,1,7944,64,1161.112,,,,,,144,58,0,,,,, +272,6,1,7945,112,1161.112,48,32,C7,p,11,144,96,11,,,,, +272,2,3,7941,0,1161.179,,,,,,144,37,0,,,,, +272,3,3,7942,0,1161.179,,,,,,144,52,0,,,,, +272,7,3,7946,128,1161.179,64,16,E5,pp,8,144,76,8,,,,, +272,6,1,7945,112,1161.313,,,,,,144,96,0,,,,, +272,8,1,7947,160,1161.313,32,32,G#4,p+,12,144,68,12,,,,, +272,7,3,7946,128,1161.447,,,,,,144,76,0,,,,, +272,8,1,7947,160,1161.447,,,,,,144,68,0,,,,, +272,9,1,7948,192,1161.447,32,32,A#3,mp-,13,144,58,13,,,,, +272,10,3,7949,192,1161.447,64,16,E6,pp,8,144,88,8,,,,, +272,9,1,7948,192,1161.581,,,,,,144,58,0,,,,, +272,11,0,7950,224,1161.581,,,,,,176,64,0,,,,,^ +272,12,1,7951,224,1161.581,32,32,C7,mp,14,144,96,14,,,,, +272,10,3,7949,192,1161.715,,,,,,144,88,0,,,,, +272,12,1,7951,224,1161.715,,,,,,144,96,0,,,,, +272,13,1,7952,256,1161.715,21,32,E4,ppp,5,144,64,5,,,,, +272,14,3,7953,256,1161.715,42,16,G#2,p,11,144,44,11,,,,, +272,15,3,7954,256,1161.715,64,16,F3,p,11,144,53,11,,,,, +272,13,1,7952,256,1161.803,,,,,,144,64,0,,,,, +272,16,1,7955,277,1161.803,21,32,F#5,ppp,5,144,78,5,,,,, +272,14,3,7953,256,1161.891,,,,,,144,44,0,,,,, +272,16,1,7955,277,1161.891,,,,,,144,78,0,,,,, +272,17,1,7956,298,1161.891,22,32,C5,ppp+,6,144,72,6,,,,, +272,18,3,7957,298,1161.891,128,8,F3,,,,,,,,,, +272,17,1,7956,298,1161.983,,,,,,144,72,0,,,,, +272,19,1,7958,320,1161.983,32,32,E4,ppp+,6,144,64,6,,,,, +272,19,1,7958,320,1162.117,,,,,,144,64,0,,,,, +272,20,1,7959,352,1162.117,32,32,C5,pp-,7,144,72,7,,,,, +272,20,1,7959,352,1162.251,,,,,,144,72,0,,,,, +272,21,1,7960,384,1162.251,42,16,F#5,pp,8,144,78,8,,,,, +272,21,1,7960,384,1162.427,,,,,,144,78,0,,,,, +272,23,1,7961,426,1162.427,86,8,E5,pp,8,144,76,8,,,,, +272,24,1,7962,426,1162.427,128,8,G#5,pp,8,144,80,8,,,,, +272,25,3,7963,426,1162.427,86,8,C3,p,11,144,48,11,,,,, +272,22,0,7964,426,1162.427,,,,,,176,64,127,,,,,V +272,15,3,7954,256,1162.519,,,,,,144,53,0,,,,, +272,25,3,7963,426,1162.786,,,,,,144,48,0,,,,, +272,26,1,7965,512,1162.786,170,4,E5,,,,,,,,,, +272,27,1,7966,512,1162.786,256,4,G#5,,,,,,,,,, +272,28,3,7967,512,1162.786,32,32,C#2,p,11,144,37,11,,,,, +272,28,3,7967,512,1162.92,,,,,,144,37,0,,,,, +272,29,3,7968,544,1162.92,32,32,A2,p,11,144,45,11,,,,, +272,29,3,7968,544,1163.054,,,,,,144,45,0,,,,, +272,30,3,7969,576,1163.054,21,32,B1,p,11,144,35,11,,,,, +272,30,3,7969,576,1163.142,,,,,,144,35,0,,,,, +272,31,3,7970,597,1163.142,21,32,F2,p,11,144,41,11,,,,, +272,31,3,7970,597,1163.23,,,,,,144,41,0,,,,, +272,32,3,7971,618,1163.23,22,32,B1,p,11,144,35,11,,,,, +272,33,3,7972,618,1163.23,32,32,C#2,p,11,144,37,11,,,,, +272,32,3,7971,618,1163.322,,,,,,144,35,0,,,,, +272,34,3,7973,640,1163.322,42,16,F2,p,11,144,41,11,,,,, +272,33,3,7972,618,1163.364,,,,,,144,37,0,,,,, +272,23,1,7961,426,1163.498,,,,,,144,76,0,,,,, +272,34,3,7973,640,1163.498,,,,,,144,41,0,,,,, +272,35,0,7974,682,1163.498,,,,,,176,64,0,,,,,^ +272,36,1,7975,682,1163.498,86,8,E5,mf,17,144,76,17,,,,, +272,37,1,7976,682,1163.498,128,8,G#5,mf,17,144,80,17,,,,, +272,38,1,7977,682,1163.498,128,8,A5,mf,17,144,81,17,,,,, +272,39,3,7978,682,1163.498,86,8,C3,mf,17,144,48,17,,,,, +272,40,3,7979,682,1163.498,128,8,F#3,mf,17,144,54,17,,,,, +272,36,1,7975,682,1163.858,,,,,,144,76,0,,,,, +272,39,3,7978,682,1163.858,,,,,,144,48,0,,,,, +272,41,1,7980,768,1163.858,256,4,A#3,pp,8,144,58,8,,,,, +272,42,1,7981,768,1163.858,256,4,G#4,pp,8,144,68,8,,,,, +272,43,1,7982,768,1163.858,256,4,C7,pp,8,144,96,8,,,,, +272,44,1,7983,768,1163.858,256,4,E7,pp,8,144,100,8,,,,, +272,45,3,7984,768,1163.858,,,,,,176,102,0,,,,, +272,24,1,7962,426,1164.034,,,,,,144,80,0,,,,, +272,37,1,7976,682,1164.034,,,,,,144,80,0,,,,, +272,38,1,7977,682,1164.034,,,,,,144,81,0,,,,, +272,40,3,7979,682,1164.034,,,,,,144,54,0,,,,, +272,46,3,7985,853,1164.214,21,32,F#2,pp,8,144,42,8,,,,, +272,46,3,7985,853,1164.302,,,,,,144,42,0,,,,, +272,47,3,7986,874,1164.302,22,32,G#5,pp+,9,144,80,9,,,,, +272,47,3,7986,874,1164.394,,,,,,144,80,0,,,,, +272,48,3,7987,896,1164.394,21,32,A5,p,11,144,81,11,,,,, +272,48,3,7987,896,1164.482,,,,,,144,81,0,,,,, +272,49,3,7988,917,1164.482,21,32,C2,p+,12,144,36,12,,,,, +272,49,3,7988,917,1164.569,,,,,,144,36,0,,,,, +272,50,3,7989,938,1164.569,22,32,E4,mp,14,144,64,14,,,,, +272,50,3,7989,938,1164.661,,,,,,144,64,0,,,,, +272,51,3,7990,960,1164.661,21,32,F#2,mf-,16,144,42,16,,,,, +272,42,1,7981,768,1164.749,,,,,,144,68,0,,,,, +272,51,3,7990,960,1164.749,,,,,,144,42,0,,,,, +272,52,3,7991,981,1164.749,43,16,G#4,mf,17,144,68,17,,,,, +272,54,1,7992,1024,1164.929,32,32,E6,pp,8,144,88,8,,,,, +272,55,3,7993,1024,1164.929,,,,,,176,102,0,,,,, +272,53,0,7994,1024,1164.929,,,,,,176,64,127,,,,,V +272,41,1,7980,768,1164.929,,,,,,144,58,0,,,,, +272,43,1,7982,768,1164.929,,,,,,144,96,0,,,,, +272,44,1,7983,768,1164.929,,,,,,144,100,0,,,,, +272,52,3,7991,981,1164.929,,,,,,144,68,0,,,,, +272,54,1,7992,1024,1165.063,,,,,,144,88,0,,,,, +272,56,1,7995,1056,1165.063,32,32,G#3,pp+,9,144,56,9,,,,, +272,56,1,7995,1056,1165.197,,,,,,144,56,0,,,,, +272,57,1,7996,1088,1165.197,48,32,A#2,p-,10,144,46,10,,,,, +272,57,1,7996,1088,1165.398,,,,,,144,46,0,,,,, +272,58,1,7997,1136,1165.398,48,32,C6,p,11,144,84,11,,,,, +272,58,1,7997,1136,1165.599,,,,,,144,84,0,,,,, +272,59,1,7998,1184,1165.599,32,32,G#3,p+,12,144,56,12,,,,, +272,59,1,7998,1184,1165.733,,,,,,144,56,0,,,,, +272,60,1,7999,1216,1165.733,32,32,A#2,mp-,13,144,46,13,,,,, +272,61,0,8000,1248,1165.784,,,,,,176,64,0,,,,,^ +272,60,1,7999,1216,1165.867,,,,,,144,46,0,,,,, +272,62,1,8001,1248,1165.867,32,32,C6,mp,14,144,84,14,,,,, +272,62,1,8001,1248,1166.001,,,,,,144,84,0,,,,, +273,0,0,8002,0,1166.001,,,,,,,,,273,,,, +273,2,1,8003,0,1166.001,256,4,A4,mf,17,144,69,17,,,,, +273,3,2,8004,0,1166.001,,,,,,176,102,0,,,,, +273,4,3,8005,0,1166.001,32,32,C#1,mf,17,144,25,17,,,,, +273,5,4,8006,0,1166.001,,,,,,176,102,0,,,,, +273,1,0,8007,0,1166.084,,,,,,176,64,127,,,,,V +273,4,3,8005,0,1166.135,,,,,,144,25,0,,,,, +273,6,3,8008,32,1166.135,32,32,A3,mf-,16,144,57,16,,,,, +273,6,3,8008,32,1166.269,,,,,,144,57,0,,,,, +273,7,3,8009,64,1166.269,21,32,B0,mp,14,144,23,14,,,,, +273,7,3,8009,64,1166.357,,,,,,144,23,0,,,,, +273,8,3,8010,85,1166.357,21,32,F2,mp-,13,144,41,13,,,,, +273,8,3,8010,85,1166.444,,,,,,144,41,0,,,,, +273,9,3,8011,106,1166.444,22,32,B0,mp-,13,144,23,13,,,,, +273,10,3,8012,106,1166.444,32,32,C#1,mp-,13,144,25,13,,,,, +273,9,3,8011,106,1166.536,,,,,,144,23,0,,,,, +273,11,3,8013,128,1166.536,21,32,F1,p+,12,144,29,12,,,,, +273,10,3,8012,106,1166.578,,,,,,144,25,0,,,,, +273,11,3,8013,128,1166.624,,,,,,144,29,0,,,,, +273,12,3,8014,149,1166.624,21,32,B0,p,11,144,23,11,,,,, +273,12,3,8014,149,1166.712,,,,,,144,23,0,,,,, +273,13,3,8015,170,1166.712,22,32,A2,p-,10,144,45,10,,,,, +273,13,3,8015,170,1166.804,,,,,,144,45,0,,,,, +273,14,3,8016,192,1166.804,21,32,F1,pp+,9,144,29,9,,,,, +273,14,3,8016,192,1166.892,,,,,,144,29,0,,,,, +273,15,3,8017,213,1166.892,43,16,B0,pp,8,144,23,8,,,,, +273,2,1,8003,0,1167.072,,,,,,144,69,0,,,,, +273,16,1,8018,256,1167.072,,,,,,176,102,0,,,,, +273,17,3,8019,256,1167.072,256,4,B0,,,,,,,,,, +273,18,1,8020,512,1168.144,,,,,,176,102,0,,,,, +273,19,3,8021,512,1168.144,170,4,B0,,,,,,,,,, +273,15,3,8017,213,1168.855,,,,,,144,23,0,,,,, +273,20,0,8022,682,1168.855,,,,,,176,64,0,,,,,^ +273,21,3,8023,682,1168.855,86,8,B0,p,11,144,23,11,,,,, +273,22,3,8024,682,1168.855,128,8,C#1,p,11,144,25,11,,,,, +273,23,3,8025,682,1168.855,128,8,F1,p,11,144,29,11,,,,, +273,24,3,8026,682,1168.855,128,8,A2,p,11,144,45,11,,,,, +273,25,1,8027,704,1168.947,21,32,E4,ppp,5,144,64,5,,,,, +273,25,1,8027,704,1169.035,,,,,,144,64,0,,,,, +273,26,1,8028,725,1169.035,21,32,F#5,ppp,5,144,78,5,,,,, +273,26,1,8028,725,1169.123,,,,,,144,78,0,,,,, +273,27,1,8029,746,1169.123,22,32,C5,ppp,5,144,72,5,,,,, +273,21,3,8023,682,1169.215,,,,,,144,23,0,,,,, +273,27,1,8029,746,1169.215,,,,,,144,72,0,,,,, +273,28,1,8030,768,1169.215,38,32,G#6,pp,8,144,92,8,,,,, +273,29,2,8031,768,1169.215,,,,,,176,102,0,,,,, +273,30,3,8032,768,1169.215,256,4,D#4,p,11,144,63,11,,,,, +273,31,3,8033,768,1169.215,256,4,F5,p,11,144,77,11,,,,, +273,32,4,8034,768,1169.215,,,,,,176,102,0,,,,, +273,28,1,8030,768,1169.374,,,,,,144,92,0,,,,, +273,34,1,8035,806,1169.374,26,32,E5,pp+,9,144,76,9,,,,, +273,33,0,8036,806,1169.374,,,,,,176,64,127,,,,,V +273,22,3,8024,682,1169.391,,,,,,144,25,0,,,,, +273,23,3,8025,682,1169.391,,,,,,144,29,0,,,,, +273,24,3,8026,682,1169.391,,,,,,144,45,0,,,,, +273,34,1,8035,806,1169.483,,,,,,144,76,0,,,,, +273,35,1,8037,832,1169.483,38,32,G#6,pp+,9,144,92,9,,,,, +273,35,1,8037,832,1169.642,,,,,,144,92,0,,,,, +273,36,1,8038,870,1169.642,26,32,E4,p-,10,144,64,10,,,,, +273,36,1,8038,870,1169.751,,,,,,144,64,0,,,,, +273,37,1,8039,896,1169.751,12,64,C6,p-,10,144,84,10,,,,, +273,37,1,8039,896,1169.801,,,,,,144,84,0,,,,, +273,38,1,8040,908,1169.801,13,64,D7,p-,10,144,98,10,,,,, +273,38,1,8040,908,1169.855,,,,,,144,98,0,,,,, +273,39,1,8041,921,1169.855,13,64,C6,p-,10,144,84,10,,,,, +273,39,1,8041,921,1169.91,,,,,,144,84,0,,,,, +273,40,1,8042,934,1169.91,13,64,D7,p,11,144,98,11,,,,, +273,40,1,8042,934,1169.964,,,,,,144,98,0,,,,, +273,41,1,8043,947,1169.964,13,64,C6,p,11,144,84,11,,,,, +273,41,1,8043,947,1170.019,,,,,,144,84,0,,,,, +273,42,1,8044,960,1170.019,12,64,C#5,p,11,144,73,11,,,,, +273,42,1,8044,960,1170.069,,,,,,144,73,0,,,,, +273,43,1,8045,972,1170.069,26,32,G#6,p,11,144,92,11,,,,, +273,43,1,8045,972,1170.178,,,,,,144,92,0,,,,, +273,44,1,8046,998,1170.178,26,32,E4,p+,12,144,64,12,,,,, +273,30,3,8032,768,1170.286,,,,,,144,63,0,,,,, +273,31,3,8033,768,1170.286,,,,,,144,77,0,,,,, +273,44,1,8046,998,1170.286,,,,,,144,64,0,,,,, +273,45,1,8047,1024,1170.286,25,32,D7,p+,12,144,98,12,,,,, +273,46,2,8048,1024,1170.286,,,,,,176,102,0,,,,, +273,47,3,8049,1024,1170.286,,,,,,176,102,0,,,,, +273,48,4,8050,1024,1170.286,,,,,,176,102,0,,,,, +273,45,1,8047,1024,1170.391,,,,,,144,98,0,,,,, +273,49,1,8051,1049,1170.391,26,32,C6,p+,12,144,84,12,,,,, +273,49,1,8051,1049,1170.5,,,,,,144,84,0,,,,, +273,50,1,8052,1075,1170.5,25,32,D7,p+,12,144,98,12,,,,, +273,50,1,8052,1075,1170.605,,,,,,144,98,0,,,,, +273,51,1,8053,1100,1170.605,52,16,C6,p+,12,144,84,12,,,,, +273,51,1,8053,1100,1170.822,,,,,,144,84,0,,,,, +273,52,0,8054,1152,1170.822,,,,,,176,64,0,,,,,^ +273,53,1,8055,1152,1170.822,128,8,E4,ff,22,144,64,22,,,,, +273,54,1,8056,1152,1170.822,128,8,G#4,ff,22,144,68,22,,,,, +273,55,1,8057,1152,1170.822,128,8,A4,ff,22,144,69,22,,,,, +273,56,2,8058,1152,1170.822,128,8,G#3,mp,14,144,56,14,,,,, +273,57,2,8059,1152,1170.822,128,8,C4,mp,14,144,60,14,,,,, +273,58,3,8060,1152,1170.822,128,8,C1,ff,22,144,24,22,,,,, +273,59,3,8061,1152,1170.822,128,8,F#1,ff,22,144,30,22,,,,, +273,60,4,8062,1152,1170.822,128,8,B0,pp,8,144,23,8,,,,, +273,61,4,8063,1152,1170.822,128,8,C#1,pp,8,144,25,8,,,,, +273,62,4,8064,1152,1170.822,128,8,F1,pp,8,144,29,8,,,,, +273,53,1,8055,1152,1171.358,,,,,,144,64,0,,,,, +273,54,1,8056,1152,1171.358,,,,,,144,68,0,,,,, +273,55,1,8057,1152,1171.358,,,,,,144,69,0,,,,, +273,56,2,8058,1152,1171.358,,,,,,144,56,0,,,,, +273,57,2,8059,1152,1171.358,,,,,,144,60,0,,,,, +273,58,3,8060,1152,1171.358,,,,,,144,24,0,,,,, +273,59,3,8061,1152,1171.358,,,,,,144,30,0,,,,, +273,60,4,8062,1152,1171.358,,,,,,144,23,0,,,,, +273,61,4,8063,1152,1171.358,,,,,,144,25,0,,,,, +273,62,4,8064,1152,1171.358,,,,,,144,29,0,,,,, +274,0,0,8065,0,1171.358,,,,,,,,,274,,,, +274,1,1,8066,0,1171.358,,,,,,176,102,0,,,,, +274,2,3,8067,0,1171.358,,,,,,176,102,0,,,,, +274,3,0,8068,0,1171.358,,,,,,,,,,5999,,, +274,4,1,8069,384,1172.965,21,32,E4,ppp,5,144,64,5,,,,, +274,4,1,8069,384,1173.053,,,,,,144,64,0,,,,, +274,5,1,8070,405,1173.053,21,32,F#5,ppp+,6,144,78,6,,,,, +274,5,1,8070,405,1173.141,,,,,,144,78,0,,,,, +274,6,1,8071,426,1173.141,22,32,C5,ppp+,6,144,72,6,,,,, +274,6,1,8071,426,1173.233,,,,,,144,72,0,,,,, +274,7,1,8072,448,1173.233,21,32,F#5,pp-,7,144,78,7,,,,, +274,7,1,8072,448,1173.321,,,,,,144,78,0,,,,, +274,8,1,8073,469,1173.321,21,32,C5,pp,8,144,72,8,,,,, +274,8,1,8073,469,1173.409,,,,,,144,72,0,,,,, +274,9,1,8074,490,1173.409,22,32,F#5,pp,8,144,78,8,,,,, +274,9,1,8074,490,1173.501,,,,,,144,78,0,,,,, +274,10,1,8075,512,1173.501,42,16,F5,pp+,9,144,77,9,,,,, +274,11,3,8076,512,1173.501,,,,,,176,102,0,,,,, +274,10,1,8075,512,1173.677,,,,,,144,77,0,,,,, +274,12,1,8077,554,1173.677,86,8,G#4,pp+,9,144,68,9,,,,, +274,12,1,8077,554,1174.036,,,,,,144,68,0,,,,, +274,13,1,8078,640,1174.036,384,4,A#2,pp,8,144,46,8,,,,, +274,14,1,8079,640,1174.036,256,4,G#3,pp,8,144,56,8,,,,, +274,15,1,8080,640,1174.036,256,4,C4,pp,8,144,60,8,,,,, +274,16,3,8081,640,1174.036,384,4,B0,pp,8,144,23,8,,,,, +274,17,3,8082,640,1174.036,256,4,C#1,pp,8,144,25,8,,,,, +274,18,3,8083,640,1174.036,256,4,F1,pp,8,144,29,8,,,,, +274,14,1,8079,640,1175.108,,,,,,144,56,0,,,,, +274,15,1,8080,640,1175.108,,,,,,144,60,0,,,,, +274,17,3,8082,640,1175.108,,,,,,144,25,0,,,,, +274,18,3,8083,640,1175.108,,,,,,144,29,0,,,,, +274,13,1,8078,640,1175.644,,,,,,144,46,0,,,,, +274,16,3,8081,640,1175.644,,,,,,144,23,0,,,,, +274,19,1,8084,1024,1175.644,128,8,A#2,p,11,144,46,11,,,,, +274,20,1,8085,1024,1175.644,128,8,G#3,p,11,144,56,11,,,,, +274,21,1,8086,1024,1175.644,128,8,C4,p,11,144,60,11,,,,, +274,22,3,8087,1024,1175.644,128,8,B0,ppp,5,144,23,5,,,,, +274,23,3,8088,1024,1175.644,128,8,C#1,ppp,5,144,25,5,,,,, +274,24,3,8089,1024,1175.644,128,8,F1,ppp,5,144,29,5,,,,, +274,19,1,8084,1024,1176.179,,,,,,144,46,0,,,,, +274,20,1,8085,1024,1176.179,,,,,,144,56,0,,,,, +274,21,1,8086,1024,1176.179,,,,,,144,60,0,,,,, +274,22,3,8087,1024,1176.179,,,,,,144,23,0,,,,, +274,23,3,8088,1024,1176.179,,,,,,144,25,0,,,,, +274,24,3,8089,1024,1176.179,,,,,,144,29,0,,,,, +274,25,1,8090,1152,1176.179,,,,,,176,102,0,,,,, +274,26,3,8091,1152,1176.179,21,32,C3,pp,8,144,48,8,,,,, +274,26,3,8091,1152,1176.267,,,,,,144,48,0,,,,, +274,27,3,8092,1173,1176.267,21,32,E3,pp,8,144,52,8,,,,, +274,27,3,8092,1173,1176.355,,,,,,144,52,0,,,,, +274,28,3,8093,1194,1176.355,22,32,D2,pp-,7,144,38,7,,,,, +274,28,3,8093,1194,1176.447,,,,,,144,38,0,,,,, +274,29,3,8094,1216,1176.447,21,32,E3,pp-,7,144,52,7,,,,, +274,29,3,8094,1216,1176.535,,,,,,144,52,0,,,,, +274,30,3,8095,1237,1176.535,21,32,D2,ppp+,6,144,38,6,,,,, +274,30,3,8095,1237,1176.623,,,,,,144,38,0,,,,, +274,31,3,8096,1258,1176.623,22,32,E4,ppp+,6,144,64,6,,,,, +274,31,3,8096,1258,1176.715,,,,,,144,64,0,,,,, +275,0,0,8097,0,1176.715,,,,,,,,,275,,,, +275,1,1,8098,0,1176.715,224,8,G#5,f,20,144,80,20,,,,, +275,2,3,8099,0,1176.715,64,16,G#1,ppp,5,144,32,5,,,,, +275,2,3,8099,0,1176.983,,,,,,144,32,0,,,,, +275,3,3,8100,64,1176.983,192,8,G#1,ppp-,4,144,32,4,,,,, +275,4,3,8101,64,1176.983,128,8,C#2,ppp-,4,144,37,4,,,,, +275,4,3,8101,64,1177.519,,,,,,144,37,0,,,,, +275,1,1,8098,0,1177.653,,,,,,144,80,0,,,,, +275,5,1,8102,224,1177.653,32,32,C3,mf,17,144,48,17,,,,, +275,6,1,8103,224,1177.653,32,32,G3,mf,17,144,55,17,,,,, +275,7,1,8104,224,1177.653,32,32,B3,mf,17,144,59,17,,,,, +275,3,3,8100,64,1177.786,,,,,,144,32,0,,,,, +275,5,1,8102,224,1177.786,,,,,,144,48,0,,,,, +275,6,1,8103,224,1177.786,,,,,,144,55,0,,,,, +275,7,1,8104,224,1177.786,,,,,,144,59,0,,,,, +275,8,1,8105,256,1177.786,38,32,G#5,pp,8,144,80,8,,,,, +275,9,1,8106,256,1177.786,32,32,A6,mf,17,144,93,17,,,,, +275,10,3,8107,256,1177.786,64,16,G#1,f,20,144,32,20,,,,, +275,11,3,8108,256,1177.786,64,16,C#2,ppp-,4,144,37,4,,,,, +275,12,3,8109,256,1177.786,64,16,F#2,ppp-,4,144,42,4,,,,, +275,9,1,8106,256,1177.92,,,,,,144,93,0,,,,, +275,8,1,8105,256,1177.946,,,,,,144,80,0,,,,, +275,13,1,8110,294,1177.946,38,32,E2,pp,8,144,40,8,,,,, +275,10,3,8107,256,1178.054,,,,,,144,32,0,,,,, +275,11,3,8108,256,1178.054,,,,,,144,37,0,,,,, +275,14,3,8111,320,1178.054,192,8,F#2,,,,,,,,,, +275,13,1,8110,294,1178.105,,,,,,144,40,0,,,,, +275,15,1,8112,332,1178.105,26,32,C5,pp+,9,144,72,9,,,,, +275,15,1,8112,332,1178.213,,,,,,144,72,0,,,,, +275,16,1,8113,358,1178.213,26,32,D6,p-,10,144,86,10,,,,, +275,16,1,8113,358,1178.322,,,,,,144,86,0,,,,, +275,17,1,8114,384,1178.322,25,32,C5,p-,10,144,72,10,,,,, +275,17,1,8114,384,1178.427,,,,,,144,72,0,,,,, +275,18,1,8115,409,1178.427,26,32,D6,p,11,144,86,11,,,,, +275,18,1,8115,409,1178.536,,,,,,144,86,0,,,,, +275,19,1,8116,435,1178.536,25,32,C5,p,11,144,72,11,,,,, +275,19,1,8116,435,1178.64,,,,,,144,72,0,,,,, +275,20,1,8117,460,1178.64,52,16,C#4,p+,12,144,61,12,,,,, +275,12,3,8109,256,1178.858,,,,,,144,42,0,,,,, +275,20,1,8117,460,1178.858,,,,,,144,61,0,,,,, +275,22,1,8118,512,1178.858,,,,,,176,102,0,,,,, +275,23,3,8119,512,1178.858,32,32,C#1,ppp,5,144,25,5,,,,, +275,21,0,8120,512,1178.858,,,,,,176,64,127,,,,,V +275,24,3,8121,544,1178.992,32,32,A3,ppp,5,144,57,5,,,,, +275,24,3,8121,544,1179.126,,,,,,144,57,0,,,,, +275,25,3,8122,576,1179.126,21,32,B0,ppp,5,144,23,5,,,,, +275,25,3,8122,576,1179.214,,,,,,144,23,0,,,,, +275,26,3,8123,597,1179.214,21,32,F2,ppp,5,144,41,5,,,,, +275,23,3,8119,512,1179.302,,,,,,144,25,0,,,,, +275,26,3,8123,597,1179.302,,,,,,144,41,0,,,,, +275,27,3,8124,618,1179.302,22,32,B0,ppp,5,144,23,5,,,,, +275,28,3,8125,618,1179.302,32,32,C#1,ppp,5,144,25,5,,,,, +275,27,3,8124,618,1179.394,,,,,,144,23,0,,,,, +275,29,3,8126,640,1179.394,21,32,F1,ppp,5,144,29,5,,,,, +275,29,3,8126,640,1179.482,,,,,,144,29,0,,,,, +275,30,3,8127,661,1179.482,21,32,B0,ppp,5,144,23,5,,,,, +275,30,3,8127,661,1179.569,,,,,,144,23,0,,,,, +275,31,3,8128,682,1179.569,22,32,A2,ppp,5,144,45,5,,,,, +275,31,3,8128,682,1179.661,,,,,,144,45,0,,,,, +275,32,3,8129,704,1179.661,32,32,F1,ppp,5,144,29,5,,,,, +275,32,3,8129,704,1179.795,,,,,,144,29,0,,,,, +275,33,1,8130,736,1179.795,32,32,F5,p,11,144,77,11,,,,, +275,34,3,8131,736,1179.795,32,32,G1,p,11,144,31,11,,,,, +275,35,3,8132,736,1179.795,32,32,E2,p,11,144,40,11,,,,, +275,33,1,8130,736,1179.929,,,,,,144,77,0,,,,, +275,34,3,8131,736,1179.929,,,,,,144,31,0,,,,, +275,35,3,8132,736,1179.929,,,,,,144,40,0,,,,, +275,36,1,8133,768,1179.929,32,32,F5,f,20,144,77,20,,,,, +275,37,1,8134,768,1179.929,32,32,D#6,f,20,144,87,20,,,,, +275,38,3,8135,768,1179.929,32,32,G1,f,20,144,31,20,,,,, +275,39,3,8136,768,1179.929,32,32,E2,f,20,144,40,20,,,,, +275,28,3,8125,618,1179.967,,,,,,144,25,0,,,,, +275,36,1,8133,768,1180.063,,,,,,144,77,0,,,,, +275,37,1,8134,768,1180.063,,,,,,144,87,0,,,,, +275,38,3,8135,768,1180.063,,,,,,144,31,0,,,,, +275,39,3,8136,768,1180.063,,,,,,144,40,0,,,,, +275,40,1,8137,800,1180.063,224,8,F5,fff,24,144,77,23,,,,, +275,41,1,8138,800,1180.063,128,8,D#6,fff,24,144,87,23,,,,, +275,42,3,8139,800,1180.063,224,8,G1,fff,24,144,31,23,,,,, +275,43,3,8140,800,1180.063,128,8,B1,fff,24,144,35,23,,,,, +275,44,3,8141,800,1180.063,128,8,E2,fff,24,144,40,23,,,,, +275,41,1,8138,800,1180.599,,,,,,144,87,0,,,,, +275,43,3,8140,800,1180.599,,,,,,144,35,0,,,,, +275,44,3,8141,800,1180.599,,,,,,144,40,0,,,,, +275,40,1,8137,800,1181.001,,,,,,144,77,0,,,,, +275,42,3,8139,800,1181.001,,,,,,144,31,0,,,,, +275,45,0,8142,1024,1181.001,,,,,,176,64,0,,,,,^ +275,46,1,8143,1024,1181.001,,,,,,176,102,0,,,,, +275,47,3,8144,1024,1181.001,32,32,C#1,ppp,5,144,25,5,,,,, +275,47,3,8144,1024,1181.135,,,,,,144,25,0,,,,, +275,48,3,8145,1056,1181.135,32,32,A3,ppp,5,144,57,5,,,,, +275,48,3,8145,1056,1181.269,,,,,,144,57,0,,,,, +275,49,3,8146,1088,1181.269,21,32,B0,ppp,5,144,23,5,,,,, +275,49,3,8146,1088,1181.357,,,,,,144,23,0,,,,, +275,50,3,8147,1109,1181.357,21,32,F2,ppp,5,144,41,5,,,,, +275,50,3,8147,1109,1181.444,,,,,,144,41,0,,,,, +275,51,3,8148,1130,1181.444,22,32,B0,ppp,5,144,23,5,,,,, +275,52,3,8149,1130,1181.444,32,32,C#1,ppp,5,144,25,5,,,,, +275,51,3,8148,1130,1181.536,,,,,,144,23,0,,,,, +275,53,3,8150,1152,1181.536,21,32,F1,ppp,5,144,29,5,,,,, +275,52,3,8149,1130,1181.578,,,,,,144,25,0,,,,, +275,53,3,8150,1152,1181.624,,,,,,144,29,0,,,,, +275,54,3,8151,1173,1181.624,21,32,B0,ppp,5,144,23,5,,,,, +275,54,3,8151,1173,1181.712,,,,,,144,23,0,,,,, +275,55,3,8152,1194,1181.712,22,32,A2,ppp,5,144,45,5,,,,, +275,55,3,8152,1194,1181.804,,,,,,144,45,0,,,,, +275,56,3,8153,1216,1181.804,21,32,F1,ppp,5,144,29,5,,,,, +275,56,3,8153,1216,1181.892,,,,,,144,29,0,,,,, +275,57,3,8154,1237,1181.892,43,16,B0,ppp,5,144,23,5,,,,, +276,0,0,8155,0,1182.072,,,,,,,,,276,,,, +276,1,1,8156,0,1182.072,,,,,,176,102,0,,,,, +276,2,3,8157,0,1182.072,256,4,B0,,,,,,,,,, +275,57,3,8154,1237,1183.144,,,,,,144,23,0,,,,, +276,3,3,8158,,1183.144,,8,C#1,ppp,5,144,25,5,,,,g, +276,3,3,8158,,1183.194,,,,,,144,25,0,,,,, +276,4,3,8159,,1183.219,,8,D2,ppp,5,144,38,5,,,,g, +276,4,3,8159,,1183.269,,,,,,144,38,0,,,,, +276,5,3,8160,,1183.294,,8,C#1,ppp,5,144,25,5,,,,g, +276,5,3,8160,,1183.344,,,,,,144,25,0,,,,, +276,6,3,8161,,1183.369,,8,D2,ppp,5,144,38,5,,,,g, +276,6,3,8161,,1183.419,,,,,,144,38,0,,,,, +276,7,3,8162,,1183.444,,8,C#1,ppp,5,144,25,5,,,,g, +276,7,3,8162,,1183.494,,,,,,144,25,0,,,,, +276,8,3,8163,256,1183.519,256,4,A2,ppp,5,144,45,5,,,,, +276,10,1,8164,384,1184.054,38,32,A5,pp,8,144,81,8,,,,, +276,9,0,8165,384,1184.054,,,,,,176,64,127,,,,,V +276,10,1,8164,384,1184.213,,,,,,144,81,0,,,,, +276,11,1,8166,422,1184.213,38,32,E2,pp,8,144,40,8,,,,, +276,11,1,8166,422,1184.372,,,,,,144,40,0,,,,, +276,12,1,8167,460,1184.372,13,64,C5,pp,8,144,72,8,,,,, +276,12,1,8167,460,1184.427,,,,,,144,72,0,,,,, +276,13,1,8168,473,1184.427,13,64,D6,pp,8,144,86,8,,,,, +276,13,1,8168,473,1184.481,,,,,,144,86,0,,,,, +276,14,1,8169,486,1184.481,13,64,C5,pp,8,144,72,8,,,,, +276,14,1,8169,486,1184.536,,,,,,144,72,0,,,,, +276,15,1,8170,499,1184.536,13,64,D6,pp,8,144,86,8,,,,, +276,15,1,8170,499,1184.59,,,,,,144,86,0,,,,, +276,16,1,8171,512,1184.59,38,32,C5,pp,8,144,72,8,,,,, +276,17,3,8172,512,1184.59,,,,,,176,102,0,,,,, +276,8,3,8163,256,1184.59,,,,,,144,45,0,,,,, +276,16,1,8171,512,1184.749,,,,,,144,72,0,,,,, +276,18,1,8173,550,1184.749,38,32,C#4,pp,8,144,61,8,,,,, +276,18,1,8173,550,1184.908,,,,,,144,61,0,,,,, +276,19,1,8174,588,1184.908,26,32,C5,pp,8,144,72,8,,,,, +276,19,1,8174,588,1185.017,,,,,,144,72,0,,,,, +276,20,1,8175,614,1185.017,26,32,C#4,pp,8,144,61,8,,,,, +276,20,1,8175,614,1185.126,,,,,,144,61,0,,,,, +276,21,1,8176,640,1185.126,,,,,,176,102,0,,,,, +276,22,1,8177,682,1185.302,14,32,D7,pp,8,144,98,8,,,,, +276,22,1,8177,682,1185.36,,,,,,144,98,0,,,,, +276,23,1,8178,696,1185.36,14,32,G#6,pp,8,144,92,8,,,,, +276,23,1,8178,696,1185.419,,,,,,144,92,0,,,,, +276,24,1,8179,710,1185.419,14,32,C#5,pp,8,144,73,8,,,,, +276,24,1,8179,710,1185.477,,,,,,144,73,0,,,,, +276,25,1,8180,724,1185.477,14,32,E4,pp,8,144,64,8,,,,, +276,25,1,8180,724,1185.536,,,,,,144,64,0,,,,, +276,26,1,8181,738,1185.536,30,16,C6,pp,8,144,84,8,,,,, +276,26,1,8181,738,1185.661,,,,,,144,84,0,,,,, +276,27,1,8182,768,1185.661,21,32,G#6,ppp,5,144,92,5,,,,, +276,28,3,8183,768,1185.661,,,,,,176,102,0,,,,, +276,27,1,8182,768,1185.749,,,,,,144,92,0,,,,, +276,29,1,8184,789,1185.749,21,32,D7,ppp,5,144,98,5,,,,, +276,29,1,8184,789,1185.837,,,,,,144,98,0,,,,, +276,30,1,8185,810,1185.837,22,32,G#6,ppp,5,144,92,5,,,,, +276,30,1,8185,810,1185.929,,,,,,144,92,0,,,,, +276,31,1,8186,832,1185.929,21,32,E4,ppp,5,144,64,5,,,,, +276,31,1,8186,832,1186.017,,,,,,144,64,0,,,,, +276,32,1,8187,853,1186.017,21,32,G#6,ppp,5,144,92,5,,,,, +276,32,1,8187,853,1186.105,,,,,,144,92,0,,,,, +276,33,1,8188,874,1186.105,22,32,D7,ppp,5,144,98,5,,,,, +276,33,1,8188,874,1186.197,,,,,,144,98,0,,,,, +276,34,1,8189,896,1186.197,32,32,E3,ppp,5,144,52,5,,,,, +276,34,1,8189,896,1186.331,,,,,,144,52,0,,,,, +276,35,1,8190,928,1186.331,21,32,D7,ppp,5,144,98,5,,,,, +276,35,1,8190,928,1186.419,,,,,,144,98,0,,,,, +276,36,1,8191,949,1186.419,21,32,C#5,ppp,5,144,73,5,,,,, +276,36,1,8191,949,1186.507,,,,,,144,73,0,,,,, +276,37,1,8192,970,1186.507,32,32,C6,ppp,5,144,84,5,,,,, +276,37,1,8192,970,1186.641,,,,,,144,84,0,,,,, +276,38,1,8193,1002,1186.641,22,32,C#4,ppp,5,144,61,5,,,,, +276,38,1,8193,1002,1186.733,,,,,,144,61,0,,,,, +276,39,1,8194,1024,1186.733,32,32,D7,ppp,5,144,98,5,,,,, +276,40,3,8195,1024,1186.733,256,4,A4,f,20,144,69,20,,,,, +276,39,1,8194,1024,1186.867,,,,,,144,98,0,,,,, +276,41,1,8196,1056,1186.867,32,32,C6,ppp,5,144,84,5,,,,, +276,41,1,8196,1056,1187.001,,,,,,144,84,0,,,,, +276,42,1,8197,1088,1187.001,64,16,C#5,ppp,5,144,73,5,,,,, +276,42,1,8197,1088,1187.269,,,,,,144,73,0,,,,, +276,43,1,8198,1152,1187.269,,,,,,176,102,0,,,,, +276,44,0,8199,1190,1187.428,,,,,,176,64,0,,,,,^ +277,0,0,8200,0,1187.804,,,,,,,,,277,,,, +277,1,1,8201,0,1187.804,,,,,,176,102,0,,,,, +277,2,3,8202,0,1187.804,768,2,A4,,,,,,,,,, +277,3,1,8203,,1188.265,,8,E5,mf,17,144,76,17,,,,g, +277,3,1,8203,,1188.315,,,,,,144,76,0,,,,, +277,4,1,8204,128,1188.34,384,4,C#2,mf,17,144,37,17,,,,, +277,4,1,8204,128,1189.947,,,,,,144,37,0,,,,, +277,5,1,8205,512,1189.947,,,,,,176,102,0,,,,, +276,40,3,8195,1024,1191.019,,,,,,144,69,0,,,,, +277,6,1,8206,768,1191.019,128,8,F#3,f,20,144,54,20,,,,, +277,7,1,8207,768,1191.019,128,8,A4,f,20,144,69,20,,,,, +277,8,3,8208,,1191.019,,8,D3,ppp,5,144,50,5,,,,g, +277,8,3,8208,,1191.069,,,,,,144,50,0,,,,, +277,9,3,8209,,1191.094,,8,C#2,ppp,5,144,37,5,,,,g, +277,9,3,8209,,1191.144,,,,,,144,37,0,,,,, +277,10,3,8210,,1191.169,,8,D3,ppp,5,144,50,5,,,,g, +277,10,3,8210,,1191.219,,,,,,144,50,0,,,,, +277,11,3,8211,,1191.244,,8,C#2,ppp,5,144,37,5,,,,g, +277,11,3,8211,,1191.294,,,,,,144,37,0,,,,, +277,12,3,8212,,1191.319,,8,C4,ppp,5,144,60,5,,,,g, +277,12,3,8212,,1191.369,,,,,,144,60,0,,,,, +277,13,3,8213,,1191.394,,8,D3,ppp,5,144,50,5,,,,g, +277,13,3,8213,,1191.444,,,,,,144,50,0,,,,, +277,14,3,8214,,1191.469,,8,C#2,ppp,5,144,37,5,,,,g, +277,14,3,8214,,1191.519,,,,,,144,37,0,,,,, +277,15,3,8215,,1191.544,,8,C4,ppp,5,144,60,5,,,,g, +277,6,1,8206,768,1191.554,,,,,,144,54,0,,,,, +277,7,1,8207,768,1191.554,,,,,,144,69,0,,,,, +277,15,3,8215,,1191.594,,,,,,144,60,0,,,,, +277,16,3,8216,,1191.619,,8,D3,ppp,5,144,50,5,,,,g, +277,16,3,8216,,1191.669,,,,,,144,50,0,,,,, +277,17,3,8217,768,1191.694,32,32,E4,ppp,5,144,64,5,,,,, +277,17,3,8217,768,1191.828,,,,,,144,64,0,,,,, +277,19,3,8218,800,1191.828,224,8,G#1,ppp,5,144,32,5,,,,, +277,20,3,8219,800,1191.828,128,8,E4,ppp,5,144,64,5,,,,, +277,18,0,8220,800,1191.828,,,,,,176,64,127,,,,,V +277,21,1,8221,896,1192.229,32,32,C#2,f,20,144,37,20,,,,, +277,22,1,8222,896,1192.229,32,32,E5,f,20,144,76,20,,,,, +277,20,3,8219,800,1192.363,,,,,,144,64,0,,,,, +277,21,1,8221,896,1192.363,,,,,,144,37,0,,,,, +277,22,1,8222,896,1192.363,,,,,,144,76,0,,,,, +277,23,1,8223,928,1192.363,96,16,C#2,f,20,144,37,20,,,,, +277,24,1,8224,928,1192.363,64,16,A#2,f,20,144,46,20,,,,, +277,25,1,8225,928,1192.363,64,16,E5,f,20,144,76,20,,,,, +277,24,1,8224,928,1192.631,,,,,,144,46,0,,,,, +277,25,1,8225,928,1192.631,,,,,,144,76,0,,,,, +277,19,3,8218,800,1192.765,,,,,,144,32,0,,,,, +277,23,1,8223,928,1192.765,,,,,,144,37,0,,,,, +277,26,0,8226,1024,1192.765,,,,,,176,64,0,,,,,^ +277,27,1,8227,1024,1192.765,,,,,,176,102,0,,,,, +277,28,3,8228,1024,1192.765,64,16,F5,ff,22,144,77,22,,,,, +277,28,3,8228,1024,1193.033,,,,,,144,77,0,,,,, +277,29,3,8229,1088,1193.033,21,32,G1,mf+,18,144,31,18,,,,, +277,29,3,8229,1088,1193.121,,,,,,144,31,0,,,,, +277,30,3,8230,1109,1193.121,21,32,E2,mf,17,144,40,17,,,,, +277,30,3,8230,1109,1193.209,,,,,,144,40,0,,,,, +277,31,3,8231,1130,1193.209,22,32,G1,mp+,15,144,31,15,,,,, +277,31,3,8231,1130,1193.301,,,,,,144,31,0,,,,, +277,32,3,8232,1152,1193.301,21,32,E2,mp,14,144,40,14,,,,, +277,32,3,8232,1152,1193.389,,,,,,144,40,0,,,,, +277,33,3,8233,1173,1193.389,21,32,G1,mp-,13,144,31,13,,,,, +277,33,3,8233,1173,1193.477,,,,,,144,31,0,,,,, +277,34,3,8234,1194,1193.477,22,32,E2,p,11,144,40,11,,,,, +277,34,3,8234,1194,1193.569,,,,,,144,40,0,,,,, +277,35,3,8235,1216,1193.569,14,32,G1,p-,10,144,31,10,,,,, +277,35,3,8235,1216,1193.627,,,,,,144,31,0,,,,, +277,36,3,8236,1230,1193.627,14,32,E2,pp+,9,144,40,9,,,,, +277,36,3,8236,1230,1193.686,,,,,,144,40,0,,,,, +277,37,3,8237,1244,1193.686,14,32,G1,pp,8,144,31,8,,,,, +277,38,3,8238,1258,1193.744,22,32,G1,,,,,,,,,, +277,37,3,8237,1244,1193.836,,,,,,144,31,0,,,,, +278,0,0,8239,0,1193.836,,,,,,,,,278,,,, +278,1,1,8240,0,1193.836,,,,,,176,102,0,,,,, +278,2,3,8241,0,1193.836,384,4,G1,pp,8,144,31,8,,,,, +278,3,3,8242,0,1193.836,256,4,E2,pp,8,144,40,8,,,,, +278,4,3,8243,0,1193.836,256,4,F4,pp,8,144,65,8,,,,, +278,3,3,8242,0,1194.908,,,,,,144,40,0,,,,, +278,4,3,8243,0,1194.908,,,,,,144,65,0,,,,, +278,5,1,8244,256,1194.908,,,,,,176,102,0,,,,, +278,2,3,8241,0,1195.444,,,,,,144,31,0,,,,, +278,6,3,8245,384,1195.444,128,8,G1,pp,8,144,31,8,,,,, +278,7,3,8246,384,1195.444,128,8,E2,pp,8,144,40,8,,,,, +278,8,3,8247,384,1195.444,128,8,F3,pp,8,144,53,8,,,,, +278,9,1,8248,480,1195.845,32,32,F#2,ff,22,144,42,22,,,,, +278,10,1,8249,480,1195.845,32,32,A4,ff,22,144,69,22,,,,, +278,6,3,8245,384,1195.979,,,,,,144,31,0,,,,, +278,7,3,8246,384,1195.979,,,,,,144,40,0,,,,, +278,8,3,8247,384,1195.979,,,,,,144,53,0,,,,, +278,9,1,8248,480,1195.979,,,,,,144,42,0,,,,, +278,10,1,8249,480,1195.979,,,,,,144,69,0,,,,, +278,11,1,8250,512,1195.979,64,16,C2,ff,22,144,36,22,,,,, +278,12,3,8251,512,1195.979,32,32,C#1,pp,8,144,25,8,,,,, +278,13,3,8252,512,1195.979,32,32,D#3,pp,8,144,51,8,,,,, +278,12,3,8251,512,1196.113,,,,,,144,25,0,,,,, +278,13,3,8252,512,1196.113,,,,,,144,51,0,,,,, +278,14,3,8253,544,1196.113,32,32,B1,pp-,7,144,35,7,,,,, +278,11,1,8250,512,1196.247,,,,,,144,36,0,,,,, +278,14,3,8253,544,1196.247,,,,,,144,35,0,,,,, +278,15,1,8254,576,1196.247,,,,,,176,102,0,,,,, +278,16,3,8255,576,1196.247,32,32,G3,ppp+,6,144,55,6,,,,, +278,16,3,8255,576,1196.381,,,,,,144,55,0,,,,, +278,18,3,8256,608,1196.381,32,32,C1,ppp,5,144,24,5,,,,, +278,17,0,8257,608,1196.381,,,,,,176,64,127,,,,,V +278,18,3,8256,608,1196.515,,,,,,144,24,0,,,,, +278,19,1,8258,640,1196.515,21,32,D6,ppp,5,144,86,5,,,,, +278,20,3,8259,640,1196.515,,,,,,176,102,0,,,,, +278,19,1,8258,640,1196.603,,,,,,144,86,0,,,,, +278,21,1,8260,661,1196.603,21,32,G#5,ppp,5,144,80,5,,,,, +278,21,1,8260,661,1196.691,,,,,,144,80,0,,,,, +278,22,1,8261,682,1196.691,22,32,C#4,ppp+,6,144,61,6,,,,, +278,22,1,8261,682,1196.783,,,,,,144,61,0,,,,, +278,23,1,8262,704,1196.783,21,32,E3,ppp+,6,144,52,6,,,,, +278,23,1,8262,704,1196.871,,,,,,144,52,0,,,,, +278,24,1,8263,725,1196.871,21,32,C5,ppp+,6,144,72,6,,,,, +278,24,1,8263,725,1196.959,,,,,,144,72,0,,,,, +278,25,1,8264,746,1196.959,22,32,G#5,ppp+,6,144,80,6,,,,, +278,25,1,8264,746,1197.051,,,,,,144,80,0,,,,, +278,26,1,8265,768,1197.051,21,32,E3,pp-,7,144,52,7,,,,, +278,27,3,8266,768,1197.051,,,,,,176,102,0,,,,, +278,26,1,8265,768,1197.139,,,,,,144,52,0,,,,, +278,28,1,8267,789,1197.139,21,32,C5,pp-,7,144,72,7,,,,, +278,28,1,8267,789,1197.227,,,,,,144,72,0,,,,, +278,29,1,8268,810,1197.227,22,32,D6,pp-,7,144,86,7,,,,, +278,29,1,8268,810,1197.319,,,,,,144,86,0,,,,, +278,30,1,8269,832,1197.319,21,32,C5,pp,8,144,72,8,,,,, +278,30,1,8269,832,1197.407,,,,,,144,72,0,,,,, +278,31,1,8270,853,1197.407,21,32,C#4,pp,8,144,61,8,,,,, +278,31,1,8270,853,1197.494,,,,,,144,61,0,,,,, +278,32,1,8271,874,1197.494,22,32,E3,pp,8,144,52,8,,,,, +278,32,1,8271,874,1197.586,,,,,,144,52,0,,,,, +278,33,1,8272,896,1197.586,21,32,C5,pp,8,144,72,8,,,,, +278,33,1,8272,896,1197.674,,,,,,144,72,0,,,,, +278,34,1,8273,917,1197.674,21,32,D6,pp+,9,144,86,9,,,,, +278,34,1,8273,917,1197.762,,,,,,144,86,0,,,,, +278,35,1,8274,938,1197.762,22,32,G#5,pp+,9,144,80,9,,,,, +278,35,1,8274,938,1197.854,,,,,,144,80,0,,,,, +278,36,1,8275,960,1197.854,32,32,D6,pp+,9,144,86,9,,,,, +278,36,1,8275,960,1197.988,,,,,,144,86,0,,,,, +278,37,1,8276,992,1197.988,32,32,C5,p-,10,144,72,10,,,,, +278,37,1,8276,992,1198.122,,,,,,144,72,0,,,,, +278,38,1,8277,1024,1198.122,21,32,C#3,p-,10,144,49,10,,,,, +278,38,1,8277,1024,1198.21,,,,,,144,49,0,,,,, +278,39,1,8278,1045,1198.21,21,32,E2,p-,10,144,40,10,,,,, +278,39,1,8278,1045,1198.298,,,,,,144,40,0,,,,, +278,40,1,8279,1066,1198.298,22,32,C5,p,11,144,72,11,,,,, +278,40,1,8279,1066,1198.39,,,,,,144,72,0,,,,, +278,41,1,8280,1088,1198.39,32,32,G#5,p,11,144,80,11,,,,, +278,41,1,8280,1088,1198.524,,,,,,144,80,0,,,,, +278,42,1,8281,1120,1198.524,32,32,E2,p,11,144,40,11,,,,, +278,42,1,8281,1120,1198.658,,,,,,144,40,0,,,,, +278,43,1,8282,1152,1198.658,32,32,D6,p,11,144,86,11,,,,, +278,48,0,8283,1279,1198.689,,,,,,176,64,0,,,,,^ +278,43,1,8282,1152,1198.792,,,,,,144,86,0,,,,, +278,44,1,8284,1184,1198.792,32,32,C5,p,11,144,72,11,,,,, +278,44,1,8284,1184,1198.926,,,,,,144,72,0,,,,, +278,45,1,8285,1216,1198.926,21,32,C#3,p,11,144,49,11,,,,, +278,45,1,8285,1216,1199.014,,,,,,144,49,0,,,,, +278,46,1,8286,1237,1199.014,21,32,E2,p,11,144,40,11,,,,, +278,46,1,8286,1237,1199.102,,,,,,144,40,0,,,,, +278,47,1,8287,1258,1199.102,22,32,C5,p,11,144,72,11,,,,, +278,47,1,8287,1258,1199.194,,,,,,144,72,0,,,,, +279,0,0,8288,0,1199.194,,,,,,,,,279,,,, +279,1,0,8289,0,1199.194,,,,,,,,,,6000,,, +279,2,1,8290,0,1199.194,,,,,,176,102,0,,,,, +279,3,3,8291,0,1199.194,128,8,C2,f,20,144,36,20,,,,, +279,4,3,8292,0,1199.194,128,8,F#2,f,20,144,42,20,,,,, +279,5,3,8293,0,1199.194,128,8,A4,f,20,144,69,20,,,,, +279,6,0,8294,128,1199.229,,,,,,176,64,127,,,,,V +279,3,3,8291,0,1199.244,,,,,,144,36,0,,,,, +279,4,3,8292,0,1199.244,,,,,,144,42,0,,,,, +279,5,3,8293,0,1199.244,,,,,,144,69,0,,,,, +279,7,3,8295,128,1199.729,128,8,C1,pp,8,144,24,8,,,,, +279,8,3,8296,128,1199.729,128,8,C#1,pp,8,144,25,8,,,,, +279,9,3,8297,128,1199.729,128,8,B1,pp,8,144,35,8,,,,, +279,10,3,8298,128,1199.729,128,8,G2,pp,8,144,43,8,,,,, +279,7,3,8295,128,1200.265,,,,,,144,24,0,,,,, +279,8,3,8296,128,1200.265,,,,,,144,25,0,,,,, +279,9,3,8297,128,1200.265,,,,,,144,35,0,,,,, +279,10,3,8298,128,1200.265,,,,,,144,43,0,,,,, +279,11,3,8299,256,1200.265,,,,,,176,102,0,,,,, +279,12,0,8300,768,1202.408,,,,,,176,64,0,,,,,^ +279,13,1,8301,768,1202.408,32,32,E5,p,11,144,76,11,,,,, +279,14,3,8302,768,1202.408,32,32,C#2,p,11,144,37,11,,,,, +279,15,3,8303,768,1202.408,32,32,A#2,p,11,144,46,11,,,,, +279,13,1,8301,768,1202.542,,,,,,144,76,0,,,,, +279,14,3,8302,768,1202.542,,,,,,144,37,0,,,,, +279,15,3,8303,768,1202.542,,,,,,144,46,0,,,,, +279,16,1,8304,800,1202.542,96,16,E5,mp+,15,144,76,15,,,,, +279,17,3,8305,800,1202.542,96,16,C#2,mp-,13,144,37,13,,,,, +279,18,3,8306,800,1202.542,64,16,A#2,mp-,13,144,46,13,,,,, +279,18,3,8306,800,1202.81,,,,,,144,46,0,,,,, +279,16,1,8304,800,1202.944,,,,,,144,76,0,,,,, +279,17,3,8305,800,1202.944,,,,,,144,37,0,,,,, +279,19,1,8307,896,1202.944,96,16,G#3,f,20,144,56,20,,,,, +279,20,3,8308,896,1202.944,128,8,C#2,f,20,144,37,20,,,,, +279,21,3,8309,896,1202.944,128,8,A#2,f,20,144,46,20,,,,, +279,19,1,8307,896,1203.345,,,,,,144,56,0,,,,, +279,22,1,8310,992,1203.345,32,32,C5,mp+,15,144,72,15,,,,, +279,20,3,8308,896,1203.479,,,,,,144,37,0,,,,, +279,21,3,8309,896,1203.479,,,,,,144,46,0,,,,, +279,22,1,8310,992,1203.479,,,,,,144,72,0,,,,, +279,23,1,8311,1024,1203.479,,,,,,176,102,0,,,,, +279,24,3,8312,1024,1203.479,64,16,F4,p,11,144,65,11,,,,, +279,24,3,8312,1024,1203.747,,,,,,144,65,0,,,,, +279,26,3,8313,1088,1203.747,21,32,G1,p-,10,144,31,10,,,,, +279,25,0,8314,1088,1203.747,,,,,,176,64,127,,,,,V +279,26,3,8313,1088,1203.835,,,,,,144,31,0,,,,, +279,27,3,8315,1109,1203.835,21,32,E2,p-,10,144,40,10,,,,, +279,27,3,8315,1109,1203.923,,,,,,144,40,0,,,,, +279,28,3,8316,1130,1203.923,22,32,G1,p-,10,144,31,10,,,,, +279,28,3,8316,1130,1204.015,,,,,,144,31,0,,,,, +279,29,3,8317,1152,1204.015,21,32,E2,pp+,9,144,40,9,,,,, +279,29,3,8317,1152,1204.103,,,,,,144,40,0,,,,, +279,30,3,8318,1173,1204.103,21,32,G1,pp+,9,144,31,9,,,,, +279,30,3,8318,1173,1204.191,,,,,,144,31,0,,,,, +279,31,3,8319,1194,1204.191,22,32,E2,pp+,9,144,40,9,,,,, +279,31,3,8319,1194,1204.283,,,,,,144,40,0,,,,, +279,32,3,8320,1216,1204.283,14,32,G1,pp,8,144,31,8,,,,, +279,32,3,8320,1216,1204.342,,,,,,144,31,0,,,,, +279,33,3,8321,1230,1204.342,14,32,E2,pp,8,144,40,8,,,,, +279,33,3,8321,1230,1204.4,,,,,,144,40,0,,,,, +279,34,3,8322,1244,1204.4,14,32,G1,pp,8,144,31,8,,,,, +279,35,3,8323,1258,1204.459,22,32,G1,,,,,,,,,, +280,0,0,8324,0,1204.551,,,,,,,,,280,,,, +280,1,1,8325,0,1204.551,,,,,,176,102,0,,,,, +280,2,3,8326,0,1204.551,384,4,G1,pp,8,144,31,8,,,,, +280,3,3,8327,0,1204.551,256,4,E2,pp,8,144,40,8,,,,, +280,4,3,8328,0,1204.551,256,4,F3,pp,8,144,53,8,,,,, +279,34,3,8322,1244,1204.926,,,,,,144,31,0,,,,, +280,3,3,8327,0,1205.622,,,,,,144,40,0,,,,, +280,4,3,8328,0,1205.622,,,,,,144,53,0,,,,, +280,5,0,8329,384,1206.096,,,,,,176,64,0,,,,,^ +280,2,3,8326,0,1206.158,,,,,,144,31,0,,,,, +280,6,3,8330,384,1206.158,42,16,G1,pp,8,144,31,8,,,,, +280,7,3,8331,384,1206.158,64,16,E2,pp,8,144,40,8,,,,, +280,8,3,8332,384,1206.158,64,16,F2,pp,8,144,41,8,,,,, +280,6,3,8330,384,1206.334,,,,,,144,31,0,,,,, +280,10,3,8333,426,1206.334,28,16,F4,pp,8,144,65,8,,,,, +280,9,0,8334,426,1206.396,,,,,,176,64,127,,,,,V +280,7,3,8331,384,1206.426,,,,,,144,40,0,,,,, +280,8,3,8332,384,1206.426,,,,,,144,41,0,,,,, +280,10,3,8333,426,1206.451,,,,,,144,65,0,,,,, +280,11,3,8335,454,1206.451,28,16,G2,pp,8,144,43,8,,,,, +280,11,3,8335,454,1206.568,,,,,,144,43,0,,,,, +280,12,3,8336,482,1206.568,30,16,E3,pp,8,144,52,8,,,,, +280,12,3,8336,482,1206.694,,,,,,144,52,0,,,,, +280,13,3,8337,512,1206.694,256,4,D#5,pp,8,144,75,8,,,,, +280,14,1,8338,512,1206.694,,,,,,176,102,0,,,,, +280,15,1,8339,736,1207.631,32,32,D#4,pp,8,144,63,8,,,,, +280,16,1,8340,736,1207.631,32,32,G#5,f,20,144,80,20,,,,, +280,15,1,8339,736,1207.765,,,,,,144,63,0,,,,, +280,16,1,8340,736,1207.765,,,,,,144,80,0,,,,, +280,17,0,8341,768,1207.765,,,,,,176,64,0,,,,,^ +280,18,3,8342,768,1207.765,256,4,D#5,,,,,,,,,, +280,19,1,8343,768,1207.765,256,4,B3,p,11,144,59,11,,,,, +280,20,1,8344,768,1207.765,256,4,D#4,p,11,144,63,11,,,,, +280,21,1,8345,768,1207.765,256,4,G#5,p,11,144,80,11,,,,, +280,13,3,8337,512,1208.836,,,,,,144,75,0,,,,, +280,19,1,8343,768,1208.836,,,,,,144,59,0,,,,, +280,20,1,8344,768,1208.836,,,,,,144,63,0,,,,, +280,21,1,8345,768,1208.836,,,,,,144,80,0,,,,, +280,22,3,8346,1024,1208.836,,,,,,176,102,0,,,,, +280,23,1,8347,1024,1208.836,25,32,G#6,pp,8,144,92,8,,,,, +280,23,1,8347,1024,1208.941,,,,,,144,92,0,,,,, +280,25,1,8348,1049,1208.941,13,64,G#6,pp,8,144,92,8,,,,, +280,24,0,8349,1049,1208.941,,,,,,176,64,127,,,,,V +280,25,1,8348,1049,1208.996,,,,,,144,92,0,,,,, +280,26,1,8350,1062,1208.996,13,64,D7,pp,8,144,98,8,,,,, +280,26,1,8350,1062,1209.05,,,,,,144,98,0,,,,, +280,27,1,8351,1075,1209.05,13,64,G#6,pp,8,144,92,8,,,,, +280,27,1,8351,1075,1209.104,,,,,,144,92,0,,,,, +280,28,1,8352,1088,1209.104,12,64,E2,pp+,9,144,40,9,,,,, +280,28,1,8352,1088,1209.155,,,,,,144,40,0,,,,, +280,29,1,8353,1100,1209.155,13,64,G#5,pp+,9,144,80,9,,,,, +280,29,1,8353,1100,1209.209,,,,,,144,80,0,,,,, +280,30,1,8354,1113,1209.209,13,64,D6,pp+,9,144,86,9,,,,, +280,30,1,8354,1113,1209.263,,,,,,144,86,0,,,,, +280,31,1,8355,1126,1209.263,13,64,E3,pp+,9,144,52,9,,,,, +280,31,1,8355,1126,1209.318,,,,,,144,52,0,,,,, +280,32,1,8356,1139,1209.318,13,64,C#4,pp+,9,144,61,9,,,,, +280,32,1,8356,1139,1209.372,,,,,,144,61,0,,,,, +280,33,1,8357,1152,1209.372,21,32,C5,p-,10,144,72,10,,,,, +280,34,3,8358,1152,1209.372,,,,,,176,102,0,,,,, +280,33,1,8357,1152,1209.46,,,,,,144,72,0,,,,, +280,35,1,8359,1173,1209.46,21,32,C#4,p-,10,144,61,10,,,,, +280,35,1,8359,1173,1209.548,,,,,,144,61,0,,,,, +280,36,1,8360,1194,1209.548,22,32,G#5,p-,10,144,80,10,,,,, +280,38,0,8361,1216,1209.624,,,,,,176,64,0,,,,,^ +280,36,1,8360,1194,1209.64,,,,,,144,80,0,,,,, +280,37,1,8362,1216,1209.64,21,32,E3,p,11,144,52,11,,,,, +280,37,1,8362,1216,1209.728,,,,,,144,52,0,,,,, +280,39,1,8363,1237,1209.728,21,32,D6,p,11,144,86,11,,,,, +280,39,1,8363,1237,1209.816,,,,,,144,86,0,,,,, +280,40,1,8364,1258,1209.816,22,32,C5,p,11,144,72,11,,,,, +280,40,1,8364,1258,1209.908,,,,,,144,72,0,,,,, +281,0,0,8365,0,1209.908,,,,,,,,,281,,,, +281,2,1,8366,0,1209.908,,,,,,176,102,0,,,,, +281,3,3,8367,0,1209.908,12,64,E2,p+,12,144,40,12,,,,, +281,1,0,8368,0,1209.924,,,,,,176,64,127,,,,,V +281,3,3,8367,0,1209.958,,,,,,144,40,0,,,,, +281,4,3,8369,12,1209.958,13,64,C#3,p+,12,144,49,12,,,,, +281,4,3,8369,12,1210.013,,,,,,144,49,0,,,,, +281,5,3,8370,25,1210.013,13,64,C4,p+,12,144,60,12,,,,, +281,5,3,8370,25,1210.067,,,,,,144,60,0,,,,, +281,6,3,8371,38,1210.067,13,64,G#4,p+,12,144,68,12,,,,, +281,6,3,8371,38,1210.121,,,,,,144,68,0,,,,, +281,7,3,8372,51,1210.121,13,64,D5,mp-,13,144,74,13,,,,, +281,7,3,8372,51,1210.176,,,,,,144,74,0,,,,, +281,8,3,8373,64,1210.176,32,32,G#4,mp-,13,144,68,13,,,,, +281,8,3,8373,64,1210.31,,,,,,144,68,0,,,,, +281,9,3,8374,96,1210.31,21,32,E2,mp-,13,144,40,13,,,,, +281,9,3,8374,96,1210.398,,,,,,144,40,0,,,,, +281,10,3,8375,117,1210.398,21,32,C#3,mp,14,144,49,14,,,,, +281,10,3,8375,117,1210.485,,,,,,144,49,0,,,,, +281,11,3,8376,138,1210.485,32,32,C4,mp,14,144,60,14,,,,, +281,11,3,8376,138,1210.619,,,,,,144,60,0,,,,, +281,12,3,8377,170,1210.619,22,32,C#3,mp,14,144,49,14,,,,, +281,12,3,8377,170,1210.711,,,,,,144,49,0,,,,, +281,13,3,8378,192,1210.711,,,,,,176,102,0,,,,, +281,14,3,8379,256,1210.979,512,2,C1,pp,8,144,24,8,,,,, +281,15,3,8380,256,1210.979,512,2,C#1,pp,8,144,25,8,,,,, +281,16,3,8381,256,1210.979,512,2,B1,pp,8,144,35,8,,,,, +281,17,3,8382,256,1210.979,512,2,G3,pp,8,144,55,8,,,,, +281,18,0,8383,767,1213.118,,,,,,176,64,0,,,,,^ +281,19,1,8384,768,1213.122,32,32,E4,fff,24,144,64,23,,,,, +281,20,1,8385,768,1213.122,32,32,A4,fff,24,144,69,23,,,,, +281,21,3,8386,768,1213.122,32,32,C2,fff,24,144,36,23,,,,, +281,22,3,8387,768,1213.122,32,32,F#2,fff,24,144,42,23,,,,, +281,19,1,8384,768,1213.256,,,,,,144,64,0,,,,, +281,20,1,8385,768,1213.256,,,,,,144,69,0,,,,, +281,21,3,8386,768,1213.256,,,,,,144,36,0,,,,, +281,22,3,8387,768,1213.256,,,,,,144,42,0,,,,, +281,23,1,8388,800,1213.256,96,16,E4,pp,8,144,64,8,,,,, +281,24,1,8389,800,1213.256,64,16,G#4,pp,8,144,68,8,,,,, +281,25,1,8390,800,1213.256,64,16,A4,pp,8,144,69,8,,,,, +281,26,3,8391,800,1213.256,96,16,C2,pp,8,144,36,8,,,,, +281,27,3,8392,800,1213.256,64,16,F#2,pp,8,144,42,8,,,,, +281,28,0,8393,845,1213.444,,,,,,176,64,127,,,,,V +281,24,1,8389,800,1213.524,,,,,,144,68,0,,,,, +281,25,1,8390,800,1213.524,,,,,,144,69,0,,,,, +281,27,3,8392,800,1213.524,,,,,,144,42,0,,,,, +281,29,1,8394,896,1213.658,,,,,,176,102,0,,,,, +281,30,3,8395,896,1213.658,,,,,,176,102,0,,,,, +281,23,1,8388,800,1213.658,,,,,,144,64,0,,,,, +281,26,3,8391,800,1213.658,,,,,,144,36,0,,,,, +281,14,3,8379,256,1213.797,,,,,,144,24,0,,,,, +281,15,3,8380,256,1213.797,,,,,,144,25,0,,,,, +281,16,3,8381,256,1213.797,,,,,,144,35,0,,,,, +281,17,3,8382,256,1213.797,,,,,,144,55,0,,,,, +281,31,1,8396,1024,1214.194,,,,,,176,102,0,,,,, +281,32,3,8397,1024,1214.194,,,,,,176,102,0,,,,, +282,0,0,8398,0,1215.265,,,,,,,,,282,,,, +282,1,1,8399,0,1215.265,,,,,,176,102,0,,,,, +282,2,3,8400,0,1215.265,,,,,,176,102,0,,,,, +282,3,4,8401,0,1215.265,,,,,,176,102,0,,,,, +282,5,1,8402,256,1216.336,,,,,,176,102,0,,,,, +282,4,1,8403,,1216.336,,8,F#5,pp,8,144,78,8,,,,g, +282,6,3,8404,,1216.336,,8,C#1,pp,8,144,25,8,,,,g, +282,4,1,8403,,1216.386,,,,,,144,78,0,,,,, +282,6,3,8404,,1216.386,,,,,,144,25,0,,,,, +282,7,3,8405,,1216.411,,8,D2,pp,8,144,38,8,,,,g, +282,7,3,8405,,1216.461,,,,,,144,38,0,,,,, +282,8,3,8406,,1216.486,,8,C#1,pp,8,144,25,8,,,,g, +282,8,3,8406,,1216.536,,,,,,144,25,0,,,,, +282,9,3,8407,,1216.561,,8,D2,pp,8,144,38,8,,,,g, +282,9,3,8407,,1216.611,,,,,,144,38,0,,,,, +282,10,3,8408,,1216.636,,8,C#1,pp,8,144,25,8,,,,g, +282,10,3,8408,,1216.686,,,,,,144,25,0,,,,, +282,11,3,8409,256,1216.786,256,4,F1,pp,8,144,29,8,,,,, +282,12,3,8410,256,1216.786,256,4,A2,pp,8,144,45,8,,,,, +282,13,3,8411,256,1216.786,256,4,E3,pp,8,144,52,8,,,,, +282,14,4,8412,256,1216.786,,,,,,176,102,0,,,,, +282,15,1,8413,277,1216.874,21,32,C5,mp,14,144,72,14,,,,, +282,15,1,8413,277,1216.962,,,,,,144,72,0,,,,, +282,16,1,8414,298,1216.962,22,32,G#3,mp,14,144,56,14,,,,, +282,16,1,8414,298,1217.054,,,,,,144,56,0,,,,, +282,17,1,8415,320,1217.054,21,32,F5,mp,14,144,77,14,,,,, +282,17,1,8415,320,1217.142,,,,,,144,77,0,,,,, +282,18,1,8416,341,1217.142,21,32,G#3,mp,14,144,56,14,,,,, +282,18,1,8416,341,1217.23,,,,,,144,56,0,,,,, +282,19,1,8417,362,1217.23,22,32,F5,mp,14,144,77,14,,,,, +282,19,1,8417,362,1217.322,,,,,,144,77,0,,,,, +282,20,0,8418,384,1217.322,,,,,,176,64,0,,,,,^ +282,21,1,8419,384,1217.322,,,,,,176,102,0,,,,, +282,11,3,8409,256,1217.858,,,,,,144,29,0,,,,, +282,22,1,8420,512,1217.858,768,2,E4,ppp,5,144,64,5,,,,, +282,23,1,8421,512,1217.858,512,2,G#4,ppp,5,144,68,5,,,,, +282,24,1,8422,512,1217.858,512,2,A4,ppp,5,144,69,5,,,,, +282,25,3,8423,512,1217.858,768,2,F#2,ppp,5,144,42,5,,,,, +282,26,4,8424,512,1217.858,32,32,F1,pp,8,144,29,8,,,,, +282,12,3,8410,256,1217.858,,,,,,144,45,0,,,,, +282,13,3,8411,256,1217.858,,,,,,144,52,0,,,,, +282,27,0,8425,522,1217.9,,,,,,176,64,127,,,,,V +282,26,4,8424,512,1217.992,,,,,,144,29,0,,,,, +282,28,4,8426,544,1217.992,224,8,B0,pp,8,144,23,8,,,,, +282,29,4,8427,544,1217.992,128,8,F1,pp,8,144,29,8,,,,, +282,29,4,8427,544,1218.528,,,,,,144,29,0,,,,, +282,28,4,8426,544,1218.929,,,,,,144,23,0,,,,, +282,30,4,8428,768,1218.929,,,,,,176,102,0,,,,, +282,23,1,8421,512,1220.001,,,,,,144,68,0,,,,, +282,24,1,8422,512,1220.001,,,,,,144,69,0,,,,, +283,1,0,8429,0,1220.922,,,,,,176,64,0,,,,,^ +282,22,1,8420,512,1221.072,,,,,,144,64,0,,,,, +283,0,0,8430,0,1221.072,,,,,,,,,283,,,, +283,3,1,8431,0,1221.072,512,2,E4,pp,8,144,64,8,,,,, +283,4,1,8432,0,1221.072,512,2,G#4,pp,8,144,68,8,,,,, +283,5,3,8433,0,1221.072,256,4,B0,pp,8,144,23,8,,,,, +283,6,3,8434,0,1221.072,256,4,F1,pp,8,144,29,8,,,,, +283,7,3,8435,0,1221.072,256,4,C2,pp,8,144,36,8,,,,, +282,25,3,8423,512,1221.072,,,,,,144,42,0,,,,, +283,2,0,8436,0,1221.222,,,,,,176,64,127,,,,,V +283,8,0,8437,256,1222.144,,,,,,176,64,0,,,,,^ +283,9,3,8438,256,1222.144,256,4,B0,,,,,,,,,, +283,10,3,8439,256,1222.144,256,4,F1,,,,,,,,,, +283,11,3,8440,256,1222.144,256,4,C2,,,,,,,,,, +283,3,1,8431,0,1223.215,,,,,,144,64,0,,,,, +283,4,1,8432,0,1223.215,,,,,,144,68,0,,,,, +283,5,3,8433,0,1223.215,,,,,,144,23,0,,,,, +283,6,3,8434,0,1223.215,,,,,,144,29,0,,,,, +283,7,3,8435,0,1223.215,,,,,,144,36,0,,,,, +283,13,1,8441,512,1223.215,,,,,,176,102,0,,,,, +283,14,3,8442,512,1223.215,32,32,F1,ppp,5,144,29,5,,,,, +283,12,0,8443,512,1223.215,,,,,,176,64,127,,,,,V +283,14,3,8442,512,1223.349,,,,,,144,29,0,,,,, +283,15,3,8444,544,1223.349,224,8,B0,ppp,5,144,23,5,,,,, +283,16,0,8445,768,1224.286,,,,,,176,64,0,,,,,^ +283,17,1,8446,768,1224.286,,,,,,176,102,0,,,,, +283,18,3,8447,768,1224.286,512,2,B0,,,,,,,,,, +283,19,3,8448,1280,1226.429,256,4,B0,,,,,,,,,, +283,15,3,8444,544,1227.501,,,,,,144,23,0,,,,, +283,20,3,8449,1536,1227.501,,,,,,176,102,0,,,,, +284,0,0,8450,0,1228.572,,,,,,,,,284,,,, +284,1,0,8451,0,1228.572,,,,,,,,,,,56,, +284,2,0,8452,0,1228.572,,,,,,,,,,6001,,, +284,3,1,8453,0,1228.572,1024,1,B3,fff,24,144,59,23,,,,, +284,4,1,8454,0,1228.572,1024,1,D#4,fff,24,144,63,23,,,,, +284,5,1,8455,0,1228.572,1024,1,G#5,fff,24,144,80,23,,,,, +284,6,3,8456,0,1228.572,,,,,,176,102,0,,,,, +284,7,3,8457,128,1229.108,,,,,,176,102,0,,,,, +284,8,0,8458,180,1229.326,,,,,,176,64,127,,,,,V +284,9,3,8459,256,1229.644,,,,,,176,102,0,,,,, +284,10,1,8460,1024,1232.858,256,4,B3,,,,,,,,,, +284,11,1,8461,1024,1232.858,256,4,D#4,,,,,,,,,, +284,12,1,8462,1024,1232.858,256,4,G#5,,,,,,,,,, +284,13,3,8463,1024,1232.858,28,16,E4,ppp,5,144,64,5,,,,, +284,13,3,8463,1024,1232.975,,,,,,144,64,0,,,,, +284,14,3,8464,1052,1232.975,14,32,G#3,pp,8,144,56,8,,,,, +284,14,3,8464,1052,1233.034,,,,,,144,56,0,,,,, +284,15,3,8465,1066,1233.034,14,32,E4,p-,10,144,64,10,,,,, +284,15,3,8465,1066,1233.092,,,,,,144,64,0,,,,, +284,16,3,8466,1080,1233.092,14,32,G#3,p,11,144,56,11,,,,, +284,16,3,8466,1080,1233.151,,,,,,144,56,0,,,,, +284,17,3,8467,1094,1233.151,15,32,C#2,mp-,13,144,37,13,,,,, +284,17,3,8467,1094,1233.214,,,,,,144,37,0,,,,, +284,18,3,8468,1109,1233.214,14,32,C4,mp,14,144,60,14,,,,, +284,18,3,8468,1109,1233.272,,,,,,144,60,0,,,,, +284,19,3,8469,1123,1233.272,14,32,G#3,mf-,16,144,56,16,,,,, +284,19,3,8469,1123,1233.331,,,,,,144,56,0,,,,, +284,20,3,8470,1137,1233.331,15,32,C#2,mf+,18,144,37,18,,,,, +284,20,3,8470,1137,1233.394,,,,,,144,37,0,,,,, +284,21,3,8471,1152,1233.394,14,32,A#2,f-,19,144,46,19,,,,, +284,21,3,8471,1152,1233.452,,,,,,144,46,0,,,,, +284,22,3,8472,1166,1233.452,14,32,C4,f+,21,144,60,21,,,,, +284,22,3,8472,1166,1233.511,,,,,,144,60,0,,,,, +284,23,3,8473,1180,1233.511,14,32,A#2,ff,22,144,46,22,,,,, +284,23,3,8473,1180,1233.569,,,,,,144,46,0,,,,, +284,24,3,8474,1194,1233.569,64,16,C#1,fff,24,144,25,23,,,,, +284,26,0,8475,1279,1233.777,,,,,,176,64,0,,,,,^ +284,24,3,8474,1194,1233.837,,,,,,144,25,0,,,,, +284,25,3,8476,1258,1233.837,22,32,C#1,fff,24,144,25,23,,,,, +284,25,3,8476,1258,1233.929,,,,,,144,25,0,,,,, +285,0,0,8477,0,1233.929,,,,,,,,,285,,,, +285,2,1,8478,0,1233.929,1024,1,B3,,,,,,,,,, +285,3,1,8479,0,1233.929,1024,1,D#4,,,,,,,,,, +285,4,1,8480,0,1233.929,1024,1,G#5,,,,,,,,,, +285,5,2,8481,0,1233.929,,,,,,176,102,0,,,,, +285,6,3,8482,0,1233.929,298,4,C#1,ff+,23,144,25,23,,,,, +285,7,3,8483,0,1233.929,256,4,A#1,ff+,23,144,34,23,,,,, +285,1,0,8484,0,1234.077,,,,,,176,64,127,,,,,V +285,7,3,8483,0,1235.001,,,,,,144,34,0,,,,, +285,6,3,8482,0,1235.177,,,,,,144,25,0,,,,, +285,8,3,8485,298,1235.177,43,16,C#1,mp-,13,144,25,13,,,,, +285,9,3,8486,298,1235.177,64,16,A#1,mp-,13,144,34,13,,,,, +285,8,3,8485,298,1235.357,,,,,,144,25,0,,,,, +285,9,3,8486,298,1235.357,,,,,,144,34,0,,,,, +285,10,2,8487,341,1235.357,128,8,E5,p,11,144,76,11,,,,, +285,11,3,8488,341,1235.357,171,4,C#1,p,11,144,25,11,,,,, +285,12,3,8489,341,1235.357,256,4,A#1,p,11,144,34,11,,,,, +285,13,2,8490,469,1235.892,21,32,E5,,,,,,,,,, +285,10,2,8487,341,1235.98,,,,,,144,76,0,,,,, +285,14,2,8491,490,1235.98,22,32,E5,ppp+,6,144,76,6,,,,, +285,11,3,8488,341,1236.072,,,,,,144,25,0,,,,, +285,12,3,8489,341,1236.072,,,,,,144,34,0,,,,, +285,14,2,8491,490,1236.072,,,,,,144,76,0,,,,, +285,15,2,8492,512,1236.072,21,32,G#3,ppp,5,144,56,5,,,,, +285,16,3,8493,512,1236.072,170,4,C#1,ppp,5,144,25,5,,,,, +285,17,3,8494,512,1236.072,256,4,A#1,ppp,5,144,34,5,,,,, +285,15,2,8492,512,1236.16,,,,,,144,56,0,,,,, +285,18,2,8495,533,1236.16,64,16,C5,ppp,5,144,72,5,,,,, +285,19,2,8496,597,1236.428,85,8,C5,,,,,,,,,, +285,16,3,8493,512,1236.784,,,,,,144,25,0,,,,, +285,18,2,8495,533,1236.784,,,,,,144,72,0,,,,, +285,20,0,8497,682,1236.784,,,,,,176,64,0,,,,,^ +285,21,2,8498,682,1236.784,,,,,,176,102,0,,,,, +285,22,3,8499,682,1236.784,,,,,,176,102,0,,,,, +285,23,2,8500,768,1237.144,,,,,,176,102,0,,,,, +285,24,3,8501,768,1237.144,,,,,,176,102,0,,,,, +285,17,3,8494,512,1237.144,,,,,,144,34,0,,,,, +285,25,1,8502,1024,1238.215,256,4,B3,,,,,,,,,, +285,26,1,8503,1024,1238.215,256,4,D#4,,,,,,,,,, +285,27,1,8504,1024,1238.215,256,4,G#5,,,,,,,,,, +286,0,0,8505,0,1239.286,,,,,,,,,286,,,, +286,1,1,8506,0,1239.286,256,4,B3,,,,,,,,,, +286,2,1,8507,0,1239.286,256,4,D#4,,,,,,,,,, +286,3,1,8508,0,1239.286,256,4,G#5,,,,,,,,,, +286,4,3,8509,0,1239.286,,,,,,176,102,0,,,,, +286,5,4,8510,0,1239.286,,,,,,176,102,0,,,,, +286,6,1,8511,256,1240.358,64,16,B3,p,11,144,59,11,,,,, +286,7,1,8512,256,1240.358,64,16,G#5,p,11,144,80,11,,,,, +286,8,3,8513,256,1240.358,64,16,G2,f,20,144,43,20,,,,, +286,6,1,8511,256,1240.626,,,,,,144,59,0,,,,, +286,7,1,8512,256,1240.626,,,,,,144,80,0,,,,, +286,8,3,8513,256,1240.626,,,,,,144,43,0,,,,, +286,9,1,8514,320,1240.626,,,,,,176,102,0,,,,, +286,10,3,8515,320,1240.626,64,16,A0,f,20,144,21,20,,,,, +284,3,1,8453,0,1240.808,,,,,,144,59,0,,,,, +284,4,1,8454,0,1240.808,,,,,,144,63,0,,,,, +284,5,1,8455,0,1240.808,,,,,,144,80,0,,,,, +286,10,3,8515,320,1240.894,,,,,,144,21,0,,,,, +286,11,1,8516,,1240.894,,8,D7,p,11,144,98,11,,,,g, +286,11,1,8516,,1240.944,,,,,,144,98,0,,,,, +286,12,1,8517,384,1240.969,128,8,G#6,p,11,144,92,11,,,,, +286,13,3,8518,384,1240.969,25,32,D#3,mf,17,144,51,17,,,,, +286,13,3,8518,384,1241.073,,,,,,144,51,0,,,,, +286,14,3,8519,409,1241.073,26,32,B2,mf,17,144,47,17,,,,, +286,14,3,8519,409,1241.182,,,,,,144,47,0,,,,, +286,15,3,8520,435,1241.182,25,32,G#3,mf-,16,144,56,16,,,,, +286,19,1,8521,,1241.279,,8,A#6,pp,8,144,94,8,,,,g, +286,15,3,8520,435,1241.287,,,,,,144,56,0,,,,, +286,16,3,8522,460,1241.287,26,32,D#3,mf-,16,144,51,16,,,,, +286,19,1,8521,,1241.329,,,,,,144,94,0,,,,, +286,12,1,8517,384,1241.354,,,,,,144,92,0,,,,, +286,20,1,8523,,1241.354,,8,G#6,pp,8,144,92,8,,,,g, +286,16,3,8522,460,1241.396,,,,,,144,51,0,,,,, +286,17,3,8524,486,1241.396,26,32,G#3,mp+,15,144,56,15,,,,, +286,21,1,8525,,1241.429,,8,F#5,pp,8,144,78,8,,,,g, +286,21,1,8525,,1241.479,,,,,,144,78,0,,,,, +286,20,1,8523,,1241.504,,,,,,144,92,0,,,,, +286,17,3,8524,486,1241.504,,,,,,144,56,0,,,,, +286,22,1,8526,512,1241.504,384,4,D6,pp,8,144,86,8,,,,, +286,23,4,8527,512,1241.504,384,4,A2,f,20,144,45,20,,,,, +286,24,3,8528,512,1241.504,38,32,D#3,mp+,15,144,51,15,,,,, +286,18,0,8529,512,1241.504,,,,,,176,64,127,,,,,V +286,24,3,8528,512,1241.663,,,,,,144,51,0,,,,, +286,25,3,8530,550,1241.663,38,32,G#3,mp,14,144,56,14,,,,, +286,25,3,8530,550,1241.822,,,,,,144,56,0,,,,, +286,26,3,8531,588,1241.822,26,32,B2,mp-,13,144,47,13,,,,, +286,26,3,8531,588,1241.931,,,,,,144,47,0,,,,, +286,27,3,8532,614,1241.931,26,32,G#3,mp-,13,144,56,13,,,,, +286,27,3,8532,614,1242.04,,,,,,144,56,0,,,,, +286,28,3,8533,640,1242.04,28,32,A1,p+,12,144,33,12,,,,, +286,28,3,8533,640,1242.157,,,,,,144,33,0,,,,, +286,29,3,8534,668,1242.157,28,32,G2,p+,12,144,43,12,,,,, +286,29,3,8534,668,1242.274,,,,,,144,43,0,,,,, +286,30,3,8535,696,1242.274,29,32,A1,p,11,144,33,11,,,,, +286,30,3,8535,696,1242.396,,,,,,144,33,0,,,,, +286,31,3,8536,725,1242.396,43,32,G2,p,11,144,43,11,,,,, +286,31,3,8536,725,1242.576,,,,,,144,43,0,,,,, +286,32,3,8537,768,1242.576,25,32,A1,p-,10,144,33,10,,,,, +286,32,3,8537,768,1242.68,,,,,,144,33,0,,,,, +286,33,3,8538,793,1242.68,26,32,G2,pp+,9,144,43,9,,,,, +286,33,3,8538,793,1242.789,,,,,,144,43,0,,,,, +286,34,3,8539,819,1242.789,25,32,B2,pp+,9,144,47,9,,,,, +286,34,3,8539,819,1242.894,,,,,,144,47,0,,,,, +286,35,3,8540,844,1242.894,26,32,G#3,pp,8,144,56,8,,,,, +286,35,3,8540,844,1243.003,,,,,,144,56,0,,,,, +286,36,3,8541,870,1243.003,26,32,A1,pp,8,144,33,8,,,,, +286,22,1,8526,512,1243.111,,,,,,144,86,0,,,,, +286,23,4,8527,512,1243.111,,,,,,144,45,0,,,,, +286,36,3,8541,870,1243.111,,,,,,144,33,0,,,,, +286,38,0,8542,896,1243.111,,,,,,176,64,0,,,,,^ +286,37,3,8543,896,1243.111,38,32,G2,pp-,7,144,43,7,,,,, +286,39,1,8544,896,1243.111,,,,,,176,102,0,,,,, +286,40,4,8545,896,1243.111,,,,,,176,102,0,,,,, +286,37,3,8543,896,1243.271,,,,,,144,43,0,,,,, +286,41,3,8546,934,1243.271,26,32,A0,pp-,7,144,21,7,,,,, +286,41,3,8546,934,1243.379,,,,,,144,21,0,,,,, +286,42,3,8547,960,1243.379,25,32,G1,ppp+,6,144,31,6,,,,, +286,42,3,8547,960,1243.484,,,,,,144,31,0,,,,, +286,43,3,8548,985,1243.484,39,32,D#2,ppp+,6,144,39,6,,,,, +286,43,3,8548,985,1243.647,,,,,,144,39,0,,,,, +286,44,3,8549,1024,1243.647,38,32,G#2,ppp,5,144,44,5,,,,, +286,45,1,8550,1024,1243.647,,,,,,176,102,0,,,,, +286,44,3,8549,1024,1243.806,,,,,,144,44,0,,,,, +286,46,3,8551,1062,1243.806,38,32,B1,ppp,5,144,35,5,,,,, +286,46,3,8551,1062,1243.965,,,,,,144,35,0,,,,, +286,47,3,8552,1100,1243.965,52,16,A0,ppp,5,144,21,5,,,,, +286,48,0,8553,1100,1243.965,,,,,,,,,,6002,,, +286,47,3,8552,1100,1244.183,,,,,,144,21,0,,,,, +286,50,1,8554,,1244.183,,8,G#5,ppp,5,144,80,5,,,,g, +286,50,1,8554,,1244.233,,,,,,144,80,0,,,,, +286,51,1,8555,,1244.258,,8,D#5,ppp,5,144,75,5,,,,g, +286,51,1,8555,,1244.308,,,,,,144,75,0,,,,, +286,52,1,8556,1152,1244.333,128,8,B4,ppp,5,144,71,5,,,,, +286,53,3,8557,1152,1244.333,,,,,,176,102,0,,,,, +286,49,0,8558,1152,1244.333,,,,,,176,64,127,,,,,V +286,52,1,8556,1152,1244.869,,,,,,144,71,0,,,,, +287,0,0,8559,0,1244.869,,,,,,,,,287,,,, +287,1,1,8560,0,1244.869,64,16,D6,pp,8,144,86,8,,,,, +287,2,3,8561,0,1244.869,,,,,,176,102,0,,,,, +287,1,1,8560,0,1245.136,,,,,,144,86,0,,,,, +287,3,1,8562,64,1245.136,64,16,G7,pp,8,144,103,8,,,,, +287,3,1,8562,64,1245.404,,,,,,144,103,0,,,,, +287,4,1,8563,,1245.404,,8,D7,ppp,5,144,98,5,,,,g, +287,4,1,8563,,1245.454,,,,,,144,98,0,,,,, +287,5,1,8564,128,1245.479,32,32,G#6,ppp,5,144,92,5,,,,, +287,5,1,8564,128,1245.613,,,,,,144,92,0,,,,, +287,6,1,8565,160,1245.613,32,32,E3,ppp,5,144,52,5,,,,, +287,6,1,8565,160,1245.747,,,,,,144,52,0,,,,, +287,7,1,8566,192,1245.747,,,,,,176,102,0,,,,, +287,8,1,8567,213,1245.835,21,32,A#6,pp,8,144,94,8,,,,, +287,8,1,8567,213,1245.923,,,,,,144,94,0,,,,, +287,9,1,8568,234,1245.923,22,32,G#6,pp,8,144,92,8,,,,, +287,9,1,8568,234,1246.015,,,,,,144,92,0,,,,, +287,10,1,8569,256,1246.015,12,64,F#5,pp,8,144,78,8,,,,, +287,10,1,8569,256,1246.065,,,,,,144,78,0,,,,, +287,11,1,8570,268,1246.065,13,64,G#6,pp+,9,144,92,9,,,,, +287,11,1,8570,268,1246.12,,,,,,144,92,0,,,,, +287,12,1,8571,281,1246.12,13,64,F#5,pp+,9,144,78,9,,,,, +287,12,1,8571,281,1246.174,,,,,,144,78,0,,,,, +287,13,1,8572,294,1246.174,13,64,G#6,pp+,9,144,92,9,,,,, +287,13,1,8572,294,1246.229,,,,,,144,92,0,,,,, +287,14,1,8573,307,1246.229,13,64,F#5,pp+,9,144,78,9,,,,, +287,14,1,8573,307,1246.283,,,,,,144,78,0,,,,, +287,15,1,8574,320,1246.283,128,8,D6,pp+,9,144,86,9,,,,, +287,15,1,8574,320,1246.819,,,,,,144,86,0,,,,, +287,16,1,8575,448,1246.819,64,16,G7,p-,10,144,103,10,,,,, +287,16,1,8575,448,1247.086,,,,,,144,103,0,,,,, +287,17,1,8576,512,1247.086,,,,,,176,102,0,,,,, +287,18,3,8577,512,1247.086,,,,,,176,102,0,,,,, +287,19,1,8578,640,1247.622,128,8,F#5,p+,12,144,78,12,,,,, +287,20,1,8579,640,1247.622,128,8,D6,p+,12,144,86,12,,,,, +287,21,1,8580,640,1247.622,128,8,G#6,p+,12,144,92,12,,,,, +287,22,1,8581,640,1247.622,128,8,A#6,p+,12,144,94,12,,,,, +287,23,1,8582,640,1247.622,128,8,G7,p+,12,144,103,12,,,,, +287,19,1,8578,640,1248.158,,,,,,144,78,0,,,,, +287,20,1,8579,640,1248.158,,,,,,144,86,0,,,,, +287,21,1,8580,640,1248.158,,,,,,144,92,0,,,,, +287,22,1,8581,640,1248.158,,,,,,144,94,0,,,,, +287,23,1,8582,640,1248.158,,,,,,144,103,0,,,,, +287,24,1,8583,768,1248.158,,,,,,176,102,0,,,,, +287,25,1,8584,789,1248.246,14,64,G#5,ppp,5,144,80,5,,,,, +287,25,1,8584,789,1248.304,,,,,,144,80,0,,,,, +287,26,1,8585,803,1248.304,14,64,D#5,ppp,5,144,75,5,,,,, +287,26,1,8585,803,1248.363,,,,,,144,75,0,,,,, +287,27,1,8586,817,1248.363,15,64,B4,ppp,5,144,71,5,,,,, +287,27,1,8586,817,1248.426,,,,,,144,71,0,,,,, +287,28,1,8587,832,1248.426,21,64,D#5,ppp,5,144,75,5,,,,, +287,28,1,8587,832,1248.514,,,,,,144,75,0,,,,, +287,29,1,8588,853,1248.514,21,64,G#5,ppp,5,144,80,5,,,,, +287,29,1,8588,853,1248.602,,,,,,144,80,0,,,,, +287,30,1,8589,874,1248.602,22,64,B4,ppp,5,144,71,5,,,,, +287,30,1,8589,874,1248.694,,,,,,144,71,0,,,,, +287,31,1,8590,896,1248.694,21,32,G3,ppp,5,144,55,5,,,,, +287,31,1,8590,896,1248.782,,,,,,144,55,0,,,,, +287,32,1,8591,917,1248.782,21,32,A2,ppp,5,144,45,5,,,,, +287,33,1,8592,938,1248.869,86,8,A2,,,,,,,,,, +287,34,0,8593,1024,1249.079,,,,,,176,64,0,,,,,^ +287,32,1,8591,917,1249.229,,,,,,144,45,0,,,,, +287,36,1,8594,1024,1249.229,,,,,,176,102,0,,,,, +287,37,3,8595,1024,1249.229,21,32,D#4,ppp,5,144,63,5,,,,, +287,37,3,8595,1024,1249.317,,,,,,144,63,0,,,,, +287,38,3,8596,1045,1249.317,21,32,G#4,ppp,5,144,68,5,,,,, +287,35,0,8597,1024,1249.379,,,,,,176,64,127,,,,,V +287,38,3,8596,1045,1249.405,,,,,,144,68,0,,,,, +287,39,3,8598,1066,1249.405,22,32,B3,ppp,5,144,59,5,,,,, +287,39,3,8598,1066,1249.497,,,,,,144,59,0,,,,, +287,40,3,8599,1088,1249.497,21,32,A0,ppp,5,144,21,5,,,,, +287,40,3,8599,1088,1249.585,,,,,,144,21,0,,,,, +287,41,3,8600,1109,1249.585,21,32,G1,ppp,5,144,31,5,,,,, +287,41,3,8600,1109,1249.673,,,,,,144,31,0,,,,, +287,42,3,8601,1130,1249.673,22,32,A0,ppp,5,144,21,5,,,,, +287,42,3,8601,1130,1249.765,,,,,,144,21,0,,,,, +287,43,1,8602,1152,1249.765,64,16,C4,mp,14,144,60,14,,,,, +287,44,3,8603,1152,1249.765,21,32,B2,ppp,5,144,47,5,,,,, +287,44,3,8603,1152,1249.853,,,,,,144,47,0,,,,, +287,45,3,8604,1173,1249.853,21,32,G#3,ppp,5,144,56,5,,,,, +287,45,3,8604,1173,1249.941,,,,,,144,56,0,,,,, +287,46,3,8605,1194,1249.941,22,32,A0,ppp,5,144,21,5,,,,, +287,43,1,8602,1152,1250.033,,,,,,144,60,0,,,,, +287,46,3,8605,1194,1250.033,,,,,,144,21,0,,,,, +287,47,1,8606,1216,1250.033,64,16,C#3,mp,14,144,49,14,,,,, +287,48,3,8607,1216,1250.033,21,32,G2,ppp,5,144,43,5,,,,, +287,48,3,8607,1216,1250.121,,,,,,144,43,0,,,,, +287,49,3,8608,1237,1250.121,,,,,,176,102,0,,,,, +287,50,0,8609,1279,1250.297,,,,,,176,64,0,,,,,^ +287,47,1,8606,1216,1250.301,,,,,,144,49,0,,,,, +288,0,0,8610,0,1250.301,,,,,,,,,288,,,, +288,1,0,8611,0,1250.301,,,,,,,,,,6003,,, +288,2,1,8612,0,1250.301,1024,1,G#4,mf,17,144,68,17,,,,, +288,3,3,8613,0,1250.301,,,,,,176,102,0,,,,, +288,5,3,8614,,1254.361,,8,G#2,p,11,144,44,11,,,,g, +288,5,3,8614,,1254.411,,,,,,144,44,0,,,,, +288,6,3,8615,,1254.436,,8,D#2,p,11,144,39,11,,,,g, +288,6,3,8615,,1254.486,,,,,,144,39,0,,,,, +288,7,3,8616,,1254.511,,8,A0,p,11,144,21,11,,,,g, +288,7,3,8616,,1254.561,,,,,,144,21,0,,,,, +288,4,1,8617,1024,1254.586,256,4,G#4,,,,,,,,,, +288,8,3,8618,1024,1254.586,42,16,B1,p,11,144,35,11,,,,, +288,8,3,8618,1024,1254.762,,,,,,144,35,0,,,,, +288,9,3,8619,1066,1254.762,171,4,G1,p,11,144,31,11,,,,, +288,10,3,8620,1066,1254.762,256,4,B1,p,11,144,35,11,,,,, +288,9,3,8619,1066,1255.478,,,,,,144,31,0,,,,, +288,10,3,8620,1066,1255.478,,,,,,144,35,0,,,,, +288,11,3,8621,1237,1255.478,43,16,A0,ff,22,144,21,22,,,,, +288,12,3,8622,1237,1255.478,64,16,G1,ff,22,144,31,22,,,,, +288,13,3,8623,1237,1255.478,64,16,B1,ff,22,144,35,22,,,,, +288,14,3,8624,1237,1255.478,64,16,D#2,ff,22,144,39,22,,,,, +288,15,3,8625,1237,1255.478,64,16,G#2,ff,22,144,44,22,,,,, +288,11,3,8621,1237,1255.658,,,,,,144,21,0,,,,, +289,0,0,8626,0,1255.658,,,,,,,,,289,,,, +289,1,1,8627,0,1255.658,128,8,G#4,,,,,,,,,, +289,2,3,8628,0,1255.658,,,,,,176,102,0,,,,, +288,12,3,8622,1237,1255.746,,,,,,144,31,0,,,,, +288,14,3,8624,1237,1255.746,,,,,,144,39,0,,,,, +288,15,3,8625,1237,1255.746,,,,,,144,44,0,,,,, +288,13,3,8623,1237,1255.834,,,,,,144,35,0,,,,, +289,4,1,8629,128,1256.194,128,8,F#5,pp,8,144,78,8,,,,, +289,5,1,8630,128,1256.194,128,8,D6,pp,8,144,86,8,,,,, +289,6,1,8631,128,1256.194,128,8,G#6,pp,8,144,92,8,,,,, +289,7,1,8632,128,1256.194,128,8,A#6,pp,8,144,94,8,,,,, +289,8,1,8633,128,1256.194,128,8,G7,pp,8,144,103,8,,,,, +289,3,0,8634,128,1256.194,,,,,,176,64,127,,,,,V +288,2,1,8612,0,1256.194,,,,,,144,68,0,,,,, +289,4,1,8629,128,1256.729,,,,,,144,78,0,,,,, +289,5,1,8630,128,1256.729,,,,,,144,86,0,,,,, +289,6,1,8631,128,1256.729,,,,,,144,92,0,,,,, +289,7,1,8632,128,1256.729,,,,,,144,94,0,,,,, +289,8,1,8633,128,1256.729,,,,,,144,103,0,,,,, +289,9,1,8635,256,1256.729,,,,,,176,102,0,,,,, +289,10,3,8636,256,1256.729,21,32,E1,pp,8,144,28,8,,,,, +289,10,3,8636,256,1256.817,,,,,,144,28,0,,,,, +289,11,3,8637,277,1256.817,21,32,D5,pp,8,144,74,8,,,,, +289,11,3,8637,277,1256.905,,,,,,144,74,0,,,,, +289,12,3,8638,298,1256.905,22,32,C#2,pp,8,144,37,8,,,,, +289,12,3,8638,298,1256.997,,,,,,144,37,0,,,,, +289,13,3,8639,320,1256.997,21,32,C4,pp,8,144,60,8,,,,, +289,13,3,8639,320,1257.085,,,,,,144,60,0,,,,, +289,14,3,8640,341,1257.085,21,32,C#2,pp,8,144,37,8,,,,, +289,14,3,8640,341,1257.173,,,,,,144,37,0,,,,, +289,15,3,8641,362,1257.173,22,32,D5,pp,8,144,74,8,,,,, +289,15,3,8641,362,1257.265,,,,,,144,74,0,,,,, +289,16,3,8642,384,1257.265,21,32,C4,pp,8,144,60,8,,,,, +289,16,3,8642,384,1257.353,,,,,,144,60,0,,,,, +289,17,3,8643,405,1257.353,21,32,C#2,pp,8,144,37,8,,,,, +289,17,3,8643,405,1257.441,,,,,,144,37,0,,,,, +289,18,1,8644,,1257.441,,8,G#5,pp,8,144,80,8,,,,g, +289,18,1,8644,,1257.491,,,,,,144,80,0,,,,, +289,19,1,8645,,1257.516,,8,D6,pp,8,144,86,8,,,,g, +289,19,1,8645,,1257.566,,,,,,144,86,0,,,,, +289,20,1,8646,,1257.591,,8,E3,pp,8,144,52,8,,,,g, +289,20,1,8646,,1257.641,,,,,,144,52,0,,,,, +289,21,1,8647,426,1257.666,43,16,C5,pp,8,144,72,8,,,,, +289,22,3,8648,426,1257.666,,,,,,176,102,0,,,,, +289,21,1,8647,426,1257.846,,,,,,144,72,0,,,,, +289,23,1,8649,469,1257.846,43,16,C#4,pp,8,144,61,8,,,,, +289,24,0,8650,487,1257.861,,,,,,176,64,0,,,,,^ +289,23,1,8649,469,1258.026,,,,,,144,61,0,,,,, +289,26,1,8651,,1258.026,,8,D5,pp,8,144,74,8,,,,g, +289,26,1,8651,,1258.076,,,,,,144,74,0,,,,, +289,27,1,8652,512,1258.101,32,32,G#4,pp,8,144,68,8,,,,, +289,28,3,8653,512,1258.101,,,,,,176,102,0,,,,, +289,25,0,8654,512,1258.161,,,,,,176,64,127,,,,,V +289,27,1,8652,512,1258.235,,,,,,144,68,0,,,,, +289,29,1,8655,544,1258.235,21,32,E2,pp,8,144,40,8,,,,, +289,29,1,8655,544,1258.323,,,,,,144,40,0,,,,, +289,30,1,8656,565,1258.323,21,32,C#3,pp,8,144,49,8,,,,, +289,30,1,8656,565,1258.41,,,,,,144,49,0,,,,, +289,31,1,8657,586,1258.41,32,32,C4,pp,8,144,60,8,,,,, +289,31,1,8657,586,1258.544,,,,,,144,60,0,,,,, +289,32,1,8658,618,1258.544,22,32,C#3,pp,8,144,49,8,,,,, +289,32,1,8658,618,1258.636,,,,,,144,49,0,,,,, +289,33,1,8659,640,1258.636,32,32,G#4,pp,8,144,68,8,,,,, +289,33,1,8659,640,1258.77,,,,,,144,68,0,,,,, +289,34,1,8660,672,1258.77,32,32,E2,pp,8,144,40,8,,,,, +289,34,1,8660,672,1258.904,,,,,,144,40,0,,,,, +289,35,1,8661,704,1258.904,64,16,D5,pp,8,144,74,8,,,,, +289,35,1,8661,704,1259.172,,,,,,144,74,0,,,,, +289,36,1,8662,768,1259.172,,,,,,176,102,0,,,,, +289,37,3,8663,768,1259.172,85,8,G2,ppp,5,144,43,5,,,,, +289,37,3,8663,768,1259.528,,,,,,144,43,0,,,,, +289,38,3,8664,853,1259.528,171,4,G2,ppp,5,144,43,5,,,,, +289,39,3,8665,853,1259.528,256,4,B2,ppp,5,144,47,5,,,,, +289,38,3,8664,853,1260.244,,,,,,144,43,0,,,,, +289,40,1,8666,1024,1260.244,21,32,G#6,ppp,5,144,92,5,,,,, +289,41,3,8667,1024,1260.244,,,,,,176,102,0,,,,, +289,40,1,8666,1024,1260.332,,,,,,144,92,0,,,,, +289,42,1,8668,1045,1260.332,21,32,D7,ppp,5,144,98,5,,,,, +289,42,1,8668,1045,1260.419,,,,,,144,98,0,,,,, +289,43,1,8669,1066,1260.419,22,32,C#4,ppp+,6,144,61,6,,,,, +289,43,1,8669,1066,1260.511,,,,,,144,61,0,,,,, +289,44,1,8670,1088,1260.511,21,32,E3,ppp+,6,144,52,6,,,,, +289,44,1,8670,1088,1260.599,,,,,,144,52,0,,,,, +289,45,1,8671,1109,1260.599,21,32,C6,pp-,7,144,84,7,,,,, +289,46,1,8672,1109,1260.599,32,32,D7,pp-,7,144,98,7,,,,, +289,39,3,8665,853,1260.599,,,,,,144,47,0,,,,, +289,45,1,8671,1109,1260.687,,,,,,144,84,0,,,,, +289,47,1,8673,1130,1260.687,32,32,G#6,pp-,7,144,92,7,,,,, +289,46,1,8672,1109,1260.733,,,,,,144,98,0,,,,, +289,47,1,8673,1130,1260.821,,,,,,144,92,0,,,,, +289,48,1,8674,1162,1260.821,32,32,E3,pp,8,144,52,8,,,,, +289,49,1,8675,1162,1260.821,32,32,C#4,pp,8,144,61,8,,,,, +289,48,1,8674,1162,1260.955,,,,,,144,52,0,,,,, +289,49,1,8675,1162,1260.955,,,,,,144,61,0,,,,, +289,50,1,8676,1194,1260.955,22,32,C6,pp+,9,144,84,9,,,,, +289,51,1,8677,1194,1260.955,32,32,G#6,pp+,9,144,92,9,,,,, +289,50,1,8676,1194,1261.047,,,,,,144,84,0,,,,, +289,52,1,8678,1216,1261.047,32,32,D7,pp+,9,144,98,9,,,,, +289,51,1,8677,1194,1261.089,,,,,,144,92,0,,,,, +289,52,1,8678,1216,1261.181,,,,,,144,98,0,,,,, +289,53,1,8679,1248,1261.181,32,32,C6,pp+,9,144,84,9,,,,, +289,53,1,8679,1248,1261.315,,,,,,144,84,0,,,,, +290,0,0,8680,0,1261.315,,,,,,,,,290,,,, +290,1,1,8681,0,1261.315,,,,,,176,102,0,,,,, +290,2,3,8682,0,1261.315,21,32,C#2,pp,8,144,37,8,,,,, +290,2,3,8682,0,1261.403,,,,,,144,37,0,,,,, +290,3,3,8683,21,1261.403,21,32,E1,pp,8,144,28,8,,,,, +290,3,3,8683,21,1261.491,,,,,,144,28,0,,,,, +290,4,3,8684,42,1261.491,43,16,C3,pp,8,144,48,8,,,,, +290,5,3,8685,42,1261.491,64,16,G#3,pp,8,144,56,8,,,,, +290,6,3,8686,42,1261.491,64,16,D4,pp,8,144,62,8,,,,, +290,4,3,8684,42,1261.671,,,,,,144,48,0,,,,, +290,7,3,8687,85,1261.671,64,16,E1,pp,8,144,28,8,,,,, +290,8,3,8688,85,1261.671,64,16,C#2,pp,8,144,37,8,,,,, +290,5,3,8685,42,1261.759,,,,,,144,56,0,,,,, +290,6,3,8686,42,1261.759,,,,,,144,62,0,,,,, +290,7,3,8687,85,1261.939,,,,,,144,28,0,,,,, +290,8,3,8688,85,1261.939,,,,,,144,37,0,,,,, +290,9,0,8689,149,1261.939,,,,,,176,64,0,,,,,^ +290,10,3,8690,149,1261.939,43,16,E1,f,20,144,28,20,,,,, +290,11,3,8691,149,1261.939,64,16,C#2,f,20,144,37,20,,,,, +290,12,3,8692,149,1261.939,64,16,C3,f,20,144,48,20,,,,, +290,13,3,8693,149,1261.939,64,16,G#3,f,20,144,56,20,,,,, +290,14,3,8694,149,1261.939,64,16,D4,f,20,144,62,20,,,,, +290,10,3,8690,149,1262.119,,,,,,144,28,0,,,,, +290,15,3,8695,192,1262.119,,,,,,176,102,0,,,,, +290,16,0,8696,192,1262.119,,,,,,,,,,6004,,, +290,11,3,8691,149,1262.207,,,,,,144,37,0,,,,, +290,12,3,8692,149,1262.207,,,,,,144,48,0,,,,, +290,13,3,8693,149,1262.207,,,,,,144,56,0,,,,, +290,14,3,8694,149,1262.207,,,,,,144,62,0,,,,, +290,17,1,8697,256,1262.386,,,,,,176,102,0,,,,, +290,18,3,8698,256,1262.386,1024,1,G#5,ff,22,144,80,22,,,,, +290,20,1,8699,384,1262.922,25,32,F#5,ppp,5,144,78,5,,,,, +290,19,0,8700,384,1262.922,,,,,,176,64,127,,,,,V +290,20,1,8699,384,1263.027,,,,,,144,78,0,,,,, +290,21,1,8701,409,1263.027,26,32,D6,ppp,5,144,86,5,,,,, +290,21,1,8701,409,1263.136,,,,,,144,86,0,,,,, +290,22,1,8702,435,1263.136,25,32,A#6,ppp,5,144,94,5,,,,, +290,22,1,8702,435,1263.24,,,,,,144,94,0,,,,, +290,23,1,8703,460,1263.24,26,32,G7,ppp,5,144,103,5,,,,, +290,24,1,8704,486,1263.349,26,32,G#6,ppp,5,144,92,5,,,,, +290,23,1,8703,460,1263.424,,,,,,144,103,0,,,,, +290,24,1,8704,486,1263.458,,,,,,144,92,0,,,,, +290,25,1,8705,512,1263.458,38,32,A#6,ppp+,6,144,94,6,,,,, +290,25,1,8705,512,1263.617,,,,,,144,94,0,,,,, +290,26,1,8706,550,1263.617,26,32,F#4,ppp+,6,144,66,6,,,,, +290,26,1,8706,550,1263.726,,,,,,144,66,0,,,,, +290,27,1,8707,576,1263.726,25,32,D5,ppp+,6,144,74,6,,,,, +290,27,1,8707,576,1263.83,,,,,,144,74,0,,,,, +290,28,1,8708,601,1263.83,39,32,F#4,ppp+,6,144,66,6,,,,, +290,18,3,8698,256,1263.994,,,,,,144,80,0,,,,, +290,28,1,8708,601,1263.994,,,,,,144,66,0,,,,, +290,29,1,8709,640,1263.994,32,32,G#5,ppp+,6,144,80,6,,,,, +290,30,1,8710,672,1264.128,21,32,D5,ppp+,6,144,74,6,,,,, +290,30,1,8710,672,1264.215,,,,,,144,74,0,,,,, +290,31,1,8711,693,1264.215,21,32,A#5,pp-,7,144,82,7,,,,, +290,31,1,8711,693,1264.303,,,,,,144,82,0,,,,, +290,32,1,8712,714,1264.303,22,32,G7,pp-,7,144,103,7,,,,, +290,32,1,8712,714,1264.395,,,,,,144,103,0,,,,, +290,33,1,8713,736,1264.395,32,32,D5,pp-,7,144,74,7,,,,, +290,33,1,8713,736,1264.529,,,,,,144,74,0,,,,, +290,34,1,8714,768,1264.529,25,32,G7,pp-,7,144,103,7,,,,, +290,29,1,8709,640,1264.634,,,,,,144,80,0,,,,, +290,34,1,8714,768,1264.634,,,,,,144,103,0,,,,, +290,35,1,8715,793,1264.634,26,32,G#5,pp-,7,144,80,7,,,,, +290,36,1,8716,819,1264.743,25,32,F#4,pp-,7,144,66,7,,,,, +290,36,1,8716,819,1264.847,,,,,,144,66,0,,,,, +290,37,1,8717,844,1264.847,26,32,D5,pp-,7,144,74,7,,,,, +290,37,1,8717,844,1264.956,,,,,,144,74,0,,,,, +290,38,1,8718,870,1264.956,38,32,F#4,pp-,7,144,66,7,,,,, +290,35,1,8715,793,1265.115,,,,,,144,80,0,,,,, +290,38,1,8718,870,1265.115,,,,,,144,66,0,,,,, +290,39,1,8719,908,1265.115,39,32,G#5,pp,8,144,80,8,,,,, +290,40,1,8720,947,1265.279,38,32,D5,pp,8,144,74,8,,,,, +290,40,1,8720,947,1265.438,,,,,,144,74,0,,,,, +290,41,1,8721,985,1265.438,39,32,G7,pp,8,144,103,8,,,,, +290,39,1,8719,908,1265.601,,,,,,144,80,0,,,,, +290,41,1,8721,985,1265.601,,,,,,144,103,0,,,,, +290,42,1,8722,1024,1265.601,25,32,G#5,pp,8,144,80,8,,,,, +290,43,1,8723,1049,1265.705,26,32,A#6,pp,8,144,94,8,,,,, +290,43,1,8723,1049,1265.814,,,,,,144,94,0,,,,, +290,44,1,8724,1075,1265.814,25,32,F#3,pp,8,144,54,8,,,,, +290,44,1,8724,1075,1265.919,,,,,,144,54,0,,,,, +290,45,1,8725,1100,1265.919,26,32,D5,pp,8,144,74,8,,,,, +290,42,1,8722,1024,1266.028,,,,,,144,80,0,,,,, +290,45,1,8725,1100,1266.028,,,,,,144,74,0,,,,, +290,46,1,8726,1126,1266.028,38,32,G#5,pp+,9,144,80,9,,,,, +290,47,1,8727,1164,1266.187,39,32,D5,pp+,9,144,74,9,,,,, +290,47,1,8727,1164,1266.35,,,,,,144,74,0,,,,, +290,48,1,8728,1203,1266.35,77,16,G7,pp+,9,144,103,9,,,,, +291,0,0,8729,0,1266.672,,,,,,,,,291,,,, +291,1,1,8730,0,1266.672,,,,,,176,102,0,,,,, +291,2,3,8731,0,1266.672,,,,,,176,102,0,,,,, +290,48,1,8728,1203,1266.822,,,,,,144,103,0,,,,, +290,46,1,8726,1126,1266.897,,,,,,144,80,0,,,,, +291,3,0,8732,768,1269.736,,,,,,176,64,0,,,,,^ +291,5,1,8733,768,1269.886,,,,,,176,102,0,,,,, +291,6,3,8734,768,1269.886,42,16,G2,ppp,5,144,43,5,,,,, +291,4,0,8735,768,1270.036,,,,,,176,64,127,,,,,V +291,6,3,8734,768,1270.062,,,,,,144,43,0,,,,, +291,7,3,8736,810,1270.062,128,8,G2,ppp,5,144,43,5,,,,, +291,8,3,8737,810,1270.062,128,8,B2,ppp,5,144,47,5,,,,, +291,7,3,8736,810,1270.598,,,,,,144,43,0,,,,, +291,8,3,8737,810,1270.598,,,,,,144,47,0,,,,, +291,9,3,8738,938,1270.598,86,8,A4,ppp,5,144,69,5,,,,, +291,10,3,8739,1024,1270.958,256,4,A4,,,,,,,,,, +291,9,3,8738,938,1272.029,,,,,,144,69,0,,,,, +292,0,0,8740,0,1272.029,,,,,,,,,292,,,, +292,1,1,8741,0,1272.029,,,,,,176,102,0,,,,, +292,2,3,8742,0,1272.029,,,,,,176,102,0,,,,, +292,3,3,8743,85,1272.385,21,32,A4,ppp,5,144,69,5,,,,, +292,3,3,8743,85,1272.473,,,,,,144,69,0,,,,, +292,4,3,8744,106,1272.473,22,32,D#4,ppp,5,144,63,5,,,,, +292,4,3,8744,106,1272.565,,,,,,144,63,0,,,,, +292,5,3,8745,128,1272.565,64,16,C2,ppp,5,144,36,5,,,,, +292,5,3,8745,128,1272.833,,,,,,144,36,0,,,,, +292,6,3,8746,192,1272.833,64,16,A4,ppp,5,144,69,5,,,,, +292,7,3,8747,256,1273.101,32,32,A4,,,,,,,,,, +292,6,3,8746,192,1273.235,,,,,,144,69,0,,,,, +292,8,3,8748,288,1273.235,224,8,D#4,ppp,5,144,63,5,,,,, +292,8,3,8748,288,1274.172,,,,,,144,63,0,,,,, +292,9,3,8749,512,1274.172,,,,,,176,102,0,,,,, +292,10,1,8750,,1276.24,,8,F4,ppp,5,144,65,5,,,,g, +292,10,1,8750,,1276.29,,,,,,144,65,0,,,,, +292,11,1,8751,1024,1276.315,256,4,F4,ppp,5,144,65,5,,,,, +292,12,3,8752,1024,1276.315,256,4,G1,ppp,5,144,31,5,,,,, +292,11,1,8751,1024,1277.386,,,,,,144,65,0,,,,, +292,12,3,8752,1024,1277.386,,,,,,144,31,0,,,,, +293,0,0,8753,0,1277.386,,,,,,,,,293,,,, +293,1,1,8754,0,1277.386,512,2,G#5,mp,14,144,80,14,,,,, +293,2,3,8755,0,1277.386,512,2,E2,mp,14,144,40,14,,,,, +293,1,1,8754,0,1279.529,,,,,,144,80,0,,,,, +293,2,3,8755,0,1279.529,,,,,,144,40,0,,,,, +293,3,1,8756,512,1279.529,256,4,G#5,mp+,15,144,80,15,,,,, +293,4,1,8757,512,1279.529,256,4,D6,mp+,15,144,86,15,,,,, +293,5,3,8758,512,1279.529,512,2,E2,mp,14,144,40,14,,,,, +293,6,1,8759,768,1280.601,256,4,G#5,,,,,,,,,, +293,7,1,8760,768,1280.601,256,4,D6,,,,,,,,,, +293,8,1,8761,1024,1281.672,192,8,C5,mp+,15,144,72,15,,,,, +293,9,1,8762,1024,1281.672,128,8,G#5,mp+,15,144,80,15,,,,, +293,10,1,8763,1024,1281.672,128,8,D6,mp+,15,144,86,15,,,,, +293,11,3,8764,1024,1281.672,,,,,,176,102,0,,,,, +293,3,1,8756,512,1281.972,,,,,,144,80,0,,,,, +293,4,1,8757,512,1281.972,,,,,,144,86,0,,,,, +293,5,3,8758,512,1281.972,,,,,,144,40,0,,,,, +293,9,1,8762,1024,1282.208,,,,,,144,80,0,,,,, +293,10,1,8763,1024,1282.208,,,,,,144,86,0,,,,, +293,8,1,8761,1024,1282.476,,,,,,144,72,0,,,,, +293,12,0,8765,1216,1282.476,,,,,,176,64,0,,,,,^ +293,13,1,8766,1216,1282.476,64,16,C#3,mp+,15,144,49,15,,,,, +293,14,0,8767,1216,1282.476,,,,,,,,,,6005,,, +293,13,1,8766,1216,1282.744,,,,,,144,49,0,,,,, +294,0,0,8768,0,1282.744,,,,,,,,,294,,,, +294,2,1,8769,0,1282.744,,,,,,176,102,0,,,,, +294,3,3,8770,,1282.744,,8,D4,ppp,5,144,62,5,,,,g, +294,3,3,8770,,1282.794,,,,,,144,62,0,,,,, +294,4,3,8771,,1282.819,,8,C#2,ppp,5,144,37,5,,,,g, +294,4,3,8771,,1282.869,,,,,,144,37,0,,,,, +294,5,3,8772,0,1282.894,32,32,G#3,ppp,5,144,56,5,,,,, +294,1,0,8773,0,1282.894,,,,,,176,64,127,,,,,V +294,5,3,8772,0,1283.028,,,,,,144,56,0,,,,, +294,6,3,8774,32,1283.028,21,32,E1,ppp,5,144,28,5,,,,, +294,6,3,8774,32,1283.115,,,,,,144,28,0,,,,, +294,7,3,8775,53,1283.115,32,32,C3,ppp,5,144,48,5,,,,, +294,7,3,8775,53,1283.249,,,,,,144,48,0,,,,, +294,8,3,8776,85,1283.249,,,,,,176,102,0,,,,, +294,9,3,8777,128,1283.429,,,,,,176,102,0,,,,, +294,10,3,8778,256,1283.965,768,2,D3,ppp,5,144,50,5,,,,, +294,11,1,8779,,1284.961,,8,A2,pp,8,144,45,8,,,,g, +294,11,1,8779,,1285.011,,,,,,144,45,0,,,,, +294,12,1,8780,512,1285.036,768,2,A2,ff,22,144,45,22,,,,, +294,13,1,8781,512,1285.036,512,2,C#6,ff,22,144,85,22,,,,, +294,10,3,8778,256,1287.179,,,,,,144,50,0,,,,, +294,13,1,8781,512,1287.179,,,,,,144,85,0,,,,, +294,14,3,8782,1024,1287.179,21,32,D3,ppp,5,144,50,5,,,,, +294,14,3,8782,1024,1287.267,,,,,,144,50,0,,,,, +294,15,3,8783,1045,1287.267,21,32,C#2,ppp,5,144,37,5,,,,, +294,15,3,8783,1045,1287.355,,,,,,144,37,0,,,,, +294,16,3,8784,1066,1287.355,14,32,F2,ppp,5,144,41,5,,,,, +294,16,3,8784,1066,1287.414,,,,,,144,41,0,,,,, +294,17,3,8785,1080,1287.414,14,32,A3,ppp,5,144,57,5,,,,, +294,17,3,8785,1080,1287.472,,,,,,144,57,0,,,,, +294,18,3,8786,1094,1287.472,15,32,F2,ppp,5,144,41,5,,,,, +294,18,3,8786,1094,1287.535,,,,,,144,41,0,,,,, +294,19,3,8787,1109,1287.535,14,32,A3,ppp,5,144,57,5,,,,, +294,19,3,8787,1109,1287.594,,,,,,144,57,0,,,,, +294,20,3,8788,1123,1287.594,14,32,F2,ppp,5,144,41,5,,,,, +294,20,3,8788,1123,1287.652,,,,,,144,41,0,,,,, +294,21,3,8789,1137,1287.652,15,32,A3,ppp,5,144,57,5,,,,, +294,21,3,8789,1137,1287.715,,,,,,144,57,0,,,,, +294,22,3,8790,1152,1287.715,21,32,F2,ppp,5,144,41,5,,,,, +294,22,3,8790,1152,1287.803,,,,,,144,41,0,,,,, +294,23,3,8791,1173,1287.803,21,32,B1,ppp,5,144,35,5,,,,, +294,23,3,8791,1173,1287.891,,,,,,144,35,0,,,,, +294,24,3,8792,1194,1287.891,22,32,A3,ppp,5,144,57,5,,,,, +294,24,3,8792,1194,1287.983,,,,,,144,57,0,,,,, +294,25,3,8793,1216,1287.983,21,32,B0,ppp,5,144,23,5,,,,, +294,25,3,8793,1216,1288.071,,,,,,144,23,0,,,,, +294,26,3,8794,1237,1288.071,21,32,F1,ppp,5,144,29,5,,,,, +294,26,3,8794,1237,1288.159,,,,,,144,29,0,,,,, +294,27,3,8795,1258,1288.159,22,32,B0,ppp,5,144,23,5,,,,, +294,27,3,8795,1258,1288.251,,,,,,144,23,0,,,,, +295,0,0,8796,0,1288.251,,,,,,,,,295,,,, +295,1,1,8797,0,1288.251,,,,,,176,102,0,,,,, +295,2,3,8798,0,1288.251,21,32,D2,ppp,5,144,38,5,,,,, +294,12,1,8780,512,1288.251,,,,,,144,45,0,,,,, +295,2,3,8798,0,1288.339,,,,,,144,38,0,,,,, +295,3,3,8799,21,1288.339,21,32,C#1,ppp,5,144,25,5,,,,, +295,3,3,8799,21,1288.427,,,,,,144,25,0,,,,, +295,4,3,8800,42,1288.427,14,32,F1,ppp,5,144,29,5,,,,, +295,5,3,8801,42,1288.427,32,32,D2,ppp,5,144,38,5,,,,, +295,4,3,8800,42,1288.485,,,,,,144,29,0,,,,, +295,6,3,8802,56,1288.485,14,32,A2,ppp,5,144,45,5,,,,, +295,5,3,8801,42,1288.544,,,,,,144,38,0,,,,, +295,6,3,8802,56,1288.544,,,,,,144,45,0,,,,, +295,7,3,8803,70,1288.544,15,32,F1,ppp,5,144,29,5,,,,, +295,8,3,8804,70,1288.544,32,32,D2,ppp,5,144,38,5,,,,, +295,7,3,8803,70,1288.607,,,,,,144,29,0,,,,, +295,9,3,8805,85,1288.607,14,32,A2,ppp,5,144,45,5,,,,, +295,8,3,8804,70,1288.665,,,,,,144,38,0,,,,, +295,9,3,8805,85,1288.665,,,,,,144,45,0,,,,, +295,10,3,8806,99,1288.665,14,32,F1,ppp,5,144,29,5,,,,, +295,11,3,8807,99,1288.665,32,32,D2,ppp,5,144,38,5,,,,, +295,10,3,8806,99,1288.724,,,,,,144,29,0,,,,, +295,12,3,8808,113,1288.724,15,32,A2,ppp,5,144,45,5,,,,, +295,12,3,8808,113,1288.786,,,,,,144,45,0,,,,, +295,13,3,8809,128,1288.786,21,32,F1,ppp,5,144,29,5,,,,, +295,11,3,8807,99,1288.799,,,,,,144,38,0,,,,, +295,13,3,8809,128,1288.874,,,,,,144,29,0,,,,, +295,14,3,8810,149,1288.874,21,32,B0,ppp,5,144,23,5,,,,, +295,14,3,8810,149,1288.962,,,,,,144,23,0,,,,, +295,15,3,8811,170,1288.962,22,32,D2,ppp,5,144,38,5,,,,, +295,16,3,8812,170,1288.962,32,32,A2,ppp,5,144,45,5,,,,, +295,15,3,8811,170,1289.054,,,,,,144,38,0,,,,, +295,17,3,8813,192,1289.054,21,32,B0,ppp,5,144,23,5,,,,, +295,16,3,8812,170,1289.096,,,,,,144,45,0,,,,, +295,17,3,8813,192,1289.142,,,,,,144,23,0,,,,, +295,18,3,8814,213,1289.142,21,32,F1,ppp,5,144,29,5,,,,, +295,19,3,8815,213,1289.142,32,32,D2,ppp,5,144,38,5,,,,, +295,20,3,8816,213,1289.142,32,32,A2,ppp,5,144,45,5,,,,, +295,18,3,8814,213,1289.23,,,,,,144,29,0,,,,, +295,21,3,8817,234,1289.23,22,32,B0,ppp,5,144,23,5,,,,, +295,19,3,8815,213,1289.276,,,,,,144,38,0,,,,, +295,20,3,8816,213,1289.276,,,,,,144,45,0,,,,, +295,21,3,8817,234,1289.322,,,,,,144,23,0,,,,, +295,22,3,8818,256,1289.322,1024,1,B0,ppp,5,144,23,5,,,,, +295,23,3,8819,256,1289.322,1024,1,C#1,ppp,5,144,25,5,,,,, +295,24,3,8820,256,1289.322,1024,1,F1,ppp,5,144,29,5,,,,, +295,25,3,8821,256,1289.322,1024,1,D3,ppp,5,144,50,5,,,,, +295,26,3,8822,256,1289.322,1024,1,A3,ppp,5,144,57,5,,,,, +296,0,0,8823,0,1293.608,,,,,,,,,296,,,, +296,1,1,8824,0,1293.608,,,,,,176,102,0,,,,, +296,2,2,8825,0,1293.608,,,,,,176,102,0,,,,, +296,3,3,8826,0,1293.608,768,2,B0,,,,,,,,,, +296,4,3,8827,0,1293.608,512,2,C#1,,,,,,,,,, +296,5,3,8828,0,1293.608,512,2,F1,,,,,,,,,, +296,6,3,8829,0,1293.608,512,2,D3,,,,,,,,,, +296,7,3,8830,0,1293.608,512,2,A3,,,,,,,,,, +296,8,2,8831,256,1294.679,,,,,,176,102,0,,,,, +295,23,3,8819,256,1295.751,,,,,,144,25,0,,,,, +295,24,3,8820,256,1295.751,,,,,,144,29,0,,,,, +295,25,3,8821,256,1295.751,,,,,,144,50,0,,,,, +295,26,3,8822,256,1295.751,,,,,,144,57,0,,,,, +296,9,1,8832,512,1295.751,256,4,C#6,mp,14,144,85,14,,,,, +296,10,2,8833,512,1295.751,256,4,A2,mp,14,144,45,14,,,,, +296,11,2,8834,512,1295.751,256,4,F#3,mp,14,144,54,14,,,,, +295,22,3,8818,256,1296.822,,,,,,144,23,0,,,,, +296,12,1,8835,768,1296.822,128,8,C#6,,,,,,,,,, +296,13,2,8836,768,1296.822,128,8,A2,,,,,,,,,, +296,14,2,8837,768,1296.822,128,8,F#3,,,,,,,,,, +296,15,3,8838,768,1296.822,,,,,,176,102,0,,,,, +296,9,1,8832,512,1297.358,,,,,,144,85,0,,,,, +296,10,2,8833,512,1297.358,,,,,,144,45,0,,,,, +296,11,2,8834,512,1297.358,,,,,,144,54,0,,,,, +296,16,1,8839,896,1297.358,25,32,F#4,ppp,5,144,66,5,,,,, +296,17,2,8840,896,1297.358,,,,,,176,102,0,,,,, +296,16,1,8839,896,1297.463,,,,,,144,66,0,,,,, +296,18,1,8841,921,1297.463,26,32,D5,ppp,5,144,74,5,,,,, +296,18,1,8841,921,1297.571,,,,,,144,74,0,,,,, +296,19,1,8842,947,1297.571,25,32,A#6,ppp,5,144,94,5,,,,, +296,19,1,8842,947,1297.676,,,,,,144,94,0,,,,, +296,20,1,8843,972,1297.676,26,32,G7,ppp,5,144,103,5,,,,, +296,20,1,8843,972,1297.785,,,,,,144,103,0,,,,, +296,21,1,8844,998,1297.785,26,32,G#6,ppp,5,144,92,5,,,,, +296,21,1,8844,998,1297.894,,,,,,144,92,0,,,,, +296,22,1,8845,1024,1297.894,38,32,A#6,ppp,5,144,94,5,,,,, +296,23,2,8846,1024,1297.894,,,,,,176,102,0,,,,, +296,22,1,8845,1024,1298.053,,,,,,144,94,0,,,,, +296,24,1,8847,1062,1298.053,26,32,F#4,ppp,5,144,66,5,,,,, +296,24,1,8847,1062,1298.161,,,,,,144,66,0,,,,, +296,25,1,8848,1088,1298.161,25,32,D5,ppp,5,144,74,5,,,,, +296,25,1,8848,1088,1298.266,,,,,,144,74,0,,,,, +296,26,1,8849,1113,1298.266,39,32,F#4,ppp,5,144,66,5,,,,, +296,26,1,8849,1113,1298.429,,,,,,144,66,0,,,,, +296,27,1,8850,1152,1298.429,32,32,G#5,ppp,5,144,80,5,,,,, +296,27,1,8850,1152,1298.563,,,,,,144,80,0,,,,, +296,28,1,8851,1184,1298.563,21,32,D5,ppp,5,144,74,5,,,,, +296,28,1,8851,1184,1298.651,,,,,,144,74,0,,,,, +296,29,1,8852,1205,1298.651,21,32,A#5,ppp,5,144,82,5,,,,, +296,29,1,8852,1205,1298.739,,,,,,144,82,0,,,,, +296,30,1,8853,1226,1298.739,22,32,G7,ppp,5,144,103,5,,,,, +296,30,1,8853,1226,1298.831,,,,,,144,103,0,,,,, +296,31,1,8854,1248,1298.831,32,32,D5,ppp,5,144,74,5,,,,, +296,31,1,8854,1248,1298.965,,,,,,144,74,0,,,,, +297,0,0,8855,0,1298.965,,,,,,,,,297,,,, +297,1,1,8856,0,1298.965,25,32,G7,ppp,5,144,103,5,,,,, +297,2,3,8857,0,1298.965,,,,,,176,102,0,,,,, +297,1,1,8856,0,1299.07,,,,,,144,103,0,,,,, +297,3,1,8858,25,1299.07,26,32,G#4,ppp,5,144,68,5,,,,, +297,3,1,8858,25,1299.179,,,,,,144,68,0,,,,, +297,4,1,8859,51,1299.179,25,32,F#3,ppp,5,144,54,5,,,,, +297,4,1,8859,51,1299.283,,,,,,144,54,0,,,,, +297,5,1,8860,76,1299.283,26,32,D4,ppp,5,144,62,5,,,,, +297,5,1,8860,76,1299.392,,,,,,144,62,0,,,,, +297,6,1,8861,102,1299.392,38,32,F#3,ppp,5,144,54,5,,,,, +297,6,1,8861,102,1299.551,,,,,,144,54,0,,,,, +297,7,1,8862,140,1299.551,39,32,G#4,ppp,5,144,68,5,,,,, +297,7,1,8862,140,1299.714,,,,,,144,68,0,,,,, +297,8,1,8863,179,1299.714,38,32,D4,ppp,5,144,62,5,,,,, +297,8,1,8863,179,1299.873,,,,,,144,62,0,,,,, +297,9,1,8864,217,1299.873,39,32,A#6,ppp,5,144,94,5,,,,, +297,10,1,8865,217,1299.873,32,32,G7,ppp,5,144,103,5,,,,, +297,10,1,8865,217,1300.007,,,,,,144,103,0,,,,, +297,9,1,8864,217,1300.036,,,,,,144,94,0,,,,, +297,11,1,8866,256,1300.036,25,32,G#5,ppp,5,144,80,5,,,,, +297,12,3,8867,256,1300.036,,,,,,176,102,0,,,,, +297,11,1,8866,256,1300.141,,,,,,144,80,0,,,,, +297,13,1,8868,281,1300.141,26,32,A#5,ppp,5,144,82,5,,,,, +297,13,1,8868,281,1300.25,,,,,,144,82,0,,,,, +297,14,1,8869,307,1300.25,25,32,F#3,ppp,5,144,54,5,,,,, +297,14,1,8869,307,1300.355,,,,,,144,54,0,,,,, +297,15,1,8870,332,1300.355,26,32,D5,ppp,5,144,74,5,,,,, +297,16,1,8871,332,1300.355,32,32,A#5,ppp,5,144,82,5,,,,, +297,15,1,8870,332,1300.463,,,,,,144,74,0,,,,, +297,17,1,8872,358,1300.463,38,32,G#5,ppp,5,144,80,5,,,,, +297,16,1,8871,332,1300.488,,,,,,144,82,0,,,,, +297,17,1,8872,358,1300.622,,,,,,144,80,0,,,,, +297,18,1,8873,396,1300.622,39,32,D5,ppp,5,144,74,5,,,,, +297,18,1,8873,396,1300.786,,,,,,144,74,0,,,,, +297,19,1,8874,435,1300.786,77,16,G7,ppp,5,144,103,5,,,,, +297,19,1,8874,435,1301.108,,,,,,144,103,0,,,,, +297,20,1,8875,512,1301.108,,,,,,176,102,0,,,,, +297,21,3,8876,512,1301.108,21,32,D3,pppp,2,144,50,2,,,,, +297,21,3,8876,512,1301.196,,,,,,144,50,0,,,,, +297,22,3,8877,533,1301.196,21,32,C#1,pppp,2,144,25,2,,,,, +297,22,3,8877,533,1301.284,,,,,,144,25,0,,,,, +297,23,3,8878,554,1301.284,14,32,F1,pppp,2,144,29,2,,,,, +297,23,3,8878,554,1301.342,,,,,,144,29,0,,,,, +297,24,3,8879,568,1301.342,14,32,A4,pppp,2,144,69,2,,,,, +297,24,3,8879,568,1301.401,,,,,,144,69,0,,,,, +297,25,3,8880,582,1301.401,15,32,F1,pppp,2,144,29,2,,,,, +297,25,3,8880,582,1301.464,,,,,,144,29,0,,,,, +297,26,3,8881,597,1301.464,14,32,A3,pppp,2,144,57,2,,,,, +297,26,3,8881,597,1301.522,,,,,,144,57,0,,,,, +297,27,3,8882,611,1301.522,14,32,F1,pppp,2,144,29,2,,,,, +297,27,3,8882,611,1301.581,,,,,,144,29,0,,,,, +297,28,3,8883,625,1301.581,15,32,A3,pppp,2,144,57,2,,,,, +297,28,3,8883,625,1301.644,,,,,,144,57,0,,,,, +297,29,3,8884,640,1301.644,21,32,F1,pppp,2,144,29,2,,,,, +297,29,3,8884,640,1301.732,,,,,,144,29,0,,,,, +297,30,3,8885,661,1301.732,21,32,B0,pppp,2,144,23,2,,,,, +297,30,3,8885,661,1301.819,,,,,,144,23,0,,,,, +297,31,3,8886,682,1301.819,22,32,A3,pppp,2,144,57,2,,,,, +297,31,3,8886,682,1301.911,,,,,,144,57,0,,,,, +297,32,3,8887,704,1301.911,21,32,B0,pppp,2,144,23,2,,,,, +297,32,3,8887,704,1301.999,,,,,,144,23,0,,,,, +297,33,3,8888,725,1301.999,21,32,F1,pppp,2,144,29,2,,,,, +297,33,3,8888,725,1302.087,,,,,,144,29,0,,,,, +297,34,3,8889,746,1302.087,22,32,B0,pppp,2,144,23,2,,,,, +297,34,3,8889,746,1302.179,,,,,,144,23,0,,,,, +297,35,1,8890,768,1302.179,,,,,,176,102,0,,,,, +297,36,3,8891,768,1302.179,21,32,D2,pppp,2,144,38,2,,,,, +297,36,3,8891,768,1302.267,,,,,,144,38,0,,,,, +297,37,3,8892,789,1302.267,21,32,C#1,pppp,2,144,25,2,,,,, +297,37,3,8892,789,1302.355,,,,,,144,25,0,,,,, +297,38,3,8893,810,1302.355,14,32,F1,pppp,2,144,29,2,,,,, +297,38,3,8893,810,1302.414,,,,,,144,29,0,,,,, +297,39,3,8894,824,1302.414,14,32,A2,pppp,2,144,45,2,,,,, +297,39,3,8894,824,1302.472,,,,,,144,45,0,,,,, +297,40,3,8895,838,1302.472,15,32,F1,pppp,2,144,29,2,,,,, +297,40,3,8895,838,1302.535,,,,,,144,29,0,,,,, +297,41,3,8896,853,1302.535,14,32,A2,pppp,2,144,45,2,,,,, +297,41,3,8896,853,1302.594,,,,,,144,45,0,,,,, +297,42,3,8897,867,1302.594,14,32,F1,pppp,2,144,29,2,,,,, +297,42,3,8897,867,1302.652,,,,,,144,29,0,,,,, +297,43,3,8898,881,1302.652,15,32,A2,pppp,2,144,45,2,,,,, +297,43,3,8898,881,1302.715,,,,,,144,45,0,,,,, +297,44,3,8899,896,1302.715,21,32,F1,pppp,2,144,29,2,,,,, +297,44,3,8899,896,1302.803,,,,,,144,29,0,,,,, +297,45,3,8900,917,1302.803,21,32,B0,pppp,2,144,23,2,,,,, +297,45,3,8900,917,1302.891,,,,,,144,23,0,,,,, +297,46,3,8901,938,1302.891,22,32,A2,pppp,2,144,45,2,,,,, +297,46,3,8901,938,1302.983,,,,,,144,45,0,,,,, +297,47,3,8902,960,1302.983,21,32,B0,pppp,2,144,23,2,,,,, +297,47,3,8902,960,1303.071,,,,,,144,23,0,,,,, +297,48,3,8903,981,1303.071,21,32,F1,pppp,2,144,29,2,,,,, +297,48,3,8903,981,1303.159,,,,,,144,29,0,,,,, +297,49,3,8904,1002,1303.159,22,32,B0,pppp,2,144,23,2,,,,, +297,49,3,8904,1002,1303.251,,,,,,144,23,0,,,,, +297,50,3,8905,1024,1303.251,21,32,D2,pppp,2,144,38,2,,,,, +297,51,3,8906,1024,1303.251,32,32,A2,pppp,2,144,45,2,,,,, +297,50,3,8905,1024,1303.339,,,,,,144,38,0,,,,, +297,52,3,8907,1045,1303.339,21,32,C#1,pppp,2,144,25,2,,,,, +297,51,3,8906,1024,1303.385,,,,,,144,45,0,,,,, +297,52,3,8907,1045,1303.427,,,,,,144,25,0,,,,, +297,53,3,8908,1066,1303.427,14,32,F1,pppp,2,144,29,2,,,,, +297,53,3,8908,1066,1303.485,,,,,,144,29,0,,,,, +297,54,3,8909,1080,1303.485,14,32,D2,pppp,2,144,38,2,,,,, +297,55,3,8910,1080,1303.485,32,32,A2,pppp,2,144,45,2,,,,, +297,54,3,8909,1080,1303.544,,,,,,144,38,0,,,,, +297,56,3,8911,1094,1303.544,15,32,F1,pppp,2,144,29,2,,,,, +297,55,3,8910,1080,1303.607,,,,,,144,45,0,,,,, +297,56,3,8911,1094,1303.607,,,,,,144,29,0,,,,, +297,57,3,8912,1109,1303.607,14,32,D2,pppp,2,144,38,2,,,,, +297,58,3,8913,1109,1303.607,32,32,A2,pppp,2,144,45,2,,,,, +297,57,3,8912,1109,1303.665,,,,,,144,38,0,,,,, +297,59,3,8914,1123,1303.665,14,32,F1,pppp,2,144,29,2,,,,, +297,58,3,8913,1109,1303.724,,,,,,144,45,0,,,,, +297,59,3,8914,1123,1303.724,,,,,,144,29,0,,,,, +297,60,3,8915,1137,1303.724,15,32,D2,pppp,2,144,38,2,,,,, +297,61,3,8916,1137,1303.724,32,32,A2,pppp,2,144,45,2,,,,, +297,60,3,8915,1137,1303.786,,,,,,144,38,0,,,,, +297,62,3,8917,1152,1303.786,21,32,F1,pppp,2,144,29,2,,,,, +297,61,3,8916,1137,1303.858,,,,,,144,45,0,,,,, +297,62,3,8917,1152,1303.874,,,,,,144,29,0,,,,, +297,63,3,8918,1173,1303.874,21,32,B0,pppp,2,144,23,2,,,,, +297,63,3,8918,1173,1303.962,,,,,,144,23,0,,,,, +297,64,3,8919,1194,1303.962,22,32,C#1,pppp,2,144,25,2,,,,, +297,65,3,8920,1194,1303.962,32,32,D2,pppp,2,144,38,2,,,,, +297,66,3,8921,1194,1303.962,32,32,A2,pppp,2,144,45,2,,,,, +297,64,3,8919,1194,1304.054,,,,,,144,25,0,,,,, +297,67,3,8922,1216,1304.054,21,32,B0,pppp,2,144,23,2,,,,, +297,65,3,8920,1194,1304.096,,,,,,144,38,0,,,,, +297,66,3,8921,1194,1304.096,,,,,,144,45,0,,,,, +297,67,3,8922,1216,1304.142,,,,,,144,23,0,,,,, +297,68,3,8923,1237,1304.142,21,32,F1,pppp,2,144,29,2,,,,, +297,69,3,8924,1237,1304.142,32,32,D2,pppp,2,144,38,2,,,,, +297,70,3,8925,1237,1304.142,32,32,A2,pppp,2,144,45,2,,,,, +297,68,3,8923,1237,1304.23,,,,,,144,29,0,,,,, +297,71,3,8926,1258,1304.23,22,32,B0,pppp,2,144,23,2,,,,, +297,69,3,8924,1237,1304.276,,,,,,144,38,0,,,,, +297,70,3,8925,1237,1304.276,,,,,,144,45,0,,,,, +297,72,0,8927,1279,1304.318,,,,,,176,64,0,,,,,^ +297,71,3,8926,1258,1304.322,,,,,,144,23,0,,,,, +298,0,0,8928,0,1304.322,,,,,,,,,298,,,, +298,1,1,8929,0,1304.322,,,,,,176,102,0,,,,, +298,2,3,8930,0,1304.322,,,,,,176,102,0,,,,, +298,3,4,8931,0,1304.322,256,4,B0,pppp,2,144,23,2,,,,, +298,4,4,8932,0,1304.322,256,4,C#1,pppp,2,144,25,2,,,,, +298,5,4,8933,0,1304.322,256,4,F1,pppp,2,144,29,2,,,,, +298,6,4,8934,0,1304.322,256,4,D2,pppp,2,144,38,2,,,,, +298,7,4,8935,0,1304.322,256,4,A2,pppp,2,144,45,2,,,,, +298,8,3,8936,256,1305.394,,,,,,176,102,0,,,,, +298,9,4,8937,256,1305.394,85,8,B0,,,,,,,,,, +298,10,4,8938,256,1305.394,128,8,C#1,,,,,,,,,, +298,11,4,8939,256,1305.394,128,8,F1,,,,,,,,,, +298,12,4,8940,256,1305.394,128,8,D2,,,,,,,,,, +298,13,4,8941,256,1305.394,128,8,A2,,,,,,,,,, +298,14,4,8942,341,1305.749,171,4,B0,pppp,2,144,23,2,,,,, +298,15,4,8943,341,1305.749,256,4,C#1,pppp,2,144,25,2,,,,, +298,16,4,8944,341,1305.749,256,4,F1,pppp,2,144,29,2,,,,, +298,17,4,8945,341,1305.749,256,4,D2,pppp,2,144,38,2,,,,, +298,18,4,8946,341,1305.749,256,4,A2,pppp,2,144,45,2,,,,, +298,3,4,8931,0,1305.899,,,,,,144,23,0,,,,, +298,4,4,8932,0,1306.079,,,,,,144,25,0,,,,, +298,5,4,8933,0,1306.079,,,,,,144,29,0,,,,, +298,6,4,8934,0,1306.079,,,,,,144,38,0,,,,, +298,7,4,8935,0,1306.079,,,,,,144,45,0,,,,, +298,19,1,8947,512,1306.465,128,8,F4,pp,8,144,65,8,,,,, +298,20,1,8948,512,1306.465,128,8,C#6,pp,8,144,85,8,,,,, +298,21,3,8949,512,1306.465,32,32,F#3,pp,8,144,54,8,,,,, +298,22,4,8950,512,1306.465,341,2,B0,,,,,,,,,, +298,23,4,8951,512,1306.465,512,2,C#1,,,,,,,,,, +298,24,4,8952,512,1306.465,512,2,F1,,,,,,,,,, +298,25,4,8953,512,1306.465,512,2,D2,,,,,,,,,, +298,26,4,8954,512,1306.465,512,2,A2,,,,,,,,,, +298,21,3,8949,512,1306.599,,,,,,144,54,0,,,,, +298,27,3,8955,544,1306.599,96,16,G2,pp,8,144,43,8,,,,, +298,19,1,8947,512,1307.001,,,,,,144,65,0,,,,, +298,20,1,8948,512,1307.001,,,,,,144,85,0,,,,, +298,27,3,8955,544,1307.001,,,,,,144,43,0,,,,, +298,28,1,8956,640,1307.001,,,,,,176,102,0,,,,, +298,29,3,8957,640,1307.001,,,,,,176,102,0,,,,, +298,30,1,8958,768,1307.536,,,,,,176,102,0,,,,, +298,31,3,8959,768,1307.536,,,,,,176,102,0,,,,, +298,14,4,8942,341,1307.892,,,,,,144,23,0,,,,, +298,32,4,8960,853,1307.892,85,8,B0,pp,8,144,23,8,,,,, +298,33,4,8961,853,1307.892,128,8,C#1,pp,8,144,25,8,,,,, +298,34,4,8962,853,1307.892,128,8,F1,pp,8,144,29,8,,,,, +298,35,4,8963,853,1307.892,128,8,D2,pp,8,144,38,8,,,,, +298,36,4,8964,853,1307.892,128,8,A2,pp,8,144,45,8,,,,, +298,32,4,8960,853,1308.248,,,,,,144,23,0,,,,, +298,38,4,8965,938,1308.248,,,,,,176,102,0,,,,, +298,37,0,8966,938,1308.248,,,,,,176,64,127,,,,,V +298,33,4,8961,853,1308.428,,,,,,144,25,0,,,,, +298,34,4,8962,853,1308.428,,,,,,144,29,0,,,,, +298,35,4,8963,853,1308.428,,,,,,144,38,0,,,,, +298,36,4,8964,853,1308.428,,,,,,144,45,0,,,,, +298,41,0,8967,1024,1308.778,,,,,,176,64,0,,,,,^ +298,39,0,8968,1024,1308.778,,,,,,,,,,,38,, +298,40,0,8969,1024,1308.778,,,,,,,,,,6006,,, +298,42,4,8970,1024,1308.778,,,,,,176,102,0,,,,, +298,15,4,8943,341,1308.964,,,,,,144,25,0,,,,, +298,16,4,8944,341,1308.964,,,,,,144,29,0,,,,, +298,17,4,8945,341,1308.964,,,,,,144,38,0,,,,, +298,18,4,8946,341,1308.964,,,,,,144,45,0,,,,, +298,44,3,8971,,1310.23,,8,E1,s,0,144,28,0,,,,g, +298,44,3,8971,,1310.28,,,,,,144,28,0,,,,, +298,45,3,8972,,1310.305,,8,C3,s,0,144,48,0,,,,g, +298,45,3,8972,,1310.355,,,,,,144,48,0,,,,, +298,43,0,8973,1393,1310.38,,,,,,,,,,,54,, +299,0,0,8974,0,1311.001,,,,,,,,,299,,,, +299,1,1,8975,0,1311.001,256,4,G#4,p,11,144,68,11,,,,, +299,2,1,8976,0,1311.001,256,4,D#6,p,11,144,87,11,,,,, +299,3,2,8977,0,1311.001,,,,,,176,102,0,,,,, +299,4,3,8978,0,1311.001,,,,,,176,102,0,,,,, +299,5,4,8979,0,1311.001,,,,,,176,102,0,,,,, +299,6,0,8980,136,1311.591,,,,,,176,64,127,,,,,V +299,1,1,8975,0,1312.112,,,,,,144,68,0,,,,, +299,2,1,8976,0,1312.112,,,,,,144,87,0,,,,, +299,10,4,8981,,1312.112,,8,E4,ppp,5,144,64,5,,,,g, +299,10,4,8981,,1312.162,,,,,,144,64,0,,,,, +299,11,4,8982,,1312.187,,8,A#3,ppp,5,144,58,5,,,,g, +299,11,4,8982,,1312.237,,,,,,144,58,0,,,,, +299,12,4,8983,,1312.262,,8,D3,ppp,5,144,50,5,,,,g, +299,13,4,8984,,1312.262,,8,E3,ppp,5,144,52,5,,,,g, +299,12,4,8983,,1312.312,,,,,,144,50,0,,,,, +299,13,4,8984,,1312.312,,,,,,144,52,0,,,,, +299,7,1,8985,256,1312.412,512,2,C#4,p,11,144,61,11,,,,, +299,8,1,8986,256,1312.412,512,2,F#4,pp,8,144,66,8,,,,, +299,9,3,8987,256,1312.412,,,,,,176,102,0,,,,, +299,14,4,8988,256,1312.412,512,2,C1,ff,22,144,24,22,,,,, +299,15,4,8989,256,1312.412,512,2,C#1,pp,8,144,25,8,,,,, +299,16,4,8990,256,1312.412,512,2,E1,pp,8,144,28,8,,,,, +299,17,3,8991,358,1312.854,154,8,D#2,ppp,5,144,39,5,,,,, +299,17,3,8991,358,1313.523,,,,,,144,39,0,,,,, +299,18,3,8992,512,1313.523,21,32,G#1,ppp,5,144,32,5,,,,, +299,18,3,8992,512,1313.614,,,,,,144,32,0,,,,, +299,19,3,8993,533,1313.614,21,32,F2,ppp+,6,144,41,6,,,,, +299,19,3,8993,533,1313.705,,,,,,144,41,0,,,,, +299,20,3,8994,554,1313.705,22,32,F#1,pp-,7,144,30,7,,,,, +299,20,3,8994,554,1313.801,,,,,,144,30,0,,,,, +299,21,3,8995,576,1313.801,21,32,G#1,pp-,7,144,32,7,,,,, +299,21,3,8995,576,1313.892,,,,,,144,32,0,,,,, +299,22,3,8996,597,1313.892,21,32,F2,pp,8,144,41,8,,,,, +299,22,3,8996,597,1313.983,,,,,,144,41,0,,,,, +299,23,3,8997,618,1313.983,22,32,F#1,pp+,9,144,30,9,,,,, +299,23,3,8997,618,1314.078,,,,,,144,30,0,,,,, +299,24,3,8998,640,1314.078,18,64,F3,p-,10,144,53,10,,,,, +299,24,3,8998,640,1314.157,,,,,,144,53,0,,,,, +299,25,3,8999,658,1314.157,36,32,E4,p,11,144,64,11,,,,, +299,25,3,8999,658,1314.313,,,,,,144,64,0,,,,, +299,26,3,9000,694,1314.313,19,64,F3,p+,12,144,53,12,,,,, +299,26,3,9000,694,1314.395,,,,,,144,53,0,,,,, +299,27,3,9001,713,1314.395,18,64,E4,mp-,13,144,64,13,,,,, +299,27,3,9001,713,1314.473,,,,,,144,64,0,,,,, +299,28,3,9002,731,1314.473,18,64,F3,mp-,13,144,53,13,,,,, +299,29,0,9003,749,1314.51,,,,,,176,64,0,,,,,^ +299,28,3,9002,731,1314.551,,,,,,144,53,0,,,,, +299,30,3,9004,749,1314.551,19,64,F#2,mp,14,144,42,14,,,,, +299,7,1,8985,256,1314.634,,,,,,144,61,0,,,,, +299,15,4,8989,256,1314.634,,,,,,144,25,0,,,,, +299,16,4,8990,256,1314.634,,,,,,144,28,0,,,,, +299,30,3,9004,749,1314.634,,,,,,144,42,0,,,,, +299,31,1,9005,768,1314.634,256,4,C#4,pp,8,144,61,8,,,,, +299,32,2,9006,768,1314.634,,,,,,176,102,0,,,,, +299,33,3,9007,768,1314.634,256,4,E1,ff,22,144,28,22,,,,, +299,34,4,9008,768,1314.634,256,4,C#1,pp,8,144,25,8,,,,, +299,35,4,9009,768,1314.634,256,4,C2,mp,14,144,36,14,,,,, +299,8,1,8986,256,1314.634,,,,,,144,66,0,,,,, +299,14,4,8988,256,1314.634,,,,,,144,24,0,,,,, +299,36,0,9010,799,1314.81,,,,,,176,64,127,,,,,V +299,37,2,9011,870,1315.077,26,32,D3,pp-,7,144,50,7,,,,, +299,37,2,9011,870,1315.19,,,,,,144,50,0,,,,, +299,38,2,9012,896,1315.19,25,32,F#5,pp-,7,144,78,7,,,,, +299,38,2,9012,896,1315.298,,,,,,144,78,0,,,,, +299,39,2,9013,921,1315.298,26,32,E5,pp-,7,144,76,7,,,,, +299,39,2,9013,921,1315.411,,,,,,144,76,0,,,,, +299,40,2,9014,947,1315.411,25,32,D#2,pp-,7,144,39,7,,,,, +299,40,2,9014,947,1315.519,,,,,,144,39,0,,,,, +299,41,2,9015,972,1315.519,52,16,A#3,pp-,7,144,58,7,,,,, +299,41,2,9015,972,1315.745,,,,,,144,58,0,,,,, +299,42,1,9016,1024,1315.745,25,32,F#5,ppp+,6,144,78,6,,,,, +299,43,3,9017,1024,1315.745,256,4,G#2,ppp+,6,144,44,6,,,,, +299,44,4,9018,1024,1315.745,,,,,,176,102,0,,,,, +299,51,2,9019,1024,1315.745,,,,,,176,102,0,,,,, +299,31,1,9005,768,1315.745,,,,,,144,61,0,,,,, +299,33,3,9007,768,1315.745,,,,,,144,28,0,,,,, +299,34,4,9008,768,1315.745,,,,,,144,25,0,,,,, +299,35,4,9009,768,1315.745,,,,,,144,36,0,,,,, +299,42,1,9016,1024,1315.854,,,,,,144,78,0,,,,, +299,45,1,9020,1049,1315.854,26,32,E4,ppp+,6,144,64,6,,,,, +299,45,1,9020,1049,1315.966,,,,,,144,64,0,,,,, +299,46,1,9021,1075,1315.966,25,32,D3,ppp+,6,144,50,6,,,,, +299,46,1,9021,1075,1316.075,,,,,,144,50,0,,,,, +299,47,1,9022,1100,1316.075,26,32,F#5,ppp+,6,144,78,6,,,,, +299,47,1,9022,1100,1316.188,,,,,,144,78,0,,,,, +299,48,1,9023,1126,1316.188,26,32,E4,ppp+,6,144,64,6,,,,, +299,48,1,9023,1126,1316.301,,,,,,144,64,0,,,,, +299,49,1,9024,1152,1316.301,51,16,D#2,ppp+,6,144,39,6,,,,, +299,49,1,9024,1152,1316.522,,,,,,144,39,0,,,,, +299,50,1,9025,1203,1316.522,25,32,A#3,ppp,5,144,58,5,,,,, +299,50,1,9025,1203,1316.63,,,,,,144,58,0,,,,, +299,52,1,9026,1228,1316.63,26,32,E4,ppp,5,144,64,5,,,,, +299,52,1,9026,1228,1316.743,,,,,,144,64,0,,,,, +299,53,1,9027,1254,1316.743,26,32,D#1,ppp,5,144,27,5,,,,, +299,53,1,9027,1254,1316.856,,,,,,144,27,0,,,,, +300,0,0,9028,0,1316.856,,,,,,,,,300,,,, +300,1,1,9029,0,1316.856,,,,,,176,102,0,,,,, +300,2,2,9030,0,1316.856,51,16,E4,mf,17,144,64,17,,,,, +300,3,3,9031,,1316.856,,8,E1,fff,24,144,28,23,,,,g, +299,43,3,9017,1024,1316.856,,,,,,144,44,0,,,,, +300,3,3,9031,,1316.906,,,,,,144,28,0,,,,, +300,4,3,9032,0,1316.931,768,2,E1,,,,,,,,,, +300,5,3,9033,0,1316.931,512,2,C3,fff,24,144,48,23,,,,, +300,6,4,9034,0,1316.931,,,,,,176,102,0,,,,, +300,2,2,9030,0,1317.078,,,,,,144,64,0,,,,, +300,7,0,9035,51,1317.153,,,,,,176,64,0,,,,,^ +300,8,2,9036,51,1317.153,51,16,F2,f,20,144,41,20,,,,, +300,9,4,9037,64,1317.209,64,16,C1,ff,22,144,24,22,,,,, +300,10,4,9038,64,1317.209,64,16,F#1,ff,22,144,30,22,,,,, +300,11,4,9039,64,1317.209,64,16,G#1,ff,22,144,32,22,,,,, +300,12,4,9040,64,1317.209,64,16,F3,ff,22,144,53,22,,,,, +300,13,4,9041,64,1317.209,64,16,E4,ff,22,144,64,22,,,,, +300,14,1,9042,85,1317.3,85,8,D3,pp,8,144,50,8,,,,, +300,15,2,9043,102,1317.374,154,8,C2,ff,22,144,36,22,,,,, +300,8,2,9036,51,1317.374,,,,,,144,41,0,,,,, +300,17,4,9044,128,1317.487,,,,,,176,102,0,,,,, +300,16,0,9045,128,1317.487,,,,,,176,64,127,,,,,V +300,9,4,9037,64,1317.487,,,,,,144,24,0,,,,, +300,10,4,9038,64,1317.487,,,,,,144,30,0,,,,, +300,11,4,9039,64,1317.487,,,,,,144,32,0,,,,, +300,12,4,9040,64,1317.487,,,,,,144,53,0,,,,, +300,13,4,9041,64,1317.487,,,,,,144,64,0,,,,, +300,14,1,9042,85,1317.669,,,,,,144,50,0,,,,, +300,18,1,9046,170,1317.669,86,8,G6,f,20,144,91,20,,,,, +300,15,2,9043,102,1318.042,,,,,,144,36,0,,,,, +300,18,1,9046,170,1318.042,,,,,,144,91,0,,,,, +300,19,1,9047,256,1318.042,21,32,A#5,f,20,144,82,20,,,,, +300,20,2,9048,256,1318.042,512,2,A#4,pp,8,144,70,8,,,,, +300,21,4,9049,256,1318.042,,,,,,176,102,0,,,,, +300,19,1,9047,256,1318.133,,,,,,144,82,0,,,,, +300,22,1,9050,277,1318.133,21,32,F#2,f-,19,144,42,19,,,,, +300,22,1,9050,277,1318.225,,,,,,144,42,0,,,,, +300,23,1,9051,298,1318.225,22,32,D4,mf+,18,144,62,18,,,,, +300,23,1,9051,298,1318.32,,,,,,144,62,0,,,,, +300,24,1,9052,320,1318.32,21,32,G#4,mf-,16,144,68,16,,,,, +300,24,1,9052,320,1318.411,,,,,,144,68,0,,,,, +300,25,1,9053,341,1318.411,21,32,D4,mp+,15,144,62,15,,,,, +300,25,1,9053,341,1318.502,,,,,,144,62,0,,,,, +300,26,1,9054,362,1318.502,22,32,G#4,mp,14,144,68,14,,,,, +300,26,1,9054,362,1318.598,,,,,,144,68,0,,,,, +300,27,1,9055,384,1318.598,21,32,D4,mp-,13,144,62,13,,,,, +300,27,1,9055,384,1318.689,,,,,,144,62,0,,,,, +300,28,1,9056,405,1318.689,21,32,G#4,p+,12,144,68,12,,,,, +300,28,1,9056,405,1318.78,,,,,,144,68,0,,,,, +300,29,1,9057,426,1318.78,22,32,G6,p-,10,144,91,10,,,,, +300,29,1,9057,426,1318.876,,,,,,144,91,0,,,,, +300,30,1,9058,448,1318.876,21,32,G#4,pp+,9,144,68,9,,,,, +300,30,1,9058,448,1318.967,,,,,,144,68,0,,,,, +300,31,1,9059,469,1318.967,43,16,G6,pp,8,144,91,8,,,,, +300,31,1,9059,469,1319.153,,,,,,144,91,0,,,,, +300,32,1,9060,512,1319.153,,,,,,176,102,0,,,,, +300,5,3,9033,0,1319.153,,,,,,144,48,0,,,,, +300,33,1,9061,768,1320.265,,,,,,176,102,0,,,,, +300,34,2,9062,768,1320.265,,,,,,176,102,0,,,,, +300,35,3,9063,768,1320.265,,,,,,176,102,0,,,,, +300,36,4,9064,768,1320.265,,,,,,176,102,0,,,,, +300,20,2,9048,256,1320.265,,,,,,144,70,0,,,,, +300,37,0,9065,896,1320.82,,,,,,176,64,0,,,,,^ +300,38,4,9066,921,1320.929,51,16,G#2,mp,14,144,44,14,,,,, +300,39,0,9067,921,1320.929,,,,,,,,,,6007,,, +300,40,3,9068,,1321.002,,8,F#1,mf-,16,144,30,16,,,,g, +300,40,3,9068,,1321.052,,,,,,144,30,0,,,,, +300,41,3,9069,,1321.077,,8,A#4,mf+,18,144,70,18,,,,g, +300,41,3,9069,,1321.127,,,,,,144,70,0,,,,, +300,38,4,9066,921,1321.15,,,,,,144,44,0,,,,, +300,42,3,9070,938,1321.152,86,8,D3,f,20,144,50,20,,,,, +300,43,4,9071,972,1321.3,52,16,F#2,p,11,144,42,11,,,,, +300,44,0,9072,978,1321.326,,,,,,176,64,127,,,,,V +300,43,4,9071,972,1321.526,,,,,,144,42,0,,,,, +300,42,3,9070,938,1321.526,,,,,,144,50,0,,,,, +300,45,0,9073,1024,1321.571,,,,,,,,,,,44,, +300,48,1,9074,1024,1321.571,153,8,A#4,fff,24,144,70,23,,,,, +300,49,1,9075,1024,1321.571,128,8,E5,fff,24,144,76,23,,,,, +300,50,2,9076,1024,1321.571,256,4,D4,p,11,144,62,11,,,,, +300,46,1,9077,,1321.571,,8,D3,mf,17,144,50,17,,,,g, +300,46,1,9077,,1321.621,,,,,,144,50,0,,,,, +300,49,1,9075,1024,1321.646,,,,,,144,76,0,,,,, +300,47,1,9078,,1321.646,,8,E5,f,20,144,76,20,,,,g, +300,58,3,9079,1024,1321.721,256,4,B1,p,11,144,35,11,,,,, +300,51,3,9080,,1321.721,,8,E4,p,11,144,64,11,,,,g, +300,51,3,9080,,1321.771,,,,,,144,64,0,,,,, +300,52,3,9081,,1321.796,,8,C2,mp-,13,144,36,13,,,,g, +300,52,3,9081,,1321.846,,,,,,144,36,0,,,,, +300,53,3,9082,,1321.871,,8,F3,mp+,15,144,53,15,,,,g, +300,53,3,9082,,1321.921,,,,,,144,53,0,,,,, +300,54,3,9083,,1321.946,,8,A#1,mf-,16,144,34,16,,,,g, +300,55,3,9084,,1321.946,,8,F#2,mf-,16,144,42,16,,,,g, +300,54,3,9083,,1321.996,,,,,,144,34,0,,,,, +300,55,3,9084,,1321.996,,,,,,144,42,0,,,,, +300,56,3,9085,,1322.021,,8,G#2,mf+,18,144,44,18,,,,g, +300,56,3,9085,,1322.071,,,,,,144,44,0,,,,, +300,57,3,9086,,1322.096,,8,C3,f,20,144,48,20,,,,g, +300,57,3,9086,,1322.146,,,,,,144,48,0,,,,, +300,59,3,9087,1024,1322.246,256,4,F#2,ff,22,144,42,22,,,,, +300,60,4,9088,1024,1322.246,,,,,,176,102,0,,,,, +300,61,1,9089,1177,1323.061,103,8,A#4,,,,,,,,,, +300,62,1,9090,1177,1323.061,128,8,E5,,,,,,,,,, +300,63,1,9091,1177,1323.061,128,8,F5,f,20,144,77,20,,,,, +301,0,0,9092,0,1323.61,,,,,,,,,301,,,, +301,1,1,9093,0,1323.61,153,8,A#4,,,,,,,,,, +301,2,1,9094,0,1323.61,128,8,E5,,,,,,,,,, +301,3,1,9095,0,1323.61,128,8,F5,,,,,,,,,, +301,4,2,9096,0,1323.61,153,8,D4,,,,,,,,,, +301,5,3,9097,0,1323.61,153,8,B1,,,,,,,,,, +301,6,3,9098,0,1323.61,128,8,F#2,,,,,,,,,, +301,7,4,9099,0,1323.61,153,8,B4,pp,8,144,71,8,,,,, +300,47,1,9078,,1323.616,,,,,,144,76,0,,,,, +300,64,1,9100,,1323.668,,8,D#5,pp,8,144,75,8,,,,g, +300,64,1,9100,,1323.718,,,,,,144,75,0,,,,, +300,48,1,9074,1024,1323.75,,,,,,144,70,0,,,,, +300,50,2,9076,1024,1323.75,,,,,,144,62,0,,,,, +300,58,3,9079,1024,1323.9,,,,,,144,35,0,,,,, +300,59,3,9087,1024,1324.291,,,,,,144,42,0,,,,, +300,63,1,9091,1177,1324.425,,,,,,144,77,0,,,,, +301,7,4,9099,0,1324.425,,,,,,144,71,0,,,,, +301,8,1,9101,153,1324.425,103,8,A#4,mp,14,144,70,14,,,,, +301,9,1,9102,153,1324.425,128,8,F5,f,20,,,,,,,, +301,10,2,9103,153,1324.425,103,8,D4,pp,8,144,62,8,,,,, +301,11,3,9104,153,1324.425,103,8,B1,pp,8,144,35,8,,,,, +301,12,3,9105,153,1324.425,128,8,F#2,pp,8,144,42,8,,,,, +301,13,4,9106,153,1324.425,26,32,F5,f,20,144,77,20,,,,, +301,14,4,9107,179,1324.563,13,64,A1,mf,17,144,33,17,,,,, +301,14,4,9107,179,1324.632,,,,,,144,33,0,,,,, +301,15,4,9108,192,1324.632,25,32,G1,mp+,15,144,31,15,,,,, +301,13,4,9106,153,1324.766,,,,,,144,77,0,,,,, +301,15,4,9108,192,1324.766,,,,,,144,31,0,,,,, +301,16,4,9109,217,1324.766,13,64,F5,mp-,13,144,77,13,,,,, +301,17,4,9110,230,1324.835,26,32,G1,p,11,144,31,11,,,,, +301,11,3,9104,153,1324.973,,,,,,144,35,0,,,,, +301,12,3,9105,153,1324.973,,,,,,144,42,0,,,,, +301,17,4,9110,230,1324.973,,,,,,144,31,0,,,,, +301,18,1,9111,256,1324.973,256,4,A#4,,,,,,,,,, +301,19,1,9112,256,1324.973,256,4,F5,,,,,,,,,, +301,20,2,9113,256,1324.973,256,4,D4,,,,,,,,,, +301,21,3,9114,256,1324.973,256,4,B1,ppp,5,144,35,5,,,,, +301,22,3,9115,256,1324.973,256,4,F#2,ppp,5,144,42,5,,,,, +301,23,4,9116,256,1324.973,256,4,G1,ppp,5,144,31,5,,,,, +301,24,1,9117,512,1326.337,153,8,A#4,,,,,,,,,, +301,25,1,9118,512,1326.337,128,8,F5,,,,,,,,,, +301,26,2,9119,512,1326.337,153,8,D4,,,,,,,,,, +301,27,3,9120,512,1326.337,153,8,B1,,,,,,,,,, +301,28,3,9121,512,1326.337,128,8,F#2,,,,,,,,,, +301,29,4,9122,512,1326.337,51,16,G1,,,,,,,,,, +301,23,4,9116,256,1326.609,,,,,,144,31,0,,,,, +301,30,0,9123,563,1326.609,,,,,,176,64,0,,,,,^ +301,31,4,9124,563,1326.609,102,8,F3,ff,22,144,53,22,,,,, +301,22,3,9115,256,1327.019,,,,,,144,42,0,,,,, +301,31,4,9124,563,1327.152,,,,,,144,53,0,,,,, +301,32,1,9125,665,1327.152,103,8,A#4,ppp,5,144,70,5,,,,, +301,33,1,9126,665,1327.152,128,8,F5,ppp,5,144,77,5,,,,, +301,34,2,9127,665,1327.152,,,,,,176,102,0,,,,, +301,36,3,9128,665,1327.152,103,8,B1,ppp,5,144,35,5,,,,, +301,37,3,9129,665,1327.152,128,8,F#2,ppp,5,144,42,5,,,,, +301,38,4,9130,665,1327.152,,,,,,176,102,0,,,,, +301,35,0,9131,665,1327.152,,,,,,176,64,127,,,,,V +301,8,1,9101,153,1327.152,,,,,,144,70,0,,,,, +301,10,2,9103,153,1327.152,,,,,,144,62,0,,,,, +301,16,4,9109,217,1327.152,,,,,,144,77,0,,,,, +301,21,3,9114,256,1327.152,,,,,,144,35,0,,,,, +301,39,0,9132,768,1327.518,,,,,,,,,,,66,, +301,40,1,9133,768,1327.518,256,4,F#6,fff,24,144,90,23,,,,, +301,41,2,9134,768,1327.518,,,,,,176,102,0,,,,, +301,42,3,9135,768,1327.518,,,,,,176,102,0,,,,, +301,43,4,9136,768,1327.518,,,,,,176,102,0,,,,, +301,32,1,9125,665,1327.701,,,,,,144,70,0,,,,, +301,36,3,9128,665,1327.701,,,,,,144,35,0,,,,, +301,44,3,9137,844,1327.788,77,16,D4,pp,8,144,62,8,,,,, +301,33,1,9126,665,1327.834,,,,,,144,77,0,,,,, +301,37,3,9129,665,1327.834,,,,,,144,42,0,,,,, +301,44,3,9137,844,1328.061,,,,,,144,62,0,,,,, +301,45,3,9138,921,1328.061,13,64,F#2,pp,8,144,42,8,,,,, +301,45,3,9138,921,1328.107,,,,,,144,42,0,,,,, +301,46,3,9139,934,1328.107,26,32,B2,pp,8,144,47,8,,,,, +301,46,3,9139,934,1328.199,,,,,,144,47,0,,,,, +301,47,3,9140,960,1328.199,12,64,F#2,pp,8,144,42,8,,,,, +301,47,3,9140,960,1328.242,,,,,,144,42,0,,,,, +301,48,3,9141,972,1328.242,26,32,B2,pp-,7,144,47,7,,,,, +301,48,3,9141,972,1328.334,,,,,,144,47,0,,,,, +301,49,3,9142,998,1328.334,13,64,F#2,pp-,7,144,42,7,,,,, +301,49,3,9142,998,1328.381,,,,,,144,42,0,,,,, +301,50,3,9143,1011,1328.381,13,64,B2,pp-,7,144,47,7,,,,, +301,50,3,9143,1011,1328.427,,,,,,144,47,0,,,,, +301,51,1,9144,1024,1328.427,256,4,F4,mf,17,144,65,17,,,,, +301,52,2,9145,1024,1328.427,,,,,,176,102,0,,,,, +301,53,3,9146,1024,1328.427,,,,,,176,102,0,,,,, +301,40,1,9133,768,1328.427,,,,,,144,90,0,,,,, +301,54,3,9147,1075,1328.608,13,64,F#2,ppp+,6,144,42,6,,,,, +301,54,3,9147,1075,1328.654,,,,,,144,42,0,,,,, +301,55,3,9148,1088,1328.654,25,32,B2,ppp+,6,144,47,6,,,,, +301,55,3,9148,1088,1328.743,,,,,,144,47,0,,,,, +301,56,3,9149,1113,1328.743,13,64,F#2,ppp+,6,144,42,6,,,,, +301,56,3,9149,1113,1328.789,,,,,,144,42,0,,,,, +301,57,3,9150,1126,1328.789,51,16,B2,ppp+,6,144,47,6,,,,, +301,57,3,9150,1126,1328.97,,,,,,144,47,0,,,,, +301,58,3,9151,1177,1328.97,13,64,F#2,ppp,5,144,42,5,,,,, +301,58,3,9151,1177,1329.016,,,,,,144,42,0,,,,, +301,59,3,9152,1190,1329.016,26,32,B2,ppp,5,144,47,5,,,,, +301,59,3,9152,1190,1329.109,,,,,,144,47,0,,,,, +301,60,3,9153,1216,1329.109,12,64,F#2,ppp,5,144,42,5,,,,, +301,60,3,9153,1216,1329.151,,,,,,144,42,0,,,,, +301,61,3,9154,1228,1329.151,52,16,B2,ppp,5,144,47,5,,,,, +301,51,1,9144,1024,1329.336,,,,,,144,65,0,,,,, +301,61,3,9154,1228,1329.336,,,,,,144,47,0,,,,, +301,62,1,9155,1280,1329.336,,,,,,176,102,0,,,,, +301,63,2,9156,1280,1329.336,,,,,,176,102,0,,,,, +301,64,3,9157,1280,1329.336,,,,,,176,102,0,,,,, +301,65,4,9158,1280,1329.336,128,8,G#1,pp,8,144,32,8,,,,, +301,66,3,9159,1331,1329.517,13,64,F#2,pp,8,144,42,8,,,,, +301,66,3,9159,1331,1329.563,,,,,,144,42,0,,,,, +301,67,3,9160,1344,1329.563,25,32,B2,pp,8,144,47,8,,,,, +301,67,3,9160,1344,1329.652,,,,,,144,47,0,,,,, +301,68,3,9161,1369,1329.652,13,64,F#2,pp,8,144,42,8,,,,, +301,68,3,9161,1369,1329.698,,,,,,144,42,0,,,,, +301,69,0,9162,1382,1329.698,,,,,,176,64,0,,,,,^ +301,70,3,9163,1382,1329.698,26,32,B2,pp,8,144,47,8,,,,, +301,65,4,9158,1280,1329.79,,,,,,144,32,0,,,,, +301,70,3,9163,1382,1329.79,,,,,,144,47,0,,,,, +301,71,0,9164,1408,1329.825,,,,,,,,,,,48,, +301,72,1,9165,1408,1329.825,21,64,E2,p,11,144,40,11,,,,, +301,73,3,9166,1408,1329.825,128,8,C2,ff,22,144,36,22,,,,, +301,74,4,9167,1408,1329.825,,,,,,176,102,0,,,,, +301,72,1,9165,1408,1329.928,,,,,,144,40,0,,,,, +301,75,1,9168,1429,1329.928,21,64,F#5,p-,10,144,78,10,,,,, +301,75,1,9168,1429,1330.03,,,,,,144,78,0,,,,, +301,76,1,9169,1450,1330.03,14,64,C3,pp,8,144,48,8,,,,, +301,76,1,9169,1450,1330.098,,,,,,144,48,0,,,,, +301,77,1,9170,1464,1330.098,15,64,F#5,pp,8,144,78,8,,,,, +301,77,1,9170,1464,1330.172,,,,,,144,78,0,,,,, +301,78,1,9171,1479,1330.172,14,64,G#2,pp-,7,144,44,7,,,,, +301,79,1,9172,1479,1330.172,16,64,C3,pp-,7,144,48,7,,,,, +301,78,1,9171,1479,1330.24,,,,,,144,44,0,,,,, +301,80,1,9173,1493,1330.24,14,64,F4,ppp+,6,144,65,6,,,,, +301,81,1,9174,1493,1330.24,16,64,F#5,ppp+,6,144,78,6,,,,, +301,79,1,9172,1479,1330.25,,,,,,144,48,0,,,,, +301,80,1,9173,1493,1330.308,,,,,,144,65,0,,,,, +301,82,1,9175,1507,1330.308,29,32,G#2,ppp,5,144,44,5,,,,, +301,81,1,9174,1493,1330.318,,,,,,144,78,0,,,,, +301,73,3,9166,1408,1330.45,,,,,,144,36,0,,,,, +301,82,1,9175,1507,1330.45,,,,,,144,44,0,,,,, +302,0,0,9176,0,1330.45,,,,,,,,,302,,,, +302,1,0,9177,0,1330.45,,,,,,,,,,6008,,, +302,2,0,9178,0,1330.45,,,,,,,,,,,80,, +302,3,1,9179,,1330.45,,8,F#4,ppp,5,144,66,5,,,,g, +302,3,1,9179,,1330.5,,,,,,144,66,0,,,,, +302,4,1,9180,0,1330.525,384,4,E1,ppp,5,144,28,5,,,,, +302,5,3,9181,0,1330.525,,,,,,176,102,0,,,,, +302,6,3,9182,,1331.275,,8,C#5,p,11,144,73,11,,,,g, +302,6,3,9182,,1331.325,,,,,,144,73,0,,,,, +302,7,3,9183,,1331.35,,8,A1,p,11,144,33,11,,,,g, +302,7,3,9183,,1331.4,,,,,,144,33,0,,,,, +302,8,3,9184,,1331.425,,8,C#4,p-,10,144,61,10,,,,g, +302,8,3,9184,,1331.475,,,,,,144,61,0,,,,, +302,9,3,9185,,1331.5,,8,A1,p-,10,144,33,10,,,,g, +302,9,3,9185,,1331.55,,,,,,144,33,0,,,,, +302,10,3,9186,,1331.575,,8,C#4,pp,8,144,61,8,,,,g, +302,10,3,9186,,1331.625,,,,,,144,61,0,,,,, +302,4,1,9180,0,1331.65,,,,,,144,28,0,,,,, +302,11,3,9187,256,1331.65,153,8,A1,pp,8,144,33,8,,,,, +302,12,3,9188,256,1331.65,128,8,F#2,pp,8,144,42,8,,,,, +302,13,3,9189,256,1331.65,128,8,C#4,pp,8,144,61,8,,,,, +302,12,3,9188,256,1332.025,,,,,,144,42,0,,,,, +302,13,3,9189,256,1332.025,,,,,,144,61,0,,,,, +302,14,1,9190,384,1332.025,,,,,,176,102,0,,,,, +302,11,3,9187,256,1332.098,,,,,,144,33,0,,,,, +302,15,3,9191,409,1332.098,103,8,A1,ff,22,144,33,22,,,,, +302,16,3,9192,409,1332.098,128,8,F#2,ff,22,144,42,22,,,,, +302,17,3,9193,409,1332.098,128,8,C#4,ff,22,144,61,22,,,,, +302,19,1,9194,,1332.325,,8,D#5,p,11,144,75,11,,,,g, +302,19,1,9194,,1332.375,,,,,,144,75,0,,,,, +302,15,3,9191,409,1332.4,,,,,,144,33,0,,,,, +302,17,3,9193,409,1332.4,,,,,,144,61,0,,,,, +302,20,1,9195,512,1332.4,512,2,B4,p,11,144,71,11,,,,, +302,21,3,9196,512,1332.4,28,32,C#4,ppp,5,144,61,5,,,,, +302,18,0,9197,512,1332.4,,,,,,176,64,127,,,,,V +302,16,3,9192,409,1332.473,,,,,,144,42,0,,,,, +302,21,3,9196,512,1332.482,,,,,,144,61,0,,,,, +302,22,3,9198,540,1332.482,28,32,A1,ppp,5,144,33,5,,,,, +302,22,3,9198,540,1332.564,,,,,,144,33,0,,,,, +302,23,3,9199,568,1332.564,29,32,F#2,ppp,5,144,42,5,,,,, +302,23,3,9199,568,1332.649,,,,,,144,42,0,,,,, +302,24,3,9200,597,1332.649,28,32,C#4,ppp,5,144,61,5,,,,, +302,24,3,9200,597,1332.731,,,,,,144,61,0,,,,, +302,25,3,9201,625,1332.731,29,32,F#2,ppp,5,144,42,5,,,,, +302,25,3,9201,625,1332.816,,,,,,144,42,0,,,,, +302,26,3,9202,654,1332.816,57,16,A1,ppp,5,144,33,5,,,,, +302,26,3,9202,654,1332.983,,,,,,144,33,0,,,,, +302,27,3,9203,711,1332.983,28,32,C#4,ppp,5,144,61,5,,,,, +302,27,3,9203,711,1333.065,,,,,,144,61,0,,,,, +302,28,3,9204,739,1333.065,29,32,F#2,ppp,5,144,42,5,,,,, +302,28,3,9204,739,1333.15,,,,,,144,42,0,,,,, +302,29,3,9205,768,1333.15,28,32,C#4,ppp,5,144,61,5,,,,, +302,29,3,9205,768,1333.232,,,,,,144,61,0,,,,, +302,30,3,9206,796,1333.232,28,32,A1,ppp+,6,144,33,6,,,,, +302,30,3,9206,796,1333.314,,,,,,144,33,0,,,,, +302,31,3,9207,824,1333.314,29,32,F#2,ppp+,6,144,42,6,,,,, +302,31,3,9207,824,1333.399,,,,,,144,42,0,,,,, +302,32,3,9208,853,1333.399,28,32,C#4,ppp+,6,144,61,6,,,,, +302,32,3,9208,853,1333.481,,,,,,144,61,0,,,,, +302,33,3,9209,881,1333.481,29,32,F#2,ppp+,6,144,42,6,,,,, +302,33,3,9209,881,1333.566,,,,,,144,42,0,,,,, +302,34,3,9210,910,1333.566,57,16,A1,ppp+,6,144,33,6,,,,, +302,34,3,9210,910,1333.733,,,,,,144,33,0,,,,, +302,35,3,9211,967,1333.733,28,32,C#4,pp-,7,144,61,7,,,,, +302,35,3,9211,967,1333.815,,,,,,144,61,0,,,,, +302,36,3,9212,995,1333.815,29,32,F#2,pp-,7,144,42,7,,,,, +302,20,1,9195,512,1333.9,,,,,,144,71,0,,,,, +302,36,3,9212,995,1333.9,,,,,,144,42,0,,,,, +303,0,0,9213,0,1333.9,,,,,,,,,303,,,, +303,1,1,9214,0,1333.9,,,,,,176,102,0,,,,, +303,2,3,9215,0,1333.9,28,32,C#4,pp-,7,144,61,7,,,,, +303,2,3,9215,0,1333.982,,,,,,144,61,0,,,,, +303,3,3,9216,28,1333.982,28,32,A1,pp-,7,144,33,7,,,,, +303,3,3,9216,28,1334.064,,,,,,144,33,0,,,,, +303,4,3,9217,56,1334.064,29,32,F#2,pp-,7,144,42,7,,,,, +303,4,3,9217,56,1334.149,,,,,,144,42,0,,,,, +303,5,3,9218,85,1334.149,28,32,C#4,pp,8,144,61,8,,,,, +303,5,3,9218,85,1334.231,,,,,,144,61,0,,,,, +303,6,3,9219,113,1334.231,29,32,F#2,pp,8,144,42,8,,,,, +303,6,3,9219,113,1334.316,,,,,,144,42,0,,,,, +303,7,3,9220,142,1334.316,57,16,A1,pp,8,144,33,8,,,,, +303,7,3,9220,142,1334.483,,,,,,144,33,0,,,,, +303,8,3,9221,199,1334.483,28,32,C#4,pp,8,144,61,8,,,,, +303,8,3,9221,199,1334.565,,,,,,144,61,0,,,,, +303,9,3,9222,227,1334.565,29,32,F#2,pp+,9,144,42,9,,,,, +303,9,3,9222,227,1334.65,,,,,,144,42,0,,,,, +303,10,3,9223,256,1334.65,28,32,C#4,pp+,9,144,61,9,,,,, +303,10,3,9223,256,1334.732,,,,,,144,61,0,,,,, +303,11,3,9224,284,1334.732,28,32,A1,pp+,9,144,33,9,,,,, +303,11,3,9224,284,1334.814,,,,,,144,33,0,,,,, +303,12,3,9225,312,1334.814,29,32,F#2,pp+,9,144,42,9,,,,, +303,12,3,9225,312,1334.899,,,,,,144,42,0,,,,, +303,13,3,9226,341,1334.899,28,32,C#4,pp+,9,144,61,9,,,,, +303,13,3,9226,341,1334.981,,,,,,144,61,0,,,,, +303,14,3,9227,369,1334.981,29,32,F#2,pp+,9,144,42,9,,,,, +303,14,3,9227,369,1335.066,,,,,,144,42,0,,,,, +303,15,3,9228,398,1335.066,57,16,A1,p-,10,144,33,10,,,,, +303,15,3,9228,398,1335.233,,,,,,144,33,0,,,,, +303,16,3,9229,455,1335.233,28,32,C#4,p-,10,144,61,10,,,,, +303,16,3,9229,455,1335.315,,,,,,144,61,0,,,,, +303,17,3,9230,483,1335.315,29,32,F#2,p-,10,144,42,10,,,,, +303,17,3,9230,483,1335.4,,,,,,144,42,0,,,,, +303,18,3,9231,512,1335.4,28,32,C#4,p-,10,144,61,10,,,,, +303,19,1,9232,512,1335.4,,,,,,176,102,0,,,,, +303,18,3,9231,512,1335.482,,,,,,144,61,0,,,,, +303,20,3,9233,540,1335.482,28,32,A1,p-,10,144,33,10,,,,, +303,20,3,9233,540,1335.564,,,,,,144,33,0,,,,, +303,21,3,9234,568,1335.564,29,32,F#2,p-,10,144,42,10,,,,, +303,21,3,9234,568,1335.649,,,,,,144,42,0,,,,, +303,22,3,9235,597,1335.649,99,16,A1,p-,10,144,33,10,,,,, +303,23,0,9236,597,1335.649,,,,,,,,,,,66,, +303,24,1,9237,640,1335.802,28,32,D#5,p,11,144,75,11,,,,, +303,24,1,9237,640,1335.901,,,,,,144,75,0,,,,, +303,25,1,9238,668,1335.901,28,32,B4,p,11,144,71,11,,,,, +303,22,3,9235,597,1335.939,,,,,,144,33,0,,,,, +303,25,1,9238,668,1336.001,,,,,,144,71,0,,,,, +303,27,0,9239,696,1336.001,,,,,,176,64,0,,,,,^ +303,26,3,9240,696,1336.001,43,32,B3,p,11,144,59,11,,,,, +303,28,1,9241,696,1336.001,43,32,D#5,p-,10,144,75,10,,,,, +303,26,3,9240,696,1336.153,,,,,,144,59,0,,,,, +303,28,1,9241,696,1336.153,,,,,,144,75,0,,,,, +303,29,3,9242,739,1336.153,29,32,G3,p-,10,144,55,10,,,,, +303,30,1,9243,739,1336.153,29,32,B4,pp+,9,144,71,9,,,,, +303,29,3,9242,739,1336.256,,,,,,144,55,0,,,,, +303,30,1,9243,739,1336.256,,,,,,144,71,0,,,,, +303,31,3,9244,768,1336.256,,,,,,176,102,0,,,,, +303,32,1,9245,768,1336.256,28,32,D#5,pp+,9,144,75,9,,,,, +303,34,1,9246,796,1336.356,57,16,B4,pp,8,144,71,8,,,,, +303,33,0,9247,796,1336.356,,,,,,176,64,127,,,,,V +303,35,3,9248,824,1336.455,57,16,G3,pp,8,144,55,8,,,,, +303,32,1,9245,768,1336.558,,,,,,144,75,0,,,,, +303,34,1,9246,796,1336.558,,,,,,144,71,0,,,,, +303,36,1,9249,853,1336.558,28,32,D#5,pp-,7,144,75,7,,,,, +303,35,3,9248,824,1336.658,,,,,,144,55,0,,,,, +303,36,1,9249,853,1336.658,,,,,,144,75,0,,,,, +303,37,3,9250,881,1336.658,57,16,G3,pp-,7,144,55,7,,,,, +303,38,1,9251,881,1336.658,29,32,B4,pp-,7,144,71,7,,,,, +303,38,1,9251,881,1336.761,,,,,,144,71,0,,,,, +303,39,1,9252,910,1336.761,28,32,G#5,mp,14,144,80,14,,,,, +303,37,3,9250,881,1336.86,,,,,,144,55,0,,,,, +303,39,1,9252,910,1336.86,,,,,,144,80,0,,,,, +303,40,3,9253,938,1336.86,86,16,G3,mp,14,144,55,14,,,,, +303,41,1,9254,938,1336.86,43,32,D#5,mp-,13,144,75,13,,,,, +303,41,1,9254,938,1337.013,,,,,,144,75,0,,,,, +303,42,1,9255,981,1337.013,43,32,B4,p+,12,144,71,12,,,,, +303,43,1,9256,981,1337.013,32,32,G#5,p+,12,144,80,12,,,,, +303,43,1,9256,981,1337.126,,,,,,144,80,0,,,,, +303,42,1,9255,981,1337.165,,,,,,144,71,0,,,,, +304,0,0,9257,0,1337.165,,,,,,,,,304,,,, +304,1,1,9258,0,1337.165,42,32,B4,p,11,144,71,11,,,,, +304,2,1,9259,0,1337.165,32,32,D#5,p,11,144,75,11,,,,, +304,3,3,9260,0,1337.165,,,,,,176,102,0,,,,, +303,40,3,9253,938,1337.165,,,,,,144,55,0,,,,, +304,2,1,9259,0,1337.279,,,,,,144,75,0,,,,, +304,1,1,9258,0,1337.315,,,,,,144,71,0,,,,, +304,4,1,9261,42,1337.315,,,,,,176,102,0,,,,, +304,5,3,9262,42,1337.315,57,16,G3,mp-,13,144,55,13,,,,, +304,6,1,9263,71,1337.418,57,16,B4,mf,17,144,71,17,,,,, +304,7,1,9264,71,1337.418,64,16,D#5,mf,17,144,75,17,,,,, +304,8,1,9265,71,1337.418,64,16,G#5,mf,17,144,80,17,,,,, +304,5,3,9262,42,1337.517,,,,,,144,55,0,,,,, +304,9,3,9266,99,1337.517,29,32,A2,mf,17,144,45,17,,,,, +304,6,1,9263,71,1337.62,,,,,,144,71,0,,,,, +304,9,3,9266,99,1337.62,,,,,,144,45,0,,,,, +304,10,1,9267,128,1337.62,,,,,,176,102,0,,,,, +304,11,3,9268,128,1337.62,42,32,G3,mf-,16,144,55,16,,,,, +304,7,1,9264,71,1337.645,,,,,,144,75,0,,,,, +304,8,1,9265,71,1337.645,,,,,,144,80,0,,,,, +304,11,3,9268,128,1337.769,,,,,,144,55,0,,,,, +304,12,1,9269,170,1337.769,57,16,B4,p,11,144,71,11,,,,, +304,13,1,9270,170,1337.769,64,16,D#5,p,11,144,75,11,,,,, +304,14,3,9271,170,1337.769,29,32,A2,mp,14,144,45,14,,,,, +304,14,3,9271,170,1337.872,,,,,,144,45,0,,,,, +304,15,3,9272,199,1337.872,57,16,G3,mp-,13,144,55,13,,,,, +304,12,1,9269,170,1337.971,,,,,,144,71,0,,,,, +304,16,1,9273,227,1337.971,29,32,G#6,pp-,7,144,92,7,,,,, +304,13,1,9270,170,1337.996,,,,,,144,75,0,,,,, +304,15,3,9272,199,1338.074,,,,,,144,55,0,,,,, +304,16,1,9273,227,1338.074,,,,,,144,92,0,,,,, +304,17,1,9274,256,1338.074,42,32,D#4,p,11,144,63,11,,,,, +304,18,3,9275,256,1338.074,,,,,,176,102,0,,,,, +304,17,1,9274,256,1338.224,,,,,,144,63,0,,,,, +304,19,1,9276,298,1338.224,43,32,G#5,p-,10,144,80,10,,,,, +304,19,1,9276,298,1338.376,,,,,,144,80,0,,,,, +304,20,1,9277,341,1338.376,43,32,B3,pp,8,144,59,8,,,,, +304,20,1,9277,341,1338.529,,,,,,144,59,0,,,,, +304,21,1,9278,384,1338.529,,,,,,176,102,0,,,,, +304,22,3,9279,384,1338.529,18,64,G2,mp,14,144,43,14,,,,, +304,22,3,9279,384,1338.593,,,,,,144,43,0,,,,, +304,23,3,9280,402,1338.593,18,64,D#3,mf,17,144,51,17,,,,, +304,23,3,9280,402,1338.657,,,,,,144,51,0,,,,, +304,24,3,9281,420,1338.657,18,64,B2,f-,19,144,47,19,,,,, +304,24,3,9281,420,1338.721,,,,,,144,47,0,,,,, +304,25,3,9282,438,1338.721,19,64,G#4,ff,22,144,68,22,,,,, +304,26,3,9283,438,1338.721,16,64,B4,ff,22,144,71,22,,,,, +304,27,3,9284,438,1338.721,16,64,D#5,ff,22,144,75,22,,,,, +304,28,3,9285,438,1338.721,16,64,G#5,ff,22,144,80,22,,,,, +304,26,3,9283,438,1338.778,,,,,,144,71,0,,,,, +304,27,3,9284,438,1338.778,,,,,,144,75,0,,,,, +304,28,3,9285,438,1338.778,,,,,,144,80,0,,,,, +304,25,3,9282,438,1338.788,,,,,,144,68,0,,,,, +304,29,3,9286,457,1338.788,18,64,A1,ff,22,144,33,22,,,,, +304,30,3,9287,457,1338.788,16,64,G2,ff,22,144,43,22,,,,, +304,31,1,9288,469,1338.831,,,,,,176,102,0,,,,, +304,30,3,9287,457,1338.845,,,,,,144,43,0,,,,, +304,29,3,9286,457,1338.852,,,,,,144,33,0,,,,, +304,32,3,9289,475,1338.852,18,64,D#4,ff,22,144,63,22,,,,, +304,32,3,9289,475,1338.916,,,,,,144,63,0,,,,, +304,33,3,9290,493,1338.916,19,64,B3,f+,21,144,59,21,,,,, +304,33,3,9290,493,1338.984,,,,,,144,59,0,,,,, +304,34,1,9291,512,1338.984,,,,,,176,102,0,,,,, +304,35,3,9292,512,1338.984,42,32,G2,f-,19,144,43,19,,,,, +304,35,3,9292,512,1339.133,,,,,,144,43,0,,,,, +304,36,3,9293,554,1339.133,29,32,A1,mf-,16,144,33,16,,,,, +304,36,3,9293,554,1339.236,,,,,,144,33,0,,,,, +304,37,3,9294,583,1339.236,42,32,G2,mp-,13,144,43,13,,,,, +304,38,3,9295,583,1339.236,32,32,B3,mp-,13,144,59,13,,,,, +304,39,3,9296,583,1339.236,32,32,D#4,mp-,13,144,63,13,,,,, +304,38,3,9295,583,1339.349,,,,,,144,59,0,,,,, +304,39,3,9296,583,1339.349,,,,,,144,63,0,,,,, +304,37,3,9294,583,1339.385,,,,,,144,43,0,,,,, +304,40,3,9297,625,1339.385,29,32,A0,p-,10,144,21,10,,,,, +304,40,3,9297,625,1339.488,,,,,,144,21,0,,,,, +304,41,3,9298,654,1339.488,28,32,G3,pp-,7,144,55,7,,,,, +304,42,3,9299,654,1339.488,32,32,G#4,pp-,7,144,68,7,,,,, +304,43,0,9300,654,1339.488,,,,,,,,,,6009,,, +304,41,3,9298,654,1339.587,,,,,,144,55,0,,,,, +304,44,0,9301,682,1339.587,,,,,,176,64,0,,,,,^ +304,45,3,9302,682,1339.587,86,16,A0,ppp,5,144,21,5,,,,, +304,42,3,9299,654,1339.601,,,,,,144,68,0,,,,, +304,46,0,9303,768,1340.007,,,,,,,,,,,48,, +304,47,1,9304,768,1340.007,64,16,A1,p,11,144,33,11,,,,, +304,48,1,9305,768,1340.007,64,16,F#2,p,11,144,42,11,,,,, +304,49,1,9306,768,1340.007,64,16,F3,p,11,144,53,11,,,,, +304,50,1,9307,768,1340.007,64,16,C#4,p,11,144,61,11,,,,, +304,51,3,9308,768,1340.007,256,4,A0,,,,,,,,,, +304,47,1,9304,768,1340.32,,,,,,144,33,0,,,,, +304,48,1,9305,768,1340.32,,,,,,144,42,0,,,,, +304,49,1,9306,768,1340.32,,,,,,144,53,0,,,,, +304,50,1,9307,768,1340.32,,,,,,144,61,0,,,,, +304,52,1,9309,832,1340.32,192,8,G1,p-,10,144,31,10,,,,, +304,53,1,9310,832,1340.32,128,8,A1,p-,10,144,33,10,,,,, +304,54,1,9311,832,1340.32,128,8,F#2,p-,10,144,42,10,,,,, +304,55,1,9312,832,1340.32,128,8,F3,p-,10,144,53,10,,,,, +304,56,1,9313,832,1340.32,128,8,C#4,p-,10,144,61,10,,,,, +304,54,1,9311,832,1340.945,,,,,,144,42,0,,,,, +304,55,1,9312,832,1340.945,,,,,,144,53,0,,,,, +304,56,1,9313,832,1340.945,,,,,,144,61,0,,,,, +305,0,0,9314,0,1341.257,,,,,,,,,305,,,, +305,1,0,9315,0,1341.257,,,,,,,,,,,66,, +305,2,1,9316,0,1341.257,128,8,E1,pp,8,144,28,8,,,,, +305,3,1,9317,0,1341.257,128,8,G1,,,,,,,,,, +305,4,1,9318,0,1341.257,128,8,A1,,,,,,,,,, +305,5,3,9319,0,1341.257,1024,1,A0,,,,,,,,,, +304,53,1,9310,832,1341.474,,,,,,144,33,0,,,,, +305,6,1,9320,,1341.637,,8,F#4,pp,8,144,66,8,,,,g, +305,6,1,9320,,1341.687,,,,,,144,66,0,,,,, +305,2,1,9316,0,1341.712,,,,,,144,28,0,,,,, +305,7,1,9321,128,1341.712,128,8,C3,pp,8,144,48,8,,,,, +304,52,1,9309,832,1341.787,,,,,,144,31,0,,,,, +305,7,1,9321,128,1342.166,,,,,,144,48,0,,,,, +305,8,1,9322,256,1342.166,,,,,,176,102,0,,,,, +305,9,0,9323,334,1342.443,,,,,,176,64,127,,,,,V +305,10,1,9324,,1342.62,,8,F#1,mf,17,144,30,17,,,,g, +305,10,1,9324,,1342.67,,,,,,144,30,0,,,,, +305,11,1,9325,,1342.695,,8,A#4,mf,17,144,70,17,,,,g, +305,11,1,9325,,1342.745,,,,,,144,70,0,,,,, +305,12,1,9326,426,1342.77,86,8,D3,mf,17,144,50,17,,,,, +305,13,0,9327,471,1342.872,,,,,,176,64,0,,,,,^ +305,12,1,9326,426,1343.075,,,,,,144,50,0,,,,, +305,14,1,9328,512,1343.075,28,32,F#1,mf,17,144,30,17,,,,, +305,15,0,9329,523,1343.172,,,,,,176,64,127,,,,,V +305,14,1,9328,512,1343.175,,,,,,144,30,0,,,,, +305,16,1,9330,540,1343.175,43,32,A#4,p,11,144,70,11,,,,, +305,16,1,9330,540,1343.327,,,,,,144,70,0,,,,, +305,17,1,9331,583,1343.327,28,32,F#2,p+,12,144,42,12,,,,, +305,18,1,9332,583,1343.327,32,32,D3,p+,12,144,50,12,,,,, +305,17,1,9331,583,1343.427,,,,,,144,42,0,,,,, +305,19,1,9333,611,1343.427,43,32,A#3,mp-,13,144,58,13,,,,, +305,18,1,9332,583,1343.441,,,,,,144,50,0,,,,, +305,19,1,9333,611,1343.58,,,,,,144,58,0,,,,, +305,20,1,9334,654,1343.58,42,32,D3,mp+,15,144,50,15,,,,, +305,20,1,9334,654,1343.729,,,,,,144,50,0,,,,, +305,21,1,9335,696,1343.729,29,32,D3,mf-,16,144,50,16,,,,, +305,22,1,9336,696,1343.729,32,32,G5,mf-,16,144,79,16,,,,, +305,21,1,9335,696,1343.832,,,,,,144,50,0,,,,, +305,23,1,9337,725,1343.832,43,32,G#3,mf,17,144,56,17,,,,, +305,22,1,9336,696,1343.842,,,,,,144,79,0,,,,, +305,23,1,9337,725,1343.984,,,,,,144,56,0,,,,, +305,24,1,9338,768,1343.984,42,32,D3,mf+,18,144,50,18,,,,, +305,25,1,9339,768,1343.984,32,32,A#3,mf+,18,144,58,18,,,,, +305,25,1,9339,768,1344.098,,,,,,144,58,0,,,,, +305,24,1,9338,768,1344.134,,,,,,144,50,0,,,,, +305,26,1,9340,810,1344.134,29,32,G6,f-,19,144,91,19,,,,, +305,26,1,9340,810,1344.237,,,,,,144,91,0,,,,, +305,27,1,9341,839,1344.237,42,32,D3,f,20,144,50,20,,,,, +305,28,1,9342,839,1344.237,32,32,G#3,f,20,144,56,20,,,,, +305,29,1,9343,839,1344.237,32,32,A#3,f,20,144,58,20,,,,, +305,30,0,9344,839,1344.237,,,,,,,,,,,48,, +305,28,1,9342,839,1344.35,,,,,,144,56,0,,,,, +305,29,1,9343,839,1344.35,,,,,,144,58,0,,,,, +305,27,1,9341,839,1344.386,,,,,,144,50,0,,,,, +305,31,1,9345,881,1344.442,57,16,G7,ff,22,144,103,22,,,,, +305,31,1,9345,881,1344.72,,,,,,144,103,0,,,,, +305,32,1,9346,938,1344.72,,,,,,176,102,0,,,,, +304,45,3,9302,682,1344.854,,,,,,144,21,0,,,,, +305,33,0,9347,1023,1345.025,,,,,,176,64,0,,,,,^ +306,0,0,9348,0,1345.14,,,,,,,,,306,,,, +306,1,0,9349,0,1345.14,,,,,,,,,,6010,,, +306,2,0,9350,0,1345.14,,,,,,,,,,,80,, +306,4,1,9351,0,1345.14,28,32,C#6,ppp,5,144,85,5,,,,, +306,5,3,9352,,1345.14,,8,C3,pp,8,144,48,8,,,,g, +306,5,3,9352,,1345.19,,,,,,144,48,0,,,,, +306,6,3,9353,0,1345.215,512,2,C4,pp,8,144,60,8,,,,, +306,4,1,9351,0,1345.222,,,,,,144,85,0,,,,, +306,7,1,9354,28,1345.297,28,32,F#4,ppp,5,144,66,5,,,,, +306,3,0,9355,0,1345.325,,,,,,176,64,127,,,,,V +306,8,1,9356,56,1345.379,29,32,A3,ppp,5,144,57,5,,,,, +306,8,1,9356,56,1345.464,,,,,,144,57,0,,,,, +306,9,1,9357,85,1345.464,28,32,C#6,ppp,5,144,85,5,,,,, +306,7,1,9354,28,1345.529,,,,,,144,66,0,,,,, +306,9,1,9357,85,1345.546,,,,,,144,85,0,,,,, +306,10,1,9358,113,1345.546,29,32,F#4,ppp,5,144,66,5,,,,, +306,10,1,9358,113,1345.631,,,,,,144,66,0,,,,, +306,11,1,9359,142,1345.631,57,16,A3,ppp,5,144,57,5,,,,, +306,11,1,9359,142,1345.798,,,,,,144,57,0,,,,, +306,12,1,9360,199,1345.798,28,32,C#6,ppp,5,144,85,5,,,,, +306,13,1,9361,227,1345.88,29,32,F#4,ppp,5,144,66,5,,,,, +306,12,1,9360,199,1345.965,,,,,,144,85,0,,,,, +306,13,1,9361,227,1345.965,,,,,,144,66,0,,,,, +306,14,1,9362,256,1345.965,28,32,C#6,ppp,5,144,85,5,,,,, +306,15,1,9363,284,1346.047,28,32,F#4,ppp,5,144,66,5,,,,, +306,15,1,9363,284,1346.129,,,,,,144,66,0,,,,, +306,16,1,9364,312,1346.129,29,32,A3,ppp,5,144,57,5,,,,, +306,14,1,9362,256,1346.214,,,,,,144,85,0,,,,, +306,16,1,9364,312,1346.214,,,,,,144,57,0,,,,, +306,17,1,9365,341,1346.214,28,32,C#6,ppp,5,144,85,5,,,,, +306,18,1,9366,369,1346.296,29,32,F#4,ppp,5,144,66,5,,,,, +306,18,1,9366,369,1346.381,,,,,,144,66,0,,,,, +306,19,1,9367,398,1346.381,57,16,A3,ppp,5,144,57,5,,,,, +306,17,1,9365,341,1346.548,,,,,,144,85,0,,,,, +306,19,1,9367,398,1346.548,,,,,,144,57,0,,,,, +306,20,1,9368,455,1346.548,28,32,C#6,ppp,5,144,85,5,,,,, +306,20,1,9368,455,1346.63,,,,,,144,85,0,,,,, +306,21,1,9369,483,1346.63,29,32,F#4,ppp,5,144,66,5,,,,, +306,6,3,9353,0,1346.715,,,,,,144,60,0,,,,, +306,21,1,9369,483,1346.715,,,,,,144,66,0,,,,, +306,22,1,9370,512,1346.715,28,32,C#6,ppp,5,144,85,5,,,,, +306,23,3,9371,512,1346.715,512,2,C4,pp,8,144,60,8,,,,, +306,24,3,9372,512,1346.715,512,2,F4,pp,8,144,65,8,,,,, +306,22,1,9370,512,1346.797,,,,,,144,85,0,,,,, +306,25,1,9373,540,1346.797,28,32,F#4,ppp,5,144,66,5,,,,, +306,25,1,9373,540,1346.879,,,,,,144,66,0,,,,, +306,26,1,9374,568,1346.879,29,32,A3,ppp,5,144,57,5,,,,, +306,26,1,9374,568,1346.964,,,,,,144,57,0,,,,, +306,27,1,9375,597,1346.964,28,32,C#6,ppp,5,144,85,5,,,,, +306,27,1,9375,597,1347.046,,,,,,144,85,0,,,,, +306,28,1,9376,625,1347.046,29,32,F#4,ppp,5,144,66,5,,,,, +306,28,1,9376,625,1347.131,,,,,,144,66,0,,,,, +306,29,1,9377,654,1347.131,57,16,A3,ppp,5,144,57,5,,,,, +306,29,1,9377,654,1347.298,,,,,,144,57,0,,,,, +306,30,1,9378,711,1347.298,28,32,C#6,ppp,5,144,85,5,,,,, +306,30,1,9378,711,1347.38,,,,,,144,85,0,,,,, +306,31,1,9379,739,1347.38,29,32,F#4,ppp,5,144,66,5,,,,, +306,31,1,9379,739,1347.465,,,,,,144,66,0,,,,, +306,32,1,9380,768,1347.465,28,32,C#6,ppp,5,144,85,5,,,,, +306,32,1,9380,768,1347.547,,,,,,144,85,0,,,,, +306,33,1,9381,796,1347.547,28,32,F#4,ppp,5,144,66,5,,,,, +306,33,1,9381,796,1347.629,,,,,,144,66,0,,,,, +306,34,1,9382,824,1347.629,29,32,A3,ppp,5,144,57,5,,,,, +306,34,1,9382,824,1347.714,,,,,,144,57,0,,,,, +306,35,1,9383,853,1347.714,28,32,C#6,ppp,5,144,85,5,,,,, +306,35,1,9383,853,1347.796,,,,,,144,85,0,,,,, +306,36,1,9384,881,1347.796,29,32,F#4,ppp,5,144,66,5,,,,, +306,36,1,9384,881,1347.881,,,,,,144,66,0,,,,, +306,37,1,9385,910,1347.881,57,16,A3,ppp,5,144,57,5,,,,, +306,37,1,9385,910,1348.048,,,,,,144,57,0,,,,, +306,38,1,9386,967,1348.048,28,32,C#6,ppp,5,144,85,5,,,,, +306,38,1,9386,967,1348.13,,,,,,144,85,0,,,,, +306,39,1,9387,995,1348.13,29,32,F#4,ppp,5,144,66,5,,,,, +306,23,3,9371,512,1348.215,,,,,,144,60,0,,,,, +306,24,3,9372,512,1348.215,,,,,,144,65,0,,,,, +306,39,1,9387,995,1348.215,,,,,,144,66,0,,,,, +307,0,0,9388,0,1348.215,,,,,,,,,307,,,, +307,1,1,9389,0,1348.215,28,32,C#6,ppp,5,144,85,5,,,,, +307,2,3,9390,0,1348.215,170,4,C4,p,11,144,60,11,,,,, +307,3,3,9391,0,1348.215,256,4,F4,p,11,144,65,11,,,,, +307,1,1,9389,0,1348.297,,,,,,144,85,0,,,,, +307,4,1,9392,28,1348.297,28,32,F#4,ppp,5,144,66,5,,,,, +307,4,1,9392,28,1348.379,,,,,,144,66,0,,,,, +307,5,1,9393,56,1348.379,29,32,A3,ppp,5,144,57,5,,,,, +307,5,1,9393,56,1348.464,,,,,,144,57,0,,,,, +307,6,1,9394,85,1348.464,28,32,C#6,ppp,5,144,85,5,,,,, +307,6,1,9394,85,1348.546,,,,,,144,85,0,,,,, +307,7,1,9395,113,1348.546,29,32,F#4,ppp,5,144,66,5,,,,, +307,7,1,9395,113,1348.631,,,,,,144,66,0,,,,, +307,8,1,9396,142,1348.631,57,16,A3,ppp,5,144,57,5,,,,, +307,2,3,9390,0,1348.713,,,,,,144,60,0,,,,, +307,9,3,9397,170,1348.713,86,8,G#3,p+,12,144,56,12,,,,, +307,8,1,9396,142,1348.798,,,,,,144,57,0,,,,, +307,10,1,9398,199,1348.798,28,32,C#6,ppp,5,144,85,5,,,,, +307,10,1,9398,199,1348.88,,,,,,144,85,0,,,,, +307,11,1,9399,227,1348.88,29,32,F#4,ppp,5,144,66,5,,,,, +307,3,3,9391,0,1348.965,,,,,,144,65,0,,,,, +307,11,1,9399,227,1348.965,,,,,,144,66,0,,,,, +307,12,1,9400,256,1348.965,28,32,C#6,ppp,5,144,85,5,,,,, +307,13,3,9401,256,1348.965,170,4,G#3,,,,,,,,,, +307,12,1,9400,256,1349.047,,,,,,144,85,0,,,,, +307,14,1,9402,284,1349.047,28,32,F#4,ppp,5,144,66,5,,,,, +307,14,1,9402,284,1349.129,,,,,,144,66,0,,,,, +307,15,1,9403,312,1349.129,29,32,A3,ppp,5,144,57,5,,,,, +307,15,1,9403,312,1349.214,,,,,,144,57,0,,,,, +307,16,1,9404,341,1349.214,114,8,F5,ppp,5,144,77,5,,,,, +307,9,3,9397,170,1349.463,,,,,,144,56,0,,,,, +307,17,3,9405,426,1349.463,86,8,G#3,mf,17,144,56,17,,,,, +307,18,3,9406,426,1349.463,128,8,C4,mf,17,144,60,17,,,,, +307,19,3,9407,426,1349.463,128,8,F4,mf,17,144,65,17,,,,, +307,21,0,9408,455,1349.481,,,,,,176,64,0,,,,,^ +307,16,1,9404,341,1349.548,,,,,,144,77,0,,,,, +307,20,1,9409,455,1349.548,57,16,G3,ppp,5,144,55,5,,,,, +307,17,3,9405,426,1349.715,,,,,,144,56,0,,,,, +307,20,1,9409,455,1349.715,,,,,,144,55,0,,,,, +307,22,1,9410,512,1349.715,28,32,F#3,ppp,5,144,54,5,,,,, +307,24,3,9411,512,1349.715,,,,,,176,102,0,,,,, +307,23,0,9412,512,1349.781,,,,,,176,64,127,,,,,V +307,22,1,9410,512,1349.797,,,,,,144,54,0,,,,, +307,25,1,9413,540,1349.797,28,32,D4,ppp,5,144,62,5,,,,, +307,18,3,9406,426,1349.838,,,,,,144,60,0,,,,, +307,19,3,9407,426,1349.838,,,,,,144,65,0,,,,, +307,25,1,9413,540,1349.879,,,,,,144,62,0,,,,, +307,26,1,9414,568,1349.879,29,32,A#5,ppp+,6,144,82,6,,,,, +307,26,1,9414,568,1349.964,,,,,,144,82,0,,,,, +307,27,1,9415,597,1349.964,28,32,F#3,ppp+,6,144,54,6,,,,, +307,27,1,9415,597,1350.046,,,,,,144,54,0,,,,, +307,28,1,9416,625,1350.046,29,32,D4,pp-,7,144,62,7,,,,, +307,28,1,9416,625,1350.131,,,,,,144,62,0,,,,, +307,29,1,9417,654,1350.131,28,32,A#5,pp,8,144,82,8,,,,, +307,29,1,9417,654,1350.213,,,,,,144,82,0,,,,, +307,30,1,9418,682,1350.213,29,32,G#5,pp,8,144,80,8,,,,, +307,30,1,9418,682,1350.298,,,,,,144,80,0,,,,, +307,31,1,9419,711,1350.298,28,32,F#3,pp+,9,144,54,9,,,,, +307,32,1,9420,711,1350.298,32,32,D4,pp+,9,144,62,9,,,,, +307,31,1,9419,711,1350.38,,,,,,144,54,0,,,,, +307,33,1,9421,739,1350.38,29,32,G#4,mp-,13,144,68,13,,,,, +307,32,1,9420,711,1350.392,,,,,,144,62,0,,,,, +307,33,1,9421,739,1350.465,,,,,,144,68,0,,,,, +307,34,1,9422,768,1350.465,28,32,F#3,mf,17,144,54,17,,,,, +307,35,1,9423,768,1350.465,32,32,D4,mf,17,144,62,17,,,,, +307,34,1,9422,768,1350.547,,,,,,144,54,0,,,,, +307,36,1,9424,796,1350.547,28,32,A#5,pp,8,144,82,8,,,,, +307,35,1,9423,768,1350.559,,,,,,144,62,0,,,,, +307,36,1,9424,796,1350.629,,,,,,144,82,0,,,,, +307,37,1,9425,824,1350.629,29,32,G#4,pp+,9,144,68,9,,,,, +307,37,1,9425,824,1350.714,,,,,,144,68,0,,,,, +307,38,1,9426,853,1350.714,28,32,D3,pp+,9,144,50,9,,,,, +307,38,1,9426,853,1350.796,,,,,,144,50,0,,,,, +307,39,1,9427,881,1350.796,43,32,F#2,p-,10,144,42,10,,,,, +307,39,1,9427,881,1350.922,,,,,,144,42,0,,,,, +307,40,1,9428,924,1350.922,43,32,G#4,p,11,144,68,11,,,,, +307,40,1,9428,924,1351.048,,,,,,144,68,0,,,,, +307,41,1,9429,967,1351.048,28,32,F#2,f,20,144,42,20,,,,, +307,42,1,9430,967,1351.048,32,32,D3,f,20,144,50,20,,,,, +307,41,1,9429,967,1351.13,,,,,,144,42,0,,,,, +307,43,1,9431,995,1351.13,29,32,A#5,p,11,144,82,11,,,,, +307,42,1,9430,967,1351.142,,,,,,144,50,0,,,,, +307,43,1,9431,995,1351.215,,,,,,144,82,0,,,,, +308,0,0,9432,0,1351.215,,,,,,,,,308,,,, +308,1,1,9433,0,1351.215,28,32,G#5,p+,12,144,80,12,,,,, +308,2,3,9434,0,1351.215,256,4,C#5,p+,12,144,73,12,,,,, +308,1,1,9433,0,1351.297,,,,,,144,80,0,,,,, +308,3,1,9435,28,1351.297,28,32,G6,p+,12,144,91,12,,,,, +308,3,1,9435,28,1351.379,,,,,,144,91,0,,,,, +308,4,1,9436,56,1351.379,29,32,D4,mp-,13,144,62,13,,,,, +308,4,1,9436,56,1351.464,,,,,,144,62,0,,,,, +308,5,1,9437,85,1351.464,43,32,G#5,mp-,13,144,80,13,,,,, +308,5,1,9437,85,1351.59,,,,,,144,80,0,,,,, +308,6,1,9438,128,1351.59,42,32,D5,mp,14,144,74,14,,,,, +308,6,1,9438,128,1351.713,,,,,,144,74,0,,,,, +308,7,1,9439,170,1351.713,29,32,G#5,mp+,15,144,80,15,,,,, +308,8,1,9440,170,1351.713,32,32,G6,mp+,15,144,91,15,,,,, +308,7,1,9439,170,1351.798,,,,,,144,80,0,,,,, +308,9,1,9441,199,1351.798,28,32,D3,p,11,144,50,11,,,,, +308,8,1,9440,170,1351.807,,,,,,144,91,0,,,,, +308,9,1,9441,199,1351.88,,,,,,144,50,0,,,,, +308,10,1,9442,227,1351.88,29,32,F#2,p+,12,144,42,12,,,,, +308,10,1,9442,227,1351.965,,,,,,144,42,0,,,,, +308,11,1,9443,256,1351.965,28,32,D3,p+,12,144,50,12,,,,, +308,12,3,9444,256,1351.965,512,2,C#5,,,,,,,,,, +308,13,3,9445,256,1351.965,512,2,D5,p+,12,144,74,12,,,,, +308,11,1,9443,256,1352.047,,,,,,144,50,0,,,,, +308,14,1,9446,284,1352.047,,,,,,176,102,0,,,,, +308,15,1,9447,312,1352.129,29,32,A#5,mp,14,144,82,14,,,,, +308,15,1,9447,312,1352.214,,,,,,144,82,0,,,,, +308,16,1,9448,341,1352.214,28,32,G#4,mp,14,144,68,14,,,,, +308,16,1,9448,341,1352.296,,,,,,144,68,0,,,,, +308,17,1,9449,369,1352.296,43,32,A#5,mp+,15,144,82,15,,,,, +308,17,1,9449,369,1352.422,,,,,,144,82,0,,,,, +308,18,1,9450,412,1352.422,43,32,F#1,mf-,16,144,30,16,,,,, +308,18,1,9450,412,1352.548,,,,,,144,30,0,,,,, +308,19,1,9451,455,1352.548,28,32,G#5,mf,17,144,80,17,,,,, +308,19,1,9451,455,1352.63,,,,,,144,80,0,,,,, +308,20,1,9452,483,1352.63,29,32,A#6,mf+,18,144,94,18,,,,, +308,20,1,9452,483,1352.715,,,,,,144,94,0,,,,, +308,21,1,9453,512,1352.715,28,32,G#5,f-,19,144,80,19,,,,, +308,21,1,9453,512,1352.797,,,,,,144,80,0,,,,, +308,22,1,9454,540,1352.797,28,32,G7,f-,19,144,103,19,,,,, +308,22,1,9454,540,1352.879,,,,,,144,103,0,,,,, +308,23,1,9455,568,1352.879,29,32,F#3,f,20,144,54,20,,,,, +308,24,1,9456,568,1352.879,32,32,D4,f,20,144,62,20,,,,, +308,23,1,9455,568,1352.964,,,,,,144,54,0,,,,, +308,25,1,9457,597,1352.964,43,32,G#4,p,11,144,68,11,,,,, +308,24,1,9456,568,1352.973,,,,,,144,62,0,,,,, +308,25,1,9457,597,1353.09,,,,,,144,68,0,,,,, +308,26,1,9458,640,1353.09,42,32,D4,p+,12,144,62,12,,,,, +308,26,1,9458,640,1353.213,,,,,,144,62,0,,,,, +308,27,1,9459,682,1353.213,29,32,G7,p+,12,144,103,12,,,,, +308,27,1,9459,682,1353.298,,,,,,144,103,0,,,,, +308,28,1,9460,711,1353.298,28,32,A#5,mp-,13,144,82,13,,,,, +308,28,1,9460,711,1353.38,,,,,,144,82,0,,,,, +308,29,1,9461,739,1353.38,29,32,G#4,mp-,13,144,68,13,,,,, +308,2,3,9434,0,1353.465,,,,,,144,73,0,,,,, +308,13,3,9445,256,1353.465,,,,,,144,74,0,,,,, +308,29,1,9461,739,1353.465,,,,,,144,68,0,,,,, +308,30,1,9462,768,1353.465,42,32,F#2,mp-,13,144,42,13,,,,, +308,31,0,9463,768,1353.465,,,,,,,,,,,48,, +308,32,3,9464,,1353.465,,8,E2,p,11,144,40,11,,,,g, +308,32,3,9464,,1353.515,,,,,,144,40,0,,,,, +308,33,3,9465,768,1353.54,128,8,F#5,p,11,144,78,11,,,,, +308,30,1,9462,768,1353.588,,,,,,144,42,0,,,,, +308,34,1,9466,810,1353.745,43,32,G#5,mp+,15,144,80,15,,,,, +308,34,1,9466,810,1353.955,,,,,,144,80,0,,,,, +308,35,1,9467,853,1353.955,28,32,F#2,mf-,16,144,42,16,,,,, +308,36,1,9468,853,1353.955,32,32,D3,mf-,16,144,50,16,,,,, +308,35,1,9467,853,1354.092,,,,,,144,42,0,,,,, +308,37,1,9469,881,1354.092,29,32,G#5,mf-,16,144,80,16,,,,, +308,38,1,9470,881,1354.092,32,32,A#5,mf-,16,144,82,16,,,,, +308,36,1,9468,853,1354.111,,,,,,144,50,0,,,,, +308,33,3,9465,768,1354.165,,,,,,144,78,0,,,,, +308,39,3,9471,896,1354.165,42,16,F4,mp,14,144,65,14,,,,, +308,40,3,9472,896,1354.165,64,16,F#5,mp,14,144,78,14,,,,, +308,37,1,9469,881,1354.233,,,,,,144,80,0,,,,, +308,41,1,9473,910,1354.233,57,16,G6,mf,17,144,91,17,,,,, +308,38,1,9470,881,1354.248,,,,,,144,82,0,,,,, +308,39,3,9471,896,1354.37,,,,,,144,65,0,,,,, +308,40,3,9472,896,1354.37,,,,,,144,78,0,,,,, +308,42,0,9474,938,1354.37,,,,,,176,64,0,,,,,^ +308,43,3,9475,938,1354.37,43,16,C2,ff,22,144,36,22,,,,, +308,44,3,9476,938,1354.37,64,16,F2,ff,22,144,41,22,,,,, +308,45,3,9477,938,1354.37,64,16,F#5,f,20,144,78,20,,,,, +308,41,1,9473,910,1354.512,,,,,,144,91,0,,,,, +308,46,1,9478,967,1354.512,,,,,,176,102,0,,,,, +308,43,3,9475,938,1354.58,,,,,,144,36,0,,,,, +308,44,3,9476,938,1354.58,,,,,,144,41,0,,,,, +308,47,3,9479,981,1354.58,43,16,G#1,p,11,144,32,11,,,,, +308,48,3,9480,981,1354.58,64,16,C2,p,11,144,36,11,,,,, +308,49,3,9481,981,1354.58,64,16,F2,p,11,144,41,11,,,,, +308,50,3,9482,981,1354.58,64,16,F#4,p,11,144,66,11,,,,, +308,45,3,9477,938,1354.682,,,,,,144,78,0,,,,, +308,47,3,9479,981,1354.79,,,,,,144,32,0,,,,, +309,0,0,9483,0,1354.79,,,,,,,,,309,,,, +309,1,0,9484,0,1354.79,,,,,,,,,,,69,, +309,3,1,9485,0,1354.79,76,16,D5,pp,8,144,74,8,,,,, +309,4,3,9486,0,1354.79,,,,,,176,102,0,,,,, +309,2,0,9487,0,1354.79,,,,,,176,64,127,,,,,V +308,48,3,9480,981,1354.967,,,,,,144,36,0,,,,, +308,49,3,9481,981,1354.967,,,,,,144,41,0,,,,, +308,50,3,9482,981,1354.967,,,,,,144,66,0,,,,, +309,5,1,9488,76,1355.048,26,32,F#2,pp+,9,144,42,9,,,,, +309,3,1,9485,0,1355.123,,,,,,144,74,0,,,,, +309,5,1,9488,76,1355.136,,,,,,144,42,0,,,,, +309,6,1,9489,102,1355.136,51,16,A#1,p-,10,144,34,10,,,,, +309,6,1,9489,102,1355.31,,,,,,144,34,0,,,,, +309,7,1,9490,153,1355.31,51,16,D5,p,11,144,74,11,,,,, +309,8,0,9491,204,1355.421,,,,,,176,64,0,,,,,^ +309,7,1,9490,153,1355.483,,,,,,144,74,0,,,,, +309,9,1,9492,204,1355.483,52,16,F#2,p+,12,144,42,12,,,,, +309,11,1,9493,256,1355.659,,,,,,176,102,0,,,,, +309,12,3,9494,256,1355.659,54,32,D6,mp-,13,144,86,13,,,,, +309,10,0,9495,256,1355.721,,,,,,176,64,127,,,,,V +309,9,1,9492,204,1355.843,,,,,,144,42,0,,,,, +309,12,3,9494,256,1355.843,,,,,,144,86,0,,,,, +309,13,3,9496,310,1355.843,37,32,F#2,mp,14,144,42,14,,,,, +309,14,3,9497,347,1355.969,37,32,A#1,mp+,15,144,34,15,,,,, +309,13,3,9496,310,1356.034,,,,,,144,42,0,,,,, +309,14,3,9497,347,1356.094,,,,,,144,34,0,,,,, +309,15,3,9498,384,1356.094,25,32,B2,mf-,16,144,47,16,,,,, +309,15,3,9498,384,1356.179,,,,,,144,47,0,,,,, +309,16,3,9499,409,1356.179,26,32,C3,mf-,16,144,48,16,,,,, +309,16,3,9499,409,1356.267,,,,,,144,48,0,,,,, +309,17,3,9500,435,1356.267,25,32,B2,mf,17,144,47,17,,,,, +309,17,3,9500,435,1356.352,,,,,,144,47,0,,,,, +309,18,3,9501,460,1356.352,52,16,F#2,mf,17,144,42,17,,,,, +309,18,3,9501,460,1356.529,,,,,,144,42,0,,,,, +309,19,0,9502,512,1356.529,,,,,,176,64,0,,,,,^ +309,20,1,9503,512,1356.529,,,,,,176,102,0,,,,, +309,21,3,9504,512,1356.529,,,,,,176,102,0,,,,, +309,22,3,9505,640,1356.964,18,64,C3,pp,8,144,48,8,,,,, +309,22,3,9505,640,1357.025,,,,,,144,48,0,,,,, +309,23,3,9506,658,1357.025,18,64,B2,pp,8,144,47,8,,,,, +309,23,3,9506,658,1357.086,,,,,,144,47,0,,,,, +309,24,3,9507,676,1357.086,18,64,C3,pp+,9,144,48,9,,,,, +309,24,3,9507,676,1357.147,,,,,,144,48,0,,,,, +309,25,3,9508,694,1357.147,19,64,B2,pp+,9,144,47,9,,,,, +309,25,3,9508,694,1357.212,,,,,,144,47,0,,,,, +309,26,3,9509,713,1357.212,18,64,C3,p-,10,144,48,10,,,,, +309,26,3,9509,713,1357.273,,,,,,144,48,0,,,,, +309,27,3,9510,731,1357.273,18,64,B2,p,11,144,47,11,,,,, +309,27,3,9510,731,1357.334,,,,,,144,47,0,,,,, +309,28,3,9511,749,1357.334,19,64,C3,p,11,144,48,11,,,,, +309,28,3,9511,749,1357.399,,,,,,144,48,0,,,,, +309,29,3,9512,768,1357.399,256,4,F#1,p,11,144,30,11,,,,, +309,30,1,9513,896,1357.833,128,8,G#1,p,11,144,32,11,,,,, +309,31,1,9514,896,1357.833,128,8,C2,p,11,144,36,11,,,,, +309,32,1,9515,896,1357.833,128,8,F2,p,11,144,41,11,,,,, +309,33,1,9516,896,1357.833,128,8,F#3,p,11,144,54,11,,,,, +309,29,3,9512,768,1358.268,,,,,,144,30,0,,,,, +309,30,1,9513,896,1358.268,,,,,,144,32,0,,,,, +309,31,1,9514,896,1358.268,,,,,,144,36,0,,,,, +309,32,1,9515,896,1358.268,,,,,,144,41,0,,,,, +309,33,1,9516,896,1358.268,,,,,,144,54,0,,,,, +310,0,0,9517,0,1358.268,,,,,,,,,310,,,, +310,1,0,9518,0,1358.268,,,,,,,,,,6011,,, +310,3,1,9519,0,1358.268,,,,,,176,102,0,,,,, +310,4,3,9520,0,1358.268,128,8,E1,ppp,5,144,28,5,,,,, +310,5,3,9521,0,1358.268,128,8,F#1,mp,14,144,30,14,,,,, +310,2,0,9522,0,1358.268,,,,,,176,64,127,,,,,V +310,4,3,9520,0,1358.703,,,,,,144,28,0,,,,, +310,5,3,9521,0,1358.703,,,,,,144,30,0,,,,, +310,6,3,9523,128,1358.703,25,32,F#1,mf+,18,144,30,18,,,,, +310,6,3,9523,128,1358.788,,,,,,144,30,0,,,,, +310,7,3,9524,153,1358.788,26,32,B1,f-,19,144,35,19,,,,, +310,7,3,9524,153,1358.876,,,,,,144,35,0,,,,, +310,8,3,9525,179,1358.876,38,32,C2,f,20,144,36,20,,,,, +310,10,1,9526,,1358.988,,8,E6,mp,14,144,88,14,,,,g, +310,8,3,9525,179,1359.005,,,,,,144,36,0,,,,, +310,9,3,9527,217,1359.005,39,32,B1,f+,21,144,35,21,,,,, +310,10,1,9526,,1359.038,,,,,,144,88,0,,,,, +310,11,1,9528,,1359.063,,8,A#5,mf,17,144,82,17,,,,g, +310,11,1,9528,,1359.113,,,,,,144,82,0,,,,, +310,9,3,9527,217,1359.138,,,,,,144,35,0,,,,, +310,12,1,9529,256,1359.138,32,32,F#6,f,20,144,90,20,,,,, +310,13,3,9530,256,1359.138,76,16,A#0,ff,22,144,22,22,,,,, +310,12,1,9529,256,1359.246,,,,,,144,90,0,,,,, +310,14,1,9531,288,1359.246,96,16,D#1,f,20,144,27,20,,,,, +310,13,3,9530,256,1359.396,,,,,,144,22,0,,,,, +310,15,3,9532,332,1359.396,77,16,D7,ff,22,144,98,22,,,,, +310,14,1,9531,288,1359.573,,,,,,144,27,0,,,,, +310,16,1,9533,384,1359.573,,,,,,176,102,0,,,,, +310,17,0,9534,409,1359.657,,,,,,176,64,0,,,,,^ +310,18,3,9535,409,1359.657,77,16,F#1,ff,22,144,30,22,,,,, +310,15,3,9532,332,1359.657,,,,,,144,98,0,,,,, +310,18,3,9535,409,1359.919,,,,,,144,30,0,,,,, +310,19,3,9536,486,1359.919,26,32,A#0,ff,22,144,22,22,,,,, +310,19,3,9536,486,1360.007,,,,,,144,22,0,,,,, +310,20,3,9537,512,1360.007,25,32,F#1,f,20,144,30,20,,,,, +310,21,1,9538,512,1360.007,,,,,,176,102,0,,,,, +310,20,3,9537,512,1360.092,,,,,,144,30,0,,,,, +310,22,3,9539,537,1360.092,51,16,C2,mf,17,144,36,17,,,,, +310,22,3,9539,537,1360.265,,,,,,144,36,0,,,,, +310,24,3,9540,588,1360.265,26,32,B1,mp-,13,144,35,13,,,,, +310,23,0,9541,588,1360.265,,,,,,176,64,127,,,,,V +310,24,3,9540,588,1360.354,,,,,,144,35,0,,,,, +310,25,3,9542,614,1360.354,26,32,C2,p-,10,144,36,10,,,,, +310,25,3,9542,614,1360.442,,,,,,144,36,0,,,,, +310,26,3,9543,640,1360.442,25,32,B1,pp,8,144,35,8,,,,, +310,27,3,9544,665,1360.527,103,8,B1,,,,,,,,,, +310,28,0,9545,768,1360.727,,,,,,176,64,0,,,,,^ +310,30,1,9546,768,1360.877,512,2,F#6,mp,14,144,90,14,,,,, +310,31,3,9547,768,1360.877,512,2,A#0,mp,14,144,22,14,,,,, +310,32,3,9548,768,1360.877,512,2,D#1,mp,14,144,27,14,,,,, +310,33,3,9549,768,1360.877,512,2,E1,mp,14,144,28,14,,,,, +310,34,3,9550,768,1360.877,512,2,F#1,mp,14,144,30,14,,,,, +310,35,3,9551,768,1360.877,512,2,B1,mp,14,144,35,14,,,,, +310,36,3,9552,768,1360.877,512,2,C2,mp,14,144,36,14,,,,, +310,26,3,9543,640,1360.877,,,,,,144,35,0,,,,, +310,29,0,9553,768,1361.027,,,,,,176,64,127,,,,,V +310,30,1,9546,768,1362.616,,,,,,144,90,0,,,,, +310,31,3,9547,768,1362.616,,,,,,144,22,0,,,,, +310,32,3,9548,768,1362.616,,,,,,144,27,0,,,,, +310,33,3,9549,768,1362.616,,,,,,144,28,0,,,,, +310,34,3,9550,768,1362.616,,,,,,144,30,0,,,,, +310,35,3,9551,768,1362.616,,,,,,144,35,0,,,,, +310,36,3,9552,768,1362.616,,,,,,144,36,0,,,,, +310,37,0,9554,1280,1362.616,,,,,,176,64,0,,,,,^ +310,38,1,9555,1280,1362.616,,,,,,176,102,0,,,,, +310,39,3,9556,1280,1362.616,768,2,A#0,ppp,5,144,22,5,,,,, +310,40,3,9557,1280,1362.616,512,2,D#1,ppp,5,144,27,5,,,,, +310,41,3,9558,1280,1362.616,512,2,E1,ppp,5,144,28,5,,,,, +310,42,3,9559,1280,1362.616,512,2,F#1,ppp,5,144,30,5,,,,, +310,43,3,9560,1280,1362.616,512,2,B1,ppp,5,144,35,5,,,,, +310,44,3,9561,1280,1362.616,512,2,C2,ppp,5,144,36,5,,,,, +310,40,3,9557,1280,1364.355,,,,,,144,27,0,,,,, +310,41,3,9558,1280,1364.355,,,,,,144,28,0,,,,, +310,42,3,9559,1280,1364.355,,,,,,144,30,0,,,,, +310,43,3,9560,1280,1364.355,,,,,,144,35,0,,,,, +310,44,3,9561,1280,1364.355,,,,,,144,36,0,,,,, +310,39,3,9556,1280,1365.225,,,,,,144,22,0,,,,, +311,0,0,9562,0,1365.225,,,,,,,,,311,,,, +311,1,1,9563,0,1365.225,1536,1,F#6,f,20,144,90,20,,,,, +311,2,3,9564,0,1365.225,64,16,A#0,fff,24,144,22,23,,,,, +311,3,3,9565,0,1365.225,64,16,D#1,fff,24,144,27,23,,,,, +311,4,3,9566,0,1365.225,64,16,E1,fff,24,144,28,23,,,,, +311,5,3,9567,0,1365.225,64,16,F#1,fff,24,144,30,23,,,,, +311,6,3,9568,0,1365.225,64,16,B1,fff,24,144,35,23,,,,, +311,7,3,9569,0,1365.225,64,16,C2,fff,24,144,36,23,,,,, +311,2,3,9564,0,1365.275,,,,,,144,22,0,,,,, +311,3,3,9565,0,1365.275,,,,,,144,27,0,,,,, +311,4,3,9566,0,1365.275,,,,,,144,28,0,,,,, +311,5,3,9567,0,1365.275,,,,,,144,30,0,,,,, +311,6,3,9568,0,1365.275,,,,,,144,35,0,,,,, +311,7,3,9569,0,1365.275,,,,,,144,36,0,,,,, +311,9,3,9570,64,1365.442,,,,,,176,102,0,,,,, +311,8,0,9571,64,1365.842,,,,,,176,64,127,,,,,V +311,10,3,9572,256,1366.094,,,,,,176,102,0,,,,, +311,11,3,9573,512,1366.964,,,,,,176,102,0,,,,, +311,12,0,9574,512,1366.964,,,,,,,,,,6012,,, +311,13,0,9575,1536,1370.442,,,,,,176,64,0,,,,,^ +311,14,1,9576,1536,1370.442,,,,,,176,102,0,,,,, +311,15,3,9577,1536,1370.442,256,4,E1,p,11,144,28,11,,,,, +311,1,1,9563,0,1370.517,,,,,,144,90,0,,,,, +311,15,3,9577,1536,1371.312,,,,,,144,28,0,,,,, +311,16,3,9578,1792,1371.312,256,4,C2,pp+,9,144,36,9,,,,, +311,16,3,9578,1792,1372.181,,,,,,144,36,0,,,,, +312,0,0,9579,0,1372.181,,,,,,,,,312,,,, +312,2,1,9580,0,1372.181,,,,,,176,102,0,,,,, +312,3,3,9581,0,1372.181,42,32,C2,pp-,7,144,36,7,,,,, +312,1,0,9582,0,1372.181,,,,,,176,64,127,,,,,V +312,3,3,9581,0,1372.324,,,,,,144,36,0,,,,, +312,4,3,9583,42,1372.324,43,32,F#2,pp-,7,144,42,7,,,,, +312,4,3,9583,42,1372.47,,,,,,144,42,0,,,,, +312,5,3,9584,85,1372.47,28,32,G#1,ppp+,6,144,32,6,,,,, +312,5,3,9584,85,1372.565,,,,,,144,32,0,,,,, +312,6,3,9585,113,1372.565,29,32,F2,ppp+,6,144,41,6,,,,, +312,6,3,9585,113,1372.664,,,,,,144,41,0,,,,, +312,7,3,9586,142,1372.664,28,32,G#1,ppp+,6,144,32,6,,,,, +312,7,3,9586,142,1372.759,,,,,,144,32,0,,,,, +312,8,3,9587,170,1372.759,29,32,F#2,ppp,5,144,42,5,,,,, +312,10,0,9588,227,1372.852,,,,,,176,64,0,,,,,^ +312,8,3,9587,170,1372.857,,,,,,144,42,0,,,,, +312,9,3,9589,199,1372.857,28,32,F2,ppp,5,144,41,5,,,,, +312,9,3,9589,199,1372.952,,,,,,144,41,0,,,,, +312,11,3,9590,227,1372.952,29,32,G#1,ppp,5,144,32,5,,,,, +312,11,3,9590,227,1373.051,,,,,,144,32,0,,,,, +312,12,3,9591,256,1373.051,28,32,E1,mp,14,144,28,14,,,,, +312,13,3,9592,256,1373.051,32,32,C2,mp,14,144,36,14,,,,, +312,16,0,9593,312,1373.091,,,,,,176,64,0,,,,,^ +312,12,3,9591,256,1373.146,,,,,,144,28,0,,,,, +312,15,3,9594,284,1373.146,28,32,G#1,mp+,15,144,32,15,,,,, +312,14,0,9595,256,1373.152,,,,,,176,64,127,,,,,V +312,13,3,9592,256,1373.159,,,,,,144,36,0,,,,, +312,15,3,9594,284,1373.241,,,,,,144,32,0,,,,, +312,18,3,9596,312,1373.241,43,32,E1,mf-,16,144,28,16,,,,, +312,19,3,9597,312,1373.241,32,32,C2,mf-,16,144,36,16,,,,, +312,19,3,9597,312,1373.35,,,,,,144,36,0,,,,, +312,18,3,9596,312,1373.387,,,,,,144,28,0,,,,, +312,20,3,9598,355,1373.387,43,32,F#3,mf+,18,144,54,18,,,,, +312,17,0,9599,312,1373.391,,,,,,176,64,127,,,,,V +312,20,3,9598,355,1373.533,,,,,,144,54,0,,,,, +312,21,3,9600,398,1373.533,28,32,E1,f,20,144,28,20,,,,, +312,22,3,9601,398,1373.533,32,32,G#1,f,20,144,32,20,,,,, +312,23,3,9602,398,1373.533,32,32,C2,f,20,144,36,20,,,,, +312,24,0,9603,408,1373.567,,,,,,176,64,0,,,,,^ +312,25,3,9604,426,1373.628,29,32,F#4,p,11,144,66,11,,,,, +312,21,3,9600,398,1373.628,,,,,,144,28,0,,,,, +312,22,3,9601,398,1373.642,,,,,,144,32,0,,,,, +312,23,3,9602,398,1373.642,,,,,,144,36,0,,,,, +312,25,3,9604,426,1373.727,,,,,,144,66,0,,,,, +312,26,3,9605,455,1373.727,28,32,F3,p-,10,144,53,10,,,,, +312,26,3,9605,455,1373.822,,,,,,144,53,0,,,,, +312,27,3,9606,483,1373.822,29,32,G#1,p-,10,144,32,10,,,,, +312,27,3,9606,483,1373.92,,,,,,144,32,0,,,,, +312,28,3,9607,512,1373.92,42,32,E1,pp+,9,144,28,9,,,,, +312,29,3,9608,512,1373.92,32,32,C2,pp+,9,144,36,9,,,,, +312,30,3,9609,512,1373.92,32,32,F#3,pp+,9,144,54,9,,,,, +312,32,1,9610,512,1373.92,,,,,,176,102,0,,,,, +312,31,0,9611,512,1373.92,,,,,,176,64,127,,,,,V +312,29,3,9608,512,1374.029,,,,,,144,36,0,,,,, +312,30,3,9609,512,1374.029,,,,,,144,54,0,,,,, +312,28,3,9607,512,1374.063,,,,,,144,28,0,,,,, +312,33,3,9612,554,1374.063,29,32,G#1,pp,8,144,32,8,,,,, +312,33,3,9612,554,1374.162,,,,,,144,32,0,,,,, +312,35,0,9613,583,1374.162,,,,,,176,64,0,,,,,^ +312,34,3,9614,583,1374.162,28,32,F2,pp-,7,144,41,7,,,,, +312,34,3,9614,583,1374.257,,,,,,144,41,0,,,,, +312,36,3,9615,611,1374.257,,,,,,176,102,0,,,,, +312,37,1,9616,640,1374.355,64,16,G#2,ff,22,144,44,22,,,,, +312,38,3,9617,654,1374.403,,,,,,176,102,0,,,,, +312,37,1,9616,640,1374.573,,,,,,144,44,0,,,,, +312,39,1,9618,704,1374.573,64,16,F#2,ff,22,144,42,22,,,,, +312,40,1,9619,704,1374.573,64,16,G#2,ff,22,144,44,22,,,,, +312,39,1,9618,704,1374.79,,,,,,144,42,0,,,,, +312,40,1,9619,704,1374.79,,,,,,144,44,0,,,,, +312,41,1,9620,768,1374.79,,,,,,176,102,0,,,,, +312,42,3,9621,768,1374.79,1024,1,E1,ppp,5,144,28,5,,,,, +312,43,3,9622,768,1374.79,1024,1,G#1,ppp,5,144,32,5,,,,, +312,44,3,9623,768,1374.79,1024,1,C2,ppp,5,144,36,5,,,,, +312,45,3,9624,768,1374.79,1024,1,F4,ppp,5,144,65,5,,,,, +312,46,3,9625,768,1374.79,1024,1,F#4,ppp,5,144,66,5,,,,, +312,47,0,9626,905,1375.255,,,,,,176,64,127,,,,,V +312,48,1,9627,1280,1376.529,42,32,E5,pp,8,144,76,8,,,,, +312,48,1,9627,1280,1376.672,,,,,,144,76,0,,,,, +312,49,1,9628,1322,1376.672,29,32,D4,pp,8,144,62,8,,,,, +312,49,1,9628,1322,1376.77,,,,,,144,62,0,,,,, +312,50,1,9629,1351,1376.77,28,32,F#5,pp+,9,144,78,9,,,,, +312,50,1,9629,1351,1376.865,,,,,,144,78,0,,,,, +312,51,1,9630,1379,1376.865,29,32,A#4,pp+,9,144,70,9,,,,, +312,51,1,9630,1379,1376.964,,,,,,144,70,0,,,,, +312,52,1,9631,1408,1376.964,25,32,F#5,pp+,9,144,78,9,,,,, +312,52,1,9631,1408,1377.049,,,,,,144,78,0,,,,, +312,53,1,9632,1433,1377.049,26,32,A#4,pp+,9,144,70,9,,,,, +312,53,1,9632,1433,1377.137,,,,,,144,70,0,,,,, +312,54,1,9633,1459,1377.137,25,32,F#6,pp+,9,144,90,9,,,,, +312,54,1,9633,1459,1377.222,,,,,,144,90,0,,,,, +312,55,1,9634,1484,1377.222,26,32,A#4,p-,10,144,70,10,,,,, +312,55,1,9634,1484,1377.31,,,,,,144,70,0,,,,, +312,56,1,9635,1510,1377.31,26,32,D4,p-,10,144,62,10,,,,, +312,56,1,9635,1510,1377.399,,,,,,144,62,0,,,,, +312,57,1,9636,1536,1377.399,28,32,F#6,p-,10,144,90,10,,,,, +312,57,1,9636,1536,1377.494,,,,,,144,90,0,,,,, +312,58,1,9637,1564,1377.494,28,32,A#4,p-,10,144,70,10,,,,, +312,58,1,9637,1564,1377.589,,,,,,144,70,0,,,,, +312,59,1,9638,1592,1377.589,29,32,D#3,p-,10,144,51,10,,,,, +312,59,1,9638,1592,1377.687,,,,,,144,51,0,,,,, +312,60,1,9639,1621,1377.687,43,32,D4,p,11,144,62,11,,,,, +312,61,1,9640,1621,1377.687,32,32,A#4,p,11,144,70,11,,,,, +312,62,1,9641,1621,1377.687,32,32,F#5,p,11,144,78,11,,,,, +312,61,1,9640,1621,1377.796,,,,,,144,70,0,,,,, +312,62,1,9641,1621,1377.796,,,,,,144,78,0,,,,, +312,60,1,9639,1621,1377.833,,,,,,144,62,0,,,,, +312,63,1,9642,1664,1377.833,128,8,D#3,p,11,144,51,11,,,,, +312,64,0,9643,1791,1378.265,,,,,,176,64,0,,,,,^ +312,42,3,9621,768,1378.268,,,,,,144,28,0,,,,, +312,43,3,9622,768,1378.268,,,,,,144,32,0,,,,, +312,44,3,9623,768,1378.268,,,,,,144,36,0,,,,, +312,45,3,9624,768,1378.268,,,,,,144,65,0,,,,, +312,46,3,9625,768,1378.268,,,,,,144,66,0,,,,, +313,0,0,9644,0,1378.268,,,,,,,,,313,,,, +313,1,0,9645,0,1378.268,,,,,,,,,,6013,,, +313,2,1,9646,0,1378.268,,,,,,176,102,0,,,,, +313,3,3,9647,0,1378.268,256,4,E1,ppp,5,144,28,5,,,,, +313,4,3,9648,0,1378.268,256,4,G#1,ppp,5,144,32,5,,,,, +313,5,3,9649,0,1378.268,256,4,C2,ppp,5,144,36,5,,,,, +313,6,3,9650,0,1378.268,256,4,F4,ppp,5,144,65,5,,,,, +313,7,3,9651,0,1378.268,256,4,F#4,ppp,5,144,66,5,,,,, +312,63,1,9642,1664,1378.343,,,,,,144,51,0,,,,, +313,8,1,9652,85,1378.557,28,32,D2,mf,17,144,38,17,,,,, +313,8,1,9652,85,1378.652,,,,,,144,38,0,,,,, +313,9,1,9653,113,1378.652,29,32,E3,mf,17,144,52,17,,,,, +313,9,1,9653,113,1378.75,,,,,,144,52,0,,,,, +313,10,1,9654,142,1378.75,28,32,D2,mf,17,144,38,17,,,,, +313,10,1,9654,142,1378.846,,,,,,144,38,0,,,,, +313,11,1,9655,170,1378.846,29,32,C1,mp,14,144,24,14,,,,, +313,11,1,9655,170,1378.944,,,,,,144,24,0,,,,, +313,12,1,9656,199,1378.944,28,32,F#1,p,11,144,30,11,,,,, +313,4,3,9648,0,1379.039,,,,,,144,32,0,,,,, +313,12,1,9656,199,1379.039,,,,,,144,30,0,,,,, +313,13,1,9657,227,1379.039,29,32,G#1,pp,8,144,32,8,,,,, +313,3,3,9647,0,1379.138,,,,,,144,28,0,,,,, +313,5,3,9649,0,1379.138,,,,,,144,36,0,,,,, +313,6,3,9650,0,1379.138,,,,,,144,65,0,,,,, +313,7,3,9651,0,1379.138,,,,,,144,66,0,,,,, +313,13,1,9657,227,1379.138,,,,,,144,32,0,,,,, +313,14,1,9658,256,1379.138,28,32,D5,p,11,144,74,11,,,,, +313,15,3,9659,256,1379.138,64,16,C1,p,11,144,24,11,,,,, +313,16,3,9660,256,1379.138,64,16,F#1,p,11,144,30,11,,,,, +313,14,1,9658,256,1379.233,,,,,,144,74,0,,,,, +313,17,1,9661,284,1379.233,28,32,A#2,p+,12,144,46,12,,,,, +313,17,1,9661,284,1379.328,,,,,,144,46,0,,,,, +313,18,1,9662,312,1379.328,29,32,D6,mp-,13,144,86,13,,,,, +313,15,3,9659,256,1379.355,,,,,,144,24,0,,,,, +313,16,3,9660,256,1379.355,,,,,,144,30,0,,,,, +313,20,3,9663,320,1379.355,,,,,,176,102,0,,,,, +313,19,0,9664,320,1379.355,,,,,,176,64,127,,,,,V +313,18,1,9662,312,1379.426,,,,,,144,86,0,,,,, +313,21,1,9665,341,1379.426,28,32,A#2,mp,14,144,46,14,,,,, +313,21,1,9665,341,1379.522,,,,,,144,46,0,,,,, +313,22,1,9666,369,1379.522,29,32,C5,mp+,15,144,72,15,,,,, +313,22,1,9666,369,1379.62,,,,,,144,72,0,,,,, +313,23,1,9667,398,1379.62,28,32,A#2,mf,17,144,46,17,,,,, +313,24,1,9668,398,1379.62,32,32,F#3,mf,17,144,54,17,,,,, +313,23,1,9667,398,1379.715,,,,,,144,46,0,,,,, +313,25,1,9669,426,1379.715,29,32,C4,mf+,18,144,60,18,,,,, +313,24,1,9668,398,1379.729,,,,,,144,54,0,,,,, +313,30,0,9670,483,1379.783,,,,,,176,64,0,,,,,^ +313,25,1,9669,426,1379.814,,,,,,144,60,0,,,,, +313,26,1,9671,455,1379.814,28,32,A#2,f-,19,144,46,19,,,,, +313,27,1,9672,455,1379.814,32,32,F#3,f-,19,144,54,19,,,,, +313,28,1,9673,455,1379.814,32,32,D4,f-,19,144,62,19,,,,, +313,26,1,9671,455,1379.909,,,,,,144,46,0,,,,, +313,29,1,9674,483,1379.909,29,32,B3,f,20,144,59,20,,,,, +313,27,1,9672,455,1379.922,,,,,,144,54,0,,,,, +313,28,1,9673,455,1379.922,,,,,,144,62,0,,,,, +313,29,1,9674,483,1380.007,,,,,,144,59,0,,,,, +313,32,1,9675,512,1380.007,42,16,E5,mf,17,144,76,17,,,,, +313,33,1,9676,512,1380.007,64,16,G#5,p,11,144,80,11,,,,, +313,34,3,9677,,1380.007,,8,G#1,p,11,144,32,11,,,,g, +313,34,3,9677,,1380.057,,,,,,144,32,0,,,,, +313,35,3,9678,,1380.082,,8,C#4,p,11,144,61,11,,,,g, +313,31,0,9679,497,1380.083,,,,,,176,64,127,,,,,V +313,35,3,9678,,1380.132,,,,,,144,61,0,,,,, +313,32,1,9675,512,1380.15,,,,,,144,76,0,,,,, +313,36,3,9680,,1380.157,,8,G#1,p,11,144,32,11,,,,g, +313,36,3,9680,,1380.207,,,,,,144,32,0,,,,, +313,33,1,9676,512,1380.225,,,,,,144,80,0,,,,, +313,37,3,9681,512,1380.232,128,8,A#1,f,20,144,34,20,,,,, +313,38,3,9682,512,1380.232,128,8,F#2,p,11,144,42,11,,,,, +313,39,1,9683,554,1380.375,43,16,F4,p+,12,144,65,12,,,,, +313,39,1,9683,554,1380.521,,,,,,144,65,0,,,,, +313,40,1,9684,597,1380.521,43,16,F#3,p-,10,144,54,10,,,,, +313,37,3,9681,512,1380.667,,,,,,144,34,0,,,,, +313,38,3,9682,512,1380.667,,,,,,144,42,0,,,,, +313,40,1,9684,597,1380.667,,,,,,144,54,0,,,,, +313,41,1,9685,640,1380.667,28,32,C3,pp,8,144,48,8,,,,, +313,42,3,9686,640,1380.667,128,8,D#3,mp,14,144,51,14,,,,, +313,43,3,9687,640,1380.667,128,8,D4,mp,14,144,62,14,,,,, +313,44,3,9688,640,1380.667,128,8,A#4,mp,14,144,70,14,,,,, +313,45,3,9689,640,1380.667,128,8,F#5,mp,14,144,78,14,,,,, +313,41,1,9685,640,1380.762,,,,,,144,48,0,,,,, +313,46,1,9690,668,1380.762,28,32,G#3,ppp+,6,144,56,6,,,,, +313,49,0,9691,725,1380.838,,,,,,176,64,0,,,,,^ +313,46,1,9690,668,1380.857,,,,,,144,56,0,,,,, +313,47,1,9692,696,1380.857,29,32,F#3,ppp,5,144,54,5,,,,, +313,47,1,9692,696,1380.956,,,,,,144,54,0,,,,, +313,48,1,9693,725,1380.956,,,,,,176,102,0,,,,, +313,42,3,9686,640,1381.102,,,,,,144,51,0,,,,, +313,43,3,9687,640,1381.102,,,,,,144,62,0,,,,, +313,44,3,9688,640,1381.102,,,,,,144,70,0,,,,, +313,45,3,9689,640,1381.102,,,,,,144,78,0,,,,, +313,51,1,9694,,1381.102,,8,D5,p,11,144,74,11,,,,g, +313,50,0,9695,744,1381.138,,,,,,176,64,127,,,,,V +313,51,1,9694,,1381.152,,,,,,144,74,0,,,,, +313,52,1,9696,,1381.177,,8,E6,p+,12,144,88,12,,,,g, +313,52,1,9696,,1381.227,,,,,,144,88,0,,,,, +313,53,1,9697,768,1381.252,56,16,F#7,p+,12,144,102,12,,,,, +313,54,3,9698,768,1381.252,,,,,,176,102,0,,,,, +313,53,1,9697,768,1381.442,,,,,,144,102,0,,,,, +313,55,1,9699,824,1381.442,29,32,D#4,mp-,13,144,63,13,,,,, +313,55,1,9699,824,1381.541,,,,,,144,63,0,,,,, +313,56,1,9700,853,1381.541,57,16,A#5,mp,14,144,82,14,,,,, +313,56,1,9700,853,1381.734,,,,,,144,82,0,,,,, +313,57,1,9701,910,1381.734,57,16,F#6,mf-,16,144,90,16,,,,, +313,57,1,9701,910,1381.928,,,,,,144,90,0,,,,, +313,58,1,9702,967,1381.928,57,16,D#4,mf,17,144,63,17,,,,, +313,58,1,9702,967,1382.121,,,,,,144,63,0,,,,, +314,0,0,9703,0,1382.121,,,,,,,,,314,,,, +314,1,1,9704,0,1382.121,,,,,,176,102,0,,,,, +314,2,2,9705,0,1382.121,,,,,,176,102,0,,,,, +314,3,3,9706,0,1382.121,,,,,,176,102,0,,,,, +314,4,4,9707,0,1382.121,1536,1,E1,ppp,5,144,28,5,,,,, +314,5,4,9708,0,1382.121,1024,1,G#1,ppp,5,144,32,5,,,,, +314,6,4,9709,0,1382.121,1024,1,C2,ppp,5,144,36,5,,,,, +314,7,4,9710,0,1382.121,1024,1,F4,ppp,5,144,65,5,,,,, +314,8,4,9711,0,1382.121,1024,1,F#4,ppp,5,144,66,5,,,,, +314,9,1,9712,512,1383.861,42,32,G#6,pp,8,144,92,8,,,,, +314,10,2,9713,512,1383.861,384,4,D#4,p,11,144,63,11,,,,, +314,11,2,9714,512,1383.861,256,4,A#4,p,11,144,70,11,,,,, +314,12,2,9715,512,1383.861,256,4,D5,p,11,144,74,11,,,,, +314,13,2,9716,512,1383.861,256,4,F#6,p,11,144,90,11,,,,, +314,9,1,9712,512,1384.003,,,,,,144,92,0,,,,, +314,14,1,9717,554,1384.003,29,32,C7,pp+,9,144,96,9,,,,, +314,14,1,9717,554,1384.102,,,,,,144,96,0,,,,, +314,15,1,9718,583,1384.102,28,32,E6,p-,10,144,88,10,,,,, +314,15,1,9718,583,1384.197,,,,,,144,88,0,,,,, +314,16,1,9719,611,1384.197,43,32,C7,p-,10,144,96,10,,,,, +314,17,1,9720,611,1384.197,32,32,F#7,p-,10,144,102,10,,,,, +314,17,1,9720,611,1384.306,,,,,,144,102,0,,,,, +314,16,1,9719,611,1384.343,,,,,,144,96,0,,,,, +314,18,1,9721,654,1384.343,42,32,E6,p,11,144,88,11,,,,, +314,19,1,9722,654,1384.343,32,32,G#6,p,11,144,92,11,,,,, +314,19,1,9722,654,1384.452,,,,,,144,92,0,,,,, +314,18,1,9721,654,1384.486,,,,,,144,88,0,,,,, +314,20,1,9723,696,1384.486,29,32,C7,p+,12,144,96,12,,,,, +314,20,1,9723,696,1384.584,,,,,,144,96,0,,,,, +314,21,1,9724,725,1384.584,43,32,E6,mp-,13,144,88,13,,,,, +314,22,1,9725,725,1384.584,32,32,G#6,mp-,13,144,92,13,,,,, +314,23,1,9726,725,1384.584,32,32,F#7,mp-,13,144,102,13,,,,, +314,22,1,9725,725,1384.693,,,,,,144,92,0,,,,, +314,23,1,9726,725,1384.693,,,,,,144,102,0,,,,, +314,11,2,9714,512,1384.73,,,,,,144,70,0,,,,, +314,12,2,9715,512,1384.73,,,,,,144,74,0,,,,, +314,13,2,9716,512,1384.73,,,,,,144,90,0,,,,, +314,21,1,9724,725,1384.73,,,,,,144,88,0,,,,, +314,24,1,9727,768,1384.73,85,8,F5,mp,14,144,77,14,,,,, +314,24,1,9727,768,1385.019,,,,,,144,77,0,,,,, +314,25,1,9728,853,1385.019,171,4,E6,mp,14,144,88,14,,,,, +314,26,1,9729,853,1385.019,256,4,G#6,mp,14,144,92,14,,,,, +314,27,1,9730,853,1385.019,256,4,C7,mp,14,144,96,14,,,,, +314,28,1,9731,853,1385.019,256,4,F#7,mp,14,144,102,14,,,,, +314,10,2,9713,512,1385.165,,,,,,144,63,0,,,,, +314,29,2,9732,896,1385.165,384,4,D#4,mp,14,144,63,14,,,,, +314,30,2,9733,896,1385.165,256,4,A#4,mp,14,144,70,14,,,,, +314,31,2,9734,896,1385.165,256,4,D5,mp,14,144,74,14,,,,, +314,32,2,9735,896,1385.165,256,4,F#6,mp,14,144,90,14,,,,, +314,25,1,9728,853,1385.6,,,,,,144,88,0,,,,, +314,33,1,9736,1024,1385.6,,,,,,176,102,0,,,,, +314,26,1,9729,853,1385.888,,,,,,144,92,0,,,,, +314,27,1,9730,853,1385.888,,,,,,144,96,0,,,,, +314,28,1,9731,853,1385.888,,,,,,144,102,0,,,,, +314,34,2,9737,1280,1386.469,256,4,D#4,,,,,,,,,, +314,35,2,9738,1280,1386.469,256,4,A#4,,,,,,,,,, +314,36,2,9739,1280,1386.469,256,4,D5,,,,,,,,,, +314,37,2,9740,1280,1386.469,256,4,E5,mp,14,144,76,14,,,,, +314,38,2,9741,1280,1386.469,256,4,F#6,,,,,,,,,, +314,30,2,9733,896,1386.904,,,,,,144,70,0,,,,, +314,31,2,9734,896,1386.904,,,,,,144,74,0,,,,, +314,32,2,9735,896,1386.904,,,,,,144,90,0,,,,, +314,29,2,9732,896,1387.339,,,,,,144,63,0,,,,, +314,37,2,9740,1280,1387.339,,,,,,144,76,0,,,,, +315,0,0,9742,0,1387.339,,,,,,,,,315,,,, +315,1,1,9743,0,1387.339,42,32,F#5,p,11,144,78,11,,,,, +315,2,3,9744,0,1387.339,,,,,,176,102,0,,,,, +315,3,4,9745,0,1387.339,1536,1,E1,,,,,,,,,, +315,4,4,9746,0,1387.339,1024,1,G#1,,,,,,,,,, +315,5,4,9747,0,1387.339,1024,1,C2,,,,,,,,,, +315,6,4,9748,0,1387.339,1024,1,F4,,,,,,,,,, +315,7,4,9749,0,1387.339,1024,1,F#4,,,,,,,,,, +315,1,1,9743,0,1387.481,,,,,,144,78,0,,,,, +315,8,1,9750,42,1387.481,29,32,G#4,p+,12,144,68,12,,,,, +315,8,1,9750,42,1387.58,,,,,,144,68,0,,,,, +315,9,1,9751,71,1387.58,14,64,F3,mp-,13,144,53,13,,,,, +315,9,1,9751,71,1387.628,,,,,,144,53,0,,,,, +315,10,1,9752,85,1387.628,14,64,C5,mp-,13,144,72,13,,,,, +315,10,1,9752,85,1387.675,,,,,,144,72,0,,,,, +315,11,1,9753,99,1387.675,14,64,F3,mp,14,144,53,14,,,,, +315,11,1,9753,99,1387.723,,,,,,144,53,0,,,,, +315,12,1,9754,113,1387.723,15,64,E4,mp,14,144,64,14,,,,, +315,12,1,9754,113,1387.774,,,,,,144,64,0,,,,, +315,13,3,9755,,1387.774,,8,E3,p,11,144,52,11,,,,g, +315,13,3,9755,,1387.824,,,,,,144,52,0,,,,, +315,14,3,9756,,1387.849,,8,C1,p-,10,144,24,10,,,,g, +315,14,3,9756,,1387.899,,,,,,144,24,0,,,,, +315,15,3,9757,,1387.924,,8,F2,p-,10,144,41,10,,,,g, +315,15,3,9757,,1387.974,,,,,,144,41,0,,,,, +315,18,0,9758,142,1387.981,,,,,,176,64,0,,,,,^ +315,16,3,9759,128,1387.999,64,16,G#1,pp+,9,144,32,9,,,,, +315,17,1,9760,128,1387.999,,,,,,176,102,0,,,,, +315,19,1,9761,142,1388.046,,,,,,176,102,0,,,,, +315,16,3,9759,128,1388.216,,,,,,144,32,0,,,,, +315,21,3,9762,192,1388.216,64,16,F#1,pp,8,144,30,8,,,,, +315,20,0,9763,192,1388.281,,,,,,176,64,127,,,,,V +315,21,3,9762,192,1388.433,,,,,,144,30,0,,,,, +315,22,1,9764,,1388.433,,8,G#5,mf,17,144,80,17,,,,g, +315,22,1,9764,,1388.483,,,,,,144,80,0,,,,, +315,23,1,9765,,1388.508,,8,F#6,mf,17,144,90,17,,,,g, +315,23,1,9765,,1388.558,,,,,,144,90,0,,,,, +315,24,1,9766,256,1388.583,512,2,C6,mf,17,144,84,17,,,,, +315,25,3,9767,256,1388.583,512,2,F#1,ppp,5,144,30,5,,,,, +315,26,3,9768,256,1388.583,512,2,G#1,ppp,5,144,32,5,,,,, +314,5,4,9708,0,1389.513,,,,,,144,32,0,,,,, +314,6,4,9709,0,1389.948,,,,,,144,36,0,,,,, +314,7,4,9710,0,1389.948,,,,,,144,65,0,,,,, +314,8,4,9711,0,1389.948,,,,,,144,66,0,,,,, +315,27,1,9769,768,1390.323,768,2,C6,,,,,,,,,, +315,28,3,9770,768,1390.323,768,2,F#1,,,,,,,,,, +315,29,3,9771,768,1390.323,512,2,G#1,,,,,,,,,, +315,26,3,9768,256,1392.931,,,,,,144,32,0,,,,, +316,0,0,9772,0,1392.931,,,,,,,,,316,,,, +316,1,1,9773,0,1392.931,170,4,C6,,,,,,,,,, +316,2,3,9774,0,1392.931,256,4,F#1,,,,,,,,,, +316,3,3,9775,0,1392.931,256,4,G#1,,,,,,,,,, +316,4,4,9776,0,1392.931,85,8,E1,,,,,,,,,, +316,5,4,9777,0,1392.931,128,8,G#1,,,,,,,,,, +316,6,4,9778,0,1392.931,128,8,C2,,,,,,,,,, +316,7,4,9779,0,1392.931,128,8,F4,,,,,,,,,, +316,8,4,9780,0,1392.931,128,8,F#4,,,,,,,,,, +314,4,4,9707,0,1393.134,,,,,,144,28,0,,,,, +316,9,4,9781,85,1393.22,85,8,E1,,,,,,,,,, +316,10,4,9782,85,1393.22,128,8,G#1,,,,,,,,,, +316,11,4,9783,85,1393.22,128,8,A#1,f,20,144,34,20,,,,, +316,12,4,9784,85,1393.22,128,8,C2,,,,,,,,,, +316,13,4,9785,85,1393.22,128,8,F4,,,,,,,,,, +316,14,4,9786,85,1393.22,128,8,F#4,,,,,,,,,, +316,15,0,9787,85,1393.22,,,,,,,,,,6014,,, +316,16,0,9788,170,1393.359,,,,,,176,64,0,,,,,^ +315,24,1,9766,256,1393.509,,,,,,144,84,0,,,,, +316,11,4,9783,85,1393.509,,,,,,144,34,0,,,,, +316,18,1,9789,170,1393.509,86,8,D7,ff,22,144,98,22,,,,, +316,19,4,9790,170,1393.509,86,8,A#1,ff,22,144,34,22,,,,, +316,17,0,9791,170,1393.659,,,,,,176,64,127,,,,,V +315,25,3,9767,256,1393.801,,,,,,144,30,0,,,,, +316,20,1,9792,256,1393.801,768,2,D7,,,,,,,,,, +316,21,3,9793,256,1393.801,,,,,,176,102,0,,,,, +316,22,4,9794,256,1393.801,1024,1,A#1,,,,,,,,,, +316,24,1,9795,,1396.334,,8,C#5,ppp,5,144,73,5,,,,g, +316,24,1,9795,,1396.384,,,,,,144,73,0,,,,, +316,18,1,9789,170,1396.409,,,,,,144,98,0,,,,, +316,23,0,9796,1024,1396.409,,,,,,176,64,0,,,,,^ +316,25,1,9797,1024,1396.409,256,4,C#5,ppp,5,144,73,5,,,,, +316,26,3,9798,1024,1396.409,256,4,F#2,ppp,5,144,42,5,,,,, +316,19,4,9790,170,1397.279,,,,,,144,34,0,,,,, +316,25,1,9797,1024,1397.279,,,,,,144,73,0,,,,, +316,26,3,9798,1024,1397.279,,,,,,144,42,0,,,,, +316,27,1,9799,1280,1397.279,,,,,,176,102,0,,,,, +316,28,3,9800,1280,1397.279,64,16,F2,mf,17,144,41,17,,,,, +316,29,4,9801,1280,1397.279,,,,,,176,102,0,,,,, +316,,,9802,1280,1397.279,,,,,,176,64,127,,,,,V +316,30,1,9803,,1397.496,,8,C6,mf,17,144,84,17,,,,g, +316,30,1,9803,,1397.546,,,,,,144,84,0,,,,, +316,31,1,9804,1344,1397.571,192,8,C6,mf,17,144,84,17,,,,, +316,32,3,9805,1344,1397.571,192,8,F2,,,,,,,,,, +316,33,3,9806,1344,1397.571,128,8,E4,mf+,18,144,64,18,,,,, +316,33,3,9806,1344,1398.006,,,,,,144,64,0,,,,, +316,28,3,9800,1280,1398.149,,,,,,144,41,0,,,,, +316,,,9807,1535,1398.22,,,,,,176,64,0,,,,,^ +316,31,1,9804,1344,1398.224,,,,,,144,84,0,,,,, +317,0,0,9808,0,1398.224,,,,,,,,,317,,,, +317,1,1,9809,0,1398.224,32,32,F#4,pp,8,144,66,8,,,,, +317,2,3,9810,0,1398.224,,,,,,176,102,0,,,,, +317,1,1,9809,0,1398.332,,,,,,144,66,0,,,,, +317,3,1,9811,32,1398.332,224,8,F3,pp,8,144,53,8,,,,, +317,4,1,9812,256,1399.093,512,2,F3,,,,,,,,,, +317,5,3,9813,256,1399.093,64,16,G2,p,11,144,43,11,,,,, +317,5,3,9813,256,1399.311,,,,,,144,43,0,,,,, +317,6,3,9814,320,1399.311,192,8,G2,mp,14,144,43,14,,,,, +317,7,3,9815,320,1399.311,128,8,F3,mp,14,144,53,14,,,,, +317,7,3,9815,320,1399.745,,,,,,144,53,0,,,,, +317,6,3,9814,320,1399.963,,,,,,144,43,0,,,,, +317,8,3,9816,512,1399.963,,,,,,176,102,0,,,,, +317,9,3,9817,,1400.173,,8,F3,pp,8,144,53,8,,,,g, +317,9,3,9817,,1400.223,,,,,,144,53,0,,,,, +317,10,3,9818,,1400.248,,8,F#2,pp,8,144,42,8,,,,g, +317,10,3,9818,,1400.298,,,,,,144,42,0,,,,, +317,11,3,9819,,1400.323,,8,E4,pp,8,144,64,8,,,,g, +317,11,3,9819,,1400.373,,,,,,144,64,0,,,,, +317,12,3,9820,640,1400.398,64,16,C2,pp-,7,144,36,7,,,,, +317,12,3,9820,640,1400.615,,,,,,144,36,0,,,,, +317,13,3,9821,704,1400.615,64,16,C2,pp-,7,144,36,7,,,,, +317,14,3,9822,704,1400.615,64,16,G#2,pp-,7,144,44,7,,,,, +317,15,1,9823,768,1400.832,224,8,F3,,,,,,,,,, +317,16,3,9824,768,1400.832,256,4,C2,,,,,,,,,, +317,17,3,9825,768,1400.832,256,4,G#2,,,,,,,,,, +317,3,1,9811,32,1401.593,,,,,,144,53,0,,,,, +317,18,1,9826,992,1401.593,32,32,F3,ppp,5,144,53,5,,,,, +317,13,3,9821,704,1401.702,,,,,,144,36,0,,,,, +317,14,3,9822,704,1401.702,,,,,,144,44,0,,,,, +317,18,1,9826,992,1401.702,,,,,,144,53,0,,,,, +317,19,1,9827,1024,1401.702,256,4,E1,ppp,5,144,28,5,,,,, +317,20,1,9828,1024,1401.702,256,4,F3,ppp,5,144,53,5,,,,, +317,21,3,9829,1024,1401.702,21,32,E4,ppp-,4,144,64,4,,,,, +317,21,3,9829,1024,1401.773,,,,,,144,64,0,,,,, +317,22,3,9830,1045,1401.773,21,32,C1,pppp+,3,144,24,3,,,,, +317,22,3,9830,1045,1401.845,,,,,,144,24,0,,,,, +317,23,3,9831,1066,1401.845,22,32,E3,pppp+,3,144,52,3,,,,, +317,23,3,9831,1066,1401.919,,,,,,144,52,0,,,,, +317,24,3,9832,1088,1401.919,21,32,F2,pppp+,3,144,41,3,,,,, +317,24,3,9832,1088,1401.991,,,,,,144,41,0,,,,, +317,25,3,9833,1109,1401.991,21,32,C1,pppp+,3,144,24,3,,,,, +317,25,3,9833,1109,1402.062,,,,,,144,24,0,,,,, +317,26,3,9834,1130,1402.062,22,32,G#1,pppp+,3,144,32,3,,,,, +317,27,3,9835,1130,1402.062,32,32,F2,pppp+,3,144,41,3,,,,, +317,28,3,9836,1130,1402.062,32,32,E3,pppp+,3,144,52,3,,,,, +317,26,3,9834,1130,1402.137,,,,,,144,32,0,,,,, +317,29,3,9837,1152,1402.137,21,32,F#1,pppp,2,144,30,2,,,,, +317,27,3,9835,1130,1402.171,,,,,,144,41,0,,,,, +317,28,3,9836,1130,1402.171,,,,,,144,52,0,,,,, +317,29,3,9837,1152,1402.208,,,,,,144,30,0,,,,, +317,31,3,9838,1173,1402.208,21,32,F2,pppp,2,144,41,2,,,,, +317,32,3,9839,1173,1402.208,32,32,E3,pppp,2,144,52,2,,,,, +317,30,0,9840,1173,1402.208,,,,,,176,64,127,,,,,V +317,31,3,9838,1173,1402.279,,,,,,144,41,0,,,,, +317,33,3,9841,1194,1402.279,64,16,C1,pppp,2,144,24,2,,,,, +317,34,3,9842,1194,1402.279,64,16,F#1,pppp,2,144,30,2,,,,, +317,32,3,9839,1173,1402.317,,,,,,144,52,0,,,,, +317,33,3,9841,1194,1402.497,,,,,,144,24,0,,,,, +317,34,3,9842,1194,1402.497,,,,,,144,30,0,,,,, +317,35,3,9843,1258,1402.497,22,32,F#1,pppp,2,144,30,2,,,,, +317,36,3,9844,1258,1402.497,32,32,G#1,pppp,2,144,32,2,,,,, +317,19,1,9827,1024,1402.571,,,,,,144,28,0,,,,, +317,20,1,9828,1024,1402.571,,,,,,144,53,0,,,,, +317,35,3,9843,1258,1402.571,,,,,,144,30,0,,,,, +317,37,1,9845,1280,1402.571,,,,,,176,102,0,,,,, +317,38,3,9846,1280,1402.571,,,,,,176,102,0,,,,, +317,36,3,9844,1258,1402.605,,,,,,144,32,0,,,,, +317,39,0,9847,1791,1404.307,,,,,,176,64,0,,,,,^ +318,0,0,9848,0,1404.311,,,,,,,,,318,,,, +318,1,1,9849,0,1404.311,,,,,,176,102,0,,,,, +318,2,3,9850,0,1404.311,,,,,,176,102,0,,,,, +318,3,4,9851,0,1404.311,,,,,,176,102,0,,,,, +318,4,0,9852,0,1404.311,,,,,,,,,,6015,,, +318,6,1,9853,128,1404.745,28,32,D6,p,11,144,86,11,,,,, +318,5,0,9854,128,1404.745,,,,,,176,64,127,,,,,V +318,6,1,9853,128,1404.84,,,,,,144,86,0,,,,, +318,7,1,9855,156,1404.84,28,32,F#7,p+,12,144,102,12,,,,, +318,7,1,9855,156,1404.936,,,,,,144,102,0,,,,, +318,8,1,9856,184,1404.936,43,32,E7,p+,12,144,100,12,,,,, +318,8,1,9856,184,1405.082,,,,,,144,100,0,,,,, +318,9,1,9857,227,1405.082,29,32,D5,mp-,13,144,74,13,,,,, +318,9,1,9857,227,1405.18,,,,,,144,74,0,,,,, +318,10,1,9858,256,1405.18,25,32,E6,mp,14,144,88,14,,,,, +318,11,1,9859,281,1405.265,26,32,A#5,mp+,15,144,82,15,,,,, +318,10,1,9858,256,1405.353,,,,,,144,88,0,,,,, +318,11,1,9859,281,1405.353,,,,,,144,82,0,,,,, +318,12,1,9860,307,1405.353,38,32,E6,mp+,15,144,88,15,,,,, +318,13,1,9861,345,1405.482,39,32,D4,mf-,16,144,62,16,,,,, +318,12,1,9860,307,1405.49,,,,,,144,88,0,,,,, +318,13,1,9861,345,1405.615,,,,,,144,62,0,,,,, +318,14,1,9862,384,1405.615,42,32,A#5,mf,17,144,82,17,,,,, +318,14,1,9862,384,1405.758,,,,,,144,82,0,,,,, +318,15,1,9863,426,1405.758,29,32,F#6,mf+,18,144,90,18,,,,, +318,15,1,9863,426,1405.856,,,,,,144,90,0,,,,, +318,16,1,9864,455,1405.856,28,32,E5,f-,19,144,76,19,,,,, +318,16,1,9864,455,1405.951,,,,,,144,76,0,,,,, +318,17,1,9865,483,1405.951,29,32,A#4,f-,19,144,70,19,,,,, +318,17,1,9865,483,1406.05,,,,,,144,70,0,,,,, +318,18,1,9866,512,1406.05,85,8,D#3,f,20,144,51,20,,,,, +318,19,1,9867,512,1406.05,128,8,D7,ff,22,144,98,22,,,,, +318,20,1,9868,512,1406.05,128,8,F#7,f,20,144,102,20,,,,, +318,21,3,9869,512,1406.05,,,,,,176,102,0,,,,, +318,22,4,9870,512,1406.05,,,,,,176,102,0,,,,, +318,19,1,9867,512,1406.338,,,,,,144,98,0,,,,, +318,23,1,9871,597,1406.338,171,4,D7,f,20,144,98,20,,,,, +318,24,4,9872,597,1406.338,171,4,F#2,f,20,144,42,20,,,,, +318,25,3,9873,640,1406.484,25,32,E1,pp,8,144,28,8,,,,, +318,18,1,9866,512,1406.488,,,,,,144,51,0,,,,, +318,25,3,9873,640,1406.569,,,,,,144,28,0,,,,, +318,26,3,9874,665,1406.569,26,32,C2,pp-,7,144,36,7,,,,, +318,20,1,9868,512,1406.634,,,,,,144,102,0,,,,, +318,26,3,9874,665,1406.658,,,,,,144,36,0,,,,, +318,27,3,9875,691,1406.658,25,32,E1,ppp,5,144,28,5,,,,, +318,27,3,9875,691,1406.743,,,,,,144,28,0,,,,, +318,28,3,9876,716,1406.743,26,32,C2,ppp-,4,144,36,4,,,,, +318,28,3,9876,716,1406.831,,,,,,144,36,0,,,,, +318,29,3,9877,742,1406.831,26,32,G#1,pppp,2,144,32,2,,,,, +318,29,3,9877,742,1406.919,,,,,,144,32,0,,,,, +318,30,1,9878,768,1406.919,,,,,,176,102,0,,,,, +318,31,3,9879,768,1406.919,,,,,,176,102,0,,,,, +318,32,4,9880,768,1406.919,,,,,,176,102,0,,,,, +318,23,1,9871,597,1406.919,,,,,,144,98,0,,,,, +318,24,4,9872,597,1406.919,,,,,,144,42,0,,,,, +319,0,0,9881,0,1410.398,,,,,,,,,319,,,, +319,1,1,9882,0,1410.398,256,4,G#5,f,20,144,80,20,,,,, +319,2,1,9883,0,1410.398,256,4,F#7,f,20,144,102,20,,,,, +319,3,3,9884,0,1410.398,,,,,,176,102,0,,,,, +319,4,0,9885,196,1411.015,,,,,,176,64,0,,,,,^ +319,1,1,9882,0,1411.267,,,,,,144,80,0,,,,, +319,2,1,9883,0,1411.267,,,,,,144,102,0,,,,, +319,6,1,9886,256,1411.267,21,32,G#6,p,11,144,92,11,,,,, +319,7,1,9887,256,1411.267,32,32,F#7,p,11,144,102,11,,,,, +319,8,3,9888,256,1411.267,,,,,,176,102,0,,,,, +319,5,0,9889,256,1411.315,,,,,,176,64,127,,,,,V +319,6,1,9886,256,1411.338,,,,,,144,92,0,,,,, +319,9,1,9890,277,1411.338,21,32,C7,p+,12,144,96,12,,,,, +319,7,1,9887,256,1411.376,,,,,,144,102,0,,,,, +319,9,1,9890,277,1411.41,,,,,,144,96,0,,,,, +319,10,1,9891,298,1411.41,22,32,E4,p+,12,144,64,12,,,,, +319,10,1,9891,298,1411.484,,,,,,144,64,0,,,,, +319,11,1,9892,320,1411.484,21,32,C6,mp-,13,144,84,13,,,,, +319,11,1,9892,320,1411.556,,,,,,144,84,0,,,,, +319,12,1,9893,341,1411.556,21,32,F3,mp,14,144,53,14,,,,, +319,12,1,9893,341,1411.627,,,,,,144,53,0,,,,, +319,13,1,9894,362,1411.627,22,32,E4,mp+,15,144,64,15,,,,, +319,13,1,9894,362,1411.702,,,,,,144,64,0,,,,, +319,14,1,9895,384,1411.702,21,32,F3,mf-,16,144,53,16,,,,, +319,14,1,9895,384,1411.773,,,,,,144,53,0,,,,, +319,15,1,9896,405,1411.773,21,32,E4,mf-,16,144,64,16,,,,, +319,15,1,9896,405,1411.845,,,,,,144,64,0,,,,, +319,16,1,9897,426,1411.845,22,32,F3,mf,17,144,53,17,,,,, +319,16,1,9897,426,1411.919,,,,,,144,53,0,,,,, +319,17,1,9898,448,1411.919,,,,,,176,102,0,,,,, +319,18,0,9899,486,1411.942,,,,,,176,64,0,,,,,^ +319,20,1,9900,512,1412.137,85,8,A#4,p,11,144,70,11,,,,, +319,21,1,9901,512,1412.137,128,8,E5,p,11,144,76,11,,,,, +319,22,1,9902,512,1412.137,128,8,F#5,p,11,144,78,11,,,,, +319,23,3,9903,512,1412.137,85,8,D#3,p,11,144,51,11,,,,, +319,24,3,9904,512,1412.137,128,8,D4,p,11,144,62,11,,,,, +319,19,0,9905,512,1412.242,,,,,,176,64,127,,,,,V +319,20,1,9900,512,1412.425,,,,,,144,70,0,,,,, +319,23,3,9903,512,1412.425,,,,,,144,51,0,,,,, +319,25,1,9906,597,1412.425,171,4,G#5,pp,8,144,80,8,,,,, +319,26,1,9907,597,1412.425,256,4,C6,pp,8,144,84,8,,,,, +319,27,1,9908,597,1412.425,256,4,F#6,pp,8,144,90,8,,,,, +319,28,3,9909,597,1412.425,,,,,,176,102,0,,,,, +319,21,1,9901,512,1412.571,,,,,,144,76,0,,,,, +319,22,1,9902,512,1412.571,,,,,,144,78,0,,,,, +319,24,3,9904,512,1412.571,,,,,,144,62,0,,,,, +319,29,3,9910,640,1412.571,,,,,,176,102,0,,,,, +319,30,3,9911,661,1412.643,21,32,F2,pp,8,144,41,8,,,,, +319,30,3,9911,661,1412.714,,,,,,144,41,0,,,,, +319,31,3,9912,682,1412.714,22,32,E3,pp,8,144,52,8,,,,, +319,31,3,9912,682,1412.789,,,,,,144,52,0,,,,, +319,32,3,9913,704,1412.789,21,32,F2,pp,8,144,41,8,,,,, +319,32,3,9913,704,1412.86,,,,,,144,41,0,,,,, +319,33,3,9914,725,1412.86,43,16,E3,pp,8,144,52,8,,,,, +319,27,1,9908,597,1413.006,,,,,,144,90,0,,,,, +319,34,1,9915,768,1413.006,512,2,A#5,ppp,5,144,82,5,,,,, +319,35,1,9916,768,1413.006,512,2,E6,ppp,5,144,88,5,,,,, +319,36,1,9917,768,1413.006,512,2,F#6,ppp,5,144,90,5,,,,, +319,37,3,9918,768,1413.006,512,2,D#2,ppp,5,144,39,5,,,,, +319,38,3,9919,768,1413.006,512,2,D3,ppp,5,144,50,5,,,,, +319,25,1,9906,597,1413.231,,,,,,144,80,0,,,,, +319,33,3,9914,725,1413.231,,,,,,144,52,0,,,,, +319,26,1,9907,597,1413.52,,,,,,144,84,0,,,,, +319,39,0,9920,1279,1414.594,,,,,,176,64,0,,,,,^ +319,37,3,9918,768,1414.745,,,,,,144,39,0,,,,, +319,41,1,9921,1280,1414.745,85,8,G#6,ppp,5,144,92,5,,,,, +319,42,1,9922,1280,1414.745,128,8,C7,ppp,5,144,96,5,,,,, +319,43,1,9923,1280,1414.745,128,8,F#7,ppp,5,144,102,5,,,,, +319,44,3,9924,1280,1414.745,85,8,F1,ppp,5,144,29,5,,,,, +319,45,3,9925,1280,1414.745,128,8,D#2,ppp,5,144,39,5,,,,, +319,40,0,9926,1280,1414.894,,,,,,176,64,127,,,,,V +319,34,1,9915,768,1414.895,,,,,,144,82,0,,,,, +319,35,1,9916,768,1414.895,,,,,,144,88,0,,,,, +319,36,1,9917,768,1414.895,,,,,,144,90,0,,,,, +319,38,3,9919,768,1414.895,,,,,,144,50,0,,,,, +319,41,1,9921,1280,1415.034,,,,,,144,92,0,,,,, +319,43,1,9923,1280,1415.034,,,,,,144,102,0,,,,, +319,44,3,9924,1280,1415.034,,,,,,144,29,0,,,,, +319,46,1,9927,1365,1415.034,171,4,A#6,ppp,5,144,94,5,,,,, +319,47,1,9928,1365,1415.034,256,4,E7,ppp,5,144,100,5,,,,, +319,48,1,9929,1365,1415.034,256,4,F#7,ppp,5,144,102,5,,,,, +319,49,3,9930,1365,1415.034,171,4,D#1,ppp,5,144,27,5,,,,, +319,50,3,9931,1365,1415.034,256,4,D2,ppp,5,144,38,5,,,,, +319,42,1,9922,1280,1415.18,,,,,,144,96,0,,,,, +319,45,3,9925,1280,1415.18,,,,,,144,39,0,,,,, +319,51,1,9932,1536,1415.615,256,4,A#6,,,,,,,,,, +319,52,1,9933,1536,1415.615,256,4,E7,,,,,,,,,, +319,53,1,9934,1536,1415.615,256,4,F#7,,,,,,,,,, +319,54,3,9935,1536,1415.615,256,4,D#1,,,,,,,,,, +319,55,3,9936,1536,1415.615,256,4,D2,,,,,,,,,, +320,0,0,9937,0,1416.484,,,,,,,,,320,,,, +320,1,1,9938,0,1416.484,341,2,G#6,ppp,5,144,92,5,,,,, +320,2,1,9939,0,1416.484,512,2,C7,ppp,5,144,96,5,,,,, +320,3,1,9940,0,1416.484,512,2,F#7,ppp,5,144,102,5,,,,, +320,4,3,9941,0,1416.484,341,2,F1,ppp,5,144,29,5,,,,, +320,5,3,9942,0,1416.484,512,2,E2,ppp,5,144,40,5,,,,, +319,46,1,9927,1365,1416.484,,,,,,144,94,0,,,,, +319,49,3,9930,1365,1416.484,,,,,,144,27,0,,,,, +319,47,1,9928,1365,1416.773,,,,,,144,100,0,,,,, +319,48,1,9929,1365,1416.773,,,,,,144,102,0,,,,, +319,50,3,9931,1365,1416.773,,,,,,144,38,0,,,,, +320,1,1,9938,0,1417.643,,,,,,144,92,0,,,,, +320,3,1,9940,0,1417.643,,,,,,144,102,0,,,,, +320,4,3,9941,0,1417.643,,,,,,144,29,0,,,,, +320,6,1,9943,341,1417.643,171,4,A#6,ppp,5,144,94,5,,,,, +320,7,1,9944,341,1417.643,256,4,E7,ppp,5,144,100,5,,,,, +320,8,1,9945,341,1417.643,256,4,F#7,ppp,5,144,102,5,,,,, +320,9,3,9946,341,1417.643,171,4,D#1,ppp,5,144,27,5,,,,, +320,10,3,9947,341,1417.643,256,4,D2,ppp,5,144,38,5,,,,, +320,2,1,9939,0,1418.224,,,,,,144,96,0,,,,, +320,5,3,9942,0,1418.224,,,,,,144,40,0,,,,, +320,11,1,9948,512,1418.224,512,2,A#6,,,,,,,,,, +320,12,1,9949,512,1418.224,512,2,E7,,,,,,,,,, +320,13,1,9950,512,1418.224,512,2,F#7,,,,,,,,,, +320,14,3,9951,512,1418.224,512,2,D#1,,,,,,,,,, +320,15,3,9952,512,1418.224,512,2,D2,,,,,,,,,, +320,16,1,9953,1024,1419.963,1024,1,G#4,ppp,5,144,68,5,,,,, +320,17,1,9954,1024,1419.963,1024,1,C5,ppp,5,144,72,5,,,,, +320,18,1,9955,1024,1419.963,1024,1,F#5,ppp,5,144,78,5,,,,, +320,19,3,9956,1024,1419.963,1024,1,F3,ppp,5,144,53,5,,,,, +320,20,3,9957,1024,1419.963,1024,1,E4,ppp,5,144,64,5,,,,, +320,6,1,9943,341,1419.963,,,,,,144,94,0,,,,, +320,9,3,9946,341,1419.963,,,,,,144,27,0,,,,, +320,7,1,9944,341,1420.251,,,,,,144,100,0,,,,, +320,8,1,9945,341,1420.251,,,,,,144,102,0,,,,, +320,10,3,9947,341,1420.251,,,,,,144,38,0,,,,, +321,0,0,9958,0,1423.441,,,,,,,,,321,,,, +321,1,1,9959,0,1423.441,256,4,G#4,,,,,,,,,, +321,2,1,9960,0,1423.441,256,4,C5,,,,,,,,,, +321,3,1,9961,0,1423.441,256,4,F#5,,,,,,,,,, +321,4,3,9962,0,1423.441,256,4,F3,,,,,,,,,, +321,5,3,9963,0,1423.441,256,4,E4,,,,,,,,,, +321,6,1,9964,256,1424.311,1792,1,A#4,pp,8,144,70,8,,,,, +321,7,1,9965,256,1424.311,1024,1,E5,pp,8,144,76,8,,,,, +321,8,1,9966,256,1424.311,1024,1,F#5,pp,8,144,78,8,,,,, +321,9,3,9967,256,1424.311,1792,1,D#3,pp,8,144,51,8,,,,, +321,10,3,9968,256,1424.311,1024,1,D4,pp,8,144,62,8,,,,, +320,16,1,9953,1024,1424.386,,,,,,144,68,0,,,,, +320,17,1,9954,1024,1424.386,,,,,,144,72,0,,,,, +320,18,1,9955,1024,1424.386,,,,,,144,78,0,,,,, +320,19,3,9956,1024,1424.386,,,,,,144,53,0,,,,, +320,20,3,9957,1024,1424.386,,,,,,144,64,0,,,,, +321,7,1,9965,256,1427.789,,,,,,144,76,0,,,,, +321,8,1,9966,256,1427.789,,,,,,144,78,0,,,,, +321,10,3,9968,256,1427.789,,,,,,144,62,0,,,,, +321,11,0,9969,2047,1430.394,,,,,,176,64,0,,,,,^ +321,6,1,9964,256,1430.398,,,,,,144,70,0,,,,, +321,9,3,9967,256,1430.398,,,,,,144,51,0,,,,, +322,0,0,9970,0,1430.398,,,,,,,,,322,,,, +322,1,1,9971,0,1430.398,,,,,,176,102,0,,,,, +322,2,3,9972,0,1430.398,,,,,,176,102,0,,,,, +322,3,0,9973,0,1430.398,,,,,,,,,,6016,,, +322,4,3,9974,256,1431.267,85,8,F#2,mp,14,144,42,14,,,,, +322,4,3,9974,256,1431.556,,,,,,144,42,0,,,,, +322,5,3,9975,341,1431.556,128,8,F#2,fff,24,144,42,23,,,,, +322,6,3,9976,341,1431.556,128,8,C3,fff,24,144,48,23,,,,, +322,5,3,9975,341,1431.991,,,,,,144,42,0,,,,, +322,6,3,9976,341,1431.991,,,,,,144,48,0,,,,, +322,7,3,9977,469,1431.991,43,16,F#2,fff,24,144,42,23,,,,, +322,8,3,9978,469,1431.991,64,16,B2,fff,24,144,47,23,,,,, +322,9,3,9979,469,1431.991,64,16,C3,fff,24,144,48,23,,,,, +322,7,3,9977,469,1432.041,,,,,,144,42,0,,,,, +322,8,3,9978,469,1432.041,,,,,,144,47,0,,,,, +322,9,3,9979,469,1432.041,,,,,,144,48,0,,,,, +322,11,1,9980,512,1432.137,,,,,,176,102,0,,,,, +322,12,3,9981,512,1432.137,,,,,,176,102,0,,,,, +322,10,0,9982,512,1432.237,,,,,,176,64,127,,,,,V +322,13,0,9983,768,1432.856,,,,,,176,64,0,,,,,^ +322,15,3,9984,768,1433.006,21,32,D4,fff,24,144,62,23,,,,, +322,15,3,9984,768,1433.078,,,,,,144,62,0,,,,, +322,16,3,9985,789,1433.078,21,32,A#0,fff,24,144,22,23,,,,, +322,16,3,9985,789,1433.149,,,,,,144,22,0,,,,, +322,17,3,9986,810,1433.149,22,32,F#1,fff,24,144,30,23,,,,, +322,14,0,9987,768,1433.156,,,,,,176,64,127,,,,,V +322,17,3,9986,810,1433.224,,,,,,144,30,0,,,,, +322,18,3,9988,832,1433.224,21,32,B1,fff,24,144,35,23,,,,, +322,20,0,9989,896,1433.291,,,,,,176,64,0,,,,,^ +322,18,3,9988,832,1433.295,,,,,,144,35,0,,,,, +322,19,3,9990,853,1433.295,43,16,C2,fff,24,144,36,23,,,,, +322,19,3,9990,853,1433.441,,,,,,144,36,0,,,,, +322,22,3,9991,896,1433.441,28,32,F#1,f,20,144,30,20,,,,, +322,22,3,9991,896,1433.536,,,,,,144,30,0,,,,, +322,23,3,9992,924,1433.536,28,32,B1,f,20,144,35,20,,,,, +322,21,0,9993,896,1433.591,,,,,,176,64,127,,,,,V +322,23,3,9992,924,1433.631,,,,,,144,35,0,,,,, +322,24,3,9994,952,1433.631,43,32,C2,f,20,144,36,20,,,,, +322,24,3,9994,952,1433.777,,,,,,144,36,0,,,,, +322,25,3,9995,995,1433.777,29,32,B1,mf+,18,144,35,18,,,,, +322,25,3,9995,995,1433.876,,,,,,144,35,0,,,,, +322,26,3,9996,1024,1433.876,42,32,C2,mf-,16,144,36,16,,,,, +322,26,3,9996,1024,1434.018,,,,,,144,36,0,,,,, +322,27,3,9997,1066,1434.018,29,32,B1,mp,14,144,35,14,,,,, +322,27,3,9997,1066,1434.117,,,,,,144,35,0,,,,, +322,29,0,9998,1095,1434.117,,,,,,176,64,0,,,,,^ +322,28,3,9999,1095,1434.117,28,32,D5,p+,12,144,74,12,,,,, +322,28,3,9999,1095,1434.212,,,,,,144,74,0,,,,, +322,30,3,10000,1123,1434.212,29,32,A#0,p,11,144,22,11,,,,, +322,30,3,10000,1123,1434.311,,,,,,144,22,0,,,,, +322,31,3,10001,1152,1434.311,42,32,F#1,pp+,9,144,30,9,,,,, +322,31,3,10001,1152,1434.453,,,,,,144,30,0,,,,, +322,32,3,10002,1194,1434.453,29,32,C2,pp-,7,144,36,7,,,,, +322,32,3,10002,1194,1434.552,,,,,,144,36,0,,,,, +322,33,3,10003,1223,1434.552,28,32,B1,ppp,5,144,35,5,,,,, +322,33,3,10003,1223,1434.647,,,,,,144,35,0,,,,, +322,34,3,10004,1251,1434.647,29,32,C2,ppp,5,144,36,5,,,,, +322,34,3,10004,1251,1434.745,,,,,,144,36,0,,,,, +322,35,1,10005,1280,1434.745,256,4,D6,ppp,5,144,86,5,,,,, +322,36,3,10006,1280,1434.745,,,,,,176,102,0,,,,, +322,35,1,10005,1280,1435.615,,,,,,144,86,0,,,,, +323,0,0,10007,0,1435.615,,,,,,,,,323,,,, +323,1,0,10008,0,1435.615,,,,,,,,,,6017,,, +323,3,1,10009,0,1435.615,512,2,A#6,f,20,144,94,20,,,,, +323,4,3,10010,0,1435.615,,,,,,176,102,0,,,,, +323,5,4,10011,0,1435.615,,,,,,176,102,0,,,,, +323,2,0,10012,0,1435.615,,,,,,176,64,127,,,,,V +323,6,3,10013,256,1436.484,256,4,G#1,pp,8,144,32,8,,,,, +323,7,3,10014,256,1436.484,256,4,F#2,pp,8,144,42,8,,,,, +323,8,4,10015,256,1436.484,512,2,G#2,fff,24,144,44,23,,,,, +323,3,1,10009,0,1437.354,,,,,,144,94,0,,,,, +323,9,1,10016,512,1437.354,32,32,E6,f,20,144,88,20,,,,, +323,10,3,10017,512,1437.354,85,8,G#1,,,,,,,,,, +323,11,3,10018,512,1437.354,128,8,F#2,,,,,,,,,, +323,12,1,10019,544,1437.463,224,8,D4,f,20,144,62,20,,,,, +323,13,1,10020,544,1437.463,128,8,E6,,,,,,,,,, +323,6,3,10013,256,1437.643,,,,,,144,32,0,,,,, +323,14,3,10021,597,1437.643,43,16,C3,ppp,5,144,48,5,,,,, +323,7,3,10014,256,1437.789,,,,,,144,42,0,,,,, +323,14,3,10021,597,1437.789,,,,,,144,48,0,,,,, +323,15,3,10022,640,1437.789,21,32,E3,ppp,5,144,52,5,,,,, +323,15,3,10022,640,1437.86,,,,,,144,52,0,,,,, +323,16,3,10023,661,1437.86,21,32,C#4,ppp+,6,144,61,6,,,,, +323,9,1,10016,512,1437.898,,,,,,144,88,0,,,,, +323,16,3,10023,661,1437.931,,,,,,144,61,0,,,,, +323,17,3,10024,682,1437.931,22,32,D2,ppp+,6,144,38,6,,,,, +323,17,3,10024,682,1438.006,,,,,,144,38,0,,,,, +323,18,3,10025,704,1438.006,21,32,G#1,pp-,7,144,32,7,,,,, +323,18,3,10025,704,1438.078,,,,,,144,32,0,,,,, +323,19,3,10026,725,1438.078,21,32,C3,pp-,7,144,48,7,,,,, +323,19,3,10026,725,1438.149,,,,,,144,48,0,,,,, +323,20,3,10027,746,1438.149,22,32,E3,pp,8,144,52,8,,,,, +323,21,0,10028,768,1438.218,,,,,,176,64,0,,,,,^ +323,8,4,10015,256,1438.224,,,,,,144,44,0,,,,, +323,12,1,10019,544,1438.224,,,,,,144,62,0,,,,, +323,20,3,10027,746,1438.224,,,,,,144,52,0,,,,, +323,22,1,10029,768,1438.224,,,,,,176,102,0,,,,, +323,23,3,10030,768,1438.224,85,16,G#1,p,11,144,32,11,,,,, +323,24,3,10031,768,1438.224,64,16,D2,p,11,144,38,11,,,,, +323,25,3,10032,768,1438.224,64,16,C3,p,11,144,48,11,,,,, +323,26,3,10033,768,1438.224,64,16,C#4,p,11,144,61,11,,,,, +323,27,4,10034,768,1438.224,,,,,,176,102,0,,,,, +323,24,3,10031,768,1438.441,,,,,,144,38,0,,,,, +323,25,3,10032,768,1438.441,,,,,,144,48,0,,,,, +323,26,3,10033,768,1438.441,,,,,,144,61,0,,,,, +323,23,3,10030,768,1438.512,,,,,,144,32,0,,,,, +323,29,3,10035,853,1438.512,14,64,C#7,ppp,5,144,97,5,,,,, +323,28,0,10036,853,1438.518,,,,,,176,64,127,,,,,V +323,29,3,10035,853,1438.56,,,,,,144,97,0,,,,, +323,30,3,10037,867,1438.56,14,64,G#4,ppp,5,144,68,5,,,,, +323,30,3,10037,867,1438.607,,,,,,144,68,0,,,,, +323,31,3,10038,881,1438.607,15,64,D5,ppp+,6,144,74,6,,,,, +323,31,3,10038,881,1438.658,,,,,,144,74,0,,,,, +323,32,3,10039,896,1438.658,14,64,G#4,ppp+,6,144,68,6,,,,, +323,32,3,10039,896,1438.706,,,,,,144,68,0,,,,, +323,33,3,10040,910,1438.706,14,64,D5,ppp+,6,144,74,6,,,,, +323,33,3,10040,910,1438.753,,,,,,144,74,0,,,,, +323,34,3,10041,924,1438.753,14,64,G#4,pp-,7,144,68,7,,,,, +323,34,3,10041,924,1438.801,,,,,,144,68,0,,,,, +323,35,3,10042,938,1438.801,57,16,C6,pp-,7,144,84,7,,,,, +323,35,3,10042,938,1438.995,,,,,,144,84,0,,,,, +323,36,3,10043,995,1438.995,29,32,E6,pp+,9,144,88,9,,,,, +323,36,3,10043,995,1439.093,,,,,,144,88,0,,,,, +323,37,1,10044,1024,1439.093,21,32,G#3,pp+,9,144,56,9,,,,, +323,38,3,10045,1024,1439.093,,,,,,176,102,0,,,,, +323,37,1,10044,1024,1439.164,,,,,,144,56,0,,,,, +323,39,1,10046,1045,1439.164,21,32,C#6,p-,10,144,85,10,,,,, +323,39,1,10046,1045,1439.236,,,,,,144,85,0,,,,, +323,40,1,10047,1066,1439.236,22,32,C5,p-,10,144,72,10,,,,, +323,40,1,10047,1066,1439.311,,,,,,144,72,0,,,,, +323,41,1,10048,1088,1439.311,21,32,D4,p,11,144,62,11,,,,, +323,41,1,10048,1088,1439.382,,,,,,144,62,0,,,,, +323,42,1,10049,1109,1439.382,32,32,C#6,p,11,144,85,11,,,,, +323,42,1,10049,1109,1439.491,,,,,,144,85,0,,,,, +323,43,1,10050,1141,1439.491,32,32,D3,p+,12,144,50,12,,,,, +323,43,1,10050,1141,1439.599,,,,,,144,50,0,,,,, +323,44,1,10051,1173,1439.599,21,32,G#2,mp-,13,144,44,13,,,,, +323,44,1,10051,1173,1439.671,,,,,,144,44,0,,,,, +323,45,1,10052,1194,1439.671,22,32,C#6,mp-,13,144,85,13,,,,, +323,45,1,10052,1194,1439.745,,,,,,144,85,0,,,,, +323,46,1,10053,1216,1439.745,21,32,C5,mp,14,144,72,14,,,,, +323,48,0,10054,1258,1439.813,,,,,,176,64,0,,,,,^ +323,46,1,10053,1216,1439.817,,,,,,144,72,0,,,,, +323,47,1,10055,1237,1439.817,21,32,D3,mp,14,144,50,14,,,,, +323,47,1,10055,1237,1439.888,,,,,,144,50,0,,,,, +323,49,1,10056,1258,1439.888,22,32,G#2,f,20,144,44,20,,,,, +323,50,1,10057,1258,1439.888,32,32,D3,f,20,144,50,20,,,,, +323,51,1,10058,1258,1439.888,32,32,C5,f,20,144,72,20,,,,, +323,52,1,10059,1258,1439.888,32,32,E5,f,20,144,76,20,,,,, +323,53,1,10060,1258,1439.888,32,32,C#6,f,20,144,85,20,,,,, +323,49,1,10056,1258,1439.963,,,,,,144,44,0,,,,, +323,54,1,10061,,1439.963,,8,C#5,f,20,144,73,20,,,,g, +323,50,1,10057,1258,1439.997,,,,,,144,50,0,,,,, +323,51,1,10058,1258,1439.997,,,,,,144,72,0,,,,, +323,52,1,10059,1258,1439.997,,,,,,144,76,0,,,,, +323,53,1,10060,1258,1439.997,,,,,,144,85,0,,,,, +323,54,1,10061,,1440.013,,,,,,144,73,0,,,,, +324,0,0,10062,0,1440.038,,,,,,,,,324,,,, +324,2,1,10063,0,1440.038,85,8,F#4,mp,14,144,66,14,,,,, +324,3,1,10064,0,1440.038,128,8,E5,pp,8,144,76,8,,,,, +324,4,3,10065,0,1440.038,256,4,G#1,pp,8,144,32,8,,,,, +324,1,0,10066,0,1440.113,,,,,,176,64,127,,,,,V +324,2,1,10063,0,1440.326,,,,,,144,66,0,,,,, +324,3,1,10064,0,1440.326,,,,,,144,76,0,,,,, +324,5,1,10067,85,1440.326,128,8,F#4,f,20,144,66,20,,,,, +324,6,1,10068,85,1440.326,128,8,E5,p,11,144,76,11,,,,, +324,7,1,10069,85,1440.326,128,8,A#6,f,20,144,94,20,,,,, +324,5,1,10067,85,1440.761,,,,,,144,66,0,,,,, +324,6,1,10068,85,1440.761,,,,,,144,76,0,,,,, +324,7,1,10069,85,1440.761,,,,,,144,94,0,,,,, +324,8,1,10070,213,1440.761,43,16,D4,p,11,144,62,11,,,,, +324,9,1,10071,213,1440.761,64,16,F#4,p,11,144,66,11,,,,, +324,10,1,10072,213,1440.761,64,16,E5,p,11,144,76,11,,,,, +324,4,3,10065,0,1440.907,,,,,,144,32,0,,,,, +324,8,1,10070,213,1440.907,,,,,,144,62,0,,,,, +324,11,0,10073,256,1440.907,,,,,,176,64,0,,,,,^ +324,12,1,10074,256,1440.907,,,,,,176,102,0,,,,, +324,13,3,10075,256,1440.907,42,32,F3,ppp,5,144,53,5,,,,, +324,9,1,10071,213,1440.979,,,,,,144,66,0,,,,, +324,10,1,10072,213,1440.979,,,,,,144,76,0,,,,, +324,13,3,10075,256,1441.05,,,,,,144,53,0,,,,, +324,14,3,10076,298,1441.05,29,32,G1,ppp-,4,144,31,4,,,,, +324,14,3,10076,298,1441.148,,,,,,144,31,0,,,,, +324,15,3,10077,327,1441.148,28,32,A1,ppp-,4,144,33,4,,,,, +324,15,3,10077,327,1441.244,,,,,,144,33,0,,,,, +324,16,3,10078,355,1441.244,29,32,G1,ppp-,4,144,31,4,,,,, +324,16,3,10078,355,1441.342,,,,,,144,31,0,,,,, +324,17,3,10079,384,1441.342,28,32,A1,pppp+,3,144,33,3,,,,, +324,17,3,10079,384,1441.437,,,,,,144,33,0,,,,, +324,18,3,10080,412,1441.437,28,32,G1,pppp+,3,144,31,3,,,,, +324,18,3,10080,412,1441.532,,,,,,144,31,0,,,,, +324,19,3,10081,440,1441.532,43,32,F3,pppp+,3,144,53,3,,,,, +324,19,3,10081,440,1441.678,,,,,,144,53,0,,,,, +324,20,3,10082,483,1441.678,29,32,G1,pppp,2,144,31,2,,,,, +324,21,3,10083,483,1441.678,32,32,F3,pppp,2,144,53,2,,,,, +324,20,3,10082,483,1441.777,,,,,,144,31,0,,,,, +324,22,1,10084,512,1441.777,,,,,,176,102,0,,,,, +324,23,3,10085,512,1441.777,,,,,,176,102,0,,,,, +324,24,0,10086,512,1441.777,,,,,,,,,,6018,,, +324,21,3,10083,483,1441.787,,,,,,144,53,0,,,,, +324,25,1,10087,704,1442.429,32,32,E6,p,11,144,88,11,,,,, +324,25,1,10087,704,1442.538,,,,,,144,88,0,,,,, +324,26,1,10088,736,1442.538,32,32,D4,mp,14,144,62,14,,,,, +324,27,1,10089,736,1442.538,32,32,E6,mp,14,144,88,14,,,,, +324,26,1,10088,736,1442.646,,,,,,144,62,0,,,,, +324,27,1,10089,736,1442.646,,,,,,144,88,0,,,,, +324,28,1,10090,768,1442.646,76,16,F#6,mf,17,144,90,17,,,,, +324,29,3,10091,768,1442.646,,,,,,176,102,0,,,,, +324,28,1,10090,768,1442.905,,,,,,144,90,0,,,,, +324,30,1,10092,844,1442.905,26,32,D#3,mp,14,144,51,14,,,,, +324,30,1,10092,844,1442.993,,,,,,144,51,0,,,,, +324,31,1,10093,870,1442.993,26,32,A#4,p,11,144,70,11,,,,, +324,31,1,10093,870,1443.081,,,,,,144,70,0,,,,, +324,33,1,10094,896,1443.081,128,8,D4,ppp,5,144,62,5,,,,, +324,34,1,10095,896,1443.081,128,8,F#4,ppp,5,144,66,5,,,,, +324,35,1,10096,896,1443.081,128,8,E5,ppp,5,144,76,5,,,,, +324,32,0,10097,896,1443.081,,,,,,176,64,127,,,,,V +324,36,1,10098,1024,1443.516,128,8,D4,,,,,,,,,, +324,37,1,10099,1024,1443.516,128,8,F#4,,,,,,,,,, +324,38,1,10100,1024,1443.516,128,8,E5,,,,,,,,,, +324,33,1,10094,896,1443.951,,,,,,144,62,0,,,,, +324,34,1,10095,896,1443.951,,,,,,144,66,0,,,,, +324,35,1,10096,896,1443.951,,,,,,144,76,0,,,,, +324,39,1,10101,1152,1443.951,128,8,D4,mp,14,144,62,14,,,,, +324,40,1,10102,1152,1443.951,128,8,F#4,mp,14,144,66,14,,,,, +324,41,1,10103,1152,1443.951,128,8,E5,mp,14,144,76,14,,,,, +324,42,1,10104,1152,1443.951,128,8,A#6,f,20,144,94,20,,,,, +324,43,1,10105,1280,1444.386,256,4,D4,,,,,,,,,, +324,44,1,10106,1280,1444.386,256,4,F#4,,,,,,,,,, +324,45,1,10107,1280,1444.386,256,4,E5,,,,,,,,,, +324,46,1,10108,1280,1444.386,256,4,A#6,,,,,,,,,, +324,47,0,10109,1535,1445.103,,,,,,176,64,0,,,,,^ +324,39,1,10101,1152,1445.255,,,,,,144,62,0,,,,, +324,40,1,10102,1152,1445.255,,,,,,144,66,0,,,,, +324,41,1,10103,1152,1445.255,,,,,,144,76,0,,,,, +324,42,1,10104,1152,1445.255,,,,,,144,94,0,,,,, +325,0,0,10110,0,1445.255,,,,,,,,,325,,,, +325,2,1,10111,0,1445.255,28,32,G#6,ppp,5,144,92,5,,,,, +325,3,3,10112,0,1445.255,,,,,,176,102,0,,,,, +325,2,1,10111,0,1445.35,,,,,,144,92,0,,,,, +325,4,1,10113,28,1445.35,14,64,C7,ppp+,6,144,96,6,,,,, +325,4,1,10113,28,1445.398,,,,,,144,96,0,,,,, +325,5,1,10114,42,1445.398,29,32,F#7,ppp+,6,144,102,6,,,,, +325,1,0,10115,0,1445.403,,,,,,176,64,127,,,,,V +325,5,1,10114,42,1445.496,,,,,,144,102,0,,,,, +325,6,1,10116,71,1445.496,28,32,G#6,pp-,7,144,92,7,,,,, +325,6,1,10116,71,1445.591,,,,,,144,92,0,,,,, +325,7,1,10117,99,1445.591,29,32,C7,pp,8,144,96,8,,,,, +325,7,1,10117,99,1445.69,,,,,,144,96,0,,,,, +325,8,1,10118,128,1445.69,28,32,G#5,pp+,9,144,80,9,,,,, +325,8,1,10118,128,1445.785,,,,,,144,80,0,,,,, +325,9,1,10119,156,1445.785,14,64,C7,p-,10,144,96,10,,,,, +325,9,1,10119,156,1445.833,,,,,,144,96,0,,,,, +325,10,1,10120,170,1445.833,29,32,F#7,p,11,144,102,11,,,,, +325,10,1,10120,170,1445.931,,,,,,144,102,0,,,,, +325,11,1,10121,199,1445.931,28,32,G#5,p+,12,144,80,12,,,,, +325,11,1,10121,199,1446.026,,,,,,144,80,0,,,,, +325,12,1,10122,227,1446.026,29,32,C6,p+,12,144,84,12,,,,, +325,12,1,10122,227,1446.125,,,,,,144,84,0,,,,, +325,13,1,10123,256,1446.125,28,32,G#4,mp-,13,144,68,13,,,,, +325,14,1,10124,256,1446.125,32,32,C6,mp-,13,144,84,13,,,,, +325,15,1,10125,256,1446.125,32,32,F#6,mp-,13,144,90,13,,,,, +325,13,1,10123,256,1446.22,,,,,,144,68,0,,,,, +325,16,1,10126,284,1446.22,14,64,C7,mp,14,144,96,14,,,,, +325,14,1,10124,256,1446.233,,,,,,144,84,0,,,,, +325,15,1,10125,256,1446.233,,,,,,144,90,0,,,,, +325,16,1,10126,284,1446.267,,,,,,144,96,0,,,,, +325,17,1,10127,298,1446.267,29,32,F#7,mp+,15,144,102,15,,,,, +325,17,1,10127,298,1446.366,,,,,,144,102,0,,,,, +325,18,1,10128,327,1446.366,28,32,G#5,mf-,16,144,80,16,,,,, +325,18,1,10128,327,1446.461,,,,,,144,80,0,,,,, +325,19,1,10129,355,1446.461,29,32,C7,mf,17,144,96,17,,,,, +325,19,1,10129,355,1446.559,,,,,,144,96,0,,,,, +325,20,1,10130,384,1446.559,28,32,G#4,mf+,18,144,68,18,,,,, +325,21,1,10131,384,1446.559,32,32,C7,mf+,18,144,96,18,,,,, +325,22,1,10132,384,1446.559,32,32,F#7,mf+,18,144,102,18,,,,, +325,20,1,10130,384,1446.655,,,,,,144,68,0,,,,, +325,21,1,10131,384,1446.655,,,,,,144,96,0,,,,, +325,23,1,10133,412,1446.655,14,64,C7,f-,19,144,96,19,,,,, +325,22,1,10132,384,1446.668,,,,,,144,102,0,,,,, +325,23,1,10133,412,1446.702,,,,,,144,96,0,,,,, +325,24,1,10134,426,1446.702,29,32,F#7,f-,19,144,102,19,,,,, +325,24,1,10134,426,1446.801,,,,,,144,102,0,,,,, +325,25,1,10135,455,1446.801,28,32,G#4,f,20,144,68,20,,,,, +325,28,0,10136,512,1446.844,,,,,,176,64,0,,,,,^ +325,25,1,10135,455,1446.896,,,,,,144,68,0,,,,, +325,26,1,10137,483,1446.896,29,32,C6,f,20,144,84,20,,,,, +325,26,1,10137,483,1446.994,,,,,,144,84,0,,,,, +325,27,1,10138,512,1446.994,42,32,D5,pp,8,144,74,8,,,,, +325,27,1,10138,512,1447.137,,,,,,144,74,0,,,,, +325,30,1,10139,554,1447.137,29,32,G7,p-,10,144,103,10,,,,, +325,29,0,10140,512,1447.144,,,,,,176,64,127,,,,,V +325,30,1,10139,554,1447.235,,,,,,144,103,0,,,,, +325,31,1,10141,583,1447.235,42,32,G#5,p,11,144,80,11,,,,, +325,31,1,10141,583,1447.378,,,,,,144,80,0,,,,, +325,32,1,10142,625,1447.378,43,32,D6,mp-,13,144,86,13,,,,, +325,32,1,10142,625,1447.524,,,,,,144,86,0,,,,, +325,33,1,10143,668,1447.524,43,32,G7,mp,14,144,103,14,,,,, +325,33,1,10143,668,1447.67,,,,,,144,103,0,,,,, +325,34,1,10144,711,1447.67,28,32,F#4,mf-,16,144,66,16,,,,, +325,34,1,10144,711,1447.765,,,,,,144,66,0,,,,, +325,35,1,10145,739,1447.765,29,32,D5,mf,17,144,74,17,,,,, +325,35,1,10145,739,1447.864,,,,,,144,74,0,,,,, +325,36,1,10146,768,1447.864,28,32,F#4,f-,19,144,66,19,,,,, +325,37,1,10147,768,1447.864,32,32,D5,f-,19,144,74,19,,,,, +325,38,1,10148,768,1447.864,32,32,G6,f-,19,144,91,19,,,,, +325,39,3,10149,768,1447.864,,,,,,176,102,0,,,,, +325,36,1,10146,768,1447.959,,,,,,144,66,0,,,,, +325,40,1,10150,796,1447.959,28,32,G#5,f,20,144,80,20,,,,, +325,37,1,10147,768,1447.973,,,,,,144,74,0,,,,, +325,38,1,10148,768,1447.973,,,,,,144,91,0,,,,, +325,40,1,10150,796,1448.054,,,,,,144,80,0,,,,, +325,41,1,10151,824,1448.054,29,32,D5,f+,21,144,74,21,,,,, +325,41,1,10151,824,1448.153,,,,,,144,74,0,,,,, +325,42,1,10152,853,1448.153,171,8,G#5,ff,22,144,80,22,,,,, +325,43,1,10153,853,1448.153,128,8,G6,ff,22,144,91,22,,,,, +325,44,3,10154,896,1448.299,25,32,G#2,ff,22,144,44,22,,,,, +325,44,3,10154,896,1448.384,,,,,,144,44,0,,,,, +325,45,3,10155,921,1448.384,26,32,C4,ff,22,144,60,22,,,,, +325,45,3,10155,921,1448.472,,,,,,144,60,0,,,,, +325,46,3,10156,947,1448.472,25,32,F#4,ff,22,144,66,22,,,,, +325,46,3,10156,947,1448.557,,,,,,144,66,0,,,,, +325,47,3,10157,972,1448.557,26,32,G#2,ff,22,144,44,22,,,,, +325,43,1,10153,853,1448.587,,,,,,144,91,0,,,,, +325,47,3,10157,972,1448.645,,,,,,144,44,0,,,,, +325,48,3,10158,998,1448.645,26,32,C3,ff,22,144,48,22,,,,, +325,48,3,10158,998,1448.733,,,,,,144,48,0,,,,, +325,49,1,10159,1024,1448.733,,,,,,176,102,0,,,,, +325,50,3,10160,1024,1448.733,28,32,F#1,f,20,144,30,20,,,,, +325,42,1,10152,853,1448.733,,,,,,144,80,0,,,,, +325,50,3,10160,1024,1448.828,,,,,,144,30,0,,,,, +325,51,3,10161,1052,1448.828,43,32,A#2,f+,21,144,46,21,,,,, +325,51,3,10161,1052,1448.975,,,,,,144,46,0,,,,, +325,52,3,10162,1095,1448.975,28,32,F#1,ff,22,144,30,22,,,,, +325,52,3,10162,1095,1449.07,,,,,,144,30,0,,,,, +325,53,3,10163,1123,1449.07,29,32,D2,ff,22,144,38,22,,,,, +325,53,3,10163,1123,1449.168,,,,,,144,38,0,,,,, +325,54,1,10164,1152,1449.168,128,8,G#1,pp,8,144,32,8,,,,, +325,55,1,10165,1152,1449.168,128,8,C4,ff,22,144,60,22,,,,, +325,56,1,10166,1152,1449.168,128,8,G4,ff,22,144,67,22,,,,, +325,57,3,10167,1152,1449.168,42,32,G#2,ff+,23,144,44,23,,,,, +325,57,3,10167,1152,1449.311,,,,,,144,44,0,,,,, +325,58,3,10168,1194,1449.311,43,32,D2,fff,24,144,38,23,,,,, +325,60,0,10169,1279,1449.451,,,,,,176,64,0,,,,,^ +325,58,3,10168,1194,1449.457,,,,,,144,38,0,,,,, +325,59,3,10170,1237,1449.457,43,32,G5,fff,24,144,79,23,,,,, +325,54,1,10164,1152,1449.603,,,,,,144,32,0,,,,, +325,55,1,10165,1152,1449.603,,,,,,144,60,0,,,,, +325,56,1,10166,1152,1449.603,,,,,,144,67,0,,,,, +325,59,3,10170,1237,1449.603,,,,,,144,79,0,,,,, +326,0,0,10171,0,1449.603,,,,,,,,,326,,,, +326,1,0,10172,0,1449.603,,,,,,,,,,6019,,, +326,3,1,10173,0,1449.603,768,2,A#5,fff,24,144,82,23,,,,, +326,4,3,10174,0,1449.603,1024,1,G#3,mp,14,144,56,14,,,,, +326,5,3,10175,0,1449.603,1024,1,C4,mp,14,144,60,14,,,,, +326,6,3,10176,0,1449.603,1024,1,F#4,mp,14,144,66,14,,,,, +326,2,0,10177,0,1449.751,,,,,,176,64,127,,,,,V +326,3,1,10173,0,1452.212,,,,,,144,82,0,,,,, +326,7,1,10178,768,1452.212,,,,,,176,102,0,,,,, +326,4,3,10174,0,1452.646,,,,,,144,56,0,,,,, +326,8,1,10179,896,1452.646,25,32,G#3,p,11,144,56,11,,,,, +326,5,3,10175,0,1452.731,,,,,,144,60,0,,,,, +326,9,1,10180,921,1452.731,26,32,C4,p-,10,144,60,10,,,,, +326,6,3,10176,0,1452.82,,,,,,144,66,0,,,,, +326,10,1,10181,947,1452.82,25,32,F#4,p-,10,144,66,10,,,,, +326,8,1,10179,896,1452.905,,,,,,144,56,0,,,,, +326,11,1,10182,972,1452.905,26,32,G#3,pp+,9,144,56,9,,,,, +326,9,1,10180,921,1452.993,,,,,,144,60,0,,,,, +326,12,1,10183,998,1452.993,26,32,C4,pp,8,144,60,8,,,,, +326,13,1,10184,1024,1453.081,,,,,,176,102,0,,,,, +326,14,3,10185,1024,1453.081,,,,,,176,102,0,,,,, +326,10,1,10181,947,1453.081,,,,,,144,66,0,,,,, +326,11,1,10182,972,1453.081,,,,,,144,56,0,,,,, +326,12,1,10183,998,1453.081,,,,,,144,60,0,,,,, +326,15,3,10186,1152,1453.516,256,4,G#2,p,11,144,44,11,,,,, +326,15,3,10186,1152,1454.386,,,,,,144,44,0,,,,, +326,16,3,10187,1408,1454.386,128,8,G#2,pp-,7,144,44,7,,,,, +326,17,3,10188,1408,1454.386,128,8,C3,pp-,7,144,48,7,,,,, +326,18,3,10189,1536,1454.82,256,4,G#2,,,,,,,,,, +326,19,3,10190,1536,1454.82,256,4,C3,,,,,,,,,, +326,16,3,10187,1408,1455.69,,,,,,144,44,0,,,,, +326,17,3,10188,1408,1455.69,,,,,,144,48,0,,,,, +326,20,3,10191,1792,1455.69,102,8,F1,mp,14,144,29,14,,,,, +326,20,3,10191,1792,1456.036,,,,,,144,29,0,,,,, +326,21,3,10192,1894,1456.036,26,32,F1,mf,17,144,29,17,,,,, +326,21,3,10192,1894,1456.125,,,,,,144,29,0,,,,, +326,22,3,10193,1920,1456.125,25,32,E2,mf+,18,144,40,18,,,,, +326,22,3,10193,1920,1456.21,,,,,,144,40,0,,,,, +326,23,3,10194,1945,1456.21,26,32,F1,f-,19,144,29,19,,,,, +326,23,3,10194,1945,1456.298,,,,,,144,29,0,,,,, +326,24,3,10195,1971,1456.298,77,16,E2,f,20,144,40,20,,,,, +326,25,0,10196,2047,1456.494,,,,,,176,64,0,,,,,^ +326,24,3,10195,1971,1456.559,,,,,,144,40,0,,,,, +327,0,0,10197,0,1456.559,,,,,,,,,327,,,, +327,1,0,10198,0,1456.559,,,,,,,,,,6020,,, +327,2,1,10199,0,1456.559,,,,,,176,102,0,,,,, +327,3,3,10200,0,1456.559,,,,,,176,102,0,,,,, +327,5,1,10201,51,1456.733,25,32,G#5,ppp,5,144,80,5,,,,, +327,4,0,10202,51,1456.794,,,,,,176,64,127,,,,,V +327,5,1,10201,51,1456.818,,,,,,144,80,0,,,,, +327,6,1,10203,76,1456.818,26,32,F#6,ppp+,6,144,90,6,,,,, +327,6,1,10203,76,1456.906,,,,,,144,90,0,,,,, +327,7,1,10204,102,1456.906,26,32,G#5,pp-,7,144,80,7,,,,, +327,7,1,10204,102,1456.994,,,,,,144,80,0,,,,, +327,8,1,10205,128,1456.994,25,32,F#7,pp,8,144,102,8,,,,, +327,8,1,10205,128,1457.079,,,,,,144,102,0,,,,, +327,9,1,10206,153,1457.079,26,32,G#4,pp+,9,144,68,9,,,,, +327,9,1,10206,153,1457.167,,,,,,144,68,0,,,,, +327,10,1,10207,179,1457.167,25,32,C6,p,11,144,84,11,,,,, +327,10,1,10207,179,1457.252,,,,,,144,84,0,,,,, +327,11,1,10208,204,1457.252,26,32,G#4,p+,12,144,68,12,,,,, +327,11,1,10208,204,1457.341,,,,,,144,68,0,,,,, +327,12,1,10209,230,1457.341,26,32,C5,mp-,13,144,72,13,,,,, +327,12,1,10209,230,1457.429,,,,,,144,72,0,,,,, +327,13,1,10210,256,1457.429,25,32,G#4,mp,14,144,68,14,,,,, +327,13,1,10210,256,1457.514,,,,,,144,68,0,,,,, +327,14,1,10211,281,1457.514,26,32,C5,mp+,15,144,72,15,,,,, +327,14,1,10211,281,1457.602,,,,,,144,72,0,,,,, +327,15,1,10212,307,1457.602,25,32,E3,mf-,16,144,52,16,,,,, +327,16,1,10213,307,1457.602,32,32,G#4,mf-,16,144,68,16,,,,, +327,17,1,10214,307,1457.602,32,32,C5,mf-,16,144,72,16,,,,, +327,15,1,10212,307,1457.687,,,,,,144,52,0,,,,, +327,18,1,10215,332,1457.687,26,32,F2,mf,17,144,41,17,,,,, +327,16,1,10213,307,1457.711,,,,,,144,68,0,,,,, +327,17,1,10214,307,1457.711,,,,,,144,72,0,,,,, +327,18,1,10215,332,1457.775,,,,,,144,41,0,,,,, +327,19,1,10216,358,1457.775,26,32,E4,mf+,18,144,64,18,,,,, +327,19,1,10216,358,1457.864,,,,,,144,64,0,,,,, +327,20,1,10217,384,1457.864,25,32,F2,f,20,144,41,20,,,,, +327,20,1,10217,384,1457.949,,,,,,144,41,0,,,,, +327,21,1,10218,409,1457.949,26,32,C5,f+,21,144,72,21,,,,, +327,21,1,10218,409,1458.037,,,,,,144,72,0,,,,, +327,22,1,10219,435,1458.037,51,16,E3,ff,22,144,52,22,,,,, +327,22,1,10219,435,1458.21,,,,,,144,52,0,,,,, +327,23,1,10220,486,1458.21,26,32,F1,fff,24,144,29,23,,,,, +327,23,1,10220,486,1458.299,,,,,,144,29,0,,,,, +327,24,1,10221,512,1458.299,256,4,F#7,fff,24,144,102,23,,,,, +327,24,1,10221,512,1459.168,,,,,,144,102,0,,,,, +327,25,1,10222,768,1459.168,,,,,,176,102,0,,,,, +327,26,3,10223,768,1459.168,,,,,,176,102,0,,,,, +327,27,1,10224,810,1459.311,43,16,G#5,fff,24,144,80,23,,,,, +327,28,1,10225,810,1459.311,64,16,F#7,fff,24,144,102,23,,,,, +327,29,1,10226,853,1459.457,171,4,G#5,,,,,,,,,, +327,30,1,10227,853,1459.457,256,4,F#7,,,,,,,,,, +327,31,1,10228,1024,1460.038,256,4,G#5,,,,,,,,,, +327,32,1,10229,1024,1460.038,256,4,F#7,,,,,,,,,, +327,33,0,10230,1279,1460.756,,,,,,176,64,0,,,,,^ +327,27,1,10224,810,1460.907,,,,,,144,80,0,,,,, +328,0,0,10231,0,1460.907,,,,,,,,,328,,,, +328,2,1,10232,0,1460.907,1024,1,G#5,mf,17,144,80,17,,,,, +328,3,1,10233,0,1460.907,1024,1,F#7,mf,17,144,102,17,,,,, +328,4,3,10234,0,1460.907,25,32,D5,ppp,5,144,74,5,,,,, +328,4,3,10234,0,1460.992,,,,,,144,74,0,,,,, +328,5,3,10235,25,1460.992,26,32,E6,pp-,7,144,88,7,,,,, +328,1,0,10236,0,1461.056,,,,,,176,64,127,,,,,V +328,5,3,10235,25,1461.081,,,,,,144,88,0,,,,, +328,6,3,10237,51,1461.081,25,32,D4,pp+,9,144,62,9,,,,, +328,6,3,10237,51,1461.165,,,,,,144,62,0,,,,, +328,7,3,10238,76,1461.165,26,32,F#6,p,11,144,90,11,,,,, +328,7,3,10238,76,1461.254,,,,,,144,90,0,,,,, +328,8,3,10239,102,1461.254,26,32,E5,mp-,13,144,76,13,,,,, +327,28,1,10225,810,1461.267,,,,,,144,102,0,,,,, +328,3,1,10233,0,1461.342,,,,,,144,102,0,,,,, +328,8,3,10239,102,1461.342,,,,,,144,76,0,,,,, +328,9,3,10240,128,1461.342,25,32,F#7,mf-,16,144,102,16,,,,, +328,10,3,10241,153,1461.427,26,32,A#4,mf+,18,144,70,18,,,,, +328,10,3,10241,153,1461.515,,,,,,144,70,0,,,,, +328,11,3,10242,179,1461.515,25,32,E5,f,20,144,76,20,,,,, +328,12,3,10243,179,1461.515,32,32,F#6,f,20,144,90,20,,,,, +328,11,3,10242,179,1461.6,,,,,,144,76,0,,,,, +328,13,3,10244,204,1461.6,26,32,A#4,ff,22,144,70,22,,,,, +328,12,3,10243,179,1461.624,,,,,,144,90,0,,,,, +328,13,3,10244,204,1461.689,,,,,,144,70,0,,,,, +328,14,3,10245,230,1461.689,26,32,D#3,fff,24,144,51,23,,,,, +328,14,3,10245,230,1461.777,,,,,,144,51,0,,,,, +328,15,3,10246,256,1461.777,,,,,,176,102,0,,,,, +328,16,3,10247,298,1461.92,43,16,D4,p,11,144,62,11,,,,, +328,17,3,10248,298,1461.92,64,16,A#4,p,11,144,70,11,,,,, +328,18,3,10249,298,1461.92,64,16,E5,p,11,144,76,11,,,,, +328,19,3,10250,298,1461.92,64,16,F#6,p,11,144,90,11,,,,, +328,20,3,10251,341,1462.066,171,4,D4,,,,,,,,,, +328,21,3,10252,341,1462.066,256,4,A#4,,,,,,,,,, +328,22,3,10253,341,1462.066,256,4,E5,,,,,,,,,, +328,23,3,10254,341,1462.066,256,4,F#6,,,,,,,,,, +328,24,3,10255,512,1462.646,85,8,D4,,,,,,,,,, +328,25,3,10256,512,1462.646,128,8,A#4,,,,,,,,,, +328,26,3,10257,512,1462.646,128,8,E5,,,,,,,,,, +328,27,3,10258,512,1462.646,128,8,F#6,,,,,,,,,, +328,16,3,10247,298,1462.935,,,,,,144,62,0,,,,, +328,28,3,10259,597,1462.935,171,4,D4,f,20,144,62,20,,,,, +328,29,3,10260,597,1462.935,256,4,A#4,f,20,144,70,20,,,,, +328,30,3,10261,597,1462.935,256,4,E5,f,20,144,76,20,,,,, +328,31,3,10262,597,1462.935,256,4,F#6,f,20,144,90,20,,,,, +328,17,3,10248,298,1463.441,,,,,,144,70,0,,,,, +328,18,3,10249,298,1463.441,,,,,,144,76,0,,,,, +328,19,3,10250,298,1463.441,,,,,,144,90,0,,,,, +328,32,3,10263,768,1463.516,256,4,D4,,,,,,,,,, +328,33,3,10264,768,1463.516,256,4,A#4,,,,,,,,,, +328,34,3,10265,768,1463.516,256,4,E5,,,,,,,,,, +328,35,3,10266,768,1463.516,256,4,F#6,,,,,,,,,, +328,36,0,10267,1023,1464.234,,,,,,176,64,0,,,,,^ +328,2,1,10232,0,1464.386,,,,,,144,80,0,,,,, +328,9,3,10240,128,1464.386,,,,,,144,102,0,,,,, +329,0,0,10268,0,1464.386,,,,,,,,,329,,,, +329,1,0,10269,0,1464.386,,,,,,,,,,6021,,, +329,3,1,10270,0,1464.386,512,2,E6,fff,24,144,88,23,,,,, +329,4,1,10271,0,1464.386,512,2,C#7,fff,24,144,97,23,,,,, +329,5,2,10272,0,1464.386,768,2,G#5,f,20,144,80,20,,,,, +329,6,2,10273,0,1464.386,512,2,F#7,f,20,144,102,20,,,,, +329,7,3,10274,0,1464.386,,,,,,176,102,0,,,,, +328,28,3,10259,597,1464.386,,,,,,144,62,0,,,,, +329,2,0,10275,0,1464.534,,,,,,176,64,127,,,,,V +328,29,3,10260,597,1464.674,,,,,,144,70,0,,,,, +328,30,3,10261,597,1464.674,,,,,,144,76,0,,,,, +328,31,3,10262,597,1464.674,,,,,,144,90,0,,,,, +329,8,1,10276,512,1466.125,85,8,E6,,,,,,,,,, +329,9,1,10277,512,1466.125,128,8,C#7,,,,,,,,,, +329,10,3,10278,512,1466.125,,,,,,176,102,0,,,,, +329,6,2,10273,0,1466.2,,,,,,144,102,0,,,,, +329,11,1,10279,597,1466.413,171,4,E6,f,20,144,88,20,,,,, +329,12,1,10280,597,1466.413,256,4,C#7,f,20,144,97,20,,,,, +329,13,3,10281,597,1466.413,171,4,A0,ff,22,144,21,22,,,,, +329,3,1,10270,0,1466.488,,,,,,144,88,0,,,,, +329,4,1,10271,0,1466.634,,,,,,144,97,0,,,,, +329,11,1,10279,597,1466.994,,,,,,144,88,0,,,,, +329,14,1,10282,768,1466.994,,,,,,176,102,0,,,,, +329,15,2,10283,768,1466.994,,,,,,176,102,0,,,,, +329,16,3,10284,768,1466.994,128,8,A0,,,,,,,,,, +329,5,2,10272,0,1467.069,,,,,,144,80,0,,,,, +329,12,1,10280,597,1467.283,,,,,,144,97,0,,,,, +329,17,2,10285,853,1467.283,171,4,G#5,fff,24,144,80,23,,,,, +329,18,2,10286,853,1467.283,256,4,C7,fff,24,144,96,23,,,,, +329,19,2,10287,853,1467.283,256,4,F#7,fff,24,144,102,23,,,,, +329,13,3,10281,597,1467.429,,,,,,144,21,0,,,,, +329,20,3,10288,896,1467.429,42,16,F#2,ff,22,144,42,22,,,,, +329,22,0,10289,960,1467.532,,,,,,176,64,0,,,,,^ +329,20,3,10288,896,1467.572,,,,,,144,42,0,,,,, +329,21,3,10290,938,1467.572,22,32,G3,ff,22,144,55,22,,,,, +329,21,3,10290,938,1467.646,,,,,,144,55,0,,,,, +329,23,3,10291,960,1467.646,21,32,F5,ff,22,144,77,22,,,,, +329,23,3,10291,960,1467.718,,,,,,144,77,0,,,,, +329,25,3,10292,981,1467.718,14,32,C#5,mf,17,144,73,17,,,,, +329,25,3,10292,981,1467.765,,,,,,144,73,0,,,,, +329,26,3,10293,995,1467.765,14,32,F#2,mf-,16,144,42,16,,,,, +329,26,3,10293,995,1467.813,,,,,,144,42,0,,,,, +329,27,3,10294,1009,1467.813,15,32,A1,mp+,15,144,33,15,,,,, +329,24,0,10295,981,1467.832,,,,,,176,64,127,,,,,V +329,17,2,10285,853,1467.864,,,,,,144,80,0,,,,, +329,18,2,10286,853,1467.864,,,,,,144,96,0,,,,, +329,27,3,10294,1009,1467.864,,,,,,144,33,0,,,,, +330,0,0,10296,0,1467.864,,,,,,,,,330,,,, +330,1,1,10297,0,1467.864,256,4,E6,mp,14,144,88,14,,,,, +330,2,1,10298,0,1467.864,256,4,C7,mp,14,144,96,14,,,,, +330,3,3,10299,0,1467.864,85,8,G2,mp,14,144,43,14,,,,, +329,19,2,10287,853,1468.153,,,,,,144,102,0,,,,, +330,3,3,10299,0,1468.153,,,,,,144,43,0,,,,, +330,4,3,10300,85,1468.153,171,4,F3,pp-,7,144,53,7,,,,, +330,1,1,10297,0,1468.733,,,,,,144,88,0,,,,, +330,2,1,10298,0,1468.733,,,,,,144,96,0,,,,, +330,4,3,10300,85,1468.733,,,,,,144,53,0,,,,, +330,5,1,10301,256,1468.733,170,4,D4,fff,24,144,62,23,,,,, +330,6,1,10302,256,1468.733,256,4,E6,fff,24,144,88,23,,,,, +330,7,3,10303,256,1468.733,,,,,,176,102,0,,,,, +330,5,1,10301,256,1469.311,,,,,,144,62,0,,,,, +330,8,1,10304,426,1469.311,86,8,C7,fff,24,144,96,23,,,,, +330,9,3,10305,426,1469.311,43,16,F1,fff,24,144,29,23,,,,, +330,9,3,10305,426,1469.457,,,,,,144,29,0,,,,, +330,10,3,10306,469,1469.457,43,16,E3,fff,24,144,52,23,,,,, +330,6,1,10302,256,1469.603,,,,,,144,88,0,,,,, +330,8,1,10304,426,1469.603,,,,,,144,96,0,,,,, +330,10,3,10306,469,1469.603,,,,,,144,52,0,,,,, +330,11,1,10307,512,1469.603,,,,,,176,102,0,,,,, +330,12,3,10308,512,1469.603,,,,,,176,102,0,,,,, +330,13,1,10309,625,1469.987,15,64,G#4,ff,22,144,68,22,,,,, +330,13,1,10309,625,1470.038,,,,,,144,68,0,,,,, +330,14,1,10310,640,1470.038,14,64,F#5,f,20,144,78,20,,,,, +330,14,1,10310,640,1470.085,,,,,,144,78,0,,,,, +330,15,1,10311,654,1470.085,14,64,G#4,f-,19,144,68,19,,,,, +330,15,1,10311,654,1470.133,,,,,,144,68,0,,,,, +330,16,1,10312,668,1470.133,14,64,F3,mf,17,144,53,17,,,,, +330,16,1,10312,668,1470.18,,,,,,144,53,0,,,,, +330,17,1,10313,682,1470.18,14,64,C5,mf-,16,144,72,16,,,,, +330,17,1,10313,682,1470.228,,,,,,144,72,0,,,,, +330,18,1,10314,696,1470.228,15,64,F2,mp,14,144,41,14,,,,, +330,21,0,10315,742,1470.278,,,,,,176,64,0,,,,,^ +330,18,1,10314,696,1470.279,,,,,,144,41,0,,,,, +330,19,1,10316,711,1470.279,14,64,C5,mp-,13,144,72,13,,,,, +330,19,1,10316,711,1470.326,,,,,,144,72,0,,,,, +330,20,1,10317,725,1470.326,43,32,E4,p,11,144,64,11,,,,, +330,20,1,10317,725,1470.473,,,,,,144,64,0,,,,, +330,23,1,10318,768,1470.473,16,64,G#5,f,20,144,80,20,,,,, +330,24,3,10319,768,1470.473,,,,,,176,102,0,,,,, +330,23,1,10318,768,1470.527,,,,,,144,80,0,,,,, +330,25,1,10320,784,1470.527,16,64,C6,f,20,144,84,20,,,,, +330,22,0,10321,768,1470.578,,,,,,176,64,127,,,,,V +330,25,1,10320,784,1470.581,,,,,,144,84,0,,,,, +330,26,1,10322,800,1470.581,16,64,G#4,f-,19,144,68,19,,,,, +330,26,1,10322,800,1470.636,,,,,,144,68,0,,,,, +330,27,1,10323,816,1470.636,16,64,C6,f-,19,144,84,19,,,,, +330,27,1,10323,816,1470.69,,,,,,144,84,0,,,,, +330,28,1,10324,832,1470.69,16,64,G#5,f-,19,144,80,19,,,,, +330,28,1,10324,832,1470.744,,,,,,144,80,0,,,,, +330,29,1,10325,848,1470.744,24,64,C6,mf+,18,144,84,18,,,,, +330,30,1,10326,848,1470.744,16,64,F#6,mf+,18,144,90,18,,,,, +330,30,1,10326,848,1470.799,,,,,,144,90,0,,,,, +330,29,1,10325,848,1470.826,,,,,,144,84,0,,,,, +330,31,1,10327,872,1470.826,24,64,G#5,mf+,18,144,80,18,,,,, +330,31,1,10327,872,1470.907,,,,,,144,80,0,,,,, +330,32,1,10328,896,1470.907,64,16,G#5,mf,17,144,80,17,,,,, +330,33,1,10329,896,1470.907,64,16,F#6,mf,17,144,90,17,,,,, +330,34,3,10330,896,1470.907,21,32,E4,mf,17,144,64,17,,,,, +330,34,3,10330,896,1470.979,,,,,,144,64,0,,,,, +330,35,3,10331,917,1470.979,32,32,F3,mf,17,144,53,17,,,,, +330,35,3,10331,917,1471.087,,,,,,144,53,0,,,,, +330,36,3,10332,949,1471.087,32,32,E4,mf-,16,144,64,16,,,,, +330,32,1,10328,896,1471.125,,,,,,144,80,0,,,,, +330,33,1,10329,896,1471.125,,,,,,144,90,0,,,,, +330,37,1,10333,960,1471.125,64,16,G#5,mf-,16,144,80,16,,,,, +330,38,1,10334,960,1471.125,64,16,C6,mf-,16,144,84,16,,,,, +330,39,1,10335,960,1471.125,64,16,F#6,mf-,16,144,90,16,,,,, +330,36,3,10332,949,1471.196,,,,,,144,64,0,,,,, +330,40,3,10336,981,1471.196,21,32,F3,mp+,15,144,53,15,,,,, +330,40,3,10336,981,1471.267,,,,,,144,53,0,,,,, +330,41,3,10337,1002,1471.267,22,32,E4,mp+,15,144,64,15,,,,, +330,37,1,10333,960,1471.342,,,,,,144,80,0,,,,, +330,38,1,10334,960,1471.342,,,,,,144,84,0,,,,, +330,39,1,10335,960,1471.342,,,,,,144,90,0,,,,, +330,41,3,10337,1002,1471.342,,,,,,144,64,0,,,,, +331,0,0,10338,0,1471.342,,,,,,,,,331,,,, +331,1,1,10339,0,1471.342,28,32,F#7,mp,14,144,102,14,,,,, +331,2,3,10340,0,1471.342,256,4,F3,mp,14,144,53,14,,,,, +331,3,3,10341,0,1471.342,256,4,E4,mp,14,144,64,14,,,,, +331,1,1,10339,0,1471.437,,,,,,144,102,0,,,,, +331,4,1,10342,28,1471.437,28,32,G#6,mp-,13,144,92,13,,,,, +331,4,1,10342,28,1471.532,,,,,,144,92,0,,,,, +331,5,1,10343,56,1471.532,29,32,C7,mp-,13,144,96,13,,,,, +331,5,1,10343,56,1471.631,,,,,,144,96,0,,,,, +331,6,1,10344,85,1471.631,28,32,F#7,p+,12,144,102,12,,,,, +331,6,1,10344,85,1471.726,,,,,,144,102,0,,,,, +331,7,1,10345,113,1471.726,29,32,G#5,p+,12,144,80,12,,,,, +331,7,1,10345,113,1471.824,,,,,,144,80,0,,,,, +331,8,1,10346,142,1471.824,28,32,C7,p,11,144,96,11,,,,, +331,8,1,10346,142,1471.92,,,,,,144,96,0,,,,, +331,9,1,10347,170,1471.92,29,32,F4,p-,10,144,65,10,,,,, +331,9,1,10347,170,1472.018,,,,,,144,65,0,,,,, +331,10,1,10348,199,1472.018,28,32,E5,p-,10,144,76,10,,,,, +331,10,1,10348,199,1472.113,,,,,,144,76,0,,,,, +331,11,1,10349,227,1472.113,29,32,E3,pp+,9,144,52,9,,,,, +331,2,3,10340,0,1472.212,,,,,,144,53,0,,,,, +331,3,3,10341,0,1472.212,,,,,,144,64,0,,,,, +331,11,1,10349,227,1472.212,,,,,,144,52,0,,,,, +331,12,1,10350,256,1472.212,28,32,F#7,pp,8,144,102,8,,,,, +331,13,3,10351,256,1472.212,256,4,E7,ff,22,144,100,22,,,,, +331,12,1,10350,256,1472.307,,,,,,144,102,0,,,,, +331,14,1,10352,284,1472.307,114,8,F5,pp,8,144,77,8,,,,, +331,14,1,10352,284,1472.694,,,,,,144,77,0,,,,, +331,15,1,10353,398,1472.694,28,32,F#7,ppp,5,144,102,5,,,,, +331,15,1,10353,398,1472.789,,,,,,144,102,0,,,,, +331,16,1,10354,426,1472.789,86,16,F5,ppp,5,144,77,5,,,,, +331,16,1,10354,426,1473.081,,,,,,144,77,0,,,,, +331,17,1,10355,512,1473.081,170,4,F5,mp,14,144,77,14,,,,, +331,18,1,10356,512,1473.081,256,4,G#6,mp,14,144,92,14,,,,, +331,19,1,10357,512,1473.081,256,4,F#7,mp,14,144,102,14,,,,, +331,20,3,10358,512,1473.081,64,16,E7,,,,,,,,,, +331,13,3,10351,256,1473.299,,,,,,144,100,0,,,,, +331,21,3,10359,576,1473.299,96,16,F4,ff,22,144,65,22,,,,, +331,22,3,10360,576,1473.299,64,16,E7,ff,22,144,100,22,,,,, +331,22,3,10360,576,1473.516,,,,,,144,100,0,,,,, +331,21,3,10359,576,1473.625,,,,,,144,65,0,,,,, +331,23,3,10361,672,1473.625,96,16,F#1,ff,22,144,30,22,,,,, +331,24,3,10362,672,1473.625,64,16,F4,ff,22,144,65,22,,,,, +331,25,1,10363,682,1473.659,,,,,,176,102,0,,,,, +331,17,1,10355,512,1473.659,,,,,,144,77,0,,,,, +331,26,1,10364,725,1473.805,21,32,C7,p,11,144,96,11,,,,, +331,24,3,10362,672,1473.842,,,,,,144,65,0,,,,, +331,26,1,10364,725,1473.876,,,,,,144,96,0,,,,, +331,28,0,10365,746,1473.876,,,,,,176,64,0,,,,,^ +331,27,1,10366,746,1473.876,22,32,E6,p,11,144,88,11,,,,, +331,18,1,10356,512,1473.951,,,,,,144,92,0,,,,, +331,19,1,10357,512,1473.951,,,,,,144,102,0,,,,, +331,23,3,10361,672,1473.951,,,,,,144,30,0,,,,, +331,27,1,10366,746,1473.951,,,,,,144,88,0,,,,, +331,29,1,10367,768,1473.951,85,8,G#6,pp,8,144,92,8,,,,, +331,30,1,10368,768,1473.951,128,8,C7,pp,8,144,96,8,,,,, +331,31,1,10369,768,1473.951,128,8,F#7,pp,8,144,102,8,,,,, +331,32,3,10370,768,1473.951,25,32,F2,f,20,144,41,20,,,,, +331,32,3,10370,768,1474.036,,,,,,144,41,0,,,,, +331,33,3,10371,793,1474.036,26,32,G#1,mf+,18,144,32,18,,,,, +331,33,3,10371,793,1474.124,,,,,,144,32,0,,,,, +331,34,3,10372,819,1474.124,25,32,F#1,mf,17,144,30,17,,,,, +331,34,3,10372,819,1474.209,,,,,,144,30,0,,,,, +331,35,3,10373,844,1474.209,26,32,F2,mp+,15,144,41,15,,,,, +331,36,1,10374,853,1474.239,85,8,G#5,pp-,7,144,80,7,,,,, +331,37,1,10375,853,1474.239,128,8,C6,pp-,7,144,84,7,,,,, +331,29,1,10367,768,1474.239,,,,,,144,92,0,,,,, +331,35,3,10373,844,1474.297,,,,,,144,41,0,,,,, +331,38,3,10376,870,1474.297,26,32,F#1,mp,14,144,30,14,,,,, +331,38,3,10376,870,1474.386,,,,,,144,30,0,,,,, +331,39,3,10377,896,1474.386,64,16,C2,p+,12,144,36,12,,,,, +331,30,1,10368,768,1474.386,,,,,,144,96,0,,,,, +331,31,1,10369,768,1474.386,,,,,,144,102,0,,,,, +331,36,1,10374,853,1474.528,,,,,,144,80,0,,,,, +331,40,1,10378,938,1474.528,86,8,E5,ppp,5,144,76,5,,,,, +331,41,3,10379,960,1474.603,16,64,C2,,,,,,,,,, +331,39,3,10377,896,1474.657,,,,,,144,36,0,,,,, +331,42,3,10380,976,1474.657,16,64,F#1,pp-,7,144,30,7,,,,, +331,43,3,10381,976,1474.657,16,64,G#1,pp-,7,144,32,7,,,,, +331,44,3,10382,976,1474.657,16,64,F2,pp-,7,144,41,7,,,,, +331,37,1,10375,853,1474.674,,,,,,144,84,0,,,,, +331,45,3,10383,992,1474.712,16,64,F#1,,,,,,,,,, +331,46,3,10384,992,1474.712,16,64,G#1,,,,,,,,,, +331,47,3,10385,992,1474.712,16,64,C2,ppp+,6,144,36,6,,,,, +331,48,3,10386,992,1474.712,16,64,F2,,,,,,,,,, +331,42,3,10380,976,1474.766,,,,,,144,30,0,,,,, +331,43,3,10381,976,1474.766,,,,,,144,32,0,,,,, +331,44,3,10382,976,1474.766,,,,,,144,41,0,,,,, +331,47,3,10385,992,1474.766,,,,,,144,36,0,,,,, +331,49,3,10387,1008,1474.766,16,64,E4,ppp,5,144,64,5,,,,, +331,40,1,10378,938,1474.82,,,,,,144,76,0,,,,, +331,49,3,10387,1008,1474.82,,,,,,144,64,0,,,,, +332,0,0,10388,0,1474.82,,,,,,,,,332,,,, +332,1,1,10389,0,1474.82,,,,,,176,102,0,,,,, +332,2,3,10390,0,1474.82,1024,1,F#2,ppp,5,144,42,5,,,,, +332,3,4,10391,0,1474.82,,,,,,176,102,0,,,,, +332,5,4,10392,256,1475.69,256,4,F#1,fff,24,144,30,23,,,,, +332,4,0,10393,256,1475.69,,,,,,176,64,127,,,,,V +332,6,4,10394,512,1476.559,1024,1,F#1,,,,,,,,,, +332,7,3,10395,1024,1478.299,1792,1,F#2,,,,,,,,,, +332,8,1,10396,1536,1480.038,256,4,G#4,mp,14,144,68,14,,,,, +332,9,4,10397,1536,1480.038,256,4,F#1,mp,14,144,30,14,,,,, +332,5,4,10392,256,1480.038,,,,,,144,30,0,,,,, +332,10,1,10398,1792,1480.907,1024,1,G#4,,,,,,,,,, +332,11,4,10399,1792,1480.907,1024,1,F#1,,,,,,,,,, +332,12,0,10400,2815,1484.234,,,,,,176,64,0,,,,,^ +332,8,1,10396,1536,1484.386,,,,,,144,68,0,,,,, +332,9,4,10397,1536,1484.386,,,,,,144,30,0,,,,, +333,0,0,10401,0,1484.386,,,,,,,,,333,,,, +333,2,1,10402,0,1484.386,25,32,G#5,mp,14,144,80,14,,,,, +333,3,3,10403,0,1484.386,,,,,,176,102,0,,,,, +332,2,3,10390,0,1484.386,,,,,,144,42,0,,,,, +333,2,1,10402,0,1484.47,,,,,,144,80,0,,,,, +333,4,1,10404,25,1484.47,26,32,F6,mp,14,144,89,14,,,,, +333,1,0,10405,0,1484.534,,,,,,176,64,127,,,,,V +333,4,1,10404,25,1484.559,,,,,,144,89,0,,,,, +333,5,1,10406,51,1484.559,25,32,G#5,mp,14,144,80,14,,,,, +333,5,1,10406,51,1484.644,,,,,,144,80,0,,,,, +333,6,1,10407,76,1484.644,26,32,C6,mp,14,144,84,14,,,,, +333,6,1,10407,76,1484.732,,,,,,144,84,0,,,,, +333,7,1,10408,102,1484.732,26,32,G#5,mp+,15,144,80,15,,,,, +333,7,1,10408,102,1484.82,,,,,,144,80,0,,,,, +333,8,1,10409,128,1484.82,38,32,F7,mp+,15,144,101,15,,,,, +333,8,1,10409,128,1484.949,,,,,,144,101,0,,,,, +333,9,1,10410,166,1484.949,38,32,C7,mp+,15,144,96,15,,,,, +333,9,1,10410,166,1485.078,,,,,,144,96,0,,,,, +333,10,1,10411,204,1485.078,26,32,F#5,mp+,15,144,78,15,,,,, +333,10,1,10411,204,1485.167,,,,,,144,78,0,,,,, +333,11,1,10412,230,1485.167,26,32,F7,mp+,15,144,101,15,,,,, +333,12,1,10413,256,1485.255,25,32,F7,,,,,,,,,, +333,13,1,10414,281,1485.34,39,32,F#5,mf-,16,144,78,16,,,,, +333,11,1,10412,230,1485.34,,,,,,144,101,0,,,,, +333,13,1,10414,281,1485.473,,,,,,144,78,0,,,,, +333,14,1,10415,320,1485.473,38,32,E7,mf-,16,144,100,16,,,,, +333,14,1,10415,320,1485.602,,,,,,144,100,0,,,,, +333,15,1,10416,358,1485.602,26,32,F6,mf-,16,144,89,16,,,,, +333,15,1,10416,358,1485.69,,,,,,144,89,0,,,,, +333,16,1,10417,384,1485.69,25,32,C5,mf-,16,144,72,16,,,,, +333,16,1,10417,384,1485.775,,,,,,144,72,0,,,,, +333,17,1,10418,409,1485.775,39,32,F#4,mf,17,144,66,17,,,,, +333,17,1,10418,409,1485.907,,,,,,144,66,0,,,,, +333,18,1,10419,448,1485.907,38,32,E7,mf,17,144,100,17,,,,, +333,18,1,10419,448,1486.036,,,,,,144,100,0,,,,, +333,19,1,10420,486,1486.036,26,32,E6,mf,17,144,88,17,,,,, +333,19,1,10420,486,1486.125,,,,,,144,88,0,,,,, +333,20,1,10421,512,1486.125,,,,,,176,102,0,,,,, +333,21,0,10422,1023,1487.86,,,,,,176,64,0,,,,,^ +333,22,1,10423,1024,1487.864,,,,,,176,102,0,,,,, +333,23,3,10424,1024,1487.864,,,,,,176,102,0,,,,, +334,0,0,10425,0,1488.733,,,,,,,,,334,,,, +334,1,0,10426,0,1488.733,,,,,,,,,,6022,,, +334,2,0,10427,0,1488.733,,,,,,,,,,,56,, +334,5,1,10428,0,1488.733,384,4,E6,mf,17,144,88,17,,,,, +334,6,3,10429,0,1488.733,,,,,,176,102,0,,,,, +334,4,1,10430,,1488.733,,8,C5,mf,17,144,72,17,,,,g, +334,4,1,10430,,1488.783,,,,,,144,72,0,,,,, +334,7,4,10431,,1488.808,,8,F#4,pp,8,144,66,8,,,,g, +334,7,4,10431,,1488.858,,,,,,144,66,0,,,,, +334,8,4,10432,,1488.883,,8,F4,pp,8,144,65,8,,,,g, +334,8,4,10432,,1488.933,,,,,,144,65,0,,,,, +334,9,4,10433,0,1488.958,1024,1,G#2,p,11,144,44,11,,,,, +334,10,4,10434,0,1488.958,1024,1,B2,p,11,144,47,11,,,,, +334,3,0,10435,0,1488.958,,,,,,176,64,127,,,,,V +334,5,1,10428,0,1490.341,,,,,,144,88,0,,,,, +334,11,1,10436,384,1490.566,64,16,E6,mf,17,144,88,17,,,,, +334,11,1,10436,384,1490.833,,,,,,144,88,0,,,,, +334,12,1,10437,448,1490.833,64,16,G#4,mp,14,144,68,14,,,,, +334,13,1,10438,512,1491.101,256,4,G#4,,,,,,,,,, +334,14,3,10439,512,1491.101,21,32,G1,ppp,5,144,31,5,,,,, +334,14,3,10439,512,1491.189,,,,,,144,31,0,,,,, +334,15,3,10440,533,1491.189,21,32,F2,ppp,5,144,41,5,,,,, +334,15,3,10440,533,1491.277,,,,,,144,41,0,,,,, +334,16,3,10441,554,1491.277,22,32,G1,ppp,5,144,31,5,,,,, +334,16,3,10441,554,1491.369,,,,,,144,31,0,,,,, +334,17,3,10442,576,1491.369,42,16,F2,ppp,5,144,41,5,,,,, +334,17,3,10442,576,1491.545,,,,,,144,41,0,,,,, +334,18,3,10443,618,1491.545,22,32,A0,ppp,5,144,21,5,,,,, +334,19,3,10444,640,1491.637,128,8,A0,,,,,,,,,, +334,20,0,10445,768,1492.023,,,,,,176,64,0,,,,,^ +334,18,3,10443,618,1492.173,,,,,,144,21,0,,,,, +334,22,1,10446,768,1492.173,128,8,G#4,,,,,,,,,, +334,23,3,10447,768,1492.173,,,,,,176,102,0,,,,, +334,21,0,10448,768,1492.323,,,,,,176,64,127,,,,,V +334,24,1,10449,896,1492.708,16,64,A#6,mf,17,144,94,17,,,,, +334,12,1,10437,448,1492.708,,,,,,144,68,0,,,,, +334,24,1,10449,896,1492.775,,,,,,144,94,0,,,,, +334,25,1,10450,912,1492.775,16,64,F5,mf-,16,144,77,16,,,,, +334,25,1,10450,912,1492.842,,,,,,144,77,0,,,,, +334,26,1,10451,928,1492.842,16,64,A#7,mf-,16,144,106,16,,,,, +334,26,1,10451,928,1492.909,,,,,,144,106,0,,,,, +334,27,1,10452,944,1492.909,16,64,C6,mp+,15,144,84,15,,,,, +334,27,1,10452,944,1492.976,,,,,,144,84,0,,,,, +334,28,1,10453,960,1492.976,64,16,F6,mp,14,144,89,14,,,,, +334,29,0,10454,1023,1493.092,,,,,,176,64,0,,,,,^ +334,28,1,10453,960,1493.244,,,,,,144,89,0,,,,, +335,0,0,10455,0,1493.244,,,,,,,,,335,,,, +335,2,1,10456,0,1493.244,64,16,A#7,p+,12,144,106,12,,,,, +335,3,3,10457,0,1493.244,512,2,D4,pp,8,144,62,8,,,,, +335,4,4,10458,0,1493.244,102,8,C5,ppp,5,144,72,5,,,,, +334,9,4,10433,0,1493.244,,,,,,144,44,0,,,,, +334,10,4,10434,0,1493.244,,,,,,144,47,0,,,,, +335,1,0,10459,0,1493.392,,,,,,176,64,127,,,,,V +335,2,1,10456,0,1493.512,,,,,,144,106,0,,,,, +335,5,1,10460,64,1493.512,32,32,C6,pp+,9,144,84,9,,,,, +335,5,1,10460,64,1493.646,,,,,,144,84,0,,,,, +335,6,1,10461,96,1493.646,64,16,A#7,pp,8,144,106,8,,,,, +335,4,4,10458,0,1493.671,,,,,,144,72,0,,,,, +335,7,4,10462,102,1493.671,77,16,G#3,ppp,5,144,56,5,,,,, +335,6,1,10461,96,1493.914,,,,,,144,106,0,,,,, +335,8,1,10463,160,1493.914,96,16,E7,ppp,5,144,100,5,,,,, +335,7,4,10462,102,1493.993,,,,,,144,56,0,,,,, +335,9,4,10464,179,1493.993,25,32,C5,ppp,5,144,72,5,,,,, +335,9,4,10464,179,1494.098,,,,,,144,72,0,,,,, +335,10,4,10465,204,1494.098,52,16,E5,ppp,5,144,76,5,,,,, +335,8,1,10463,160,1494.316,,,,,,144,100,0,,,,, +335,11,1,10466,256,1494.316,,,,,,176,102,0,,,,, +335,12,4,10467,256,1494.316,51,16,E5,,,,,,,,,, +335,13,4,10468,307,1494.529,25,32,C5,ppp,5,144,72,5,,,,, +335,10,4,10465,204,1494.529,,,,,,144,76,0,,,,, +335,13,4,10468,307,1494.634,,,,,,144,72,0,,,,, +335,14,4,10469,332,1494.634,26,32,E5,ppp,5,144,76,5,,,,, +335,15,1,10470,352,1494.717,32,32,G#5,ppp,5,144,80,5,,,,, +335,3,3,10457,0,1494.742,,,,,,144,62,0,,,,, +335,14,4,10469,332,1494.742,,,,,,144,76,0,,,,, +335,16,4,10471,358,1494.742,154,8,D4,ppp,5,144,62,5,,,,, +335,15,1,10470,352,1494.851,,,,,,144,80,0,,,,, +335,17,1,10472,384,1494.851,64,16,E7,ppp,5,144,100,5,,,,, +335,17,1,10472,384,1495.119,,,,,,144,100,0,,,,, +335,18,1,10473,448,1495.119,64,16,G#5,ppp,5,144,80,5,,,,, +335,16,4,10471,358,1495.387,,,,,,144,62,0,,,,, +335,18,1,10473,448,1495.387,,,,,,144,80,0,,,,, +335,19,1,10474,512,1495.387,32,32,D4,p,11,144,62,11,,,,, +335,20,3,10475,512,1495.387,,,,,,176,102,0,,,,, +335,21,4,10476,512,1495.387,,,,,,176,102,0,,,,, +335,19,1,10474,512,1495.521,,,,,,144,62,0,,,,, +335,22,1,10477,544,1495.521,96,16,A#5,mp,14,144,82,14,,,,, +335,23,4,10478,563,1495.6,25,32,C5,ppp,5,144,72,5,,,,, +335,23,4,10478,563,1495.705,,,,,,144,72,0,,,,, +335,24,4,10479,588,1495.705,26,32,E5,ppp,5,144,76,5,,,,, +335,24,4,10479,588,1495.814,,,,,,144,76,0,,,,, +335,25,4,10480,614,1495.814,154,8,D4,ppp-,4,144,62,4,,,,, +335,22,1,10477,544,1495.923,,,,,,144,82,0,,,,, +335,26,1,10481,640,1495.923,,,,,,176,102,0,,,,, +335,27,1,10482,704,1496.191,64,16,G#5,pppp+,3,144,80,3,,,,, +335,25,4,10480,614,1496.458,,,,,,144,62,0,,,,, +335,27,1,10482,704,1496.458,,,,,,144,80,0,,,,, +335,28,1,10483,768,1496.458,256,4,G#5,pppp+,3,144,80,3,,,,, +335,29,4,10484,768,1496.458,102,8,C5,pppp+,3,144,72,3,,,,, +335,29,4,10484,768,1496.885,,,,,,144,72,0,,,,, +335,30,4,10485,870,1496.885,26,32,E5,pppp-,1,144,76,1,,,,, +335,30,4,10485,870,1496.994,,,,,,144,76,0,,,,, +335,31,4,10486,896,1496.994,25,32,D4,pppp-,1,144,62,1,,,,, +335,32,4,10487,921,1497.099,103,8,D4,,,,,,,,,, +335,33,0,10488,1023,1497.378,,,,,,176,64,0,,,,,^ +335,28,1,10483,768,1497.53,,,,,,144,80,0,,,,, +335,31,4,10486,896,1497.53,,,,,,144,62,0,,,,, +336,0,0,10489,0,1497.53,,,,,,,,,336,,,, +336,2,1,10490,0,1497.53,14,64,C3,ppp,5,144,48,5,,,,, +336,3,3,10491,0,1497.53,768,2,G#2,ppp,5,144,44,5,,,,, +336,4,4,10492,0,1497.53,384,4,C#2,f,20,144,37,20,,,,, +336,2,1,10490,0,1497.588,,,,,,144,48,0,,,,, +336,5,1,10493,14,1497.588,14,64,A#7,ppp,5,144,106,5,,,,, +336,5,1,10493,14,1497.647,,,,,,144,106,0,,,,, +336,6,1,10494,28,1497.647,14,64,E7,ppp+,6,144,100,6,,,,, +336,1,0,10495,0,1497.678,,,,,,176,64,127,,,,,V +336,6,1,10494,28,1497.706,,,,,,144,100,0,,,,, +336,7,1,10496,42,1497.706,14,64,F6,ppp+,6,144,89,6,,,,, +336,7,1,10496,42,1497.764,,,,,,144,89,0,,,,, +336,8,1,10497,56,1497.764,15,64,E7,pp-,7,144,100,7,,,,, +336,8,1,10497,56,1497.827,,,,,,144,100,0,,,,, +336,9,1,10498,71,1497.827,14,64,G#4,pp,8,144,68,8,,,,, +336,9,1,10498,71,1497.886,,,,,,144,68,0,,,,, +336,10,1,10499,85,1497.886,14,64,A#6,pp,8,144,94,8,,,,, +336,10,1,10499,85,1497.944,,,,,,144,94,0,,,,, +336,11,1,10500,99,1497.944,14,64,C5,pp,8,144,72,8,,,,, +336,11,1,10500,99,1498.003,,,,,,144,72,0,,,,, +336,12,1,10501,113,1498.003,15,64,A#6,pp+,9,144,94,9,,,,, +336,12,1,10501,113,1498.066,,,,,,144,94,0,,,,, +336,13,1,10502,128,1498.066,42,16,E6,p-,10,144,88,10,,,,, +336,13,1,10502,128,1498.241,,,,,,144,88,0,,,,, +336,14,1,10503,170,1498.241,43,16,G#3,p,11,144,56,11,,,,, +336,14,1,10503,170,1498.421,,,,,,144,56,0,,,,, +336,15,1,10504,213,1498.421,43,16,F5,p,11,144,77,11,,,,, +336,15,1,10504,213,1498.601,,,,,,144,77,0,,,,, +336,16,1,10505,256,1498.601,,,,,,176,102,0,,,,, +336,4,4,10492,0,1499.137,,,,,,144,37,0,,,,, +336,17,4,10506,384,1499.137,384,4,D#1,p,11,144,27,11,,,,, +336,18,4,10507,384,1499.137,256,4,C#2,p,11,144,37,11,,,,, +336,18,4,10507,384,1500.208,,,,,,144,37,0,,,,, +336,23,1,10508,,1500.594,,8,D4,p,11,144,62,11,,,,g, +336,23,1,10508,,1500.644,,,,,,144,62,0,,,,, +336,24,1,10509,,1500.669,,8,A#4,p,11,144,70,11,,,,g, +336,24,1,10509,,1500.719,,,,,,144,70,0,,,,, +336,17,4,10506,384,1500.744,,,,,,144,27,0,,,,, +336,19,0,10510,768,1500.744,,,,,,176,64,0,,,,,^ +336,20,3,10511,768,1500.744,,,,,,176,102,0,,,,, +336,21,4,10512,768,1500.744,,,,,,176,102,0,,,,, +336,22,0,10513,768,1500.744,,,,,,,,,,6023,,, +336,3,3,10491,0,1500.744,,,,,,144,44,0,,,,, +337,0,0,10514,0,1501.816,,,,,,,,,337,,,, +337,1,1,10515,0,1501.816,,,,,,176,102,0,,,,, +337,2,2,10516,0,1501.816,,,,,,176,102,0,,,,, +337,3,3,10517,0,1501.816,256,4,B0,p,11,144,23,11,,,,, +337,4,4,10518,0,1501.816,32,32,D#1,f,20,144,27,20,,,,, +337,5,4,10519,0,1501.816,32,32,C#2,f,20,144,37,20,,,,, +337,6,1,10520,21,1501.903,43,16,C2,ppp,5,144,36,5,,,,, +337,4,4,10518,0,1501.949,,,,,,144,27,0,,,,, +337,5,4,10519,0,1501.949,,,,,,144,37,0,,,,, +337,7,4,10521,32,1501.949,,,,,,176,102,0,,,,, +337,6,1,10520,21,1502.083,,,,,,144,36,0,,,,, +337,8,1,10522,64,1502.083,21,32,E4,pp-,7,144,64,7,,,,, +337,9,4,10523,64,1502.083,64,16,D#1,p,11,144,27,11,,,,, +337,8,1,10522,64,1502.171,,,,,,144,64,0,,,,, +337,10,1,10524,85,1502.171,43,16,C2,pp,8,144,36,8,,,,, +337,9,4,10523,64,1502.351,,,,,,144,27,0,,,,, +337,10,1,10524,85,1502.351,,,,,,144,36,0,,,,, +337,12,1,10525,128,1502.351,42,16,A#4,p-,10,144,70,10,,,,, +337,13,4,10526,128,1502.351,,,,,,176,102,0,,,,, +337,11,0,10527,128,1502.351,,,,,,176,64,127,,,,,V +337,12,1,10525,128,1502.527,,,,,,144,70,0,,,,, +337,14,1,10528,170,1502.527,22,32,F3,p,11,144,53,11,,,,, +337,14,1,10528,170,1502.619,,,,,,144,53,0,,,,, +337,15,1,10529,192,1502.619,21,32,A#4,p+,12,144,70,12,,,,, +337,15,1,10529,192,1502.707,,,,,,144,70,0,,,,, +337,16,1,10530,213,1502.707,43,16,F3,mp-,13,144,53,13,,,,, +337,3,3,10517,0,1502.887,,,,,,144,23,0,,,,, +337,16,1,10530,213,1502.887,,,,,,144,53,0,,,,, +337,17,1,10531,256,1502.887,42,16,A#3,mp+,15,144,58,15,,,,, +337,18,3,10532,256,1502.887,25,32,B0,p,11,144,23,11,,,,, +337,19,4,10533,256,1502.887,,,,,,176,102,0,,,,, +337,18,3,10532,256,1502.992,,,,,,144,23,0,,,,, +337,20,3,10534,281,1502.992,26,32,D1,mp+,15,144,26,15,,,,, +337,23,0,10535,307,1503.057,,,,,,176,64,0,,,,,^ +337,17,1,10531,256,1503.063,,,,,,144,58,0,,,,, +337,21,1,10536,298,1503.063,22,32,F3,mf,17,144,53,17,,,,, +337,22,3,10537,307,1503.1,25,32,F#1,f,20,144,30,20,,,,, +337,20,3,10534,281,1503.1,,,,,,144,26,0,,,,, +337,21,1,10536,298,1503.155,,,,,,144,53,0,,,,, +337,24,1,10538,320,1503.155,21,32,G#2,mf,17,144,44,17,,,,, +337,22,3,10537,307,1503.205,,,,,,144,30,0,,,,, +337,25,3,10539,332,1503.205,26,32,B0,p,11,144,23,11,,,,, +337,24,1,10538,320,1503.243,,,,,,144,44,0,,,,, +337,26,1,10540,341,1503.243,171,4,C3,mf,17,144,48,17,,,,, +337,28,3,10541,358,1503.314,26,32,D1,pp,8,144,26,8,,,,, +337,25,3,10539,332,1503.314,,,,,,144,23,0,,,,, +337,27,0,10542,358,1503.357,,,,,,176,64,127,,,,,V +337,28,3,10541,358,1503.423,,,,,,144,26,0,,,,, +337,29,3,10543,384,1503.423,,,,,,176,102,0,,,,, +337,30,1,10544,512,1503.958,42,16,C3,,,,,,,,,, +337,31,2,10545,512,1503.958,256,4,A#4,ff,22,144,70,22,,,,, +337,32,3,10546,512,1503.958,,,,,,176,102,0,,,,, +337,33,4,10547,512,1503.958,,,,,,176,102,0,,,,, +337,26,1,10540,341,1504.134,,,,,,144,48,0,,,,, +337,34,1,10548,554,1504.134,128,8,C3,mf,17,144,48,17,,,,, +337,35,3,10549,640,1504.494,25,32,B0,f,20,144,23,20,,,,, +337,35,3,10549,640,1504.599,,,,,,144,23,0,,,,, +337,36,3,10550,665,1504.599,26,32,D1,mf,17,144,26,17,,,,, +337,34,1,10548,554,1504.67,,,,,,144,48,0,,,,, +337,37,1,10551,682,1504.67,86,8,A#5,mf,17,144,82,17,,,,, +337,38,3,10552,691,1504.708,25,32,F#1,mp,14,144,30,14,,,,, +337,36,3,10550,665,1504.708,,,,,,144,26,0,,,,, +337,38,3,10552,691,1504.812,,,,,,144,30,0,,,,, +337,39,3,10553,716,1504.812,26,32,B0,p,11,144,23,11,,,,, +337,40,0,10554,742,1504.869,,,,,,176,64,0,,,,,^ +337,39,3,10553,716,1504.921,,,,,,144,23,0,,,,, +337,41,3,10555,742,1504.921,26,32,D1,pp,8,144,26,8,,,,, +337,37,1,10551,682,1505.03,,,,,,144,82,0,,,,, +337,31,2,10545,512,1505.03,,,,,,144,70,0,,,,, +337,41,3,10555,742,1505.03,,,,,,144,26,0,,,,, +337,42,1,10556,768,1505.03,32,32,E5,mf,17,144,76,17,,,,, +337,43,1,10557,768,1505.03,32,32,A#5,mf,17,144,82,17,,,,, +337,44,2,10558,768,1505.03,32,32,C3,pp,8,144,48,8,,,,, +337,45,3,10559,768,1505.03,,,,,,176,102,0,,,,, +337,47,3,10560,789,1505.118,21,32,G#2,pp,8,144,44,8,,,,, +337,43,1,10557,768,1505.164,,,,,,144,82,0,,,,, +337,44,2,10558,768,1505.164,,,,,,144,48,0,,,,, +337,48,1,10561,800,1505.164,224,8,E5,,,,,,,,,, +337,49,2,10562,800,1505.164,,,,,,176,102,0,,,,, +337,46,0,10563,789,1505.169,,,,,,176,64,127,,,,,V +337,47,3,10560,789,1505.206,,,,,,144,44,0,,,,, +337,50,3,10564,810,1505.206,22,32,F3,pp,8,144,53,8,,,,, +337,50,3,10564,810,1505.298,,,,,,144,53,0,,,,, +337,51,3,10565,832,1505.298,16,64,G#1,pp,8,144,32,8,,,,, +337,51,3,10565,832,1505.365,,,,,,144,32,0,,,,, +337,52,3,10566,848,1505.365,16,64,E5,pp,8,144,76,8,,,,, +337,52,3,10566,848,1505.432,,,,,,144,76,0,,,,, +337,53,3,10567,864,1505.432,32,32,G#1,pp,8,144,32,8,,,,, +337,53,3,10567,864,1505.566,,,,,,144,32,0,,,,, +337,54,3,10568,896,1505.566,,,,,,176,102,0,,,,, +337,55,2,10569,992,1505.967,32,32,D#1,pp,8,144,27,8,,,,, +337,56,0,10570,1023,1506.097,,,,,,176,64,0,,,,,^ +337,55,2,10569,992,1506.101,,,,,,144,27,0,,,,, +338,0,0,10571,0,1506.101,,,,,,,,,338,,,, +338,1,1,10572,0,1506.101,,,,,,176,102,0,,,,, +338,2,2,10573,0,1506.101,32,32,A#4,ppp,5,144,70,5,,,,, +338,3,3,10574,0,1506.101,,,,,,176,102,0,,,,, +338,4,4,10575,0,1506.101,64,16,D#1,fff,24,144,27,23,,,,, +338,5,4,10576,0,1506.101,64,16,A#3,fff,24,144,58,23,,,,, +337,42,1,10556,768,1506.101,,,,,,144,76,0,,,,, +338,2,2,10573,0,1506.235,,,,,,144,70,0,,,,, +338,6,2,10577,32,1506.235,32,32,F3,ppp,5,144,53,5,,,,, +338,4,4,10575,0,1506.369,,,,,,144,27,0,,,,, +338,6,2,10577,32,1506.369,,,,,,144,53,0,,,,, +338,7,2,10578,64,1506.369,,,,,,176,102,0,,,,, +338,8,4,10579,64,1506.369,192,8,A#3,,,,,,,,,, +338,9,0,10580,82,1506.444,,,,,,176,64,127,,,,,V +338,10,1,10581,,1506.637,,8,C#7,ppp,5,144,97,5,,,,g, +338,10,1,10581,,1506.687,,,,,,144,97,0,,,,, +338,11,1,10582,,1506.712,,8,C7,ppp,5,144,96,5,,,,g, +338,11,1,10582,,1506.762,,,,,,144,96,0,,,,, +338,12,1,10583,,1506.787,,8,G6,ppp,5,144,91,5,,,,g, +338,12,1,10583,,1506.837,,,,,,144,91,0,,,,, +338,13,1,10584,128,1506.862,64,16,E7,ppp,5,144,100,5,,,,, +338,14,2,10585,128,1506.862,25,32,A6,ppp,5,144,93,5,,,,, +338,15,3,10586,,1506.862,,8,B1,ppp,5,144,35,5,,,,g, +338,15,3,10586,,1506.912,,,,,,144,35,0,,,,, +338,16,3,10587,,1506.937,,8,F#2,pp,8,144,42,8,,,,g, +338,14,2,10585,128,1506.967,,,,,,144,93,0,,,,, +338,16,3,10587,,1506.987,,,,,,144,42,0,,,,, +338,17,3,10588,,1507.012,,8,F2,p,11,144,41,11,,,,g, +338,17,3,10588,,1507.062,,,,,,144,41,0,,,,, +338,18,3,10589,128,1507.087,64,16,D2,mp,14,144,38,14,,,,, +338,13,1,10584,128,1507.13,,,,,,144,100,0,,,,, +338,19,2,10590,153,1507.192,26,32,F7,ppp,5,144,101,5,,,,, +338,19,2,10590,153,1507.3,,,,,,144,101,0,,,,, +338,20,2,10591,179,1507.3,16,32,C#7,ppp,5,144,97,5,,,,, +338,18,3,10589,128,1507.355,,,,,,144,38,0,,,,, +338,21,1,10592,192,1507.355,64,16,G#6,ppp,5,144,92,5,,,,, +338,22,3,10593,192,1507.355,64,16,A#2,mp,14,144,46,14,,,,, +338,20,2,10591,179,1507.367,,,,,,144,97,0,,,,, +338,23,2,10594,195,1507.367,18,32,E7,ppp,5,144,100,5,,,,, +338,23,2,10594,195,1507.443,,,,,,144,100,0,,,,, +338,24,2,10595,213,1507.443,17,32,C#7,ppp,5,144,97,5,,,,, +338,24,2,10595,213,1507.514,,,,,,144,97,0,,,,, +338,25,2,10596,230,1507.514,26,32,A#6,ppp,5,144,94,5,,,,, +338,25,2,10596,230,1507.623,,,,,,144,94,0,,,,, +338,26,1,10597,256,1507.623,32,32,G#6,,,,,,,,,, +338,27,2,10598,256,1507.623,,,,,,176,102,0,,,,, +338,28,3,10599,256,1507.623,32,32,A#2,,,,,,,,,, +338,29,4,10600,256,1507.623,128,8,A#3,,,,,,,,,, +338,5,4,10576,0,1507.708,,,,,,144,58,0,,,,, +338,21,1,10592,192,1507.757,,,,,,144,92,0,,,,, +338,22,3,10593,192,1507.757,,,,,,144,46,0,,,,, +338,30,1,10601,288,1507.757,21,32,G6,ppp,5,144,91,5,,,,, +338,31,3,10602,288,1507.757,32,32,B1,ppp,5,144,35,5,,,,, +338,30,1,10601,288,1507.844,,,,,,144,91,0,,,,, +338,32,1,10603,309,1507.844,21,32,C#7,ppp,5,144,97,5,,,,, +338,31,3,10602,288,1507.891,,,,,,144,35,0,,,,, +338,33,3,10604,320,1507.891,32,32,F#2,ppp,5,144,42,5,,,,, +338,32,1,10603,309,1507.932,,,,,,144,97,0,,,,, +338,34,1,10605,330,1507.932,22,32,G6,ppp,5,144,91,5,,,,, +338,34,1,10605,330,1508.024,,,,,,144,91,0,,,,, +338,35,1,10606,352,1508.024,32,32,C#7,ppp,5,144,97,5,,,,, +338,36,3,10607,352,1508.024,21,32,B1,ppp,5,144,35,5,,,,, +338,33,3,10604,320,1508.024,,,,,,144,42,0,,,,, +338,36,3,10607,352,1508.112,,,,,,144,35,0,,,,, +338,37,3,10608,373,1508.112,21,32,F#2,ppp,5,144,42,5,,,,, +338,35,1,10606,352,1508.158,,,,,,144,97,0,,,,, +338,38,1,10609,384,1508.158,32,32,G6,ppp,5,144,91,5,,,,, +338,39,4,10610,384,1508.158,128,8,A6,ppp,5,144,93,5,,,,, +338,37,3,10608,373,1508.2,,,,,,144,42,0,,,,, +338,40,3,10611,394,1508.2,22,32,B1,ppp,5,144,35,5,,,,, +338,40,3,10611,394,1508.292,,,,,,144,35,0,,,,, +338,41,1,10612,416,1508.292,32,32,C#7,ppp,5,144,97,5,,,,, +338,42,3,10613,416,1508.292,16,64,F2,ppp,5,144,41,5,,,,, +338,38,1,10609,384,1508.292,,,,,,144,91,0,,,,, +338,42,3,10613,416,1508.359,,,,,,144,41,0,,,,, +338,43,3,10614,432,1508.359,16,64,D2,ppp,5,144,38,5,,,,, +338,43,3,10614,432,1508.426,,,,,,144,38,0,,,,, +338,44,1,10615,448,1508.426,64,16,E7,ppp,5,144,100,5,,,,, +338,45,3,10616,448,1508.426,21,32,A#2,ppp,5,144,46,5,,,,, +338,41,1,10612,416,1508.426,,,,,,144,97,0,,,,, +338,45,3,10616,448,1508.514,,,,,,144,46,0,,,,, +338,46,3,10617,469,1508.514,21,32,D2,ppp,5,144,38,5,,,,, +338,46,3,10617,469,1508.602,,,,,,144,38,0,,,,, +338,47,3,10618,490,1508.602,22,32,A#2,ppp,5,144,46,5,,,,, +338,44,1,10615,448,1508.694,,,,,,144,100,0,,,,, +338,47,3,10618,490,1508.694,,,,,,144,46,0,,,,, +338,39,4,10610,384,1508.694,,,,,,144,93,0,,,,, +338,48,0,10619,512,1508.705,,,,,,,,,,,50,, +338,49,1,10620,512,1508.705,,,,,,176,102,0,,,,, +338,50,2,10621,512,1508.705,,,,,,176,102,0,,,,, +338,51,3,10622,512,1508.705,512,2,F3,ppp,5,144,53,5,,,,, +338,52,4,10623,512,1508.705,,,,,,176,102,0,,,,, +338,53,0,10624,768,1509.755,,,,,,176,64,0,,,,,^ +338,53,0,10625,768,1510.055,,,,,,176,64,127,,,,,V +339,0,0,10626,0,1511.105,,,,,,,,,339,,,, +339,1,1,10627,0,1511.105,,,,,,176,102,0,,,,, +339,2,3,10628,0,1511.105,512,2,F3,,,,,,,,,, +338,51,3,10622,512,1513.505,,,,,,144,53,0,,,,, +339,4,0,10629,584,1513.505,,,,,,176,64,0,,,,,^ +339,3,3,10630,512,1513.505,,,,,,176,102,0,,,,, +339,5,0,10631,584,1513.505,,,,,,,,,,6024,,, +339,6,3,10632,768,1514.368,,,,,,176,102,0,,,,, +339,7,3,10633,938,1515.165,86,8,B1,ff,22,144,35,22,,,,, +339,8,3,10634,938,1515.165,128,8,D2,ff,22,144,38,22,,,,, +339,9,3,10635,938,1515.165,128,8,F2,ff,22,144,41,22,,,,, +339,10,3,10636,938,1515.165,128,8,F#2,ff,22,144,42,22,,,,, +339,11,3,10637,938,1515.165,128,8,A#2,ff,22,144,46,22,,,,, +339,7,3,10633,938,1515.215,,,,,,144,35,0,,,,, +339,8,3,10634,938,1515.215,,,,,,144,38,0,,,,, +339,9,3,10635,938,1515.215,,,,,,144,41,0,,,,, +339,10,3,10636,938,1515.215,,,,,,144,42,0,,,,, +339,11,3,10637,938,1515.215,,,,,,144,46,0,,,,, +340,0,0,10638,0,1515.568,,,,,,,,,340,,,, +340,1,1,10639,0,1515.568,25,32,E6,ppp,5,144,88,5,,,,, +340,2,3,10640,0,1515.568,768,2,D#2,p,11,144,39,11,,,,, +340,1,1,10639,0,1515.685,,,,,,144,88,0,,,,, +340,3,1,10641,25,1515.685,26,32,A4,ppp,5,144,69,5,,,,, +340,3,1,10641,25,1515.807,,,,,,144,69,0,,,,, +340,4,1,10642,51,1515.807,25,32,A#5,ppp+,6,144,82,6,,,,, +339,12,0,10643,1023,1515.813,,,,,,176,64,127,,,,,V +340,4,1,10642,51,1515.924,,,,,,144,82,0,,,,, +340,5,1,10644,76,1515.924,16,32,F6,ppp+,6,144,89,6,,,,, +340,5,1,10644,76,1515.999,,,,,,144,89,0,,,,, +340,6,1,10645,92,1515.999,18,32,A4,pp-,7,144,69,7,,,,, +340,6,1,10645,92,1516.083,,,,,,144,69,0,,,,, +340,7,1,10646,110,1516.083,18,32,F6,pp-,7,144,89,7,,,,, +340,7,1,10646,110,1516.168,,,,,,144,89,0,,,,, +340,8,1,10647,128,1516.168,25,32,E5,pp-,7,144,76,7,,,,, +340,8,1,10647,128,1516.285,,,,,,144,76,0,,,,, +340,9,1,10648,153,1516.285,26,32,A3,pp,8,144,57,8,,,,, +340,9,1,10648,153,1516.407,,,,,,144,57,0,,,,, +340,10,1,10649,179,1516.407,25,32,A#4,pp,8,144,70,8,,,,, +340,10,1,10649,179,1516.524,,,,,,144,70,0,,,,, +340,11,1,10650,204,1516.524,26,32,F6,pp+,9,144,89,9,,,,, +340,11,1,10650,204,1516.646,,,,,,144,89,0,,,,, +340,12,1,10651,230,1516.646,26,32,C#5,pp+,9,144,73,9,,,,, +340,12,1,10651,230,1516.768,,,,,,144,73,0,,,,, +340,13,1,10652,256,1516.768,,,,,,176,102,0,,,,, +340,14,1,10653,512,1517.968,,,,,,176,102,0,,,,, +340,2,3,10640,0,1519.168,,,,,,144,39,0,,,,, +340,15,3,10654,768,1519.168,,,,,,176,102,0,,,,, +340,16,0,10655,938,1519.914,,,,,,176,64,0,,,,,^ +340,17,3,10656,938,1519.965,86,8,B1,pp,8,144,35,8,,,,, +340,18,3,10657,938,1519.965,128,8,D2,pp,8,144,38,8,,,,, +340,19,3,10658,938,1519.965,128,8,F2,pp,8,144,41,8,,,,, +340,20,3,10659,938,1519.965,128,8,F#2,pp,8,144,42,8,,,,, +340,21,3,10660,938,1519.965,128,8,A#2,pp,8,144,46,8,,,,, +340,17,3,10656,938,1520.015,,,,,,144,35,0,,,,, +340,18,3,10657,938,1520.015,,,,,,144,38,0,,,,, +340,19,3,10658,938,1520.015,,,,,,144,41,0,,,,, +340,20,3,10659,938,1520.015,,,,,,144,42,0,,,,, +340,21,3,10660,938,1520.015,,,,,,144,46,0,,,,, +341,4,1,10661,,1520.143,,8,A#5,pp,8,144,82,8,,,,g, +341,4,1,10661,,1520.193,,,,,,144,82,0,,,,, +340,22,0,10662,1023,1520.214,,,,,,176,64,127,,,,,V +341,5,1,10663,,1520.218,,8,C3,pp+,9,144,48,9,,,,g, +341,5,1,10663,,1520.268,,,,,,144,48,0,,,,, +341,6,1,10664,,1520.293,,8,A#6,p,11,144,94,11,,,,g, +341,6,1,10664,,1520.343,,,,,,144,94,0,,,,, +341,7,1,10665,,1520.368,,8,C2,p+,12,144,36,12,,,,g, +341,0,0,10666,0,1520.368,,,,,,,,,341,,,, +341,1,1,10667,0,1520.368,,,,,,176,102,0,,,,, +341,2,3,10668,0,1520.368,,,,,,176,102,0,,,,, +341,3,4,10669,0,1520.368,,,,,,176,102,0,,,,, +341,7,1,10665,,1520.418,,,,,,144,36,0,,,,, +341,8,1,10670,,1520.443,,8,E4,mp-,13,144,64,13,,,,g, +341,8,1,10670,,1520.493,,,,,,144,64,0,,,,, +341,9,1,10671,,1520.518,,8,F3,mp,14,144,53,14,,,,g, +341,9,1,10671,,1520.568,,,,,,144,53,0,,,,, +341,10,1,10672,,1520.593,,8,E5,mf-,16,144,76,16,,,,g, +341,10,1,10672,,1520.643,,,,,,144,76,0,,,,, +341,11,1,10673,,1520.668,,8,F3,mf,17,144,53,17,,,,g, +341,11,1,10673,,1520.718,,,,,,144,53,0,,,,, +341,12,1,10674,,1520.743,,8,E5,mf+,18,144,76,18,,,,g, +341,12,1,10674,,1520.793,,,,,,144,76,0,,,,, +341,13,1,10675,,1520.818,,8,F3,f-,19,144,53,19,,,,g, +341,13,1,10675,,1520.868,,,,,,144,53,0,,,,, +341,14,1,10676,,1520.893,,8,G#1,f+,21,144,32,21,,,,g, +341,14,1,10676,,1520.943,,,,,,144,32,0,,,,, +341,15,1,10677,128,1520.968,,,,,,176,102,0,,,,, +341,16,4,10678,128,1520.968,128,8,C2,ff,22,144,36,22,,,,, +341,17,1,10679,256,1521.568,,,,,,176,102,0,,,,, +341,18,4,10680,256,1521.568,768,2,C2,,,,,,,,,, +341,19,1,10681,768,1523.968,,,,,,176,102,0,,,,, +342,0,0,10682,0,1525.168,,,,,,,,,342,,,, +342,1,1,10683,0,1525.168,,,,,,176,102,0,,,,, +342,2,2,10684,0,1525.168,,,,,,176,102,0,,,,, +342,3,3,10685,0,1525.168,1792,1,C3,p,11,144,48,11,,,,, +342,4,4,10686,0,1525.168,512,2,C2,,,,,,,,,, +342,5,1,10687,64,1525.468,448,4,E6,pp,8,144,88,8,,,,, +342,6,2,10688,256,1526.368,,,,,,176,102,0,,,,, +342,7,0,10689,415,1527.113,,,,,,176,64,0,,,,,^ +341,16,4,10678,128,1527.568,,,,,,144,36,0,,,,, +342,5,1,10687,64,1527.568,,,,,,144,88,0,,,,, +342,9,1,10690,512,1527.568,,,,,,176,102,0,,,,, +342,10,2,10691,512,1527.568,256,4,A#6,ff,22,144,94,22,,,,, +342,11,4,10692,512,1527.568,128,8,F#1,pp,8,144,30,8,,,,, +342,12,4,10693,512,1527.568,128,8,C2,pp,8,144,36,8,,,,, +342,8,0,10694,512,1527.568,,,,,,176,64,127,,,,,V +342,12,4,10693,512,1528.168,,,,,,144,36,0,,,,, +342,13,1,10695,640,1528.168,128,8,F#5,p,11,144,78,11,,,,, +342,14,4,10696,640,1528.168,128,8,F#1,,,,,,,,,, +342,15,4,10697,640,1528.168,128,8,B1,pp,8,144,35,8,,,,, +342,16,1,10698,768,1528.768,1024,1,F#5,,,,,,,,,, +342,17,2,10699,768,1528.768,256,4,A#6,,,,,,,,,, +342,18,4,10700,768,1528.768,896,2,F#1,,,,,,,,,, +342,19,4,10701,768,1528.768,512,2,B1,,,,,,,,,, +342,20,2,10702,1024,1529.968,192,8,A#6,,,,,,,,,, +342,10,2,10691,512,1530.868,,,,,,144,94,0,,,,, +342,21,2,10703,1216,1530.868,64,16,F3,ppp,5,144,53,5,,,,, +342,15,4,10697,640,1531.168,,,,,,144,35,0,,,,, +342,22,2,10704,1280,1531.168,384,4,F3,,,,,,,,,, +342,23,2,10705,1664,1532.968,128,8,F3,ppp,5,144,53,5,,,,, +342,24,4,10706,1664,1532.968,128,8,F#1,ppp,5,144,30,5,,,,, +342,25,4,10707,1664,1532.968,128,8,B1,ppp,5,144,35,5,,,,, +342,11,4,10692,512,1533.418,,,,,,144,30,0,,,,, +342,21,2,10703,1216,1533.418,,,,,,144,53,0,,,,, +342,26,1,10708,1792,1533.568,,,,,,176,102,0,,,,, +342,27,2,10709,1792,1533.568,128,8,F3,,,,,,,,,, +342,28,3,10710,1792,1533.568,128,8,B0,pp,8,144,23,8,,,,, +342,29,4,10711,1792,1533.568,128,8,F#1,,,,,,,,,, +342,30,4,10712,1792,1533.568,128,8,B1,,,,,,,,,, +342,31,0,10713,1840,1533.793,,,,,,176,64,0,,,,,^ +342,3,3,10685,0,1534.018,,,,,,144,48,0,,,,, +342,13,1,10695,640,1534.018,,,,,,144,78,0,,,,, +342,33,1,10714,1920,1534.168,42,32,D4,pp,8,144,62,8,,,,, +342,34,2,10715,1920,1534.168,,,,,,176,102,0,,,,, +342,35,3,10716,1920,1534.168,128,8,B0,,,,,,,,,, +342,36,4,10717,1920,1534.168,,,,,,176,102,0,,,,, +342,32,0,10718,1920,1534.168,,,,,,176,64,127,,,,,V +342,23,2,10705,1664,1534.168,,,,,,144,53,0,,,,, +342,24,4,10706,1664,1534.168,,,,,,144,30,0,,,,, +342,25,4,10707,1664,1534.168,,,,,,144,35,0,,,,, +342,33,1,10714,1920,1534.365,,,,,,144,62,0,,,,, +342,37,1,10719,1962,1534.365,43,32,F5,pp-,7,144,77,7,,,,, +342,37,1,10719,1962,1534.566,,,,,,144,77,0,,,,, +342,38,1,10720,2005,1534.566,28,32,A#6,pp-,7,144,94,7,,,,, +342,38,1,10720,2005,1534.697,,,,,,144,94,0,,,,, +342,39,1,10721,2033,1534.697,29,32,F5,ppp+,6,144,77,6,,,,, +342,40,2,10722,2048,1534.768,,,,,,176,102,0,,,,, +342,41,3,10723,2048,1534.768,,,,,,176,102,0,,,,, +342,42,4,10724,2048,1534.768,,,,,,176,102,0,,,,, +342,28,3,10710,1792,1534.768,,,,,,144,23,0,,,,, +342,39,1,10721,2033,1534.833,,,,,,144,77,0,,,,, +342,43,1,10725,2062,1534.833,28,32,A#6,ppp+,6,144,94,6,,,,, +342,43,1,10725,2062,1534.965,,,,,,144,94,0,,,,, +342,44,1,10726,2090,1534.965,29,32,D5,ppp,5,144,74,5,,,,, +342,44,1,10726,2090,1535.1,,,,,,144,74,0,,,,, +342,45,1,10727,2119,1535.1,18,32,A#6,ppp,5,144,94,5,,,,, +342,45,1,10727,2119,1535.185,,,,,,144,94,0,,,,, +342,46,1,10728,2137,1535.185,19,32,F6,ppp-,4,144,89,4,,,,, +342,46,1,10728,2137,1535.274,,,,,,144,89,0,,,,, +342,47,1,10729,2156,1535.274,20,32,A#7,ppp-,4,144,106,4,,,,, +342,47,1,10729,2156,1535.368,,,,,,144,106,0,,,,, +342,48,1,10730,2176,1535.368,,,,,,176,102,0,,,,, +343,0,0,10731,0,1535.968,,,,,,,,,343,,,, +343,1,0,10732,0,1535.968,,,,,,,,,,,58,, +343,2,1,10733,0,1535.968,,,,,,176,102,0,,,,, +343,3,2,10734,0,1535.968,,,,,,176,102,0,,,,, +343,4,3,10735,0,1535.968,,,,,,176,102,0,,,,, +343,5,4,10736,0,1535.968,,,,,,176,102,0,,,,, +343,6,2,10737,768,1539.071,,,,,,176,102,0,,,,, +343,7,4,10738,768,1539.071,,,,,,176,102,0,,,,, +343,8,1,10739,1536,1542.175,,,,,,176,102,0,,,,, +343,9,2,10740,1536,1542.175,,,,,,176,102,0,,,,, +343,10,3,10741,1536,1542.175,,,,,,176,102,0,,,,, +343,11,4,10742,1536,1542.175,,,,,,176,102,0,,,,, +343,12,0,10743,1536,1542.175,,,,,,,,,,6025,,, +343,13,0,10744,1728,1542.8,,,,,,176,64,0,,,,,^ +343,15,1,10745,1728,1542.95,32,32,E5,ff,22,144,76,22,,,,, +343,15,1,10745,1728,1543.08,,,,,,144,76,0,,,,, +343,16,1,10746,1760,1543.08,32,32,G#1,ff,22,144,32,22,,,,, +343,14,0,10747,1728,1543.1,,,,,,176,64,127,,,,,V +343,16,1,10746,1760,1543.209,,,,,,144,32,0,,,,, +343,17,1,10748,,1543.209,,8,B1,mp,14,144,35,14,,,,g, +343,17,1,10748,,1543.259,,,,,,144,35,0,,,,, +343,18,1,10749,,1543.284,,8,F#4,mp+,15,144,66,15,,,,g, +343,18,1,10749,,1543.334,,,,,,144,66,0,,,,, +343,19,1,10750,1792,1543.359,512,2,E5,f,20,144,76,20,,,,, +343,20,2,10751,1792,1543.359,512,2,D4,mf,17,144,62,17,,,,, +343,21,2,10752,1792,1543.359,512,2,F#4,mf,17,144,66,17,,,,, +343,22,3,10753,1792,1543.359,512,2,G1,f,20,144,31,20,,,,, +343,23,4,10754,1792,1543.359,512,2,B1,mp,14,144,35,14,,,,, +344,0,0,10755,0,1545.428,,,,,,,,,344,,,, +344,1,1,10756,0,1545.428,1024,1,E5,,,,,,,,,, +344,2,2,10757,0,1545.428,1024,1,D4,,,,,,,,,, +344,3,2,10758,0,1545.428,1024,1,F#4,,,,,,,,,, +344,4,3,10759,0,1545.428,1024,1,G1,,,,,,,,,, +344,5,4,10760,0,1545.428,1024,1,B1,,,,,,,,,, +343,19,1,10750,1792,1549.566,,,,,,144,76,0,,,,, +343,20,2,10751,1792,1549.566,,,,,,144,62,0,,,,, +343,21,2,10752,1792,1549.566,,,,,,144,66,0,,,,, +343,22,3,10753,1792,1549.566,,,,,,144,31,0,,,,, +343,23,4,10754,1792,1549.566,,,,,,144,35,0,,,,, +344,6,0,10761,1024,1549.566,,,,,,176,64,0,,,,,^ +344,7,1,10762,1024,1549.566,,,,,,176,102,0,,,,, +344,8,2,10763,1024,1549.566,,,,,,176,102,0,,,,, +344,9,3,10764,1024,1549.566,,,,,,176,102,0,,,,, +344,10,4,10765,1024,1549.566,,,,,,176,102,0,,,,, +344,11,1,10766,1248,1550.471,32,32,E5,p,11,144,76,11,,,,, +344,12,3,10767,1248,1550.471,32,32,B1,f,20,144,35,20,,,,, +344,13,3,10768,1248,1550.471,32,32,D4,f,20,144,62,20,,,,, +344,14,3,10769,1248,1550.471,32,32,F#4,f,20,144,66,20,,,,, +344,15,4,10770,1248,1550.471,32,32,G#1,p,11,144,32,11,,,,, +344,11,1,10766,1248,1550.6,,,,,,144,76,0,,,,, +344,12,3,10767,1248,1550.6,,,,,,144,35,0,,,,, +344,13,3,10768,1248,1550.6,,,,,,144,62,0,,,,, +344,14,3,10769,1248,1550.6,,,,,,144,66,0,,,,, +344,15,4,10770,1248,1550.6,,,,,,144,32,0,,,,, +344,17,1,10771,1280,1550.6,42,16,F#7,fff,24,144,102,23,,,,, +344,18,2,10772,1280,1550.6,,,,,,176,102,0,,,,, +344,19,3,10773,1280,1550.6,,,,,,176,102,0,,,,, +344,20,4,10774,1280,1550.6,,,,,,176,102,0,,,,, +344,16,0,10775,1280,1550.6,,,,,,176,64,127,,,,,V +344,17,1,10771,1280,1550.77,,,,,,144,102,0,,,,, +344,21,1,10776,1322,1550.77,86,8,D4,mf,17,144,62,17,,,,, +344,22,1,10777,1322,1550.77,128,8,F#4,mf,17,144,66,17,,,,, +344,23,1,10778,1322,1550.77,128,8,E5,pp,8,144,76,8,,,,, +344,24,3,10779,1322,1550.77,86,8,G#1,mf,17,144,32,17,,,,, +344,25,3,10780,1322,1550.77,128,8,B1,mf,17,144,35,17,,,,, +344,26,4,10781,1322,1550.77,86,8,D#1,fff,24,144,27,23,,,,, +344,27,0,10782,1344,1550.838,,,,,,176,64,0,,,,,^ +344,21,1,10776,1322,1551.118,,,,,,144,62,0,,,,, +344,22,1,10777,1322,1551.118,,,,,,144,66,0,,,,, +344,24,3,10779,1322,1551.118,,,,,,144,32,0,,,,, +344,25,3,10780,1322,1551.118,,,,,,144,35,0,,,,, +344,29,1,10783,1408,1551.118,128,8,D4,p,11,144,62,11,,,,, +344,30,1,10784,1408,1551.118,128,8,F#4,p,11,144,66,11,,,,, +344,31,3,10785,1408,1551.118,128,8,G#1,mf,17,144,32,17,,,,, +344,32,3,10786,1408,1551.118,128,8,B1,mf,17,144,35,17,,,,, +344,33,4,10787,1408,1551.118,128,8,D#1,,,,,,,,,, +344,28,0,10788,1408,1551.138,,,,,,176,64,127,,,,,V +344,23,1,10778,1322,1551.287,,,,,,144,76,0,,,,, +344,34,0,10789,1536,1551.485,,,,,,176,64,0,,,,,^ +344,26,4,10781,1322,1551.635,,,,,,144,27,0,,,,, +344,29,1,10783,1408,1551.635,,,,,,144,62,0,,,,, +344,30,1,10784,1408,1551.635,,,,,,144,66,0,,,,, +344,31,3,10785,1408,1551.635,,,,,,144,32,0,,,,, +344,32,3,10786,1408,1551.635,,,,,,144,35,0,,,,, +344,36,1,10790,1536,1551.635,,,,,,176,102,0,,,,, +344,37,2,10791,1536,1551.635,,,,,,176,102,0,,,,, +344,38,3,10792,1536,1551.635,768,2,G#1,ppp,5,144,32,5,,,,, +344,39,3,10793,1536,1551.635,512,2,B1,ppp,5,144,35,5,,,,, +344,40,4,10794,1536,1551.635,768,2,D#1,p,11,144,27,11,,,,, +344,35,0,10795,1536,1551.785,,,,,,176,64,127,,,,,V +344,39,3,10793,1536,1553.704,,,,,,144,35,0,,,,, +344,38,3,10792,1536,1554.738,,,,,,144,32,0,,,,, +344,40,4,10794,1536,1554.738,,,,,,144,27,0,,,,, +345,0,0,10796,0,1554.738,,,,,,,,,345,,,, +345,1,1,10797,0,1554.738,,,,,,176,102,0,,,,, +345,2,2,10798,0,1554.738,,,,,,176,102,0,,,,, +345,3,3,10799,0,1554.738,,,,,,176,102,0,,,,, +345,4,1,10800,85,1555.082,,,,,,176,102,0,,,,, +345,5,0,10801,148,1555.318,,,,,,176,64,0,,,,,^ +345,6,3,10802,192,1555.514,32,32,C4,p,11,144,60,11,,,,, +345,8,1,10803,213,1555.599,43,16,F#7,pp,8,144,102,8,,,,, +345,7,0,10804,213,1555.618,,,,,,176,64,127,,,,,V +345,9,3,10805,224,1555.644,32,32,E4,mp,14,144,64,14,,,,, +345,6,3,10802,192,1555.644,,,,,,144,60,0,,,,, +345,8,1,10803,213,1555.773,,,,,,144,102,0,,,,, +345,9,3,10805,224,1555.773,,,,,,144,64,0,,,,, +345,10,1,10806,256,1555.773,128,8,D#1,pp,8,144,27,8,,,,, +345,11,1,10807,256,1555.773,128,8,A#3,pp,8,144,58,8,,,,, +345,12,2,10808,256,1555.773,384,4,G#1,ppp,5,144,32,5,,,,, +345,13,2,10809,256,1555.773,256,4,B1,ppp,5,144,35,5,,,,, +345,14,3,10810,256,1555.773,64,16,A1,mf,17,144,33,17,,,,, +345,14,3,10810,256,1556.031,,,,,,144,33,0,,,,, +345,15,3,10811,320,1556.031,192,8,A1,p,11,144,33,11,,,,, +345,16,3,10812,320,1556.031,128,8,D3,p,11,144,50,11,,,,, +345,10,1,10806,256,1556.29,,,,,,144,27,0,,,,, +345,11,1,10807,256,1556.29,,,,,,144,58,0,,,,, +345,16,3,10812,320,1556.29,,,,,,144,50,0,,,,, +345,17,1,10813,384,1556.29,42,16,D3,ff,22,144,50,22,,,,, +345,18,1,10814,426,1556.46,86,8,E7,ff,22,144,100,22,,,,, +345,13,2,10809,256,1556.807,,,,,,144,35,0,,,,, +345,18,1,10814,426,1556.807,,,,,,144,100,0,,,,, +345,19,1,10815,512,1556.807,,,,,,176,102,0,,,,, +345,20,3,10816,512,1556.807,128,8,A1,,,,,,,,,, +345,21,3,10817,512,1556.807,128,8,D3,,,,,,,,,, +345,17,1,10813,384,1557.066,,,,,,144,50,0,,,,, +345,12,2,10808,256,1557.325,,,,,,144,32,0,,,,, +345,15,3,10811,320,1557.325,,,,,,144,33,0,,,,, +345,22,2,10818,640,1557.325,,,,,,176,102,0,,,,, +345,23,3,10819,640,1557.325,21,32,A0,ppp,5,144,21,5,,,,, +345,24,3,10820,661,1557.409,21,32,A0,,,,,,,,,, +345,25,3,10821,661,1557.409,32,32,G#1,ppp+,6,144,32,6,,,,, +345,26,3,10822,682,1557.494,22,32,A0,,,,,,,,,, +345,27,3,10823,682,1557.494,32,32,G#1,,,,,,,,,, +345,28,3,10824,682,1557.494,32,32,D2,ppp+,6,144,38,6,,,,, +345,29,3,10825,704,1557.583,21,32,A0,,,,,,,,,, +345,30,3,10826,704,1557.583,32,32,G#1,,,,,,,,,, +345,31,3,10827,704,1557.583,32,32,D2,,,,,,,,,, +345,32,3,10828,704,1557.583,32,32,A2,pp-,7,144,45,7,,,,, +345,33,0,10829,725,1557.605,,,,,,176,64,0,,,,,^ +345,34,3,10830,725,1557.668,43,16,A0,,,,,,,,,, +345,35,3,10831,725,1557.668,64,16,G#1,,,,,,,,,, +345,36,3,10832,725,1557.668,64,16,D2,,,,,,,,,, +345,37,3,10833,725,1557.668,64,16,A2,,,,,,,,,, +345,38,3,10834,725,1557.668,64,16,C3,pp,8,144,48,8,,,,, +345,40,1,10835,768,1557.842,,,,,,176,102,0,,,,, +345,41,2,10836,768,1557.842,,,,,,176,102,0,,,,, +345,42,3,10837,768,1557.842,128,8,A0,,,,,,,,,, +345,43,3,10838,768,1557.842,128,8,G#1,,,,,,,,,, +345,44,3,10839,768,1557.842,128,8,D2,,,,,,,,,, +345,45,3,10840,768,1557.842,128,8,A2,,,,,,,,,, +345,46,3,10841,768,1557.842,128,8,C3,,,,,,,,,, +345,39,0,10842,768,1557.905,,,,,,176,64,127,,,,,V +345,47,0,10843,896,1558.209,,,,,,176,64,0,,,,,^ +345,49,3,10844,896,1558.359,21,32,A0,pp,8,144,21,8,,,,, +345,23,3,10819,640,1558.359,,,,,,144,21,0,,,,, +345,49,3,10844,896,1558.444,,,,,,144,21,0,,,,, +345,50,3,10845,917,1558.444,21,32,G#1,pp+,9,144,32,9,,,,, +345,38,3,10834,725,1558.444,,,,,,144,48,0,,,,, +345,32,3,10828,704,1558.488,,,,,,144,45,0,,,,, +345,48,0,10846,896,1558.509,,,,,,176,64,127,,,,,V +345,50,3,10845,917,1558.529,,,,,,144,32,0,,,,, +345,51,3,10847,938,1558.529,22,32,D2,p,11,144,38,11,,,,, +345,28,3,10824,682,1558.529,,,,,,144,38,0,,,,, +345,25,3,10821,661,1558.573,,,,,,144,32,0,,,,, +345,51,3,10847,938,1558.618,,,,,,144,38,0,,,,, +345,52,3,10848,960,1558.618,12,64,E3,p+,12,144,52,12,,,,, +345,52,3,10848,960,1558.666,,,,,,144,52,0,,,,, +345,53,3,10849,972,1558.666,13,64,G#1,mp-,13,144,32,13,,,,, +345,53,3,10849,972,1558.719,,,,,,144,32,0,,,,, +345,54,3,10850,985,1558.719,13,64,E3,mp,14,144,52,14,,,,, +345,54,3,10850,985,1558.771,,,,,,144,52,0,,,,, +345,55,3,10851,998,1558.771,13,64,G#1,mp+,15,144,32,15,,,,, +345,55,3,10851,998,1558.824,,,,,,144,32,0,,,,, +345,56,3,10852,1011,1558.824,13,64,D2,mf-,16,144,38,16,,,,, +345,56,3,10852,1011,1558.876,,,,,,144,38,0,,,,, +345,57,3,10853,1024,1558.876,32,32,A0,mf,17,144,21,17,,,,, +345,57,3,10853,1024,1559.006,,,,,,144,21,0,,,,, +345,58,3,10854,1056,1559.006,32,32,D2,mf,17,144,38,17,,,,, +345,58,3,10854,1056,1559.135,,,,,,144,38,0,,,,, +345,59,3,10855,1088,1559.135,21,32,E3,mp+,15,144,52,15,,,,, +345,59,3,10855,1088,1559.22,,,,,,144,52,0,,,,, +345,60,3,10856,1109,1559.22,21,32,C3,mp-,13,144,48,13,,,,, +345,60,3,10856,1109,1559.305,,,,,,144,48,0,,,,, +345,61,3,10857,1130,1559.305,22,32,E3,p,11,144,52,11,,,,, +345,61,3,10857,1130,1559.394,,,,,,144,52,0,,,,, +345,62,3,10858,1152,1559.394,16,64,A0,p-,10,144,21,10,,,,, +345,62,3,10858,1152,1559.458,,,,,,144,21,0,,,,, +345,63,3,10859,1168,1559.458,16,64,G#1,pp+,9,144,32,9,,,,, +345,63,3,10859,1168,1559.523,,,,,,144,32,0,,,,, +345,64,3,10860,1184,1559.523,16,64,D2,pp-,7,144,38,7,,,,, +345,64,3,10860,1184,1559.587,,,,,,144,38,0,,,,, +345,65,3,10861,1200,1559.587,16,64,C3,ppp+,6,144,48,6,,,,, +345,65,3,10861,1200,1559.652,,,,,,144,48,0,,,,, +345,66,3,10862,1216,1559.652,64,16,E3,ppp,5,144,52,5,,,,, +345,67,0,10863,1216,1559.652,,,,,,,,,,6026,,, +345,68,0,10864,1279,1559.759,,,,,,176,64,0,,,,,^ +345,66,3,10862,1216,1559.911,,,,,,144,52,0,,,,, +346,2,0,10865,0,1559.911,,,,,,,,,346,,,, +346,1,3,10866,0,1559.911,32,32,G#3,p,11,144,56,11,,,,, +346,3,1,10867,0,1559.911,32,32,D7,pp,8,144,98,8,,,,, +346,4,2,10868,0,1559.911,,,,,,176,102,0,,,,, +346,1,3,10866,0,1560.04,,,,,,144,56,0,,,,, +346,3,1,10867,0,1560.04,,,,,,144,98,0,,,,, +346,5,3,10869,32,1560.04,192,8,C4,p,11,144,60,11,,,,, +346,6,1,10870,32,1560.04,32,32,F#4,pp-,7,144,66,7,,,,, +346,0,0,10871,0,1560.059,,,,,,176,64,127,,,,,V +346,6,1,10870,32,1560.169,,,,,,144,66,0,,,,, +346,7,1,10872,64,1560.169,21,32,B4,pp-,7,144,71,7,,,,, +346,7,1,10872,64,1560.254,,,,,,144,71,0,,,,, +346,8,1,10873,85,1560.254,21,32,C5,pp-,7,144,72,7,,,,, +346,8,1,10873,85,1560.339,,,,,,144,72,0,,,,, +346,9,1,10874,106,1560.339,22,32,B4,ppp+,6,144,71,6,,,,, +346,9,1,10874,106,1560.428,,,,,,144,71,0,,,,, +346,10,1,10875,128,1560.428,21,32,D6,ppp+,6,144,86,6,,,,, +346,10,1,10875,128,1560.513,,,,,,144,86,0,,,,, +346,11,1,10876,149,1560.513,21,32,F#4,ppp,5,144,66,5,,,,, +346,11,1,10876,149,1560.598,,,,,,144,66,0,,,,, +346,12,1,10877,170,1560.598,16,32,C5,ppp,5,144,72,5,,,,, +346,12,1,10877,170,1560.662,,,,,,144,72,0,,,,, +346,13,1,10878,186,1560.662,17,32,B4,ppp,5,144,71,5,,,,, +346,13,1,10878,186,1560.731,,,,,,144,71,0,,,,, +346,14,1,10879,203,1560.731,18,32,C5,ppp,5,144,72,5,,,,, +346,14,1,10879,203,1560.804,,,,,,144,72,0,,,,, +346,15,1,10880,221,1560.804,17,32,B4,ppp-,4,144,71,4,,,,, +346,5,3,10869,32,1560.816,,,,,,144,60,0,,,,, +346,16,3,10881,224,1560.816,32,32,G#3,ppp,5,144,56,5,,,,, +346,15,1,10880,221,1560.872,,,,,,144,71,0,,,,, +346,17,1,10882,238,1560.872,18,32,C5,ppp-,4,144,72,4,,,,, +346,16,3,10881,224,1560.945,,,,,,144,56,0,,,,, +346,17,1,10882,238,1560.945,,,,,,144,72,0,,,,, +346,18,1,10883,256,1560.945,,,,,,176,102,0,,,,, +346,19,3,10884,256,1560.945,224,8,C4,ppp,5,144,60,5,,,,, +346,20,0,10885,410,1561.568,,,,,,176,64,0,,,,,^ +346,19,3,10884,256,1561.85,,,,,,144,60,0,,,,, +346,23,1,10886,,1561.85,,8,F#2,mf,17,144,42,17,,,,g, +346,23,1,10886,,1561.9,,,,,,144,42,0,,,,, +346,24,1,10887,,1561.925,,8,C3,mf,17,144,48,17,,,,g, +346,24,1,10887,,1561.975,,,,,,144,48,0,,,,, +346,25,1,10888,,1562,,8,G#2,mf,17,144,44,17,,,,g, +346,25,1,10888,,1562.05,,,,,,144,44,0,,,,, +346,26,1,10889,,1562.075,,8,F5,mf,17,144,77,17,,,,g, +346,26,1,10889,,1562.125,,,,,,144,77,0,,,,, +346,22,3,10890,480,1562.15,32,32,F4,mf,17,144,65,17,,,,, +346,21,0,10891,480,1562.15,,,,,,176,64,127,,,,,V +346,22,3,10890,480,1562.28,,,,,,144,65,0,,,,, +346,27,1,10892,512,1562.28,42,16,C5,mf,17,144,72,17,,,,, +346,28,3,10893,512,1562.28,,,,,,176,102,0,,,,, +346,27,1,10892,512,1562.449,,,,,,144,72,0,,,,, +346,29,1,10894,554,1562.449,43,16,E6,mf,17,144,88,17,,,,, +346,29,1,10894,554,1562.623,,,,,,144,88,0,,,,, +346,30,1,10895,597,1562.623,43,16,F#1,mf-,16,144,30,16,,,,, +346,30,1,10895,597,1562.797,,,,,,144,30,0,,,,, +346,31,1,10896,640,1562.797,,,,,,176,102,0,,,,, +346,35,1,10897,,1563.089,,8,G#5,pp,8,144,80,8,,,,g, +346,35,1,10897,,1563.139,,,,,,144,80,0,,,,, +346,36,1,10898,,1563.164,,8,A4,p+,12,144,69,12,,,,g, +346,36,1,10898,,1563.214,,,,,,144,69,0,,,,, +346,37,1,10899,,1563.239,,8,C7,mf,17,144,96,17,,,,g, +346,37,1,10899,,1563.289,,,,,,144,96,0,,,,, +346,32,1,10900,768,1563.314,,,,,,176,102,0,,,,, +346,33,3,10901,768,1563.314,,,,,,176,102,0,,,,, +346,34,0,10902,865,1563.706,,,,,,176,64,0,,,,,^ +346,38,1,10903,,1564.349,,8,D4,mp,14,144,62,14,,,,g, +346,38,1,10903,,1564.399,,,,,,144,62,0,,,,, +346,39,1,10904,,1564.424,,8,A#2,p,11,144,46,11,,,,g, +346,39,1,10904,,1564.474,,,,,,144,46,0,,,,, +346,40,1,10905,,1564.499,,8,D4,pp,8,144,62,8,,,,g, +346,40,1,10905,,1564.549,,,,,,144,62,0,,,,, +346,41,1,10906,1024,1564.574,128,8,G#3,mf,17,144,56,17,,,,, +346,42,2,10907,1024,1564.574,256,4,F#3,ppp,5,144,54,5,,,,, +346,43,3,10908,,1564.574,,8,F3,ppp,5,144,53,5,,,,g, +346,43,3,10908,,1564.624,,,,,,144,53,0,,,,, +346,44,3,10909,1024,1564.649,32,32,G#2,p,11,144,44,11,,,,, +346,44,3,10909,1024,1564.778,,,,,,144,44,0,,,,, +346,45,3,10910,1056,1564.778,21,32,C3,p,11,144,48,11,,,,, +346,45,3,10910,1056,1564.863,,,,,,144,48,0,,,,, +346,46,3,10911,1077,1564.863,21,32,F#1,p-,10,144,30,10,,,,, +346,46,3,10911,1077,1564.948,,,,,,144,30,0,,,,, +346,47,3,10912,1098,1564.948,22,32,C3,p-,10,144,48,10,,,,, +346,47,3,10912,1098,1565.037,,,,,,144,48,0,,,,, +346,48,3,10913,1120,1565.037,32,32,E5,p-,10,144,76,10,,,,, +346,41,1,10906,1024,1565.091,,,,,,144,56,0,,,,, +346,48,3,10913,1120,1565.166,,,,,,144,76,0,,,,, +346,49,1,10914,1152,1565.166,128,8,C6,f,20,144,84,20,,,,, +346,50,3,10915,1152,1565.166,32,32,F3,p-,10,144,53,10,,,,, +346,50,3,10915,1152,1565.295,,,,,,144,53,0,,,,, +346,51,3,10916,1184,1565.295,64,16,G#2,pp+,9,144,44,9,,,,, +346,51,3,10916,1184,1565.554,,,,,,144,44,0,,,,, +346,52,3,10917,1248,1565.554,32,32,F3,pp+,9,144,53,9,,,,, +346,42,2,10907,1024,1565.608,,,,,,144,54,0,,,,, +346,49,1,10914,1152,1565.683,,,,,,144,84,0,,,,, +346,52,3,10917,1248,1565.683,,,,,,144,53,0,,,,, +346,53,1,10918,1280,1565.683,,,,,,176,102,0,,,,, +346,54,2,10919,1280,1565.683,,,,,,176,102,0,,,,, +346,55,3,10920,1280,1565.683,96,16,C3,pp,8,144,48,8,,,,, +346,55,3,10920,1280,1566.071,,,,,,144,48,0,,,,, +346,56,3,10921,1376,1566.071,96,16,G2,pp-,7,144,43,7,,,,, +346,56,3,10921,1376,1566.459,,,,,,144,43,0,,,,, +346,57,3,10922,1472,1566.459,64,16,E4,ppp+,6,144,64,6,,,,, +346,57,3,10922,1472,1566.718,,,,,,144,64,0,,,,, +346,59,1,10923,1536,1566.718,256,4,B4,mf,17,144,71,17,,,,, +346,60,2,10924,1536,1566.718,,,,,,176,102,0,,,,, +346,58,1,10925,,1566.718,,8,D#4,mf,17,144,63,17,,,,g, +346,61,3,10926,,1566.718,,8,G#1,ppp+,6,144,32,6,,,,g, +346,58,1,10925,,1566.768,,,,,,144,63,0,,,,, +346,61,3,10926,,1566.768,,,,,,144,32,0,,,,, +346,62,3,10927,1536,1566.868,16,64,F2,ppp,5,144,41,5,,,,, +346,62,3,10927,1536,1566.932,,,,,,144,41,0,,,,, +346,63,3,10928,1552,1566.932,16,64,F#1,ppp,5,144,30,5,,,,, +346,63,3,10928,1552,1566.997,,,,,,144,30,0,,,,, +346,64,3,10929,1568,1566.997,96,16,C2,ppp,5,144,36,5,,,,, +346,64,3,10929,1568,1567.385,,,,,,144,36,0,,,,, +346,65,3,10930,1664,1567.385,128,8,E3,ppp,5,144,52,5,,,,, +346,59,1,10923,1536,1567.752,,,,,,144,71,0,,,,, +346,65,3,10930,1664,1567.902,,,,,,144,52,0,,,,, +346,66,1,10931,1792,1567.902,,,,,,176,102,0,,,,, +346,67,3,10932,1792,1567.902,16,64,F#2,p,11,144,42,11,,,,, +346,67,3,10932,1792,1567.967,,,,,,144,42,0,,,,, +346,68,3,10933,1808,1567.967,16,64,D3,p-,10,144,50,10,,,,, +346,68,3,10933,1808,1568.031,,,,,,144,50,0,,,,, +346,69,3,10934,1824,1568.031,16,64,G4,pp+,9,144,67,9,,,,, +346,69,3,10934,1824,1568.096,,,,,,144,67,0,,,,, +346,70,3,10935,1840,1568.096,16,64,A#3,pp,8,144,58,8,,,,, +346,70,3,10935,1840,1568.161,,,,,,144,58,0,,,,, +346,71,3,10936,1856,1568.161,16,64,G#3,pp-,7,144,56,7,,,,, +346,71,3,10936,1856,1568.225,,,,,,144,56,0,,,,, +346,72,3,10937,1872,1568.225,24,64,D3,ppp+,6,144,50,6,,,,, +346,72,3,10937,1872,1568.322,,,,,,144,50,0,,,,, +346,73,3,10938,1896,1568.322,24,64,G4,ppp,5,144,67,5,,,,, +346,73,3,10938,1896,1568.419,,,,,,144,67,0,,,,, +346,74,0,10939,1920,1568.445,,,,,,,,,,,46,, +346,76,1,10940,1920,1568.445,,,,,,176,102,0,,,,, +346,77,3,10941,1920,1568.445,128,8,F#1,ppp,5,144,30,5,,,,, +346,78,3,10942,1920,1568.445,128,8,G#1,ppp,5,144,32,5,,,,, +346,79,3,10943,1920,1568.445,128,8,C2,ppp,5,144,36,5,,,,, +346,80,3,10944,1920,1568.445,128,8,F2,ppp,5,144,41,5,,,,, +346,81,3,10945,1920,1568.445,128,8,E3,ppp,5,144,52,5,,,,, +346,77,3,10941,1920,1568.495,,,,,,144,30,0,,,,, +346,78,3,10942,1920,1568.495,,,,,,144,32,0,,,,, +346,79,3,10943,1920,1568.495,,,,,,144,36,0,,,,, +346,80,3,10944,1920,1568.495,,,,,,144,41,0,,,,, +346,81,3,10945,1920,1568.495,,,,,,144,52,0,,,,, +346,75,0,10946,1920,1568.745,,,,,,176,64,127,,,,,V +346,1,0,10947,2047,1568.944,,,,,,176,64,0,,,,,^ +347,0,0,10948,0,1569.097,,,,,,,,,347,,,, +347,4,1,10949,0,1569.097,,,,,,176,102,0,,,,, +347,12,3,10950,0,1569.097,,,,,,176,102,0,,,,, +347,13,4,10951,0,1569.097,16,64,G#3,p,11,144,56,11,,,,, +347,16,2,10952,0,1569.097,,,,,,176,102,0,,,,, +347,13,4,10951,0,1569.178,,,,,,144,56,0,,,,, +347,14,4,10953,16,1569.178,16,64,C4,p,11,144,60,11,,,,, +347,2,0,10954,0,1569.244,,,,,,176,64,127,,,,,V +347,14,4,10953,16,1569.26,,,,,,144,60,0,,,,, +347,15,4,10955,32,1569.26,224,8,F4,p,11,144,65,11,,,,, +347,5,1,10956,,1570.401,,8,G#5,pp,8,144,80,8,,,,g, +347,5,1,10956,,1570.451,,,,,,144,80,0,,,,, +347,6,1,10957,,1570.476,,8,A4,p-,10,144,69,10,,,,g, +347,6,1,10957,,1570.526,,,,,,144,69,0,,,,, +347,15,4,10955,32,1570.551,,,,,,144,65,0,,,,, +347,7,1,10958,,1570.551,,8,G#5,p+,12,144,80,12,,,,g, +347,7,1,10958,,1570.601,,,,,,144,80,0,,,,, +347,8,1,10959,,1570.626,,8,C7,mp-,13,144,96,13,,,,g, +347,8,1,10959,,1570.676,,,,,,144,96,0,,,,, +347,9,1,10960,,1570.701,,8,A4,mp+,15,144,69,15,,,,g, +347,9,1,10960,,1570.751,,,,,,144,69,0,,,,, +347,10,1,10961,,1570.776,,8,C7,mf,17,144,96,17,,,,g, +347,10,1,10961,,1570.826,,,,,,144,96,0,,,,, +347,3,2,10962,,1570.851,,8,C#3,p,11,144,49,11,,,,g, +347,3,2,10962,,1570.901,,,,,,144,49,0,,,,, +347,11,2,10963,256,1570.926,256,4,D6,p,11,144,86,11,,,,, +347,17,1,10964,256,1570.926,192,8,D5,p,11,144,74,11,,,,, +347,18,3,10965,256,1570.926,21,32,C#4,ff,22,144,61,22,,,,, +347,19,4,10966,256,1570.926,512,2,G#3,ff,22,144,56,22,,,,, +347,18,3,10965,256,1571.033,,,,,,144,61,0,,,,, +347,20,3,10967,277,1571.033,21,32,G#1,f+,21,144,32,21,,,,, +347,20,3,10967,277,1571.14,,,,,,144,32,0,,,,, +347,21,3,10968,298,1571.14,43,16,D#1,f+,21,144,27,21,,,,, +347,22,3,10969,341,1571.359,171,4,D#1,,,,,,,,,, +347,17,1,10964,256,1571.904,,,,,,144,74,0,,,,, +347,23,1,10970,448,1571.904,64,16,A4,mf-,16,144,69,16,,,,, +347,11,2,10963,256,1572.231,,,,,,144,86,0,,,,, +347,24,1,10971,512,1572.231,256,4,A4,,,,,,,,,, +347,25,2,10972,512,1572.231,,,,,,176,102,0,,,,, +347,26,3,10973,512,1572.231,85,8,D#1,,,,,,,,,, +347,21,3,10968,298,1572.664,,,,,,144,27,0,,,,, +347,27,3,10974,597,1572.664,21,32,B5,p+,12,144,83,12,,,,, +347,27,3,10974,597,1572.771,,,,,,144,83,0,,,,, +347,28,3,10975,618,1572.771,150,8,G2,p,11,144,43,11,,,,, +347,19,4,10966,256,1573.535,,,,,,144,56,0,,,,, +348,0,0,10976,0,1573.535,,,,,,,,,348,,,, +348,1,0,10977,0,1573.535,,,,,,176,64,0,,,,,^ +348,2,1,10978,0,1573.535,64,16,A4,,,,,,,,,, +348,3,2,10979,0,1573.535,16,64,G#3,ppp,5,144,56,5,,,,, +348,4,3,10980,0,1573.535,170,4,G2,,,,,,,,,, +348,5,3,10981,0,1573.535,256,4,A#2,ppp,5,144,46,5,,,,, +348,6,4,10982,0,1573.535,,,,,,176,102,0,,,,, +348,3,2,10979,0,1573.616,,,,,,144,56,0,,,,, +348,7,2,10983,16,1573.616,16,64,C4,ppp,5,144,60,5,,,,, +348,7,2,10983,16,1573.698,,,,,,144,60,0,,,,, +348,8,2,10984,32,1573.698,16,64,E5,ppp,5,144,76,5,,,,, +348,8,2,10984,32,1573.779,,,,,,144,76,0,,,,, +348,9,2,10985,48,1573.779,96,16,F4,ppp,5,144,65,5,,,,, +347,23,1,10970,448,1573.861,,,,,,144,69,0,,,,, +348,10,1,10986,64,1573.861,,,,,,176,102,0,,,,, +348,11,4,10987,64,1573.861,48,32,G3,ppp,5,144,55,5,,,,, +348,9,2,10985,48,1574.106,,,,,,144,65,0,,,,, +348,11,4,10987,64,1574.106,,,,,,144,55,0,,,,, +348,12,4,10988,112,1574.106,16,64,F4,ppp+,6,144,65,6,,,,, +348,13,4,10989,128,1574.187,16,64,G3,pp,8,144,55,8,,,,, +348,12,4,10988,112,1574.269,,,,,,144,65,0,,,,, +348,13,4,10989,128,1574.269,,,,,,144,55,0,,,,, +348,14,2,10990,144,1574.269,,,,,,176,102,0,,,,, +348,15,4,10991,144,1574.269,16,64,F4,pp+,9,144,65,9,,,,, +348,16,4,10992,160,1574.35,32,32,F4,,,,,,,,,, +347,28,3,10975,618,1574.401,,,,,,144,43,0,,,,, +348,17,3,10993,170,1574.401,86,8,D#2,ff,22,144,39,22,,,,, +348,15,4,10991,144,1574.513,,,,,,144,65,0,,,,, +348,18,2,10994,192,1574.513,,,,,,176,102,0,,,,, +348,19,4,10995,192,1574.513,,,,,,176,102,0,,,,, +348,5,3,10981,0,1574.839,,,,,,144,46,0,,,,, +348,17,3,10993,170,1574.839,,,,,,144,39,0,,,,, +348,21,1,10996,256,1574.839,21,32,B4,ff,22,144,71,22,,,,, +348,22,2,10997,256,1574.839,,,,,,176,102,0,,,,, +348,23,3,10998,256,1574.839,,,,,,176,102,0,,,,, +348,24,4,10999,256,1574.839,128,8,C3,p,11,144,48,11,,,,, +348,20,0,11000,256,1574.839,,,,,,176,64,127,,,,,V +348,21,1,10996,256,1574.946,,,,,,144,71,0,,,,, +348,25,1,11001,277,1574.946,21,32,C#4,f,20,144,61,20,,,,, +348,25,1,11001,277,1575.053,,,,,,144,61,0,,,,, +348,26,1,11002,298,1575.053,14,32,G3,f-,19,144,55,19,,,,, +348,26,1,11002,298,1575.125,,,,,,144,55,0,,,,, +348,27,1,11003,312,1575.125,14,32,C#4,mf,17,144,61,17,,,,, +348,27,1,11003,312,1575.196,,,,,,144,61,0,,,,, +348,28,1,11004,326,1575.196,15,32,G3,mf-,16,144,55,16,,,,, +348,28,1,11004,326,1575.272,,,,,,144,55,0,,,,, +348,29,1,11005,341,1575.272,21,32,C#4,mp+,15,144,61,15,,,,, +348,29,1,11005,341,1575.379,,,,,,144,61,0,,,,, +348,30,1,11006,362,1575.379,22,32,G3,mp-,13,144,55,13,,,,, +348,24,4,10999,256,1575.491,,,,,,144,48,0,,,,, +348,30,1,11006,362,1575.491,,,,,,144,55,0,,,,, +348,31,4,11007,384,1575.491,128,8,B2,pp,8,144,47,8,,,,, +348,32,1,11008,384,1575.491,21,32,G#2,p,11,144,44,11,,,,, +348,32,1,11008,384,1575.598,,,,,,144,44,0,,,,, +348,33,1,11009,405,1575.598,14,32,D#2,p-,10,144,39,10,,,,, +348,33,1,11009,405,1575.67,,,,,,144,39,0,,,,, +348,34,1,11010,419,1575.67,14,32,B5,pp+,9,144,83,9,,,,, +348,34,1,11010,419,1575.741,,,,,,144,83,0,,,,, +348,35,1,11011,433,1575.741,15,32,C#5,pp-,7,144,73,7,,,,, +348,35,1,11011,433,1575.817,,,,,,144,73,0,,,,, +348,36,0,11012,448,1575.817,,,,,,176,64,0,,,,,^ +348,37,3,11013,448,1575.817,32,32,D5,mp,14,144,74,14,,,,, +348,38,1,11014,448,1575.817,14,32,G4,ppp+,6,144,67,6,,,,, +348,38,1,11014,448,1575.889,,,,,,144,67,0,,,,, +348,39,1,11015,462,1575.889,28,16,G#3,ppp,5,144,56,5,,,,, +348,37,3,11013,448,1575.981,,,,,,144,74,0,,,,, +348,40,3,11016,480,1575.981,32,32,D#2,f,20,144,39,20,,,,, +348,39,1,11015,462,1576.031,,,,,,144,56,0,,,,, +348,41,1,11017,490,1576.031,,,,,,176,102,0,,,,, +348,31,4,11007,384,1576.144,,,,,,144,47,0,,,,, +348,40,3,11016,480,1576.144,,,,,,144,39,0,,,,, +348,43,1,11018,512,1576.144,128,8,E5,p,11,144,76,11,,,,, +348,44,2,11019,512,1576.144,,,,,,176,102,0,,,,, +348,45,3,11020,512,1576.144,16,64,C#5,mf,17,144,73,17,,,,, +348,46,4,11021,512,1576.144,256,4,A#1,ppp,5,144,34,5,,,,, +348,42,0,11022,512,1576.144,,,,,,176,64,127,,,,,V +348,45,3,11020,512,1576.225,,,,,,144,73,0,,,,, +348,47,3,11023,528,1576.225,16,64,G2,mf-,16,144,43,16,,,,, +348,47,3,11023,528,1576.307,,,,,,144,43,0,,,,, +348,48,3,11024,544,1576.307,32,32,B6,mp,14,144,95,14,,,,, +348,48,3,11024,544,1576.47,,,,,,144,95,0,,,,, +348,49,3,11025,576,1576.47,192,8,G#2,p,11,144,44,11,,,,, +348,43,1,11018,512,1576.796,,,,,,144,76,0,,,,, +348,50,1,11026,640,1576.796,25,32,E5,ppp,5,144,76,5,,,,, +348,50,1,11026,640,1576.923,,,,,,144,76,0,,,,, +348,51,1,11027,665,1576.923,26,32,C#4,ppp+,6,144,61,6,,,,, +348,51,1,11027,665,1577.056,,,,,,144,61,0,,,,, +348,52,1,11028,691,1577.056,13,64,G#4,ppp+,6,144,68,6,,,,, +348,52,1,11028,691,1577.122,,,,,,144,68,0,,,,, +348,53,1,11029,704,1577.122,12,64,D6,pp-,7,144,86,7,,,,, +348,53,1,11029,704,1577.183,,,,,,144,86,0,,,,, +348,54,1,11030,716,1577.183,13,64,G#4,pp-,7,144,68,7,,,,, +348,54,1,11030,716,1577.249,,,,,,144,68,0,,,,, +348,55,1,11031,729,1577.249,13,64,D6,pp,8,144,86,8,,,,, +348,55,1,11031,729,1577.315,,,,,,144,86,0,,,,, +348,56,1,11032,742,1577.315,26,32,A6,pp,8,144,93,8,,,,, +348,46,4,11021,512,1577.448,,,,,,144,34,0,,,,, +348,49,3,11025,576,1577.448,,,,,,144,44,0,,,,, +348,56,1,11032,742,1577.448,,,,,,144,93,0,,,,, +348,57,1,11033,768,1577.448,128,8,A#1,pp,8,144,34,8,,,,, +348,58,1,11034,768,1577.448,128,8,G#2,pp,8,144,44,8,,,,, +348,59,3,11035,768,1577.448,85,8,A#2,f,20,144,46,20,,,,, +348,60,4,11036,768,1577.448,,,,,,176,102,0,,,,, +348,59,3,11035,768,1577.881,,,,,,144,46,0,,,,, +348,61,3,11037,853,1577.881,56,8,A4,mp+,15,144,69,15,,,,, +348,57,1,11033,768,1578.1,,,,,,144,34,0,,,,, +348,58,1,11034,768,1578.1,,,,,,144,44,0,,,,, +348,62,1,11038,896,1578.1,,,,,,176,102,0,,,,, +348,61,3,11037,853,1578.166,,,,,,144,69,0,,,,, +348,63,3,11039,909,1578.166,29,16,C#2,p,11,144,37,11,,,,, +348,63,3,11039,909,1578.314,,,,,,144,37,0,,,,, +348,64,3,11040,938,1578.314,33,16,A#2,pp+,9,144,46,9,,,,, +348,64,3,11040,938,1578.482,,,,,,144,46,0,,,,, +348,65,3,11041,971,1578.482,18,32,A3,pp-,7,144,57,7,,,,, +348,65,3,11041,971,1578.574,,,,,,144,57,0,,,,, +348,66,3,11042,989,1578.574,17,32,C#2,ppp+,6,144,37,6,,,,, +348,67,0,11043,1006,1578.594,,,,,,176,64,0,,,,,^ +348,66,3,11042,989,1578.661,,,,,,144,37,0,,,,, +348,68,3,11044,1006,1578.661,18,32,F3,ppp,5,144,53,5,,,,, +348,68,3,11044,1006,1578.752,,,,,,144,53,0,,,,, +349,0,0,11045,0,1578.752,,,,,,,,,349,,,, +349,1,1,11046,0,1578.752,,,,,,176,102,0,,,,, +349,2,2,11047,0,1578.752,,,,,,176,102,0,,,,, +349,4,3,11048,,1578.752,,8,C#4,f,20,144,61,20,,,,g, +349,4,3,11048,,1578.802,,,,,,144,61,0,,,,, +349,5,3,11049,0,1578.827,64,16,D#1,f,20,144,27,20,,,,, +349,3,0,11050,0,1578.894,,,,,,176,64,127,,,,,V +349,5,3,11049,0,1579.153,,,,,,144,27,0,,,,, +349,6,1,11051,64,1579.153,64,16,D5,mp,14,144,74,14,,,,, +349,7,3,11052,64,1579.153,16,64,B4,p,11,144,71,11,,,,, +349,7,3,11052,64,1579.235,,,,,,144,71,0,,,,, +349,8,3,11053,80,1579.235,16,64,G#1,pp+,9,144,32,9,,,,, +349,10,0,11054,112,1579.289,,,,,,176,64,0,,,,,^ +349,8,3,11053,80,1579.316,,,,,,144,32,0,,,,, +349,9,3,11055,96,1579.316,16,64,B5,pp-,7,144,83,7,,,,, +349,9,3,11055,96,1579.398,,,,,,144,83,0,,,,, +349,11,3,11056,112,1579.398,16,64,G2,ppp,5,144,43,5,,,,, +349,6,1,11051,64,1579.479,,,,,,144,74,0,,,,, +349,11,3,11056,112,1579.479,,,,,,144,43,0,,,,, +349,13,1,11057,128,1579.479,64,16,A4,pp,8,144,69,8,,,,, +349,14,3,11058,128,1579.479,,,,,,176,102,0,,,,, +349,12,0,11059,128,1579.589,,,,,,176,64,127,,,,,V +349,13,1,11057,128,1579.806,,,,,,144,69,0,,,,, +349,15,1,11060,192,1579.806,16,64,G3,mp-,13,144,55,13,,,,, +349,15,1,11060,192,1579.887,,,,,,144,55,0,,,,, +349,16,1,11061,208,1579.887,16,64,C#3,mp,14,144,49,14,,,,, +349,16,1,11061,208,1579.969,,,,,,144,49,0,,,,, +349,17,1,11062,224,1579.969,16,64,F4,mf-,16,144,65,16,,,,, +349,17,1,11062,224,1580.05,,,,,,144,65,0,,,,, +349,18,1,11063,240,1580.05,16,64,C#2,mf,17,144,37,17,,,,, +349,18,1,11063,240,1580.132,,,,,,144,37,0,,,,, +349,19,1,11064,256,1580.132,102,8,D5,f,20,144,74,20,,,,, +349,20,2,11065,256,1580.132,102,8,F4,p,11,144,65,11,,,,, +349,21,2,11066,256,1580.132,128,8,A4,p,11,144,69,11,,,,, +349,22,3,11067,256,1580.132,102,8,D#1,mf,17,144,27,17,,,,, +349,23,3,11068,256,1580.132,128,8,G#1,mf,17,144,32,17,,,,, +349,24,3,11069,256,1580.132,128,8,C#2,mf,17,144,37,17,,,,, +349,25,0,11070,358,1580.501,,,,,,176,64,0,,,,,^ +349,19,1,11064,256,1580.651,,,,,,144,74,0,,,,, +349,20,2,11065,256,1580.651,,,,,,144,65,0,,,,, +349,21,2,11066,256,1580.651,,,,,,144,69,0,,,,, +349,22,3,11067,256,1580.651,,,,,,144,27,0,,,,, +349,24,3,11069,256,1580.651,,,,,,144,37,0,,,,, +349,27,1,11071,358,1580.651,154,8,D5,ppp,5,144,74,5,,,,, +349,28,2,11072,358,1580.651,154,8,F4,ppp,5,144,65,5,,,,, +349,29,2,11073,358,1580.651,128,8,A4,ppp,5,144,69,5,,,,, +349,30,3,11074,358,1580.651,154,8,D#1,ppp,5,144,27,5,,,,, +349,31,3,11075,358,1580.651,128,8,C#2,ppp,5,144,37,5,,,,, +349,23,3,11068,256,1580.784,,,,,,144,32,0,,,,, +349,26,0,11076,358,1580.801,,,,,,176,64,127,,,,,V +349,29,2,11073,358,1581.303,,,,,,144,69,0,,,,, +349,31,3,11075,358,1581.303,,,,,,144,37,0,,,,, +349,27,1,11071,358,1581.436,,,,,,144,74,0,,,,, +349,28,2,11072,358,1581.436,,,,,,144,65,0,,,,, +349,30,3,11074,358,1581.436,,,,,,144,27,0,,,,, +349,32,1,11077,,1581.436,,8,G6,ppp,5,144,91,5,,,,g, +349,32,1,11077,,1581.486,,,,,,144,91,0,,,,, +349,33,1,11078,,1581.511,,8,E7,ppp,5,144,100,5,,,,g, +349,33,1,11078,,1581.561,,,,,,144,100,0,,,,, +349,34,1,11079,,1581.586,,8,C#7,ppp,5,144,97,5,,,,g, +349,34,1,11079,,1581.636,,,,,,144,97,0,,,,, +349,35,1,11080,512,1581.661,256,4,B5,p,11,144,83,11,,,,, +349,36,1,11081,512,1581.661,256,4,G#6,p,11,144,92,11,,,,, +349,37,2,11082,512,1581.661,,,,,,176,102,0,,,,, +349,38,3,11083,,1581.661,,8,D#3,ppp,5,144,51,5,,,,g, +349,38,3,11083,,1581.711,,,,,,144,51,0,,,,, +349,39,3,11084,,1581.736,,8,E4,p,11,144,64,11,,,,g, +349,40,3,11085,,1581.736,,8,C#5,p,11,144,73,11,,,,g, +349,39,3,11084,,1581.786,,,,,,144,64,0,,,,, +349,40,3,11085,,1581.786,,,,,,144,73,0,,,,, +349,41,3,11086,512,1581.886,256,4,A3,p,11,144,57,11,,,,, +349,42,2,11087,640,1582.538,25,32,E5,ppp,5,144,76,5,,,,, +349,42,2,11087,640,1582.666,,,,,,144,76,0,,,,, +349,43,2,11088,665,1582.666,26,32,C3,ppp+,6,144,48,6,,,,, +349,43,2,11088,665,1582.798,,,,,,144,48,0,,,,, +349,44,2,11089,691,1582.798,13,64,G#4,pp,8,144,68,8,,,,, +349,44,2,11089,691,1582.864,,,,,,144,68,0,,,,, +349,45,2,11090,704,1582.864,12,64,D6,pp+,9,144,86,9,,,,, +349,45,2,11090,704,1582.925,,,,,,144,86,0,,,,, +349,46,2,11091,716,1582.925,13,64,G#4,pp+,9,144,68,9,,,,, +349,35,1,11080,512,1582.965,,,,,,144,83,0,,,,, +349,36,1,11081,512,1582.965,,,,,,144,92,0,,,,, +349,46,2,11091,716,1582.992,,,,,,144,68,0,,,,, +349,47,2,11092,729,1582.992,13,64,D6,p-,10,144,86,10,,,,, +349,47,2,11092,729,1583.058,,,,,,144,86,0,,,,, +349,48,2,11093,742,1583.058,26,32,A7,p,11,144,105,11,,,,, +349,41,3,11086,512,1583.19,,,,,,144,57,0,,,,, +349,48,2,11093,742,1583.19,,,,,,144,105,0,,,,, +349,49,1,11094,768,1583.19,,,,,,176,102,0,,,,, +349,50,2,11095,768,1583.19,,,,,,176,102,0,,,,, +349,51,3,11096,768,1583.19,,,,,,176,102,0,,,,, +349,52,3,11097,810,1583.404,43,16,A#1,ppp,5,144,34,5,,,,, +349,52,3,11097,810,1583.623,,,,,,144,34,0,,,,, +349,53,3,11098,853,1583.623,43,16,D4,ppp,5,144,62,5,,,,, +349,53,3,11098,853,1583.842,,,,,,144,62,0,,,,, +349,54,3,11099,896,1583.842,16,32,C3,ppp,5,144,48,5,,,,, +349,54,3,11099,896,1583.924,,,,,,144,48,0,,,,, +349,55,3,11100,912,1583.924,17,32,F#2,ppp,5,144,42,5,,,,, +349,55,3,11100,912,1584.011,,,,,,144,42,0,,,,, +349,56,3,11101,929,1584.011,18,32,B2,ppp,5,144,47,5,,,,, +349,56,3,11101,929,1584.102,,,,,,144,47,0,,,,, +349,57,3,11102,947,1584.102,17,32,C3,ppp,5,144,48,5,,,,, +349,57,3,11102,947,1584.189,,,,,,144,48,0,,,,, +349,58,3,11103,964,1584.189,17,32,B2,ppp,5,144,47,5,,,,, +349,59,0,11104,981,1584.235,,,,,,176,64,0,,,,,^ +349,63,1,11105,,1584.27,,8,G6,ppp,5,144,91,5,,,,g, +349,58,3,11103,964,1584.276,,,,,,144,47,0,,,,, +349,60,3,11106,981,1584.276,43,16,F#2,ppp,5,144,42,5,,,,, +349,63,1,11105,,1584.32,,,,,,144,91,0,,,,, +349,64,1,11107,,1584.345,,8,E7,ppp,5,144,100,5,,,,g, +349,64,1,11107,,1584.395,,,,,,144,100,0,,,,, +349,65,1,11108,,1584.42,,8,C#7,ppp,5,144,97,5,,,,g, +349,65,1,11108,,1584.47,,,,,,144,97,0,,,,, +349,60,3,11106,981,1584.495,,,,,,144,42,0,,,,, +349,61,3,11109,1024,1584.495,85,8,A3,pp,8,144,57,8,,,,, +349,66,1,11110,1024,1584.495,128,8,G#6,ppp,5,144,92,5,,,,, +349,67,2,11111,1024,1584.495,64,16,B5,mp,14,144,83,14,,,,, +349,62,0,11112,1024,1584.535,,,,,,176,64,127,,,,,V +349,67,2,11111,1024,1584.821,,,,,,144,83,0,,,,, +349,68,2,11113,1088,1584.821,32,32,G4,p-,10,144,67,10,,,,, +349,69,2,11114,1088,1584.821,32,32,B5,p-,10,144,83,10,,,,, +349,61,3,11109,1024,1584.928,,,,,,144,57,0,,,,, +349,70,3,11115,1109,1584.928,85,8,A3,pp,8,144,57,8,,,,, +349,71,3,11116,1109,1584.928,128,8,F4,pp,8,144,65,8,,,,, +349,68,2,11113,1088,1584.984,,,,,,144,67,0,,,,, +349,69,2,11114,1088,1584.984,,,,,,144,83,0,,,,, +349,72,2,11117,1120,1584.984,32,32,G#3,pp,8,144,56,8,,,,, +349,66,1,11110,1024,1585.147,,,,,,144,92,0,,,,, +349,72,2,11117,1120,1585.147,,,,,,144,56,0,,,,, +349,73,1,11118,1152,1585.147,128,8,C#7,ppp,5,144,97,5,,,,, +349,74,2,11119,1152,1585.147,,,,,,176,102,0,,,,, +349,70,3,11115,1109,1585.361,,,,,,144,57,0,,,,, +349,75,3,11120,1194,1585.361,28,16,A3,pp,8,144,57,8,,,,, +349,71,3,11116,1109,1585.503,,,,,,144,65,0,,,,, +349,75,3,11120,1194,1585.503,,,,,,144,57,0,,,,, +349,76,3,11121,1222,1585.503,28,16,F4,pp,8,144,65,8,,,,, +349,76,3,11121,1222,1585.646,,,,,,144,65,0,,,,, +349,77,3,11122,1250,1585.646,30,16,E4,mf,17,144,64,17,,,,, +349,78,0,11123,1279,1585.646,,,,,,176,64,0,,,,,^ +349,73,1,11118,1152,1585.799,,,,,,144,97,0,,,,, +349,77,3,11122,1250,1585.799,,,,,,144,64,0,,,,, +350,0,0,11124,0,1585.799,,,,,,,,,350,,,, +350,2,1,11125,0,1585.799,102,8,E5,ppp,5,144,76,5,,,,, +350,3,3,11126,0,1585.799,,,,,,176,102,0,,,,, +350,1,0,11127,0,1585.946,,,,,,176,64,127,,,,,V +350,2,1,11125,0,1586.319,,,,,,144,76,0,,,,, +350,4,1,11128,102,1586.319,26,32,G#4,pp-,7,144,68,7,,,,, +350,4,1,11128,102,1586.451,,,,,,144,68,0,,,,, +350,5,1,11129,128,1586.451,12,64,D6,pp,8,144,86,8,,,,, +350,5,1,11129,128,1586.512,,,,,,144,86,0,,,,, +350,6,1,11130,140,1586.512,13,64,G#4,pp,8,144,68,8,,,,, +350,7,0,11131,153,1586.52,,,,,,176,64,0,,,,,^ +350,6,1,11130,140,1586.579,,,,,,144,68,0,,,,, +350,8,1,11132,153,1586.579,103,8,A6,pp,8,144,93,8,,,,, +350,9,0,11133,153,1586.579,,,,,,,,,,6027,,, +350,10,0,11134,189,1586.82,,,,,,176,64,127,,,,,V +350,8,1,11132,153,1587.103,,,,,,144,93,0,,,,, +350,11,1,11135,,1587.103,,8,D6,mf,17,144,86,17,,,,g, +350,11,1,11135,,1587.153,,,,,,144,86,0,,,,, +350,12,1,11136,,1587.178,,8,C#3,mf,17,144,49,17,,,,g, +350,12,1,11136,,1587.228,,,,,,144,49,0,,,,, +350,13,1,11137,256,1587.253,512,2,A5,f,20,144,81,20,,,,, +350,14,3,11138,256,1587.253,64,16,D5,ppp,5,144,74,5,,,,, +350,14,3,11138,256,1587.579,,,,,,144,74,0,,,,, +350,15,3,11139,320,1587.579,21,32,F#3,ppp,5,144,54,5,,,,, +350,15,3,11139,320,1587.686,,,,,,144,54,0,,,,, +350,16,3,11140,341,1587.686,21,32,B3,ppp,5,144,59,5,,,,, +350,16,3,11140,341,1587.793,,,,,,144,59,0,,,,, +350,17,3,11141,362,1587.793,22,32,C4,ppp,5,144,60,5,,,,, +350,17,3,11141,362,1587.906,,,,,,144,60,0,,,,, +350,18,3,11142,384,1587.906,21,32,B3,ppp,5,144,59,5,,,,, +350,18,3,11142,384,1588.013,,,,,,144,59,0,,,,, +350,19,3,11143,405,1588.013,21,32,F#3,ppp,5,144,54,5,,,,, +350,19,3,11143,405,1588.12,,,,,,144,54,0,,,,, +350,20,3,11144,426,1588.12,22,32,B3,ppp,5,144,59,5,,,,, +350,20,3,11144,426,1588.232,,,,,,144,59,0,,,,, +350,21,3,11145,448,1588.232,21,32,A#2,ppp,5,144,46,5,,,,, +350,21,3,11145,448,1588.339,,,,,,144,46,0,,,,, +350,22,3,11146,469,1588.339,21,32,C4,ppp,5,144,60,5,,,,, +350,23,0,11147,490,1588.352,,,,,,176,64,0,,,,,^ +350,22,3,11146,469,1588.446,,,,,,144,60,0,,,,, +350,24,3,11148,490,1588.446,22,32,B3,ppp,5,144,59,5,,,,, +350,24,3,11148,490,1588.558,,,,,,144,59,0,,,,, +350,26,3,11149,512,1588.558,56,16,A#1,p,11,144,34,11,,,,, +350,25,0,11150,512,1588.652,,,,,,176,64,127,,,,,V +350,26,3,11149,512,1588.843,,,,,,144,34,0,,,,, +350,27,3,11151,568,1588.843,57,16,D4,p,11,144,62,11,,,,, +350,27,3,11151,568,1589.133,,,,,,144,62,0,,,,, +350,28,3,11152,625,1589.133,57,16,F#2,p,11,144,42,11,,,,, +350,28,3,11152,625,1589.424,,,,,,144,42,0,,,,, +350,29,3,11153,682,1589.424,16,64,C3,pp,8,144,48,8,,,,, +350,29,3,11153,682,1589.505,,,,,,144,48,0,,,,, +350,30,3,11154,698,1589.505,17,64,A#2,pp-,7,144,46,7,,,,, +350,30,3,11154,698,1589.592,,,,,,144,46,0,,,,, +350,31,3,11155,715,1589.592,17,64,C3,pp-,7,144,48,7,,,,, +350,31,3,11155,715,1589.679,,,,,,144,48,0,,,,, +350,32,3,11156,732,1589.679,17,64,A#2,ppp+,6,144,46,6,,,,, +350,32,3,11156,732,1589.765,,,,,,144,46,0,,,,, +350,33,3,11157,749,1589.765,19,64,C3,ppp,5,144,48,5,,,,, +350,34,0,11158,768,1589.819,,,,,,176,64,0,,,,,^ +350,13,1,11137,256,1589.862,,,,,,144,81,0,,,,, +350,33,3,11157,749,1589.862,,,,,,144,48,0,,,,, +350,35,1,11159,768,1589.862,,,,,,176,102,0,,,,, +350,36,3,11160,768,1589.862,42,16,D3,ppp-,4,144,50,4,,,,, +350,38,3,11161,810,1590.076,43,16,A#0,pp,8,144,22,8,,,,, +350,37,0,11162,810,1590.119,,,,,,176,64,127,,,,,V +350,36,3,11160,768,1590.295,,,,,,144,50,0,,,,, +350,38,3,11161,810,1590.295,,,,,,144,22,0,,,,, +350,39,3,11163,853,1590.295,21,32,D3,pp-,7,144,50,7,,,,, +350,39,3,11163,853,1590.402,,,,,,144,50,0,,,,, +350,40,3,11164,874,1590.402,64,16,F#1,pp-,7,144,30,7,,,,, +350,40,3,11164,874,1590.728,,,,,,144,30,0,,,,, +350,41,3,11165,938,1590.728,22,32,B2,ppp+,6,144,47,6,,,,, +350,41,3,11165,938,1590.84,,,,,,144,47,0,,,,, +350,42,3,11166,960,1590.84,21,32,C3,ppp,5,144,48,5,,,,, +350,42,3,11166,960,1590.947,,,,,,144,48,0,,,,, +350,43,3,11167,981,1590.947,21,32,B2,ppp,5,144,47,5,,,,, +350,43,3,11167,981,1591.054,,,,,,144,47,0,,,,, +350,44,3,11168,1002,1591.054,22,32,A#0,ppp,5,144,22,5,,,,, +350,45,3,11169,1024,1591.166,21,32,A#0,,,,,,,,,, +350,44,3,11168,1002,1591.273,,,,,,144,22,0,,,,, +350,46,3,11170,1045,1591.273,21,32,C3,ppp-,4,144,48,4,,,,, +350,46,3,11170,1045,1591.38,,,,,,144,48,0,,,,, +350,47,3,11171,1066,1591.38,43,16,A#0,ppp-,4,144,22,4,,,,, +350,47,3,11171,1066,1591.599,,,,,,144,22,0,,,,, +350,48,3,11172,1109,1591.599,43,16,D2,pppp+,3,144,38,3,,,,, +350,49,0,11173,1131,1591.712,,,,,,176,64,0,,,,,^ +350,48,3,11172,1109,1591.819,,,,,,144,38,0,,,,, +350,50,1,11174,1152,1591.819,64,16,A#5,mf,17,144,82,17,,,,, +350,51,3,11175,1152,1591.819,128,8,F#1,pppp,2,144,30,2,,,,, +350,50,1,11174,1152,1592.145,,,,,,144,82,0,,,,, +350,52,1,11176,1216,1592.145,64,16,F4,mf+,18,144,65,18,,,,, +350,53,1,11177,1216,1592.145,64,16,A#5,mf+,18,144,82,18,,,,, +350,54,2,11178,,1592.471,,8,A5,mf+,18,144,81,18,,,,g, +350,54,2,11178,,1592.521,,,,,,144,81,0,,,,, +351,0,0,11179,0,1592.546,,,,,,,,,351,,,, +351,1,1,11180,0,1592.546,448,4,G3,f,20,144,55,20,,,,, +351,2,1,11181,0,1592.546,256,4,F4,,,,,,,,,, +351,3,1,11182,0,1592.546,256,4,A#5,,,,,,,,,, +351,4,2,11183,0,1592.546,32,32,A5,f,20,144,81,20,,,,, +351,5,3,11184,0,1592.546,,,,,,176,102,0,,,,, +351,6,4,11185,0,1592.546,,,,,,176,102,0,,,,, +350,51,3,11175,1152,1592.696,,,,,,144,30,0,,,,, +351,7,2,11186,32,1592.709,224,8,F5,f,20,144,77,20,,,,, +351,8,2,11187,32,1592.709,128,8,A5,,,,,,,,,, +351,9,3,11188,76,1592.933,26,32,C2,ppp,5,144,36,5,,,,, +351,9,3,11188,76,1593.065,,,,,,144,36,0,,,,, +351,10,3,11189,102,1593.065,26,32,E3,ppp,5,144,52,5,,,,, +351,11,0,11190,102,1593.065,,,,,,176,64,127,,,,,V +351,10,3,11189,102,1593.198,,,,,,144,52,0,,,,, +351,12,3,11191,128,1593.198,16,32,A#3,ppp,5,144,58,5,,,,, +351,12,3,11191,128,1593.279,,,,,,144,58,0,,,,, +351,13,3,11192,144,1593.279,18,32,E3,ppp,5,144,52,5,,,,, +351,13,3,11192,144,1593.371,,,,,,144,52,0,,,,, +351,14,3,11193,162,1593.371,17,32,A#3,ppp,5,144,58,5,,,,, +351,14,3,11193,162,1593.458,,,,,,144,58,0,,,,, +351,15,3,11194,179,1593.458,25,32,C2,ppp,5,144,36,5,,,,, +351,15,3,11194,179,1593.585,,,,,,144,36,0,,,,, +351,16,3,11195,204,1593.585,26,32,A#3,ppp+,6,144,58,6,,,,, +351,16,3,11195,204,1593.718,,,,,,144,58,0,,,,, +351,17,3,11196,230,1593.718,26,32,G#1,ppp+,6,144,32,6,,,,, +351,17,3,11196,230,1593.85,,,,,,144,32,0,,,,, +351,18,3,11197,256,1593.85,25,32,F2,pp-,7,144,41,7,,,,, +351,19,2,11198,256,1593.85,192,8,F5,,,,,,,,,, +351,20,2,11199,256,1593.85,128,8,A5,,,,,,,,,, +351,21,4,11200,256,1593.85,,,,,,176,102,0,,,,, +351,18,3,11197,256,1593.977,,,,,,144,41,0,,,,, +351,22,3,11201,281,1593.977,16,32,E3,pp-,7,144,52,7,,,,, +351,22,3,11201,281,1594.059,,,,,,144,52,0,,,,, +351,23,3,11202,297,1594.059,18,32,G#1,pp,8,144,32,8,,,,, +350,52,1,11176,1216,1594.075,,,,,,144,65,0,,,,, +350,53,1,11177,1216,1594.075,,,,,,144,82,0,,,,, +351,4,2,11183,0,1594.088,,,,,,144,81,0,,,,, +351,23,3,11202,297,1594.151,,,,,,144,32,0,,,,, +351,24,3,11203,315,1594.151,17,32,F2,pp,8,144,41,8,,,,, +351,25,3,11204,332,1594.237,26,32,F2,,,,,,,,,, +351,24,3,11203,315,1594.37,,,,,,144,41,0,,,,, +351,31,0,11205,358,1594.37,,,,,,176,64,0,,,,,^ +351,26,3,11206,358,1594.37,26,32,G#1,f,20,144,32,20,,,,, +351,27,3,11207,358,1594.37,32,32,C2,f,20,144,36,20,,,,, +351,28,3,11208,358,1594.37,32,32,F2,f,20,144,41,20,,,,, +351,29,3,11209,358,1594.37,32,32,E3,f,20,144,52,20,,,,, +351,30,3,11210,358,1594.37,32,32,A#3,f,20,144,58,20,,,,, +351,26,3,11206,358,1594.502,,,,,,144,32,0,,,,, +351,32,3,11211,384,1594.502,,,,,,176,102,0,,,,, +351,33,4,11212,384,1594.502,21,32,F#1,ppp,5,144,30,5,,,,, +351,27,3,11207,358,1594.533,,,,,,144,36,0,,,,, +351,28,3,11208,358,1594.533,,,,,,144,41,0,,,,, +351,29,3,11209,358,1594.533,,,,,,144,52,0,,,,, +351,30,3,11210,358,1594.533,,,,,,144,58,0,,,,, +351,33,4,11212,384,1594.609,,,,,,144,30,0,,,,, +351,34,4,11213,405,1594.609,21,32,C2,ppp,5,144,36,5,,,,, +351,34,4,11213,405,1594.716,,,,,,144,36,0,,,,, +351,35,4,11214,426,1594.716,22,32,B1,p,11,144,35,11,,,,, +351,7,2,11186,32,1594.828,,,,,,144,77,0,,,,, +351,35,4,11214,426,1594.828,,,,,,144,35,0,,,,, +351,36,1,11215,448,1594.828,,,,,,176,102,0,,,,, +351,37,2,11216,448,1594.828,,,,,,176,102,0,,,,, +351,38,4,11217,448,1594.828,21,32,C2,p,11,144,36,11,,,,, +351,1,1,11180,0,1594.903,,,,,,144,55,0,,,,, +351,39,4,11218,469,1594.935,21,32,B1,p,11,144,35,11,,,,, +351,39,4,11218,469,1595.042,,,,,,144,35,0,,,,, +351,40,4,11219,490,1595.042,22,32,A#0,p,11,144,22,11,,,,, +351,38,4,11217,448,1595.085,,,,,,144,36,0,,,,, +351,44,1,11220,512,1595.154,,,,,,176,102,0,,,,, +351,45,2,11221,512,1595.154,,,,,,176,102,0,,,,, +351,42,1,11222,,1595.154,,8,A#4,p,11,144,70,11,,,,g, +351,42,1,11222,,1595.204,,,,,,144,70,0,,,,, +351,43,1,11223,,1595.229,,8,F4,p,11,144,65,11,,,,g, +351,43,1,11223,,1595.279,,,,,,144,65,0,,,,, +351,46,3,11224,512,1595.304,28,32,B1,p,11,144,35,11,,,,, +351,47,4,11225,512,1595.304,768,2,A#0,,,,,,,,,, +351,41,0,11226,512,1595.304,,,,,,176,64,127,,,,,V +351,46,3,11224,512,1595.447,,,,,,144,35,0,,,,, +351,48,3,11227,540,1595.447,28,32,D3,p,11,144,50,11,,,,, +351,48,3,11227,540,1595.59,,,,,,144,50,0,,,,, +351,49,3,11228,568,1595.59,29,32,F#3,p+,12,144,54,12,,,,, +351,49,3,11228,568,1595.738,,,,,,144,54,0,,,,, +351,50,3,11229,597,1595.738,16,64,B1,mp,14,144,35,14,,,,, +351,50,3,11229,597,1595.819,,,,,,144,35,0,,,,, +351,51,3,11230,613,1595.819,17,64,D3,mp+,15,144,50,15,,,,, +351,51,3,11230,613,1595.906,,,,,,144,50,0,,,,, +351,52,3,11231,630,1595.906,17,64,F3,mf-,16,144,53,16,,,,, +351,52,3,11231,630,1595.992,,,,,,144,53,0,,,,, +351,53,3,11232,647,1595.992,17,64,F#3,mf-,16,144,54,16,,,,, +351,53,3,11232,647,1596.079,,,,,,144,54,0,,,,, +351,54,3,11233,664,1596.079,18,64,F3,mf,17,144,53,17,,,,, +351,54,3,11233,664,1596.171,,,,,,144,53,0,,,,, +351,57,3,11234,,1596.171,,8,F4,f,20,144,65,20,,,,g, +351,57,3,11234,,1596.221,,,,,,144,65,0,,,,, +351,55,3,11235,682,1596.246,29,32,A#3,f,20,144,58,20,,,,, +351,56,1,11236,704,1596.358,32,32,D6,f,20,144,86,20,,,,, +351,58,3,11237,711,1596.393,18,32,F3,f,20,144,53,20,,,,, +351,59,3,11238,711,1596.393,32,32,C#4,f,20,144,61,20,,,,, +351,55,3,11235,682,1596.393,,,,,,144,58,0,,,,, +351,58,3,11237,711,1596.485,,,,,,144,53,0,,,,, +351,60,3,11239,729,1596.485,19,32,A#3,mp,14,144,58,14,,,,, +351,56,1,11236,704,1596.521,,,,,,144,86,0,,,,, +351,61,1,11240,736,1596.521,16,64,A5,p,11,144,81,11,,,,, +351,59,3,11238,711,1596.556,,,,,,144,61,0,,,,, +351,62,3,11241,748,1596.582,20,32,F3,pp,8,144,53,8,,,,, +351,60,3,11239,729,1596.582,,,,,,144,58,0,,,,, +351,63,1,11242,752,1596.602,16,64,C#3,ppp-,4,144,49,4,,,,, +351,61,1,11240,736,1596.602,,,,,,144,81,0,,,,, +351,62,3,11241,748,1596.684,,,,,,144,53,0,,,,, +351,63,1,11242,752,1596.684,,,,,,144,49,0,,,,, +351,64,3,11243,768,1596.684,21,32,A#4,pp,8,144,70,8,,,,, +351,65,3,11244,768,1596.684,32,32,A#5,pp,8,144,82,8,,,,, +351,66,0,11245,768,1596.684,,,,,,,,,,,44,, +351,67,1,11246,768,1596.684,32,32,G4,mp+,15,144,67,15,,,,, +351,64,3,11243,768,1596.791,,,,,,144,70,0,,,,, +351,68,3,11247,789,1596.796,21,32,F2,pp,8,144,41,8,,,,, +351,65,3,11244,768,1596.847,,,,,,144,82,0,,,,, +351,67,1,11246,768,1596.854,,,,,,144,67,0,,,,, +351,69,1,11248,800,1596.854,224,8,F5,f,20,144,77,20,,,,, +351,68,3,11247,789,1596.908,,,,,,144,41,0,,,,, +351,70,3,11249,810,1596.908,22,32,C2,pp-,7,144,36,7,,,,, +351,70,3,11249,810,1597.025,,,,,,144,36,0,,,,, +351,71,3,11250,832,1597.025,21,32,A#4,ppp+,6,144,70,6,,,,, +351,71,3,11250,832,1597.137,,,,,,144,70,0,,,,, +351,72,3,11251,853,1597.137,21,32,F2,ppp+,6,144,41,6,,,,, +351,72,3,11251,853,1597.248,,,,,,144,41,0,,,,, +351,73,3,11252,874,1597.248,22,32,C2,ppp,5,144,36,5,,,,, +351,73,3,11252,874,1597.366,,,,,,144,36,0,,,,, +351,74,3,11253,896,1597.366,32,32,A#3,ppp-,4,144,58,4,,,,, +351,74,3,11253,896,1597.536,,,,,,144,58,0,,,,, +351,75,3,11254,928,1597.536,32,32,F2,pppp+,3,144,41,3,,,,, +351,75,3,11254,928,1597.707,,,,,,144,41,0,,,,, +351,76,3,11255,960,1597.707,64,16,C2,pppp,2,144,36,2,,,,, +351,76,3,11255,960,1598.047,,,,,,144,36,0,,,,, +351,77,1,11256,1024,1598.047,,,,,,176,102,0,,,,, +351,78,3,11257,1024,1598.047,,,,,,176,102,0,,,,, +351,69,1,11248,800,1598.047,,,,,,144,77,0,,,,, +352,0,0,11258,0,1599.411,,,,,,,,,352,,,, +352,1,1,11259,0,1599.411,,,,,,176,102,0,,,,, +352,2,3,11260,0,1599.411,,,,,,176,102,0,,,,, +352,3,4,11261,0,1599.411,1024,1,A#0,,,,,,,,,, +352,4,3,11262,768,1603.502,256,4,A3,pp,8,144,57,8,,,,, +352,5,0,11263,1024,1604.866,,,,,,176,64,0,,,,,^ +352,6,3,11264,1024,1604.866,256,4,A3,,,,,,,,,, +352,7,4,11265,1024,1604.866,256,4,A#0,,,,,,,,,, +353,0,0,11266,0,1606.229,,,,,,,,,353,,,, +353,1,0,11267,0,1606.229,,,,,,,,,,6028,,, +353,3,1,11268,,1606.229,,8,G#3,p,11,144,56,11,,,,g, +352,4,3,11262,768,1606.229,,,,,,144,57,0,,,,, +353,3,1,11268,,1606.279,,,,,,144,56,0,,,,, +353,4,1,11269,,1606.304,,8,C6,mp,14,144,84,14,,,,g, +353,4,1,11269,,1606.354,,,,,,144,84,0,,,,, +353,5,1,11270,0,1606.379,85,8,C#7,mf,17,144,97,17,,,,, +353,6,3,11271,0,1606.379,64,16,F2,ppp,5,144,41,5,,,,, +353,2,0,11272,0,1606.379,,,,,,176,64,127,,,,,V +351,40,4,11219,490,1606.411,,,,,,144,22,0,,,,, +353,6,3,11271,0,1606.72,,,,,,144,41,0,,,,, +353,7,3,11273,64,1606.72,32,32,C2,ppp-,4,144,36,4,,,,, +353,8,1,11274,85,1606.832,21,32,D5,mp,14,144,74,14,,,,, +353,5,1,11270,0,1606.832,,,,,,144,97,0,,,,, +353,7,3,11273,64,1606.891,,,,,,144,36,0,,,,, +353,9,3,11275,96,1606.891,32,32,F2,ppp-,4,144,41,4,,,,, +353,8,1,11274,85,1606.944,,,,,,144,74,0,,,,, +353,10,1,11276,106,1606.944,22,32,E6,p,11,144,88,11,,,,, +353,9,3,11275,96,1607.061,,,,,,144,41,0,,,,, +353,10,1,11276,106,1607.061,,,,,,144,88,0,,,,, +353,11,1,11277,128,1607.061,32,32,D4,p,11,144,62,11,,,,, +353,12,3,11278,128,1607.061,128,8,E3,ppp-,4,144,52,4,,,,, +353,11,1,11277,128,1607.232,,,,,,144,62,0,,,,, +353,13,1,11279,160,1607.232,32,32,G#2,p-,10,144,44,10,,,,, +353,14,1,11280,192,1607.402,32,32,C6,pp,8,144,84,8,,,,, +353,13,1,11279,160,1607.477,,,,,,144,44,0,,,,, +353,14,1,11280,192,1607.572,,,,,,144,84,0,,,,, +353,15,1,11281,224,1607.572,32,32,E6,ppp,5,144,88,5,,,,, +353,15,1,11281,224,1607.743,,,,,,144,88,0,,,,, +353,16,1,11282,256,1607.743,,,,,,176,102,0,,,,, +353,17,3,11283,256,1607.743,256,4,A1,pppp,2,144,33,2,,,,, +353,12,3,11278,128,1607.818,,,,,,144,52,0,,,,, +353,18,0,11284,339,1608.185,,,,,,176,64,0,,,,,^ +353,19,0,11285,407,1608.547,,,,,,176,64,127,,,,,V +353,20,1,11286,,1608.957,,8,G#1,ppp,5,144,32,5,,,,g, +353,20,1,11286,,1609.007,,,,,,144,32,0,,,,, +353,21,1,11287,,1609.032,,8,C#6,ppp,5,144,85,5,,,,g, +353,21,1,11287,,1609.082,,,,,,144,85,0,,,,, +353,17,3,11283,256,1609.107,,,,,,144,33,0,,,,, +353,22,1,11288,512,1609.107,256,4,C5,ppp,5,144,72,5,,,,, +353,23,3,11289,512,1609.107,,,,,,176,102,0,,,,, +353,24,1,11290,768,1610.47,85,16,E5,p-,10,144,76,10,,,,, +353,22,1,11288,512,1610.92,,,,,,144,72,0,,,,, +353,24,1,11290,768,1610.923,,,,,,144,76,0,,,,, +353,25,1,11291,853,1610.923,28,32,C5,p,11,144,72,11,,,,, +353,25,1,11291,853,1611.072,,,,,,144,72,0,,,,, +353,26,1,11292,881,1611.072,29,32,E5,p+,12,144,76,12,,,,, +353,26,1,11292,881,1611.227,,,,,,144,76,0,,,,, +353,27,1,11293,910,1611.227,57,16,D3,p+,12,144,50,12,,,,, +353,27,1,11293,910,1611.53,,,,,,144,50,0,,,,, +353,28,1,11294,967,1611.53,28,32,C#6,mp-,13,144,85,13,,,,, +353,28,1,11294,967,1611.679,,,,,,144,85,0,,,,, +353,29,1,11295,995,1611.679,29,32,D3,mp,14,144,50,14,,,,, +353,30,0,11296,1024,1611.684,,,,,,176,64,0,,,,,^ +353,29,1,11295,995,1611.834,,,,,,144,50,0,,,,, +353,32,1,11297,1024,1611.834,,,,,,176,102,0,,,,, +353,33,3,11298,1024,1611.834,28,32,G#2,mp,14,144,44,14,,,,, +353,33,3,11298,1024,1611.983,,,,,,144,44,0,,,,, +353,34,3,11299,1052,1611.983,28,32,C#5,mp,14,144,73,14,,,,, +353,31,0,11300,1024,1611.984,,,,,,176,64,127,,,,,V +353,34,3,11299,1052,1612.132,,,,,,144,73,0,,,,, +353,35,3,11301,1080,1612.132,114,8,C4,mp+,15,144,60,15,,,,, +353,35,3,11301,1080,1612.739,,,,,,144,60,0,,,,, +353,36,3,11302,1194,1612.739,57,16,E4,mf+,18,144,64,18,,,,, +353,36,3,11302,1194,1613.043,,,,,,144,64,0,,,,, +353,37,3,11303,1251,1613.043,29,32,D3,f,20,144,50,20,,,,, +353,38,0,11304,1279,1613.045,,,,,,176,64,0,,,,,^ +353,37,3,11303,1251,1613.197,,,,,,144,50,0,,,,, +354,0,0,11305,0,1613.197,,,,,,,,,354,,,, +354,1,0,11306,0,1613.197,,,,,,,,,,6029,,, +354,3,1,11307,0,1613.197,256,4,C4,p,11,144,60,11,,,,, +354,4,1,11308,0,1613.197,256,4,E4,p,11,144,64,11,,,,, +354,5,1,11309,0,1613.197,256,4,C#5,p,11,144,73,11,,,,, +354,6,2,11310,0,1613.197,,,,,,176,102,0,,,,, +354,7,3,11311,0,1613.197,170,4,D#1,f,20,144,27,20,,,,, +354,8,4,11312,0,1613.197,256,4,G#1,p,11,144,32,11,,,,, +354,9,4,11313,0,1613.197,256,4,D2,p,11,144,38,11,,,,, +354,2,0,11314,0,1613.345,,,,,,176,64,127,,,,,V +354,10,2,11315,128,1613.879,128,8,G#3,ff,22,144,56,22,,,,, +354,7,3,11311,0,1614.103,,,,,,144,27,0,,,,, +354,11,3,11316,170,1614.103,22,32,A#2,f+,21,144,46,21,,,,, +354,11,3,11316,170,1614.22,,,,,,144,46,0,,,,, +354,12,3,11317,192,1614.22,21,32,C#2,ff,22,144,37,22,,,,, +354,12,3,11317,192,1614.332,,,,,,144,37,0,,,,, +354,13,3,11318,213,1614.332,21,32,D#1,ff+,23,144,27,23,,,,, +354,13,3,11318,213,1614.444,,,,,,144,27,0,,,,, +354,14,0,11319,234,1614.444,,,,,,176,64,0,,,,,^ +354,15,3,11320,234,1614.444,22,32,A#2,fff,24,144,46,23,,,,, +354,3,1,11307,0,1614.561,,,,,,144,60,0,,,,, +354,4,1,11308,0,1614.561,,,,,,144,64,0,,,,, +354,5,1,11309,0,1614.561,,,,,,144,73,0,,,,, +354,8,4,11312,0,1614.561,,,,,,144,32,0,,,,, +354,9,4,11313,0,1614.561,,,,,,144,38,0,,,,, +354,15,3,11320,234,1614.561,,,,,,144,46,0,,,,, +354,16,1,11321,256,1614.561,64,16,C4,fff,24,144,60,23,,,,, +354,17,1,11322,256,1614.561,64,16,E4,fff,24,144,64,23,,,,, +354,18,1,11323,256,1614.561,64,16,C#5,fff,24,144,73,23,,,,, +354,19,2,11324,256,1614.561,,,,,,176,102,0,,,,, +354,20,3,11325,256,1614.561,,,,,,176,102,0,,,,, +354,21,4,11326,256,1614.561,64,16,G#1,fff,24,144,32,23,,,,, +354,22,4,11327,256,1614.561,64,16,C#2,fff,24,144,37,23,,,,, +354,10,2,11315,128,1614.561,,,,,,144,56,0,,,,, +354,24,2,11328,298,1614.785,86,8,G#3,mf,17,144,56,17,,,,, +354,25,3,11329,298,1614.785,22,32,A#2,p,11,144,46,11,,,,, +354,23,0,11330,298,1614.785,,,,,,176,64,127,,,,,V +354,16,1,11321,256,1614.902,,,,,,144,60,0,,,,, +354,17,1,11322,256,1614.902,,,,,,144,64,0,,,,, +354,18,1,11323,256,1614.902,,,,,,144,73,0,,,,, +354,21,4,11326,256,1614.902,,,,,,144,32,0,,,,, +354,22,4,11327,256,1614.902,,,,,,144,37,0,,,,, +354,25,3,11329,298,1614.902,,,,,,144,46,0,,,,, +354,26,1,11331,320,1614.902,,,,,,176,102,0,,,,, +354,27,3,11332,320,1614.902,21,32,C#2,p-,10,144,37,10,,,,, +354,28,4,11333,320,1614.902,,,,,,176,102,0,,,,, +354,27,3,11332,320,1615.014,,,,,,144,37,0,,,,, +354,29,3,11334,341,1615.014,21,32,D#1,pp,8,144,27,8,,,,, +354,29,3,11334,341,1615.126,,,,,,144,27,0,,,,, +354,30,3,11335,362,1615.126,22,32,A#2,pp-,7,144,46,7,,,,, +354,30,3,11335,362,1615.243,,,,,,144,46,0,,,,, +354,31,2,11336,384,1615.243,128,8,G#3,,,,,,,,,, +354,32,3,11337,384,1615.243,,,,,,176,102,0,,,,, +354,33,1,11338,512,1615.925,,,,,,176,102,0,,,,, +354,34,2,11339,512,1615.925,256,4,G#3,,,,,,,,,, +354,35,3,11340,512,1615.925,,,,,,176,102,0,,,,, +354,36,4,11341,512,1615.925,,,,,,176,102,0,,,,, +354,37,1,11342,768,1617.288,,,,,,176,102,0,,,,, +354,38,2,11343,768,1617.288,1024,1,G#3,,,,,,,,,, +354,39,3,11344,768,1617.288,,,,,,176,102,0,,,,, +354,40,4,11345,768,1617.288,,,,,,176,102,0,,,,, +354,41,0,11346,1791,1622.59,,,,,,176,64,0,,,,,^ +355,0,0,11347,0,1622.743,,,,,,,,,355,,,, +355,2,1,11348,0,1622.743,,,,,,176,102,0,,,,, +355,3,2,11349,0,1622.743,384,4,G#3,,,,,,,,,, +355,4,3,11350,0,1622.743,170,4,F#4,f,20,144,66,20,,,,, +355,1,0,11351,0,1622.89,,,,,,176,64,127,,,,,V +355,4,3,11350,0,1623.648,,,,,,144,66,0,,,,, +355,5,3,11352,170,1623.648,342,2,B0,ff,22,144,23,22,,,,, +355,6,3,11353,170,1623.648,512,2,F#4,ff,22,144,66,22,,,,, +355,7,1,11354,256,1624.107,,,,,,176,102,0,,,,, +355,8,2,11355,384,1624.788,128,8,G#3,p,11,144,56,11,,,,, +355,9,2,11356,384,1624.788,128,8,C5,p,11,144,72,11,,,,, +354,24,2,11328,298,1625.238,,,,,,144,56,0,,,,, +355,5,3,11352,170,1625.47,,,,,,144,23,0,,,,, +355,6,3,11353,170,1625.47,,,,,,144,66,0,,,,, +355,10,1,11357,512,1625.47,,,,,,176,102,0,,,,, +355,11,2,11358,512,1625.47,512,2,G#3,,,,,,,,,, +355,12,2,11359,512,1625.47,512,2,C5,,,,,,,,,, +355,13,3,11360,512,1625.47,512,2,B0,fff,24,144,23,23,,,,, +355,14,3,11361,512,1625.47,512,2,D4,fff,24,144,62,23,,,,, +355,15,3,11362,512,1625.47,512,2,F#4,fff,24,144,66,23,,,,, +355,16,1,11363,682,1626.376,342,2,F3,pp,8,144,53,8,,,,, +355,8,2,11355,384,1628.197,,,,,,144,56,0,,,,, +355,9,2,11356,384,1628.197,,,,,,144,72,0,,,,, +355,16,1,11363,682,1628.197,,,,,,144,53,0,,,,, +356,0,0,11364,0,1628.197,,,,,,,,,356,,,, +356,1,1,11365,0,1628.197,,,,,,176,102,0,,,,, +356,2,2,11366,0,1628.197,192,8,F6,mp,14,144,89,14,,,,, +356,3,3,11367,0,1628.197,128,8,B0,,,,,,,,,, +356,4,3,11368,0,1628.197,128,8,D4,,,,,,,,,, +356,5,3,11369,0,1628.197,128,8,F#4,,,,,,,,,, +356,6,4,11370,0,1628.197,170,4,F3,ppp,5,144,53,5,,,,, +356,10,0,11371,149,1628.852,,,,,,176,64,0,,,,,^ +355,13,3,11360,512,1628.879,,,,,,144,23,0,,,,, +355,14,3,11361,512,1628.879,,,,,,144,62,0,,,,, +355,15,3,11362,512,1628.879,,,,,,144,66,0,,,,, +356,7,1,11372,128,1628.879,21,32,D4,fff,24,144,62,23,,,,, +356,8,1,11373,128,1628.879,32,32,F#4,fff,24,144,66,23,,,,, +356,9,3,11374,128,1628.879,,,,,,176,102,0,,,,, +356,7,1,11372,128,1628.991,,,,,,144,62,0,,,,, +356,11,1,11375,149,1628.991,21,32,F4,fff,24,144,65,23,,,,, +356,8,1,11373,128,1629.05,,,,,,144,66,0,,,,, +356,13,0,11376,166,1629.082,,,,,,176,64,0,,,,,^ +356,6,4,11370,0,1629.103,,,,,,144,53,0,,,,, +356,11,1,11375,149,1629.103,,,,,,144,65,0,,,,, +356,15,1,11377,,1629.103,,8,B2,ff,22,144,47,22,,,,g, +356,12,0,11378,153,1629.152,,,,,,176,64,127,,,,,V +356,15,1,11377,,1629.153,,,,,,144,47,0,,,,, +356,16,1,11379,,1629.178,,8,D3,f-,19,144,50,19,,,,g, +356,2,2,11366,0,1629.22,,,,,,144,89,0,,,,, +356,16,1,11379,,1629.228,,,,,,144,50,0,,,,, +356,17,1,11380,,1629.253,,8,F#3,mf-,16,144,54,16,,,,g, +356,17,1,11380,,1629.303,,,,,,144,54,0,,,,, +356,18,1,11381,,1629.328,,8,F3,mp,14,144,53,14,,,,g, +356,18,1,11381,,1629.378,,,,,,144,53,0,,,,, +356,19,1,11382,,1629.403,,8,A#4,p,11,144,70,11,,,,g, +356,19,1,11382,,1629.453,,,,,,144,70,0,,,,, +356,20,1,11383,170,1629.478,86,8,F#2,p-,10,144,42,10,,,,, +356,21,4,11384,170,1629.478,22,32,F3,mf,17,144,53,17,,,,, +356,14,0,11385,170,1629.478,,,,,,176,64,127,,,,,V +356,21,4,11384,170,1629.595,,,,,,144,53,0,,,,, +356,22,2,11386,192,1629.595,32,32,F6,mp,14,144,89,14,,,,, +356,23,4,11387,192,1629.595,21,32,G2,pp,8,144,43,8,,,,, +356,23,4,11387,192,1629.707,,,,,,144,43,0,,,,, +356,24,4,11388,213,1629.707,21,32,F3,pp-,7,144,53,7,,,,, +356,22,2,11386,192,1629.766,,,,,,144,89,0,,,,, +356,25,2,11389,224,1629.766,32,32,E5,mp+,15,144,76,15,,,,, +356,24,4,11388,213,1629.819,,,,,,144,53,0,,,,, +356,26,4,11390,234,1629.819,22,32,G2,ppp,5,144,43,5,,,,, +356,20,1,11383,170,1629.936,,,,,,144,42,0,,,,, +356,25,2,11389,224,1629.936,,,,,,144,76,0,,,,, +356,26,4,11390,234,1629.936,,,,,,144,43,0,,,,, +356,27,1,11391,256,1629.936,,,,,,176,102,0,,,,, +356,28,2,11392,256,1629.936,32,32,E5,mf-,16,144,76,16,,,,, +356,29,3,11393,256,1629.936,,,,,,176,102,0,,,,, +356,30,4,11394,256,1629.936,,,,,,176,102,0,,,,, +356,28,2,11392,256,1630.107,,,,,,144,76,0,,,,, +356,31,2,11395,288,1630.107,32,32,A#4,mf-,16,144,70,16,,,,, +356,31,2,11395,288,1630.277,,,,,,144,70,0,,,,, +356,32,2,11396,320,1630.277,21,32,C#5,mf,17,144,73,17,,,,, +356,32,2,11396,320,1630.389,,,,,,144,73,0,,,,, +356,33,2,11397,341,1630.389,21,32,A#4,mf,17,144,70,17,,,,, +356,34,4,11398,341,1630.389,171,4,G#2,ppp-,4,144,44,4,,,,, +356,33,2,11397,341,1630.501,,,,,,144,70,0,,,,, +356,35,2,11399,362,1630.501,22,32,C#5,mf+,18,144,73,18,,,,, +356,35,2,11399,362,1630.618,,,,,,144,73,0,,,,, +356,36,2,11400,384,1630.618,21,32,E5,mf+,18,144,76,18,,,,, +356,37,3,11401,384,1630.618,128,8,A2,mf,17,144,45,17,,,,, +356,38,3,11402,384,1630.618,128,8,G#3,mf,17,144,56,17,,,,, +356,39,3,11403,384,1630.618,128,8,C5,mf,17,144,72,17,,,,, +356,36,2,11400,384,1630.73,,,,,,144,76,0,,,,, +356,40,2,11404,405,1630.73,21,32,C#5,f-,19,144,73,19,,,,, +356,40,2,11404,405,1630.842,,,,,,144,73,0,,,,, +356,41,2,11405,426,1630.842,22,32,A#3,f-,19,144,58,19,,,,, +356,41,2,11405,426,1630.959,,,,,,144,58,0,,,,, +356,42,2,11406,448,1630.959,64,16,C#5,f,20,144,73,20,,,,, +356,43,0,11407,512,1631.15,,,,,,176,64,0,,,,,^ +356,45,1,11408,512,1631.3,,,,,,176,102,0,,,,, +356,46,2,11409,512,1631.3,192,8,C#5,,,,,,,,,, +356,47,3,11410,512,1631.3,384,4,A2,,,,,,,,,, +356,48,3,11411,512,1631.3,256,4,G#3,,,,,,,,,, +356,49,3,11412,512,1631.3,256,4,C5,,,,,,,,,, +356,50,4,11413,512,1631.3,21,32,F#2,mp,14,144,42,14,,,,, +356,34,4,11398,341,1631.3,,,,,,144,44,0,,,,, +356,50,4,11413,512,1631.412,,,,,,144,42,0,,,,, +356,51,4,11414,533,1631.412,64,16,B1,p+,12,144,35,12,,,,, +356,44,0,11415,512,1631.45,,,,,,176,64,127,,,,,V +356,51,4,11414,533,1631.752,,,,,,144,35,0,,,,, +356,52,4,11416,597,1631.752,14,32,F#2,pp-,7,144,42,7,,,,, +356,52,4,11416,597,1631.827,,,,,,144,42,0,,,,, +356,53,4,11417,611,1631.827,14,32,B0,ppp+,6,144,23,6,,,,, +356,53,4,11417,611,1631.902,,,,,,144,23,0,,,,, +356,54,4,11418,625,1631.902,15,32,F2,ppp,5,144,41,5,,,,, +356,55,4,11419,640,1631.982,128,8,F2,,,,,,,,,, +356,56,2,11420,704,1632.322,21,32,F7,p,11,144,101,11,,,,, +356,42,2,11406,448,1632.322,,,,,,144,73,0,,,,, +356,56,2,11420,704,1632.434,,,,,,144,101,0,,,,, +356,57,2,11421,725,1632.434,21,32,E5,mp-,13,144,76,13,,,,, +356,57,2,11421,725,1632.546,,,,,,144,76,0,,,,, +356,58,2,11422,746,1632.546,22,32,C#5,mp+,15,144,73,15,,,,, +356,58,2,11422,746,1632.663,,,,,,144,73,0,,,,, +356,59,2,11423,768,1632.663,21,32,E5,mf-,16,144,76,16,,,,, +356,60,4,11424,768,1632.663,,,,,,176,102,0,,,,, +356,54,4,11418,625,1632.663,,,,,,144,41,0,,,,, +356,38,3,11402,384,1632.663,,,,,,144,56,0,,,,, +356,39,3,11403,384,1632.663,,,,,,144,72,0,,,,, +356,59,2,11423,768,1632.775,,,,,,144,76,0,,,,, +356,61,2,11425,789,1632.775,21,32,A#3,mf+,18,144,58,18,,,,, +356,61,2,11425,789,1632.887,,,,,,144,58,0,,,,, +356,62,2,11426,810,1632.887,22,32,C#4,f,20,144,61,20,,,,, +356,62,2,11426,810,1633.004,,,,,,144,61,0,,,,, +356,63,0,11427,832,1633.004,,,,,,176,64,0,,,,,^ +356,64,2,11428,832,1633.004,,,,,,176,102,0,,,,, +356,66,2,11429,896,1633.345,64,16,D4,ff,22,144,62,22,,,,, +356,67,2,11430,896,1633.345,64,16,C#5,ff,22,144,73,22,,,,, +356,68,3,11431,896,1633.345,64,16,A2,ff,22,144,45,22,,,,, +356,69,3,11432,896,1633.345,64,16,G#3,ff,22,144,56,22,,,,, +356,70,4,11433,896,1633.345,,,,,,176,102,0,,,,, +356,65,0,11434,896,1633.345,,,,,,176,64,127,,,,,V +356,37,3,11401,384,1633.345,,,,,,144,45,0,,,,, +356,66,2,11429,896,1633.686,,,,,,144,62,0,,,,, +356,67,2,11430,896,1633.686,,,,,,144,73,0,,,,, +356,68,3,11431,896,1633.686,,,,,,144,45,0,,,,, +356,69,3,11432,896,1633.686,,,,,,144,56,0,,,,, +356,71,2,11435,960,1633.686,64,16,D4,ff,22,144,62,22,,,,, +356,72,2,11436,960,1633.686,64,16,C#5,ff,22,144,73,22,,,,, +356,73,2,11437,960,1633.686,64,16,E5,ff,22,144,76,22,,,,, +356,74,3,11438,960,1633.686,64,16,A2,ff,22,144,45,22,,,,, +356,75,3,11439,960,1633.686,64,16,G#3,ff,22,144,56,22,,,,, +356,71,2,11435,960,1634.027,,,,,,144,62,0,,,,, +356,72,2,11436,960,1634.027,,,,,,144,73,0,,,,, +356,73,2,11437,960,1634.027,,,,,,144,76,0,,,,, +356,74,3,11438,960,1634.027,,,,,,144,45,0,,,,, +356,75,3,11439,960,1634.027,,,,,,144,56,0,,,,, +357,2,0,11440,0,1634.027,,,,,,,,,357,,,, +357,5,2,11441,,1634.027,,8,A#3,p,11,144,58,11,,,,g, +357,5,2,11441,,1634.077,,,,,,144,58,0,,,,, +357,6,2,11442,,1634.102,,8,E6,p+,12,144,88,12,,,,g, +357,6,2,11442,,1634.152,,,,,,144,88,0,,,,, +357,7,2,11443,,1634.177,,8,F7,mp-,13,144,101,13,,,,g, +357,7,2,11443,,1634.227,,,,,,144,101,0,,,,, +357,8,2,11444,,1634.252,,8,E6,mp-,13,144,88,13,,,,g, +357,8,2,11444,,1634.302,,,,,,144,88,0,,,,, +357,0,3,11445,0,1634.327,21,32,G#4,ff,22,144,68,22,,,,, +357,3,1,11446,0,1634.327,32,32,C#6,ff,22,144,85,22,,,,, +357,0,3,11445,0,1634.439,,,,,,144,68,0,,,,, +357,1,3,11447,21,1634.439,21,32,A3,ff,22,144,57,22,,,,, +357,3,1,11446,0,1634.497,,,,,,144,85,0,,,,, +357,4,1,11448,32,1634.497,32,32,A#4,ff,22,144,70,22,,,,, +357,1,3,11447,21,1634.551,,,,,,144,57,0,,,,, +357,10,3,11449,42,1634.551,14,32,C6,f+,21,144,84,21,,,,, +357,10,3,11449,42,1634.625,,,,,,144,84,0,,,,, +357,11,3,11450,56,1634.625,14,32,G#4,mf+,18,144,68,18,,,,, +357,4,1,11448,32,1634.668,,,,,,144,70,0,,,,, +357,12,1,11451,64,1634.668,,,,,,176,102,0,,,,, +357,11,3,11450,56,1634.7,,,,,,144,68,0,,,,, +357,13,3,11452,70,1634.7,15,32,C6,mp+,15,144,84,15,,,,, +357,13,3,11452,70,1634.78,,,,,,144,84,0,,,,, +357,14,3,11453,85,1634.78,21,32,E6,p+,12,144,88,12,,,,, +357,15,0,11454,106,1634.792,,,,,,176,64,0,,,,,^ +357,14,3,11453,85,1634.892,,,,,,144,88,0,,,,, +357,16,3,11455,106,1634.892,11,64,D5,pp,8,144,74,8,,,,, +357,16,3,11455,106,1634.95,,,,,,144,74,0,,,,, +357,17,3,11456,117,1634.95,11,64,E6,pp,8,144,88,8,,,,, +357,18,0,11457,117,1634.95,,,,,,,,,,6030,,, +357,17,3,11456,117,1635.009,,,,,,144,88,0,,,,, +357,9,2,11458,,1635.009,,8,F7,f+,21,144,101,21,,,,g, +357,9,2,11458,,1635.059,,,,,,144,101,0,,,,, +357,20,3,11459,,1635.084,,8,A1,f,20,144,33,20,,,,g, +357,19,0,11460,125,1635.092,,,,,,176,64,127,,,,,V +357,20,3,11459,,1635.134,,,,,,144,33,0,,,,, +357,21,3,11461,128,1635.159,128,8,G#2,f,20,144,44,20,,,,, +357,22,1,11462,256,1635.841,,,,,,176,102,0,,,,, +357,23,3,11463,256,1635.841,128,8,C4,mf-,16,144,60,16,,,,, +357,21,3,11461,128,1635.991,,,,,,144,44,0,,,,, +357,24,3,11464,384,1636.522,85,8,C4,,,,,,,,,, +357,23,3,11463,256,1636.975,,,,,,144,60,0,,,,, +357,25,3,11465,469,1636.975,43,16,A1,pp+,9,144,33,9,,,,, +357,25,3,11465,469,1637.204,,,,,,144,33,0,,,,, +357,26,1,11466,512,1637.204,,,,,,176,102,0,,,,, +357,27,3,11467,512,1637.204,21,32,G#2,pp,8,144,44,8,,,,, +357,27,3,11467,512,1637.316,,,,,,144,44,0,,,,, +357,28,3,11468,533,1637.316,21,32,C4,pp-,7,144,60,7,,,,, +357,28,3,11468,533,1637.428,,,,,,144,60,0,,,,, +357,29,3,11469,554,1637.428,22,32,A0,pp-,7,144,21,7,,,,, +357,29,3,11469,554,1637.545,,,,,,144,21,0,,,,, +357,30,3,11470,576,1637.545,21,32,G#1,ppp+,6,144,32,6,,,,, +357,30,3,11470,576,1637.657,,,,,,144,32,0,,,,, +357,31,3,11471,597,1637.657,11,64,C3,ppp,5,144,48,5,,,,, +357,31,3,11471,597,1637.716,,,,,,144,48,0,,,,, +357,32,3,11472,608,1637.716,32,32,A0,ppp,5,144,21,5,,,,, +357,33,3,11473,640,1637.886,384,4,A0,,,,,,,,,, +358,0,0,11474,0,1639.932,,,,,,,,,358,,,, +358,1,1,11475,0,1639.932,,,,,,176,102,0,,,,, +358,2,3,11476,0,1639.932,512,2,A0,,,,,,,,,, +357,32,3,11472,608,1642.659,,,,,,144,21,0,,,,, +358,3,1,11477,512,1642.659,,,,,,176,102,0,,,,, +358,4,3,11478,512,1642.659,,,,,,176,102,0,,,,, +358,5,3,11479,554,1642.883,22,32,C3,mf,17,144,48,17,,,,, +358,5,3,11479,554,1643,,,,,,144,48,0,,,,, +358,6,3,11480,576,1643,21,32,D2,mf-,16,144,38,16,,,,, +358,6,3,11480,576,1643.112,,,,,,144,38,0,,,,, +358,7,3,11481,597,1643.112,85,8,E3,mf-,16,144,52,16,,,,, +358,8,1,11482,640,1643.341,,,,,,176,102,0,,,,, +358,9,3,11483,682,1643.564,,,,,,176,102,0,,,,, +358,7,3,11481,597,1643.564,,,,,,144,52,0,,,,, +358,10,1,11484,704,1643.682,21,32,G#6,mp-,13,144,92,13,,,,, +358,10,1,11484,704,1643.793,,,,,,144,92,0,,,,, +358,11,1,11485,725,1643.793,21,32,A5,p+,12,144,81,12,,,,, +358,11,1,11485,725,1643.905,,,,,,144,81,0,,,,, +358,12,1,11486,746,1643.905,22,32,D7,p+,12,144,98,12,,,,, +358,12,1,11486,746,1644.022,,,,,,144,98,0,,,,, +358,13,1,11487,768,1644.022,21,32,C8,p,11,144,108,11,,,,, +358,14,3,11488,768,1644.022,,,,,,176,102,0,,,,, +358,13,1,11487,768,1644.134,,,,,,144,108,0,,,,, +358,15,1,11489,789,1644.134,32,32,G#5,p,11,144,80,11,,,,, +358,15,1,11489,789,1644.305,,,,,,144,80,0,,,,, +358,16,1,11490,821,1644.305,32,32,C7,p-,10,144,96,10,,,,, +358,16,1,11490,821,1644.475,,,,,,144,96,0,,,,, +358,17,1,11491,853,1644.475,21,32,G#5,pp+,9,144,80,9,,,,, +358,17,1,11491,853,1644.587,,,,,,144,80,0,,,,, +358,18,1,11492,874,1644.587,22,32,A4,pp,8,144,69,8,,,,, +358,18,1,11492,874,1644.704,,,,,,144,69,0,,,,, +358,19,1,11493,896,1644.704,21,32,D6,pp,8,144,86,8,,,,, +358,19,1,11493,896,1644.816,,,,,,144,86,0,,,,, +358,20,1,11494,917,1644.816,21,32,C7,pp-,7,144,96,7,,,,, +358,20,1,11494,917,1644.928,,,,,,144,96,0,,,,, +358,21,1,11495,938,1644.928,22,32,E7,ppp+,6,144,100,6,,,,, +358,21,1,11495,938,1645.045,,,,,,144,100,0,,,,, +358,22,1,11496,960,1645.045,32,32,D6,ppp+,6,144,86,6,,,,, +358,22,1,11496,960,1645.216,,,,,,144,86,0,,,,, +358,23,1,11497,992,1645.216,32,32,E7,ppp,5,144,100,5,,,,, +358,24,0,11498,1023,1645.381,,,,,,176,64,0,,,,,^ +358,23,1,11497,992,1645.386,,,,,,144,100,0,,,,, +359,1,0,11499,0,1645.386,,,,,,,,,359,,,, +359,0,3,11500,0,1645.386,,,,,,176,102,0,,,,, +359,2,0,11501,0,1645.386,,,,,,,,,,6031,,, +359,3,1,11502,0,1645.386,,,,,,176,102,0,,,,, +359,5,1,11503,85,1645.839,43,16,D2,mf,17,144,38,17,,,,, +359,4,0,11504,85,1645.839,,,,,,176,64,127,,,,,V +359,5,1,11503,85,1646.068,,,,,,144,38,0,,,,, +359,6,3,11505,128,1646.068,128,8,G#2,pp,8,144,44,8,,,,, +359,7,1,11506,128,1646.068,42,16,A#3,mp,14,144,58,14,,,,, +359,7,1,11506,128,1646.292,,,,,,144,58,0,,,,, +359,8,1,11507,170,1646.292,28,16,F3,p+,12,144,53,12,,,,, +359,8,1,11507,170,1646.441,,,,,,144,53,0,,,,, +359,9,1,11508,198,1646.441,28,16,D3,p-,10,144,50,10,,,,, +359,9,1,11508,198,1646.59,,,,,,144,50,0,,,,, +359,10,1,11509,226,1646.59,30,16,A#3,pp,8,144,58,8,,,,, +359,10,1,11509,226,1646.75,,,,,,144,58,0,,,,, +359,11,1,11510,256,1646.75,,,,,,176,102,0,,,,, +359,12,3,11511,256,1646.75,768,2,G#2,,,,,,,,,, +359,13,1,11512,,1647.432,,8,E4,pp,8,144,64,8,,,,g, +359,13,1,11512,,1647.482,,,,,,144,64,0,,,,, +359,14,1,11513,384,1647.507,76,16,A1,pp+,9,144,33,9,,,,, +359,14,1,11513,384,1647.911,,,,,,144,33,0,,,,, +359,15,1,11514,460,1647.911,26,32,F4,mp,14,144,65,14,,,,, +359,15,1,11514,460,1648.05,,,,,,144,65,0,,,,, +359,16,1,11515,486,1648.05,26,32,E3,mf-,16,144,52,16,,,,, +359,16,1,11515,486,1648.188,,,,,,144,52,0,,,,, +359,17,1,11516,512,1648.188,38,32,A2,mf,17,144,45,17,,,,, +359,17,1,11516,512,1648.391,,,,,,144,45,0,,,,, +359,18,1,11517,550,1648.391,26,32,F5,f,20,144,77,20,,,,, +359,18,1,11517,550,1648.529,,,,,,144,77,0,,,,, +359,19,1,11518,576,1648.529,38,32,A#2,f,20,144,46,20,,,,, +359,19,1,11518,576,1648.732,,,,,,144,46,0,,,,, +359,20,1,11519,614,1648.732,26,32,C#3,f,20,144,49,20,,,,, +359,20,1,11519,614,1648.87,,,,,,144,49,0,,,,, +359,21,1,11520,640,1648.87,25,32,A#2,mf,17,144,46,17,,,,, +359,21,1,11520,640,1649.003,,,,,,144,46,0,,,,, +359,22,1,11521,665,1649.003,13,64,E4,mp,14,144,64,14,,,,, +359,22,1,11521,665,1649.073,,,,,,144,64,0,,,,, +359,23,1,11522,678,1649.073,13,64,F4,mp-,13,144,65,13,,,,, +359,23,1,11522,678,1649.142,,,,,,144,65,0,,,,, +359,24,1,11523,691,1649.142,25,32,E4,p+,12,144,64,12,,,,, +359,24,1,11523,691,1649.275,,,,,,144,64,0,,,,, +359,25,1,11524,716,1649.275,16,32,A#2,pp+,9,144,46,9,,,,, +359,25,1,11524,716,1649.36,,,,,,144,46,0,,,,, +359,26,1,11525,732,1649.36,18,32,C#4,pp-,7,144,61,7,,,,, +359,26,1,11525,732,1649.456,,,,,,144,61,0,,,,, +359,27,1,11526,750,1649.456,18,32,A#2,ppp,5,144,46,5,,,,, +359,27,1,11526,750,1649.552,,,,,,144,46,0,,,,, +359,28,1,11527,768,1649.552,,,,,,176,102,0,,,,, +360,0,0,11528,0,1650.916,,,,,,,,,360,,,, +360,1,0,11529,0,1650.916,,,,,,176,64,0,,,,,^ +360,2,1,11530,0,1650.916,,,,,,176,102,0,,,,, +360,3,3,11531,0,1650.916,256,4,G#2,,,,,,,,,, +360,5,1,11532,256,1652.279,38,32,G#1,pp,8,144,32,8,,,,, +360,6,3,11533,256,1652.279,256,4,G#2,,,,,,,,,, +360,4,0,11534,256,1652.279,,,,,,176,64,127,,,,,V +360,5,1,11532,256,1652.482,,,,,,144,32,0,,,,, +360,7,1,11535,294,1652.482,38,32,C5,p-,10,144,72,10,,,,, +360,7,1,11535,294,1652.684,,,,,,144,72,0,,,,, +360,8,1,11536,332,1652.684,26,32,D3,p+,12,144,50,12,,,,, +360,8,1,11536,332,1652.823,,,,,,144,50,0,,,,, +360,9,1,11537,358,1652.823,26,32,G#2,mp,14,144,44,14,,,,, +360,9,1,11537,358,1652.961,,,,,,144,44,0,,,,, +360,10,1,11538,384,1652.961,25,32,C4,mf-,16,144,60,16,,,,, +360,10,1,11538,384,1653.094,,,,,,144,60,0,,,,, +360,11,1,11539,409,1653.094,26,32,D3,mf,17,144,50,17,,,,, +360,11,1,11539,409,1653.233,,,,,,144,50,0,,,,, +360,12,1,11540,435,1653.233,25,32,C5,f-,19,144,72,19,,,,, +360,12,1,11540,435,1653.366,,,,,,144,72,0,,,,, +360,13,1,11541,460,1653.366,39,32,E5,f,20,144,76,20,,,,, +359,6,3,11505,128,1653.568,,,,,,144,44,0,,,,, +360,13,1,11541,460,1653.574,,,,,,144,76,0,,,,, +360,14,1,11542,499,1653.574,13,64,D3,mf-,16,144,50,16,,,,, +360,15,1,11543,512,1653.643,25,32,D3,,,,,,,,,, +360,16,3,11544,512,1653.643,,,,,,176,102,0,,,,, +360,14,1,11542,499,1653.776,,,,,,144,50,0,,,,, +360,17,1,11545,537,1653.776,26,32,E5,p,11,144,76,11,,,,, +360,18,0,11546,540,1653.792,,,,,,176,64,0,,,,,^ +360,19,3,11547,540,1653.792,,,,,,176,102,0,,,,, +360,17,1,11545,537,1653.915,,,,,,144,76,0,,,,, +360,20,1,11548,563,1653.915,,,,,,176,102,0,,,,, +360,21,3,11549,583,1654.021,42,32,A0,ppp,5,144,21,5,,,,, +360,21,3,11549,583,1654.245,,,,,,144,21,0,,,,, +360,22,3,11550,625,1654.245,43,32,E1,ppp+,6,144,28,6,,,,, +360,23,1,11551,640,1654.325,128,8,C4,p,11,144,60,11,,,,, +360,22,3,11550,625,1654.474,,,,,,144,28,0,,,,, +360,24,3,11552,668,1654.474,43,32,A#0,ppp+,6,144,22,6,,,,, +360,24,3,11552,668,1654.703,,,,,,144,22,0,,,,, +360,25,3,11553,711,1654.703,28,32,F1,pp-,7,144,29,7,,,,, +360,25,3,11553,711,1654.852,,,,,,144,29,0,,,,, +360,26,3,11554,739,1654.852,29,32,E1,pp-,7,144,28,7,,,,, +360,23,1,11551,640,1655.007,,,,,,144,60,0,,,,, +360,26,3,11554,739,1655.007,,,,,,144,28,0,,,,, +360,27,3,11555,768,1655.007,42,32,A#0,pp,8,144,22,8,,,,, +360,28,1,11556,768,1655.007,64,16,A1,pp,8,144,33,8,,,,, +360,27,3,11555,768,1655.23,,,,,,144,22,0,,,,, +360,30,3,11557,810,1655.23,43,32,F1,pp,8,144,29,8,,,,, +360,29,0,11558,810,1655.23,,,,,,176,64,127,,,,,V +360,28,1,11556,768,1655.347,,,,,,144,33,0,,,,, +360,31,1,11559,832,1655.347,21,32,E4,ppp,5,144,64,5,,,,, +360,30,3,11557,810,1655.459,,,,,,144,29,0,,,,, +360,31,1,11559,832,1655.459,,,,,,144,64,0,,,,, +360,32,3,11560,853,1655.459,43,32,C#1,pp+,9,144,25,9,,,,, +360,33,1,11561,853,1655.459,21,32,D3,ppp-,4,144,50,4,,,,, +360,33,1,11561,853,1655.571,,,,,,144,50,0,,,,, +360,34,1,11562,874,1655.571,22,32,E4,pppp,2,144,64,2,,,,, +360,32,3,11560,853,1655.688,,,,,,144,25,0,,,,, +360,34,1,11562,874,1655.688,,,,,,144,64,0,,,,, +360,35,3,11563,896,1655.688,28,32,A0,p-,10,144,21,10,,,,, +360,36,1,11564,896,1655.688,,,,,,176,102,0,,,,, +360,35,3,11563,896,1655.837,,,,,,144,21,0,,,,, +360,37,3,11565,924,1655.837,28,32,F1,p-,10,144,29,10,,,,, +360,37,3,11565,924,1655.987,,,,,,144,29,0,,,,, +360,38,3,11566,952,1655.987,43,32,E1,p-,10,144,28,10,,,,, +360,38,3,11566,952,1656.216,,,,,,144,28,0,,,,, +360,39,3,11567,995,1656.216,29,32,A#0,p,11,144,22,11,,,,, +360,39,3,11567,995,1656.37,,,,,,144,22,0,,,,, +361,0,0,11568,0,1656.37,,,,,,,,,361,,,, +361,1,1,11569,0,1656.37,,,,,,176,102,0,,,,, +361,2,3,11570,0,1656.37,28,32,F1,mp,14,144,29,14,,,,, +361,2,3,11570,0,1656.519,,,,,,144,29,0,,,,, +361,3,3,11571,28,1656.519,28,32,C#1,mf-,16,144,25,16,,,,, +361,3,3,11571,28,1656.668,,,,,,144,25,0,,,,, +361,4,3,11572,56,1656.668,29,32,A#0,mf,17,144,22,17,,,,, +361,4,3,11572,56,1656.823,,,,,,144,22,0,,,,, +361,5,3,11573,85,1656.823,18,32,F1,f-,19,144,29,19,,,,, +361,5,3,11573,85,1656.919,,,,,,144,29,0,,,,, +361,6,3,11574,103,1656.919,19,32,E1,f,20,144,28,20,,,,, +361,6,3,11574,103,1657.02,,,,,,144,28,0,,,,, +361,7,3,11575,122,1657.02,20,32,C#1,f+,21,144,25,21,,,,, +361,7,3,11575,122,1657.127,,,,,,144,25,0,,,,, +361,8,3,11576,142,1657.127,18,32,A#0,ff,22,144,22,22,,,,, +361,8,3,11576,142,1657.222,,,,,,144,22,0,,,,, +361,9,3,11577,160,1657.222,39,16,A0,ff,22,144,21,22,,,,, +361,9,3,11577,160,1657.43,,,,,,144,21,0,,,,, +361,10,3,11578,199,1657.43,28,32,A1,f-,19,144,33,19,,,,, +361,10,3,11578,199,1657.579,,,,,,144,33,0,,,,, +361,11,3,11579,227,1657.579,29,32,E3,mf-,16,144,52,16,,,,, +361,11,3,11579,227,1657.734,,,,,,144,52,0,,,,, +361,12,3,11580,256,1657.734,28,32,A#2,mp,14,144,46,14,,,,, +361,12,3,11580,256,1657.883,,,,,,144,46,0,,,,, +361,13,3,11581,284,1657.883,18,32,F5,p,11,144,77,11,,,,, +361,13,3,11581,284,1657.979,,,,,,144,77,0,,,,, +361,14,3,11582,302,1657.979,19,32,E4,p-,10,144,64,10,,,,, +361,14,3,11582,302,1658.08,,,,,,144,64,0,,,,, +361,15,0,11583,321,1658.08,,,,,,176,64,0,,,,,^ +361,16,3,11584,321,1658.08,20,32,C#4,pp,8,144,61,8,,,,, +361,16,3,11584,321,1658.187,,,,,,144,61,0,,,,, +361,17,3,11585,341,1658.187,,,,,,176,102,0,,,,, +361,18,0,11586,341,1658.187,,,,,,,,,,6032,,, +361,20,1,11587,384,1658.416,64,16,A0,pp,8,144,21,8,,,,, +361,19,0,11588,384,1658.416,,,,,,176,64,127,,,,,V +361,21,1,11589,448,1658.757,64,16,D2,pp,8,144,38,8,,,,, +361,21,1,11589,448,1659.097,,,,,,144,38,0,,,,, +361,22,1,11590,512,1659.097,,,,,,176,102,0,,,,, +361,23,3,11591,512,1659.097,,,,,,176,102,0,,,,, +361,20,1,11587,384,1659.132,,,,,,144,21,0,,,,, +361,24,1,11592,768,1660.461,,,,,,176,102,0,,,,, +361,25,3,11593,768,1660.461,32,32,G#1,mf,17,144,32,17,,,,, +361,25,3,11593,768,1660.632,,,,,,144,32,0,,,,, +361,26,3,11594,800,1660.632,32,32,C3,f-,19,144,48,19,,,,, +361,26,3,11594,800,1660.802,,,,,,144,48,0,,,,, +361,27,3,11595,832,1660.802,21,32,G#1,f,20,144,32,20,,,,, +361,27,3,11595,832,1660.914,,,,,,144,32,0,,,,, +361,28,3,11596,853,1660.914,21,32,C3,ff,22,144,48,22,,,,, +361,28,3,11596,853,1661.026,,,,,,144,48,0,,,,, +361,29,3,11597,874,1661.026,22,32,E3,ff+,23,144,52,23,,,,, +361,29,3,11597,874,1661.143,,,,,,144,52,0,,,,, +361,30,3,11598,896,1661.143,14,64,G#1,fff,24,144,32,23,,,,, +361,30,3,11598,896,1661.217,,,,,,144,32,0,,,,, +361,31,3,11599,910,1661.217,14,64,A0,fff,24,144,21,23,,,,, +361,31,3,11599,910,1661.292,,,,,,144,21,0,,,,, +361,32,3,11600,924,1661.292,14,64,D2,ff,22,144,38,22,,,,, +361,32,3,11600,924,1661.367,,,,,,144,38,0,,,,, +361,33,3,11601,938,1661.367,43,32,G#1,f,20,144,32,20,,,,, +361,33,3,11601,938,1661.596,,,,,,144,32,0,,,,, +361,34,3,11602,981,1661.596,14,64,C3,mp-,13,144,48,13,,,,, +361,34,3,11602,981,1661.67,,,,,,144,48,0,,,,, +361,35,3,11603,995,1661.67,29,32,E3,p,11,144,52,11,,,,, +362,0,0,11604,0,1661.825,,,,,,,,,362,,,, +362,1,1,11605,0,1661.825,,,,,,176,102,0,,,,, +362,2,2,11606,0,1661.825,,,,,,176,102,0,,,,, +362,3,3,11607,0,1661.825,384,4,E3,,,,,,,,,, +362,4,4,11608,0,1661.825,,,,,,176,102,0,,,,, +362,5,0,11609,384,1663.87,,,,,,176,64,0,,,,,^ +362,6,3,11610,384,1663.87,128,8,E3,,,,,,,,,, +362,11,4,11611,,1664.552,,8,D5,pp,8,144,74,8,,,,g, +362,11,4,11611,,1664.602,,,,,,144,74,0,,,,, +362,8,1,11612,512,1664.627,56,16,C#7,ppp,5,144,97,5,,,,, +362,9,2,11613,512,1664.627,21,32,E5,ppp,5,144,76,5,,,,, +362,10,3,11614,512,1664.627,512,2,E3,,,,,,,,,, +362,12,4,11615,512,1664.627,512,2,E4,pp,8,144,64,8,,,,, +362,7,0,11616,512,1664.627,,,,,,176,64,127,,,,,V +362,9,2,11613,512,1664.739,,,,,,144,76,0,,,,, +362,13,2,11617,533,1664.739,21,32,F#4,ppp+,6,144,66,6,,,,, +362,13,2,11617,533,1664.851,,,,,,144,66,0,,,,, +362,14,2,11618,554,1664.851,22,32,B5,pp-,7,144,83,7,,,,, +362,15,1,11619,568,1664.925,57,16,F#5,pp,8,144,78,8,,,,, +362,8,1,11612,512,1664.925,,,,,,144,97,0,,,,, +362,14,2,11618,554,1664.968,,,,,,144,83,0,,,,, +362,16,2,11620,576,1664.968,21,32,D6,pp,8,144,86,8,,,,, +362,16,2,11620,576,1665.08,,,,,,144,86,0,,,,, +362,17,2,11621,597,1665.08,21,32,B5,p-,10,144,83,10,,,,, +362,17,2,11621,597,1665.192,,,,,,144,83,0,,,,, +362,18,2,11622,618,1665.192,22,32,A#3,p,11,144,58,11,,,,, +362,15,1,11619,568,1665.229,,,,,,144,78,0,,,,, +362,19,1,11623,625,1665.229,57,16,C#7,p,11,144,97,11,,,,, +362,18,2,11622,618,1665.309,,,,,,144,58,0,,,,, +362,20,2,11624,640,1665.309,128,8,B5,p+,12,144,83,12,,,,, +362,21,1,11625,682,1665.533,86,16,F#5,mp,14,144,78,14,,,,, +362,19,1,11623,625,1665.533,,,,,,144,97,0,,,,, +362,22,1,11626,768,1665.991,85,8,F#5,,,,,,,,,, +362,23,2,11627,768,1665.991,,,,,,176,102,0,,,,, +362,20,2,11624,640,1665.991,,,,,,144,83,0,,,,, +362,21,1,11625,682,1666.443,,,,,,144,78,0,,,,, +362,24,1,11628,853,1666.443,171,4,B7,ppp,5,144,107,5,,,,, +362,24,1,11628,853,1667.354,,,,,,144,107,0,,,,, +363,0,0,11629,0,1667.354,,,,,,,,,363,,,, +363,1,1,11630,0,1667.354,85,8,A5,ppp,5,144,81,5,,,,, +363,2,3,11631,0,1667.354,,,,,,176,102,0,,,,, +363,3,4,11632,0,1667.354,,,,,,176,102,0,,,,, +362,12,4,11615,512,1667.354,,,,,,144,64,0,,,,, +361,35,3,11603,995,1667.729,,,,,,144,52,0,,,,, +363,1,1,11630,0,1667.807,,,,,,144,81,0,,,,, +363,4,1,11633,85,1667.807,171,4,F6,ppp,5,144,89,5,,,,, +363,5,1,11634,256,1668.718,256,4,F6,,,,,,,,,, +363,4,1,11633,85,1670.082,,,,,,144,89,0,,,,, +363,6,1,11635,512,1670.082,16,64,C8,ppp,5,144,108,5,,,,, +363,7,3,11636,512,1670.082,51,16,F7,ppp,5,144,101,5,,,,, +363,8,4,11637,512,1670.082,384,4,G3,f,20,144,55,20,,,,, +363,9,4,11638,512,1670.082,256,4,C#4,pp,8,144,61,8,,,,, +363,10,4,11639,512,1670.082,256,4,B4,pp,8,144,71,8,,,,, +363,6,1,11635,512,1670.167,,,,,,144,108,0,,,,, +363,11,1,11640,528,1670.167,16,64,F#7,ppp,5,144,102,5,,,,, +363,11,1,11640,528,1670.252,,,,,,144,102,0,,,,, +363,12,1,11641,544,1670.252,16,64,D#7,ppp,5,144,99,5,,,,, +363,12,1,11641,544,1670.337,,,,,,144,99,0,,,,, +363,13,1,11642,560,1670.337,16,64,F#7,ppp,5,144,102,5,,,,, +363,14,3,11643,563,1670.353,25,32,C#6,ppp,5,144,85,5,,,,, +363,7,3,11636,512,1670.353,,,,,,144,101,0,,,,, +363,13,1,11642,560,1670.422,,,,,,144,102,0,,,,, +363,15,1,11644,576,1670.422,48,32,B7,ppp,5,144,107,5,,,,, +363,14,3,11643,563,1670.486,,,,,,144,85,0,,,,, +363,16,3,11645,588,1670.486,26,32,A5,ppp,5,144,81,5,,,,, +363,16,3,11645,588,1670.625,,,,,,144,81,0,,,,, +363,17,3,11646,614,1670.625,16,32,D6,ppp,5,144,86,5,,,,, +363,15,1,11644,576,1670.678,,,,,,144,107,0,,,,, +363,18,1,11647,624,1670.678,16,64,G7,ppp,5,144,103,5,,,,, +363,17,3,11646,614,1670.71,,,,,,144,86,0,,,,, +363,19,3,11648,630,1670.71,18,32,C#6,ppp,5,144,85,5,,,,, +363,18,1,11647,624,1670.763,,,,,,144,103,0,,,,, +363,20,1,11649,640,1670.763,,,,,,176,102,0,,,,, +363,19,3,11648,630,1670.806,,,,,,144,85,0,,,,, +363,21,3,11650,648,1670.806,17,32,A4,ppp,5,144,69,5,,,,, +363,21,3,11650,648,1670.897,,,,,,144,69,0,,,,, +363,22,3,11651,665,1670.897,26,32,D6,ppp,5,144,86,5,,,,, +363,22,3,11651,665,1671.035,,,,,,144,86,0,,,,, +363,23,3,11652,691,1671.035,77,16,G#7,ppp,5,144,104,5,,,,, +363,9,4,11638,512,1671.445,,,,,,144,61,0,,,,, +363,10,4,11639,512,1671.445,,,,,,144,71,0,,,,, +363,23,3,11652,691,1671.445,,,,,,144,104,0,,,,, +363,24,1,11653,768,1671.445,,,,,,176,102,0,,,,, +363,25,3,11654,768,1671.445,,,,,,176,102,0,,,,, +363,8,4,11637,512,1672.127,,,,,,144,55,0,,,,, +363,26,3,11655,896,1672.127,51,16,G#1,p,11,144,32,11,,,,, +363,27,4,11656,896,1672.127,128,8,B4,ppp,5,144,71,5,,,,, +363,26,3,11655,896,1672.399,,,,,,144,32,0,,,,, +363,28,3,11657,947,1672.399,25,32,G2,pp,8,144,43,8,,,,, +363,28,3,11657,947,1672.532,,,,,,144,43,0,,,,, +363,29,3,11658,972,1672.532,52,16,G#1,ppp,5,144,32,5,,,,, +363,30,0,11659,984,1672.55,,,,,,176,64,0,,,,,^ +363,27,4,11656,896,1672.809,,,,,,144,71,0,,,,, +363,29,3,11658,972,1672.809,,,,,,144,32,0,,,,, +364,0,0,11660,0,1672.809,,,,,,,,,364,,,, +364,1,1,11661,0,1672.809,,,,,,176,102,0,,,,, +364,2,3,11662,0,1672.809,,,,,,176,102,0,,,,, +364,3,4,11663,,1672.809,,8,C#3,pppp,2,144,49,2,,,,g, +363,31,0,11664,1023,1672.85,,,,,,176,64,127,,,,,V +364,3,4,11663,,1672.859,,,,,,144,49,0,,,,, +364,4,4,11665,0,1672.884,256,4,F1,pppp,2,144,29,2,,,,, +364,4,4,11665,0,1674.247,,,,,,144,29,0,,,,, +364,5,1,11666,256,1674.247,,,,,,176,102,0,,,,, +364,6,3,11667,256,1674.247,,,,,,176,102,0,,,,, +364,7,4,11668,256,1674.247,,,,,,176,102,0,,,,, +364,8,3,11669,307,1674.519,51,16,F4,ppp,5,144,65,5,,,,, +364,9,1,11670,341,1674.7,64,16,B6,ppp,5,144,95,5,,,,, +364,8,3,11669,307,1674.791,,,,,,144,65,0,,,,, +364,10,3,11671,358,1674.791,26,32,D4,ppp,5,144,62,5,,,,, +364,10,3,11671,358,1674.929,,,,,,144,62,0,,,,, +364,11,3,11672,384,1674.929,25,32,C#4,ppp,5,144,61,5,,,,, +364,9,1,11670,341,1675.041,,,,,,144,95,0,,,,, +364,12,1,11673,405,1675.041,21,32,A4,ppp,5,144,69,5,,,,, +364,11,3,11672,384,1675.062,,,,,,144,61,0,,,,, +364,13,3,11674,409,1675.062,34,16,A3,ppp,5,144,57,5,,,,, +364,12,1,11673,405,1675.153,,,,,,144,69,0,,,,, +364,14,1,11675,426,1675.153,14,32,F5,ppp+,6,144,77,6,,,,, +364,14,1,11675,426,1675.228,,,,,,144,77,0,,,,, +364,15,1,11676,440,1675.228,14,32,C#6,ppp+,6,144,85,6,,,,, +364,16,3,11677,443,1675.244,34,16,D4,ppp,5,144,62,5,,,,, +364,13,3,11674,409,1675.244,,,,,,144,57,0,,,,, +364,15,1,11676,440,1675.302,,,,,,144,85,0,,,,, +364,17,1,11678,454,1675.302,14,32,F5,pp-,7,144,77,7,,,,, +364,17,1,11678,454,1675.377,,,,,,144,77,0,,,,, +364,18,1,11679,468,1675.377,14,32,C#6,pp-,7,144,85,7,,,,, +364,19,3,11680,477,1675.425,35,16,G#4,ppp,5,144,68,5,,,,, +364,16,3,11677,443,1675.425,,,,,,144,62,0,,,,, +364,18,1,11679,468,1675.451,,,,,,144,85,0,,,,, +364,20,1,11681,482,1675.451,30,16,F#4,pp,8,144,66,8,,,,, +364,21,0,11682,494,1675.515,,,,,,176,64,0,,,,,^ +364,19,3,11680,477,1675.611,,,,,,144,68,0,,,,, +364,20,1,11681,482,1675.611,,,,,,144,66,0,,,,, +364,22,3,11683,512,1675.611,76,16,G#3,p,11,144,56,11,,,,, +364,26,1,11684,,1675.611,,8,B5,pp,8,144,83,8,,,,g, +364,26,1,11684,,1675.661,,,,,,144,83,0,,,,, +364,23,1,11685,512,1675.686,256,4,C#5,f,20,144,73,20,,,,, +364,24,1,11686,512,1675.686,256,4,D6,f,20,144,86,20,,,,, +364,25,4,11687,512,1675.686,,,,,,176,102,0,,,,, +364,22,3,11683,512,1676.016,,,,,,144,56,0,,,,, +364,27,3,11688,588,1676.091,52,16,A5,mp,14,144,81,14,,,,, +364,27,3,11688,588,1676.368,,,,,,144,81,0,,,,, +364,28,3,11689,640,1676.368,128,8,E5,mf,17,144,76,17,,,,, +364,29,0,11690,640,1676.368,,,,,,,,,,6033,,, +364,23,1,11685,512,1677.05,,,,,,144,73,0,,,,, +364,24,1,11686,512,1677.05,,,,,,144,86,0,,,,, +364,28,3,11689,640,1677.05,,,,,,144,76,0,,,,, +364,30,0,11691,768,1677.157,,,,,,,,,,,38,, +364,32,1,11692,768,1677.157,,,,,,176,102,0,,,,, +364,33,3,11693,768,1677.157,,,,,,176,102,0,,,,, +364,34,4,11694,768,1677.157,256,4,D#1,ppp,5,144,27,5,,,,, +364,35,4,11695,768,1677.157,256,4,E3,f,20,144,52,20,,,,, +364,36,4,11696,768,1677.157,256,4,F#3,mp,14,144,54,14,,,,, +364,31,0,11697,768,1677.157,,,,,,176,64,127,,,,,V +365,4,0,11698,0,1678.736,,,,,,,,,365,,,, +365,0,3,11699,0,1678.736,,,,,,176,102,0,,,,, +365,1,4,11700,0,1678.736,768,2,D#1,,,,,,,,,, +365,2,4,11701,0,1678.736,512,2,E3,,,,,,,,,, +365,3,4,11702,0,1678.736,512,2,F#3,,,,,,,,,, +365,5,1,11703,0,1678.736,25,32,F6,pppp,2,144,89,2,,,,, +365,5,1,11703,0,1678.891,,,,,,144,89,0,,,,, +365,6,1,11704,25,1678.891,16,32,C#4,pppp,2,144,61,2,,,,, +365,6,1,11704,25,1678.989,,,,,,144,61,0,,,,, +365,7,1,11705,41,1678.989,18,32,D5,pppp,2,144,74,2,,,,, +365,7,1,11705,41,1679.1,,,,,,144,74,0,,,,, +365,8,1,11706,59,1679.1,17,32,C#5,pppp,2,144,73,2,,,,, +365,9,1,11707,76,1679.205,8,64,C#5,,,,,,,,,, +365,8,1,11706,59,1679.254,,,,,,144,73,0,,,,, +365,10,1,11708,84,1679.254,8,64,A3,pppp,2,144,57,2,,,,, +365,11,1,11709,92,1679.304,18,32,A3,,,,,,,,,, +365,10,1,11708,84,1679.415,,,,,,144,57,0,,,,, +365,12,1,11710,110,1679.415,18,32,D6,pppp,2,144,86,2,,,,, +365,12,1,11710,110,1679.526,,,,,,144,86,0,,,,, +365,13,3,11711,128,1679.526,16,64,D#5,pppp,2,144,75,2,,,,, +365,14,1,11712,128,1679.526,16,32,F6,pppp,2,144,89,2,,,,, +365,13,3,11711,128,1679.624,,,,,,144,75,0,,,,, +365,14,1,11712,128,1679.624,,,,,,144,89,0,,,,, +365,15,3,11713,144,1679.624,16,64,B5,pppp,2,144,83,2,,,,, +365,16,1,11714,144,1679.624,18,32,D6,pppp,2,144,86,2,,,,, +365,15,3,11713,144,1679.723,,,,,,144,83,0,,,,, +365,17,3,11715,160,1679.723,16,64,C6,pppp,2,144,84,2,,,,, +365,16,1,11714,144,1679.735,,,,,,144,86,0,,,,, +365,18,1,11716,162,1679.735,17,32,G#6,pppp,2,144,92,2,,,,, +365,17,3,11715,160,1679.822,,,,,,144,84,0,,,,, +365,19,3,11717,176,1679.822,16,64,B5,pppp,2,144,83,2,,,,, +365,18,1,11716,162,1679.84,,,,,,144,92,0,,,,, +365,20,1,11718,179,1679.84,25,32,C#6,pppp,2,144,85,2,,,,, +365,19,3,11717,176,1679.921,,,,,,144,83,0,,,,, +365,21,3,11719,192,1679.921,48,32,G5,pppp,2,144,79,2,,,,, +365,20,1,11718,179,1679.995,,,,,,144,85,0,,,,, +365,22,1,11720,204,1679.995,16,32,A5,pppp,2,144,81,2,,,,, +365,22,1,11720,204,1680.093,,,,,,144,81,0,,,,, +365,23,1,11721,220,1680.093,18,32,D6,pppp,2,144,86,2,,,,, +365,23,1,11721,220,1680.204,,,,,,144,86,0,,,,, +365,24,1,11722,238,1680.204,18,32,G#6,pppp,2,144,92,2,,,,, +365,21,3,11719,192,1680.217,,,,,,144,79,0,,,,, +365,25,3,11723,240,1680.217,16,64,F#5,pppp,2,144,78,2,,,,, +365,24,1,11722,238,1680.315,,,,,,144,92,0,,,,, +365,25,3,11723,240,1680.315,,,,,,144,78,0,,,,, +365,26,1,11724,256,1680.315,,,,,,176,102,0,,,,, +365,27,3,11725,256,1680.315,,,,,,176,102,0,,,,, +365,28,1,11726,512,1681.894,,,,,,176,102,0,,,,, +365,29,3,11727,512,1681.894,32,32,D#6,pppp,2,144,87,2,,,,, +364,35,4,11695,768,1681.894,,,,,,144,52,0,,,,, +364,36,4,11696,768,1681.894,,,,,,144,54,0,,,,, +365,30,1,11728,528,1681.993,18,32,D7,pppp,2,144,98,2,,,,, +365,31,3,11729,544,1682.092,32,32,B6,pppp,2,144,95,2,,,,, +365,29,3,11727,512,1682.092,,,,,,144,87,0,,,,, +365,30,1,11728,528,1682.104,,,,,,144,98,0,,,,, +365,32,1,11730,546,1682.104,17,32,F7,pppp,2,144,101,2,,,,, +365,32,1,11730,546,1682.209,,,,,,144,101,0,,,,, +365,33,1,11731,563,1682.209,16,32,D7,pppp,2,144,98,2,,,,, +365,31,3,11729,544,1682.289,,,,,,144,95,0,,,,, +365,34,3,11732,576,1682.289,21,32,C7,pppp,2,144,96,2,,,,, +365,33,1,11731,563,1682.307,,,,,,144,98,0,,,,, +365,35,1,11733,579,1682.307,18,32,F7,pppp,2,144,101,2,,,,, +365,34,3,11732,576,1682.418,,,,,,144,96,0,,,,, +365,35,1,11733,579,1682.418,,,,,,144,101,0,,,,, +365,36,1,11734,597,1682.418,17,32,D7,pppp,2,144,98,2,,,,, +365,37,3,11735,597,1682.418,21,32,B6,pppp,2,144,95,2,,,,, +365,36,1,11734,597,1682.523,,,,,,144,98,0,,,,, +365,38,1,11736,614,1682.523,26,32,G#7,pppp,2,144,104,2,,,,, +365,37,3,11735,597,1682.548,,,,,,144,95,0,,,,, +365,39,3,11737,618,1682.548,22,32,C7,pppp,2,144,96,2,,,,, +365,38,1,11736,614,1682.684,,,,,,144,104,0,,,,, +365,39,3,11737,618,1682.684,,,,,,144,96,0,,,,, +365,40,1,11738,640,1682.684,16,32,C#7,pppp,2,144,97,2,,,,, +365,41,3,11739,640,1682.684,21,32,B6,pppp,2,144,95,2,,,,, +365,40,1,11738,640,1682.782,,,,,,144,97,0,,,,, +365,42,1,11740,656,1682.782,18,32,G#7,pppp,2,144,104,2,,,,, +365,43,3,11741,661,1682.813,21,32,C7,pppp,2,144,96,2,,,,, +365,41,3,11739,640,1682.813,,,,,,144,95,0,,,,, +365,42,1,11740,656,1682.893,,,,,,144,104,0,,,,, +365,44,1,11742,674,1682.893,17,32,C#7,pppp,2,144,97,2,,,,, +365,43,3,11741,661,1682.943,,,,,,144,96,0,,,,, +365,45,3,11743,682,1682.943,22,32,B6,pppp,2,144,95,2,,,,, +365,46,1,11744,691,1682.998,8,64,C#7,,,,,,,,,, +365,44,1,11742,674,1683.048,,,,,,144,97,0,,,,, +365,47,1,11745,699,1683.048,8,64,A6,pppp,2,144,93,2,,,,, +365,48,3,11746,704,1683.078,32,32,G6,pppp,2,144,91,2,,,,, +365,45,3,11743,682,1683.078,,,,,,144,95,0,,,,, +365,49,1,11747,707,1683.097,18,32,A6,,,,,,,,,, +365,47,1,11745,699,1683.208,,,,,,144,93,0,,,,, +365,50,1,11748,725,1683.208,17,32,D7,pppp,2,144,98,2,,,,, +365,48,3,11746,704,1683.276,,,,,,144,91,0,,,,, +365,51,3,11749,736,1683.276,32,32,F#5,pppp,2,144,78,2,,,,, +365,50,1,11748,725,1683.313,,,,,,144,98,0,,,,, +365,52,1,11750,742,1683.313,26,32,G#7,pppp,2,144,104,2,,,,, +365,52,1,11750,742,1683.473,,,,,,144,104,0,,,,, +365,53,1,11751,768,1683.473,16,32,D7,pppp,2,144,98,2,,,,, +365,54,3,11752,768,1683.473,21,32,F#6,pppp,2,144,90,2,,,,, +365,55,4,11753,768,1683.473,,,,,,176,102,0,,,,, +365,51,3,11749,736,1683.473,,,,,,144,78,0,,,,, +364,34,4,11694,768,1683.473,,,,,,144,27,0,,,,, +365,53,1,11751,768,1683.572,,,,,,144,98,0,,,,, +365,56,1,11754,784,1683.572,35,16,C#7,pppp,2,144,97,2,,,,, +365,57,3,11755,789,1683.603,21,32,D#6,pppp,2,144,87,2,,,,, +365,54,3,11752,768,1683.603,,,,,,144,90,0,,,,, +365,57,3,11755,789,1683.732,,,,,,144,87,0,,,,, +365,58,3,11756,810,1683.732,22,32,F#6,pppp,2,144,90,2,,,,, +365,56,1,11754,784,1683.788,,,,,,144,97,0,,,,, +365,59,1,11757,819,1683.788,16,32,G#7,pppp,2,144,104,2,,,,, +365,58,3,11756,810,1683.868,,,,,,144,90,0,,,,, +365,60,3,11758,832,1683.868,,,,,,176,102,0,,,,, +365,59,1,11757,819,1683.886,,,,,,144,104,0,,,,, +365,61,1,11759,835,1683.886,35,16,A6,pppp,2,144,93,2,,,,, +365,61,1,11759,835,1684.102,,,,,,144,93,0,,,,, +365,62,1,11760,870,1684.102,,,,,,176,102,0,,,,, +365,63,0,11761,1023,1684.899,,,,,,176,64,0,,,,,^ +366,0,0,11762,0,1685.052,,,,,,,,,366,,,, +366,2,1,11763,0,1685.052,,,,,,176,102,0,,,,, +366,3,3,11764,0,1685.052,21,32,D6,pppp,2,144,86,2,,,,, +366,4,4,11765,0,1685.052,,,,,,176,102,0,,,,, +366,3,3,11764,0,1685.182,,,,,,144,86,0,,,,, +366,5,3,11766,21,1685.182,21,32,F6,pppp,2,144,89,2,,,,, +366,1,0,11767,0,1685.199,,,,,,176,64,127,,,,,V +366,6,1,11768,25,1685.206,26,32,D#7,pppp,2,144,99,2,,,,, +366,5,3,11766,21,1685.311,,,,,,144,89,0,,,,, +366,7,3,11769,42,1685.311,14,32,D6,pppp,2,144,86,2,,,,, +366,6,1,11768,25,1685.367,,,,,,144,99,0,,,,, +366,8,1,11770,51,1685.367,25,32,B7,pppp,2,144,107,2,,,,, +366,9,3,11771,56,1685.397,14,32,F6,pppp,2,144,89,2,,,,, +366,7,3,11769,42,1685.397,,,,,,144,86,0,,,,, +366,9,3,11771,56,1685.484,,,,,,144,89,0,,,,, +366,10,3,11772,70,1685.484,15,32,D6,pppp,2,144,86,2,,,,, +366,8,1,11770,51,1685.521,,,,,,144,107,0,,,,, +366,11,1,11773,76,1685.521,26,32,C8,pppp,2,144,108,2,,,,, +366,10,3,11772,70,1685.576,,,,,,144,86,0,,,,, +366,12,3,11774,85,1685.576,21,32,F6,pppp,2,144,89,2,,,,, +366,11,1,11773,76,1685.681,,,,,,144,108,0,,,,, +366,13,1,11775,102,1685.681,16,32,B7,pppp,2,144,107,2,,,,, +366,12,3,11774,85,1685.706,,,,,,144,89,0,,,,, +366,14,3,11776,106,1685.706,22,32,G#6,pppp,2,144,92,2,,,,, +366,13,1,11775,102,1685.78,,,,,,144,107,0,,,,, +366,15,1,11777,118,1685.78,18,32,C8,pppp,2,144,108,2,,,,, +366,14,3,11776,106,1685.842,,,,,,144,92,0,,,,, +366,16,3,11778,128,1685.842,21,32,C#6,pppp,2,144,85,2,,,,, +366,15,1,11777,118,1685.891,,,,,,144,108,0,,,,, +366,17,1,11779,136,1685.891,17,32,B7,pppp,2,144,107,2,,,,, +366,16,3,11778,128,1685.971,,,,,,144,85,0,,,,, +366,18,3,11780,149,1685.971,14,32,G#6,pppp,2,144,92,2,,,,, +366,17,1,11779,136,1685.996,,,,,,144,107,0,,,,, +366,19,1,11781,153,1685.996,16,32,C8,pppp,2,144,108,2,,,,, +366,18,3,11780,149,1686.057,,,,,,144,92,0,,,,, +366,20,3,11782,163,1686.057,14,32,C#6,pppp,2,144,85,2,,,,, +366,19,1,11781,153,1686.094,,,,,,144,108,0,,,,, +366,21,1,11783,169,1686.094,18,32,B7,pppp,2,144,107,2,,,,, +366,22,3,11784,177,1686.144,15,32,G#6,pppp,2,144,92,2,,,,, +366,20,3,11782,163,1686.144,,,,,,144,85,0,,,,, +366,21,1,11783,169,1686.205,,,,,,144,107,0,,,,, +366,23,1,11785,187,1686.205,17,32,C8,pppp,2,144,108,2,,,,, +366,24,3,11786,192,1686.236,21,32,G#6,,,,,,,,,, +366,23,1,11785,187,1686.31,,,,,,144,108,0,,,,, +366,25,1,11787,204,1686.31,16,32,B7,pppp,2,144,107,2,,,,, +366,22,3,11784,177,1686.366,,,,,,144,92,0,,,,, +366,26,3,11788,213,1686.366,43,16,C#5,pppp,2,144,73,2,,,,, +366,25,1,11787,204,1686.409,,,,,,144,107,0,,,,, +366,27,1,11789,220,1686.409,26,32,G7,pppp,2,144,103,2,,,,, +366,27,1,11789,220,1686.569,,,,,,144,103,0,,,,, +366,28,1,11790,246,1686.569,10,64,F#7,pppp,2,144,102,2,,,,, +366,26,3,11788,213,1686.631,,,,,,144,73,0,,,,, +366,29,1,11791,256,1686.631,16,32,F#7,,,,,,,,,, +366,30,3,11792,256,1686.631,14,32,A4,pppp,2,144,69,2,,,,, +366,30,3,11792,256,1686.717,,,,,,144,69,0,,,,, +366,31,3,11793,270,1686.717,14,32,F7,pppp,2,144,101,2,,,,, +366,28,1,11790,246,1686.73,,,,,,144,102,0,,,,, +366,32,1,11794,272,1686.73,18,32,B7,pppp,2,144,107,2,,,,, +366,31,3,11793,270,1686.804,,,,,,144,101,0,,,,, +366,33,3,11795,284,1686.804,14,32,D7,pppp,2,144,98,2,,,,, +366,32,1,11794,272,1686.841,,,,,,144,107,0,,,,, +366,34,1,11796,290,1686.841,17,32,G7,pppp,2,144,103,2,,,,, +366,35,3,11797,298,1686.89,22,32,F7,pppp,2,144,101,2,,,,, +366,33,3,11795,284,1686.89,,,,,,144,98,0,,,,, +366,36,1,11798,307,1686.946,8,64,G7,,,,,,,,,, +366,34,1,11796,290,1686.995,,,,,,144,103,0,,,,, +366,37,1,11799,315,1686.995,8,64,F#6,pppp,2,144,90,2,,,,, +366,38,3,11800,320,1687.026,21,32,G#7,pppp,2,144,104,2,,,,, +366,35,3,11797,298,1687.026,,,,,,144,101,0,,,,, +366,39,1,11801,323,1687.044,18,32,F#6,,,,,,,,,, +366,37,1,11799,315,1687.155,,,,,,144,90,0,,,,, +366,38,3,11800,320,1687.155,,,,,,144,104,0,,,,, +366,40,1,11802,341,1687.155,17,32,D#6,pppp,2,144,87,2,,,,, +366,41,3,11803,341,1687.155,14,32,C#6,pppp,2,144,85,2,,,,, +366,41,3,11803,341,1687.242,,,,,,144,85,0,,,,, +366,42,3,11804,355,1687.242,14,32,G#7,pppp,2,144,104,2,,,,, +366,40,1,11802,341,1687.26,,,,,,144,87,0,,,,, +366,43,1,11805,358,1687.26,26,32,B6,pppp,2,144,95,2,,,,, +366,42,3,11804,355,1687.328,,,,,,144,104,0,,,,, +366,44,3,11806,369,1687.328,15,32,C#7,pppp,2,144,97,2,,,,, +366,43,1,11805,358,1687.421,,,,,,144,95,0,,,,, +366,44,3,11806,369,1687.421,,,,,,144,97,0,,,,, +366,45,1,11807,384,1687.421,25,32,G6,pppp,2,144,91,2,,,,, +366,46,3,11808,384,1687.421,,,,,,176,102,0,,,,, +366,45,1,11807,384,1687.575,,,,,,144,91,0,,,,, +366,47,0,11809,409,1687.575,,,,,,176,64,0,,,,,^ +366,48,1,11810,409,1687.575,,,,,,176,102,0,,,,, +366,49,0,11811,409,1687.575,,,,,,,,,,6034,,, +366,51,1,11812,512,1688.21,16,32,D#6,ppp,5,144,87,5,,,,, +366,52,4,11813,512,1688.21,256,4,E3,p,11,144,52,11,,,,, +366,53,4,11814,512,1688.21,256,4,F#3,ppp,5,144,54,5,,,,, +366,54,4,11815,512,1688.21,256,4,D6,f,20,144,86,20,,,,, +366,55,3,11816,512,1688.21,,,,,,176,102,0,,,,, +366,50,0,11817,512,1688.21,,,,,,176,64,127,,,,,V +366,51,1,11812,512,1688.309,,,,,,144,87,0,,,,, +366,56,1,11818,528,1688.309,18,32,F#6,ppp,5,144,90,5,,,,, +366,56,1,11818,528,1688.42,,,,,,144,90,0,,,,, +366,57,1,11819,546,1688.42,17,32,B6,ppp,5,144,95,5,,,,, +366,58,1,11820,563,1688.525,13,64,B6,,,,,,,,,, +366,57,1,11819,546,1688.605,,,,,,144,95,0,,,,, +366,59,1,11821,576,1688.605,12,64,C7,ppp,5,144,96,5,,,,, +366,60,3,11822,576,1688.605,21,32,C#6,ppp,5,144,85,5,,,,, +366,61,1,11823,588,1688.679,8,64,C7,,,,,,,,,, +366,59,1,11821,576,1688.728,,,,,,144,96,0,,,,, +366,62,1,11824,596,1688.728,8,64,G6,ppp,5,144,91,5,,,,, +366,60,3,11822,576,1688.734,,,,,,144,85,0,,,,, +366,63,3,11825,597,1688.734,21,32,G#6,ppp,5,144,92,5,,,,, +366,64,1,11826,604,1688.777,18,32,G6,,,,,,,,,, +366,63,3,11825,597,1688.864,,,,,,144,92,0,,,,, +366,65,3,11827,618,1688.864,22,32,C#6,ppp,5,144,85,5,,,,, +366,62,1,11824,596,1688.888,,,,,,144,91,0,,,,, +366,66,1,11828,622,1688.888,18,32,F#6,ppp,5,144,90,5,,,,, +366,65,3,11827,618,1688.999,,,,,,144,85,0,,,,, +366,66,1,11828,622,1688.999,,,,,,144,90,0,,,,, +366,67,1,11829,640,1688.999,16,32,C7,ppp,5,144,96,5,,,,, +366,68,3,11830,640,1688.999,42,16,A4,ppp,5,144,69,5,,,,, +366,67,1,11829,640,1689.098,,,,,,144,96,0,,,,, +366,69,1,11831,656,1689.098,18,32,D#6,ppp,5,144,87,5,,,,, +366,69,1,11831,656,1689.209,,,,,,144,87,0,,,,, +366,70,1,11832,674,1689.209,17,32,C7,ppp,5,144,96,5,,,,, +366,71,3,11833,682,1689.259,22,32,F6,ppp,5,144,89,5,,,,, +366,68,3,11830,640,1689.259,,,,,,144,69,0,,,,, +366,70,1,11832,674,1689.314,,,,,,144,96,0,,,,, +366,72,1,11834,691,1689.314,25,32,G6,ppp,5,144,91,5,,,,, +366,71,3,11833,682,1689.394,,,,,,144,89,0,,,,, +366,73,3,11835,704,1689.394,21,32,D5,ppp,5,144,74,5,,,,, +366,72,1,11834,691,1689.468,,,,,,144,91,0,,,,, +366,74,1,11836,716,1689.468,16,32,F#6,ppp,5,144,90,5,,,,, +366,73,3,11835,704,1689.524,,,,,,144,74,0,,,,, +366,75,3,11837,725,1689.524,21,32,F6,ppp,5,144,89,5,,,,, +366,74,1,11836,716,1689.567,,,,,,144,90,0,,,,, +366,76,1,11838,732,1689.567,18,32,C7,ppp,5,144,96,5,,,,, +366,75,3,11837,725,1689.653,,,,,,144,89,0,,,,, +366,77,3,11839,746,1689.653,22,32,D5,ppp,5,144,74,5,,,,, +366,76,1,11838,732,1689.678,,,,,,144,96,0,,,,, +366,78,1,11840,750,1689.678,18,32,D#6,ppp,5,144,87,5,,,,, +366,52,4,11813,512,1689.789,,,,,,144,52,0,,,,, +366,53,4,11814,512,1689.789,,,,,,144,54,0,,,,, +366,54,4,11815,512,1689.789,,,,,,144,86,0,,,,, +366,77,3,11839,746,1689.789,,,,,,144,74,0,,,,, +366,79,1,11841,768,1689.789,102,8,D#6,,,,,,,,,, +366,80,3,11842,768,1689.789,,,,,,176,102,0,,,,, +366,81,4,11843,768,1689.789,256,4,C4,ppp,5,144,60,5,,,,, +366,78,1,11840,750,1690.418,,,,,,144,87,0,,,,, +366,82,1,11844,870,1690.418,16,32,D#5,ppp,5,144,75,5,,,,, +366,82,1,11844,870,1690.517,,,,,,144,75,0,,,,, +366,83,1,11845,886,1690.517,18,32,B6,ppp,5,144,95,5,,,,, +366,84,3,11846,896,1690.578,,,,,,176,102,0,,,,, +366,83,1,11845,886,1690.628,,,,,,144,95,0,,,,, +366,85,1,11847,904,1690.628,17,32,C8,ppp,5,144,108,5,,,,, +366,85,1,11847,904,1690.733,,,,,,144,108,0,,,,, +366,86,1,11848,921,1690.733,16,32,B6,ppp,5,144,95,5,,,,, +366,87,3,11849,928,1690.776,16,64,D7,ppp,5,144,98,5,,,,, +366,86,1,11848,921,1690.831,,,,,,144,95,0,,,,, +366,88,1,11850,937,1690.831,18,32,C8,ppp,5,144,108,5,,,,, +366,87,3,11849,928,1690.874,,,,,,144,98,0,,,,, +366,89,3,11851,944,1690.874,16,64,F7,ppp,5,144,101,5,,,,, +366,88,1,11850,937,1690.942,,,,,,144,108,0,,,,, +366,90,1,11852,955,1690.942,17,32,B6,ppp,5,144,95,5,,,,, +366,89,3,11851,944,1690.973,,,,,,144,101,0,,,,, +366,91,3,11853,960,1690.973,16,64,D7,ppp,5,144,98,5,,,,, +366,90,1,11852,955,1691.047,,,,,,144,95,0,,,,, +366,92,1,11854,972,1691.047,26,32,G6,ppp,5,144,91,5,,,,, +366,91,3,11853,960,1691.072,,,,,,144,98,0,,,,, +366,93,3,11855,976,1691.072,16,64,F7,ppp,5,144,101,5,,,,, +366,93,3,11855,976,1691.171,,,,,,144,101,0,,,,, +366,94,3,11856,992,1691.171,16,64,D7,ppp,5,144,98,5,,,,, +366,92,1,11854,972,1691.208,,,,,,144,91,0,,,,, +366,95,1,11857,998,1691.208,26,32,C7,ppp,5,144,96,5,,,,, +366,94,3,11856,992,1691.269,,,,,,144,98,0,,,,, +366,96,3,11858,1008,1691.269,16,64,G#7,ppp,5,144,104,5,,,,, +366,96,3,11858,1008,1691.368,,,,,,144,104,0,,,,, +367,0,0,11859,0,1691.368,,,,,,,,,367,,,, +367,1,1,11860,0,1691.368,102,8,C7,,,,,,,,,, +367,2,3,11861,0,1691.368,,,,,,176,102,0,,,,, +367,3,4,11862,0,1691.368,,,,,,176,102,0,,,,, +366,81,4,11843,768,1691.368,,,,,,144,60,0,,,,, +367,4,3,11863,64,1691.763,96,16,C#6,ppp,5,144,85,5,,,,, +367,5,1,11864,102,1691.997,26,32,G5,ppp,5,144,79,5,,,,, +366,95,1,11857,998,1691.997,,,,,,144,96,0,,,,, +367,5,1,11864,102,1692.157,,,,,,144,79,0,,,,, +367,6,1,11865,128,1692.157,25,32,F#4,ppp,5,144,66,5,,,,, +367,6,1,11865,128,1692.312,,,,,,144,66,0,,,,, +367,7,1,11866,153,1692.312,16,32,B5,ppp,5,144,83,5,,,,, +367,8,3,11867,160,1692.355,96,16,A4,ppp,5,144,69,5,,,,, +367,4,3,11863,64,1692.355,,,,,,144,85,0,,,,, +367,7,1,11866,153,1692.41,,,,,,144,83,0,,,,, +367,9,1,11868,169,1692.41,18,32,G5,ppp,5,144,79,5,,,,, +367,9,1,11868,169,1692.521,,,,,,144,79,0,,,,, +367,10,1,11869,187,1692.521,17,32,F#5,ppp,5,144,78,5,,,,, +367,10,1,11869,187,1692.626,,,,,,144,78,0,,,,, +367,11,1,11870,204,1692.626,16,32,B5,ppp,5,144,83,5,,,,, +367,11,1,11870,204,1692.725,,,,,,144,83,0,,,,, +367,12,1,11871,220,1692.725,18,32,C7,ppp,5,144,96,5,,,,, +367,12,1,11871,220,1692.836,,,,,,144,96,0,,,,, +367,13,1,11872,238,1692.836,18,32,B5,ppp,5,144,83,5,,,,, +367,13,1,11872,238,1692.947,,,,,,144,83,0,,,,, +367,14,1,11873,256,1692.947,16,32,G5,ppp,5,144,79,5,,,,, +367,15,3,11874,256,1692.947,128,8,C#5,ppp,5,144,73,5,,,,, +367,16,4,11875,256,1692.947,,,,,,176,102,0,,,,, +367,8,3,11867,160,1692.947,,,,,,144,69,0,,,,, +367,14,1,11873,256,1693.046,,,,,,144,79,0,,,,, +367,17,1,11876,272,1693.046,18,32,F#4,ppp,5,144,66,5,,,,, +367,17,1,11876,272,1693.157,,,,,,144,66,0,,,,, +367,18,1,11877,290,1693.157,17,32,G5,ppp,5,144,79,5,,,,, +367,18,1,11877,290,1693.261,,,,,,144,79,0,,,,, +367,19,1,11878,307,1693.261,25,32,F#4,ppp,5,144,66,5,,,,, +367,19,1,11878,307,1693.416,,,,,,144,66,0,,,,, +367,20,1,11879,332,1693.416,16,32,D#4,ppp,5,144,63,5,,,,, +367,20,1,11879,332,1693.514,,,,,,144,63,0,,,,, +367,21,1,11880,348,1693.514,18,32,B4,ppp,5,144,71,5,,,,, +367,21,1,11880,348,1693.625,,,,,,144,71,0,,,,, +367,22,1,11881,366,1693.625,18,32,C6,ppp,5,144,84,5,,,,, +367,22,1,11881,366,1693.736,,,,,,144,84,0,,,,, +367,23,1,11882,384,1693.736,25,32,G4,ppp,5,144,67,5,,,,, +367,24,3,11883,384,1693.736,64,16,A4,ppp,5,144,69,5,,,,, +367,25,4,11884,384,1693.736,42,16,F#3,pp,8,144,54,8,,,,, +367,15,3,11874,256,1693.736,,,,,,144,73,0,,,,, +367,23,1,11882,384,1693.891,,,,,,144,67,0,,,,, +367,26,1,11885,409,1693.891,103,8,F#4,ppp,5,144,66,5,,,,, +367,27,4,11886,426,1693.995,43,16,A3,pp+,9,144,57,9,,,,, +367,25,4,11884,384,1693.995,,,,,,144,54,0,,,,, +367,24,3,11883,384,1694.131,,,,,,144,69,0,,,,, +367,28,3,11887,448,1694.131,64,16,A2,ff,22,144,45,22,,,,, +367,29,4,11888,469,1694.261,43,16,F4,p,11,144,65,11,,,,, +367,27,4,11886,426,1694.336,,,,,,144,57,0,,,,, +367,30,0,11889,512,1694.376,,,,,,176,64,0,,,,,^ +367,29,4,11888,469,1694.526,,,,,,144,65,0,,,,, +367,32,1,11890,512,1694.526,,,,,,176,102,0,,,,, +367,33,3,11891,512,1694.526,256,4,A2,,,,,,,,,, +367,34,4,11892,512,1694.526,21,32,C4,ppp,5,144,60,5,,,,, +367,26,1,11885,409,1694.601,,,,,,144,66,0,,,,, +367,35,4,11893,533,1694.655,64,16,C4,,,,,,,,,, +367,36,4,11894,533,1694.655,64,16,E5,ppp,5,144,76,5,,,,, +367,31,0,11895,512,1694.676,,,,,,176,64,127,,,,,V +367,37,4,11896,597,1695.05,43,16,C4,,,,,,,,,, +367,38,4,11897,597,1695.05,64,16,E5,,,,,,,,,, +367,39,4,11898,640,1695.315,384,4,C4,,,,,,,,,, +367,40,4,11899,640,1695.315,256,4,E5,,,,,,,,,, +367,41,1,11900,768,1696.105,28,32,C7,pppp,2,144,96,2,,,,, +367,42,3,11901,768,1696.105,,,,,,176,102,0,,,,, +367,28,3,11887,448,1696.18,,,,,,144,45,0,,,,, +367,41,1,11900,768,1696.277,,,,,,144,96,0,,,,, +367,43,1,11902,796,1696.277,43,32,D#6,pppp,2,144,87,2,,,,, +367,44,3,11903,819,1696.419,,,,,,176,102,0,,,,, +367,45,3,11904,835,1696.518,18,32,D6,pppp,2,144,86,2,,,,, +367,43,1,11902,796,1696.543,,,,,,144,87,0,,,,, +367,46,1,11905,839,1696.543,42,32,B6,pppp,2,144,95,2,,,,, +367,45,3,11904,835,1696.629,,,,,,144,86,0,,,,, +367,47,3,11906,853,1696.629,17,32,F6,pppp,2,144,89,2,,,,, +367,47,3,11906,853,1696.734,,,,,,144,89,0,,,,, +367,48,3,11907,870,1696.734,16,32,D6,pppp,2,144,86,2,,,,, +367,46,1,11905,839,1696.802,,,,,,144,95,0,,,,, +367,49,1,11908,881,1696.802,29,32,C7,pppp,2,144,96,2,,,,, +367,48,3,11907,870,1696.833,,,,,,144,86,0,,,,, +367,50,3,11909,886,1696.833,18,32,G#6,pppp,2,144,92,2,,,,, +367,50,3,11909,886,1696.944,,,,,,144,92,0,,,,, +367,51,3,11910,904,1696.944,17,32,C#6,pppp,2,144,85,2,,,,, +367,52,1,11911,910,1696.981,28,32,G6,pppp,2,144,91,2,,,,, +367,49,1,11908,881,1696.981,,,,,,144,96,0,,,,, +367,36,4,11894,533,1697.024,,,,,,144,76,0,,,,, +367,51,3,11910,904,1697.048,,,,,,144,85,0,,,,, +367,53,3,11912,921,1697.048,26,32,G#6,pppp,2,144,92,2,,,,, +367,52,1,11911,910,1697.153,,,,,,144,91,0,,,,, +367,54,1,11913,938,1697.153,29,32,F#6,pppp,2,144,90,2,,,,, +367,53,3,11912,921,1697.209,,,,,,144,92,0,,,,, +367,55,3,11914,947,1697.209,25,32,C#6,pppp,2,144,85,2,,,,, +367,54,1,11913,938,1697.332,,,,,,144,90,0,,,,, +367,56,1,11915,967,1697.332,28,32,G6,pppp,2,144,91,2,,,,, +367,55,3,11914,947,1697.363,,,,,,144,85,0,,,,, +367,57,3,11916,972,1697.363,52,16,A5,pppp,2,144,81,2,,,,, +367,56,1,11915,967,1697.505,,,,,,144,91,0,,,,, +367,58,1,11917,995,1697.505,29,32,F#6,pppp,2,144,90,2,,,,, +367,59,0,11918,1023,1697.606,,,,,,176,64,0,,,,,^ +367,34,4,11892,512,1697.684,,,,,,144,60,0,,,,, +367,57,3,11916,972,1697.684,,,,,,144,81,0,,,,, +367,58,1,11917,995,1697.684,,,,,,144,90,0,,,,, +368,0,0,11919,0,1697.684,,,,,,,,,368,,,, +368,1,0,11920,0,1697.684,,,,,,,,,,6035,,, +368,2,0,11921,0,1697.684,,,,,,,,,,,44,, +368,4,1,11922,,1697.684,,8,D6,ff,22,144,86,22,,,,g, +368,8,3,11923,,1697.684,,8,G#3,ppp,5,144,56,5,,,,g, +368,4,1,11922,,1697.734,,,,,,144,86,0,,,,, +368,8,3,11923,,1697.734,,,,,,144,56,0,,,,, +368,5,1,11924,0,1697.834,512,2,A5,ff,22,144,81,22,,,,, +368,6,1,11925,0,1697.834,512,2,D6,ff,22,144,86,22,,,,, +368,7,2,11926,0,1697.834,153,8,C#6,ppp,5,144,85,5,,,,, +368,9,3,11927,0,1697.834,25,32,G#3,,,,,,,,,, +368,3,0,11928,0,1697.906,,,,,,176,64,127,,,,,V +368,10,3,11929,25,1697.967,26,32,D4,ppp+,6,144,62,6,,,,, +368,10,3,11929,25,1698.105,,,,,,144,62,0,,,,, +368,11,3,11930,51,1698.105,25,32,G#3,pp-,7,144,56,7,,,,, +368,11,3,11930,51,1698.239,,,,,,144,56,0,,,,, +368,12,3,11931,76,1698.239,52,16,D4,pp,8,144,62,8,,,,, +368,12,3,11931,76,1698.515,,,,,,144,62,0,,,,, +368,13,3,11932,128,1698.515,51,16,G#3,pp+,9,144,56,9,,,,, +368,7,2,11926,0,1698.649,,,,,,144,85,0,,,,, +368,14,2,11933,153,1698.649,103,8,C#6,pp,8,144,85,8,,,,, +368,15,3,11934,179,1698.787,25,32,D4,p-,10,144,62,10,,,,, +368,13,3,11932,128,1698.787,,,,,,144,56,0,,,,, +368,15,3,11934,179,1698.92,,,,,,144,62,0,,,,, +368,16,3,11935,204,1698.92,26,32,G#3,p,11,144,56,11,,,,, +368,16,3,11935,204,1699.059,,,,,,144,56,0,,,,, +368,17,3,11936,230,1699.059,26,32,D4,p,11,144,62,11,,,,, +368,18,2,11937,256,1699.197,128,8,C#6,,,,,,,,,, +368,19,3,11938,256,1699.197,179,8,D4,,,,,,,,,, +368,20,2,11939,384,1699.879,128,8,C#6,p,11,144,85,11,,,,, +368,14,2,11933,153,1699.879,,,,,,144,85,0,,,,, +368,17,3,11936,230,1700.151,,,,,,144,62,0,,,,, +368,21,3,11940,435,1700.151,25,32,G#3,mf,17,144,56,17,,,,, +368,21,3,11940,435,1700.284,,,,,,144,56,0,,,,, +368,22,3,11941,460,1700.284,52,16,D4,mf,17,144,62,17,,,,, +368,20,2,11939,384,1700.561,,,,,,144,85,0,,,,, +368,22,3,11941,460,1700.561,,,,,,144,62,0,,,,, +368,23,1,11942,512,1700.561,,,,,,176,102,0,,,,, +368,24,2,11943,512,1700.561,25,32,C5,mf+,18,144,72,18,,,,, +368,25,3,11944,512,1700.561,,,,,,176,102,0,,,,, +368,5,1,11924,0,1700.561,,,,,,144,81,0,,,,, +368,6,1,11925,0,1700.561,,,,,,144,86,0,,,,, +368,24,2,11943,512,1700.694,,,,,,144,72,0,,,,, +368,26,2,11945,537,1700.694,51,16,E5,f-,19,144,76,19,,,,, +368,26,2,11945,537,1700.966,,,,,,144,76,0,,,,, +368,27,2,11946,588,1700.966,13,64,C#6,f,20,144,85,20,,,,, +368,27,2,11946,588,1701.035,,,,,,144,85,0,,,,, +368,28,2,11947,601,1701.035,13,64,G#2,f+,21,144,44,21,,,,, +368,28,2,11947,601,1701.104,,,,,,144,44,0,,,,, +368,29,2,11948,614,1701.104,13,64,D3,f+,21,144,50,21,,,,, +368,29,2,11948,614,1701.174,,,,,,144,50,0,,,,, +368,30,2,11949,627,1701.174,13,64,C5,f+,21,144,72,21,,,,, +368,30,2,11949,627,1701.243,,,,,,144,72,0,,,,, +368,31,2,11950,640,1701.243,76,16,E5,ff,22,144,76,22,,,,, +368,32,1,11951,704,1701.584,64,16,F7,f,20,144,101,20,,,,, +368,31,2,11950,640,1701.648,,,,,,144,76,0,,,,, +368,33,2,11952,716,1701.648,,,,,,176,102,0,,,,, +368,34,3,11953,736,1701.754,32,32,E3,fff,24,144,52,23,,,,, +368,34,3,11953,736,1701.925,,,,,,144,52,0,,,,, +368,35,1,11954,768,1701.925,224,8,F7,,,,,,,,,, +368,36,2,11955,768,1701.925,,,,,,176,102,0,,,,, +368,37,3,11956,768,1701.925,32,32,A#1,fff,24,144,34,23,,,,, +368,38,3,11957,768,1701.925,32,32,E3,fff,24,144,52,23,,,,, +368,37,3,11956,768,1702.095,,,,,,144,34,0,,,,, +368,38,3,11957,768,1702.095,,,,,,144,52,0,,,,, +368,39,3,11958,800,1702.095,96,16,A#1,fff,24,144,34,23,,,,, +368,40,3,11959,800,1702.095,64,16,F#2,fff,24,144,42,23,,,,, +368,40,3,11959,800,1702.436,,,,,,144,42,0,,,,, +368,41,3,11960,896,1702.606,128,8,F#2,f+,21,144,42,21,,,,, +368,39,3,11958,800,1702.681,,,,,,144,34,0,,,,, +368,43,0,11961,1011,1703.069,,,,,,176,64,0,,,,,^ +368,42,1,11962,992,1703.118,32,32,F7,f,20,144,101,20,,,,, +368,32,1,11951,704,1703.193,,,,,,144,101,0,,,,, +368,41,3,11960,896,1703.288,,,,,,144,42,0,,,,, +368,42,1,11962,992,1703.288,,,,,,144,101,0,,,,, +369,1,0,11963,0,1703.288,,,,,,,,,369,,,, +369,0,3,11964,0,1703.288,,,,,,176,102,0,,,,, +369,2,1,11965,0,1703.288,512,2,E5,ff,22,144,76,22,,,,, +369,3,1,11966,0,1703.288,512,2,F7,ff,22,144,101,22,,,,, +369,4,2,11967,0,1703.288,56,16,E6,ppp,5,144,88,5,,,,, +368,43,0,11968,1011,1703.369,,,,,,176,64,127,,,,,V +369,4,2,11967,0,1703.587,,,,,,144,88,0,,,,, +369,5,2,11969,56,1703.587,114,8,G#4,ppp,5,144,68,5,,,,, +369,5,2,11969,56,1704.194,,,,,,144,68,0,,,,, +369,6,2,11970,170,1704.194,,,,,,176,102,0,,,,, +369,7,2,11971,199,1704.348,28,32,C#6,ppp,5,144,85,5,,,,, +369,7,2,11971,199,1704.497,,,,,,144,85,0,,,,, +369,8,2,11972,227,1704.497,29,32,G5,ppp,5,144,79,5,,,,, +369,8,2,11972,227,1704.652,,,,,,144,79,0,,,,, +369,9,3,11973,256,1704.652,448,4,D#1,pp,8,144,27,8,,,,, +369,10,2,11974,256,1704.652,28,32,C#6,ppp,5,144,85,5,,,,, +369,10,2,11974,256,1704.801,,,,,,144,85,0,,,,, +369,11,2,11975,284,1704.801,28,32,G5,ppp,5,144,79,5,,,,, +369,11,2,11975,284,1704.95,,,,,,144,79,0,,,,, +369,12,2,11976,312,1704.95,29,32,C#6,ppp,5,144,85,5,,,,, +369,12,2,11976,312,1705.105,,,,,,144,85,0,,,,, +369,13,2,11977,341,1705.105,85,16,E6,ppp,5,144,88,5,,,,, +369,14,2,11978,426,1705.557,29,32,G4,ppp,5,144,67,5,,,,, +369,13,2,11977,341,1705.632,,,,,,144,88,0,,,,, +369,14,2,11978,426,1705.712,,,,,,144,67,0,,,,, +369,15,2,11979,455,1705.712,57,16,E6,ppp,5,144,88,5,,,,, +369,15,2,11979,455,1706.015,,,,,,144,88,0,,,,, +369,16,1,11980,512,1706.015,,,,,,176,102,0,,,,, +369,17,2,11981,512,1706.015,28,32,C#6,ppp,5,144,85,5,,,,, +369,2,1,11965,0,1706.09,,,,,,144,76,0,,,,, +369,3,1,11966,0,1706.09,,,,,,144,101,0,,,,, +369,17,2,11981,512,1706.165,,,,,,144,85,0,,,,, +369,18,2,11982,540,1706.165,28,32,G4,ppp,5,144,67,5,,,,, +369,18,2,11982,540,1706.314,,,,,,144,67,0,,,,, +369,19,2,11983,568,1706.314,29,32,E6,ppp,5,144,88,5,,,,, +369,19,2,11983,568,1706.468,,,,,,144,88,0,,,,, +369,20,2,11984,597,1706.468,85,16,C5,ppp,5,144,72,5,,,,, +369,21,1,11985,640,1706.697,128,8,C#5,f,20,144,73,20,,,,, +369,22,2,11986,682,1706.921,29,32,G4,ppp,5,144,67,5,,,,, +369,20,2,11984,597,1706.921,,,,,,144,72,0,,,,, +369,23,3,11987,704,1707.038,64,16,A#2,p,11,144,46,11,,,,, +369,21,1,11985,640,1707.076,,,,,,144,73,0,,,,, +369,22,2,11986,682,1707.076,,,,,,144,67,0,,,,, +369,24,2,11988,711,1707.076,28,32,C#5,ppp,5,144,73,5,,,,, +369,9,3,11973,256,1707.113,,,,,,144,27,0,,,,, +369,25,2,11989,739,1707.225,29,32,G4,ppp,5,144,67,5,,,,, +369,25,2,11989,739,1707.379,,,,,,144,67,0,,,,, +369,26,1,11990,768,1707.379,192,8,C#5,,,,,,,,,, +369,27,2,11991,768,1707.379,170,8,E5,ppp,5,144,76,5,,,,, +369,28,3,11992,768,1707.379,64,16,A#2,,,,,,,,,, +369,23,3,11987,704,1707.72,,,,,,144,46,0,,,,, +369,29,3,11993,832,1707.72,25,32,A4,p,11,144,69,11,,,,, +369,29,3,11993,832,1707.853,,,,,,144,69,0,,,,, +369,30,3,11994,857,1707.853,26,32,F2,p-,10,144,41,10,,,,, +369,30,3,11994,857,1707.992,,,,,,144,41,0,,,,, +369,31,3,11995,883,1707.992,25,32,A5,pp,8,144,81,8,,,,, +369,31,3,11995,883,1708.125,,,,,,144,81,0,,,,, +369,32,3,11996,908,1708.125,26,32,F2,pp-,7,144,41,7,,,,, +369,32,3,11996,908,1708.263,,,,,,144,41,0,,,,, +369,33,3,11997,934,1708.263,26,32,C#2,ppp,5,144,37,5,,,,, +369,34,2,11998,938,1708.285,57,16,G4,ppp,5,144,67,5,,,,, +369,27,2,11991,768,1708.285,,,,,,144,76,0,,,,, +369,35,1,11999,960,1708.402,64,16,A#3,ppp,5,144,58,5,,,,, +369,36,3,12000,960,1708.402,64,16,C#2,,,,,,,,,, +369,24,2,11988,711,1708.402,,,,,,144,73,0,,,,, +369,34,2,11998,938,1708.588,,,,,,144,67,0,,,,, +369,37,2,12001,995,1708.588,29,32,E6,p,11,144,88,11,,,,, +370,0,0,12002,0,1708.743,,,,,,,,,370,,,, +370,1,1,12003,0,1708.743,256,4,A#3,,,,,,,,,, +370,2,2,12004,0,1708.743,56,16,E6,,,,,,,,,, +370,3,3,12005,0,1708.743,256,4,C#2,,,,,,,,,, +370,4,4,12006,0,1708.743,,,,,,176,102,0,,,,, +369,37,2,12001,995,1709.041,,,,,,144,88,0,,,,, +370,5,2,12007,56,1709.041,29,32,G3,ppp,5,144,55,5,,,,, +370,5,2,12007,56,1709.196,,,,,,144,55,0,,,,, +370,6,2,12008,85,1709.196,28,32,E5,ppp,5,144,76,5,,,,, +370,6,2,12008,85,1709.345,,,,,,144,76,0,,,,, +370,7,2,12009,113,1709.345,86,16,C4,ppp,5,144,60,5,,,,, +370,7,2,12009,113,1709.803,,,,,,144,60,0,,,,, +370,8,2,12010,199,1709.803,28,32,G#3,ppp,5,144,56,5,,,,, +370,8,2,12010,199,1709.952,,,,,,144,56,0,,,,, +370,9,2,12011,227,1709.952,29,32,C4,ppp,5,144,60,5,,,,, +370,10,0,12012,256,1710.031,,,,,,176,64,0,,,,,^ +369,33,3,11997,934,1710.106,,,,,,144,37,0,,,,, +369,35,1,11999,960,1710.106,,,,,,144,58,0,,,,, +370,9,2,12011,227,1710.106,,,,,,144,60,0,,,,, +370,11,1,12013,256,1710.106,28,32,G#3,ppp,5,144,56,5,,,,, +370,12,2,12014,256,1710.106,,,,,,176,102,0,,,,, +370,13,3,12015,,1710.106,,8,E2,f,20,144,40,20,,,,g, +370,13,3,12015,,1710.156,,,,,,144,40,0,,,,, +370,14,3,12016,,1710.181,,8,A#1,f,20,144,34,20,,,,g, +370,14,3,12016,,1710.231,,,,,,144,34,0,,,,, +370,11,1,12013,256,1710.256,,,,,,144,56,0,,,,, +370,15,3,12017,256,1710.256,21,32,A1,f,20,144,33,20,,,,, +370,16,4,12018,256,1710.256,,,,,,176,102,0,,,,, +370,10,0,12019,256,1710.331,,,,,,176,64,127,,,,,V +370,15,3,12017,256,1710.368,,,,,,144,33,0,,,,, +370,17,3,12020,277,1710.368,21,32,F2,mp,14,144,41,14,,,,, +370,18,1,12021,284,1710.406,28,32,C4,ppp+,6,144,60,6,,,,, +370,17,3,12020,277,1710.48,,,,,,144,41,0,,,,, +370,19,3,12022,298,1710.48,22,32,E2,p,11,144,40,11,,,,, +370,20,1,12023,312,1710.555,29,32,G#3,ppp+,6,144,56,6,,,,, +370,18,1,12021,284,1710.555,,,,,,144,60,0,,,,, +370,19,3,12022,298,1710.597,,,,,,144,40,0,,,,, +370,21,3,12024,320,1710.597,21,32,A#1,p-,10,144,34,10,,,,, +370,20,1,12023,312,1710.709,,,,,,144,56,0,,,,, +370,21,3,12024,320,1710.709,,,,,,144,34,0,,,,, +370,22,1,12025,341,1710.709,16,64,G2,pp-,7,144,43,7,,,,, +370,23,3,12026,341,1710.709,21,32,A1,pp,8,144,33,8,,,,, +370,22,1,12025,341,1710.794,,,,,,144,43,0,,,,, +370,24,1,12027,357,1710.794,17,64,C#5,pp-,7,144,73,7,,,,, +370,23,3,12026,341,1710.821,,,,,,144,33,0,,,,, +370,25,3,12028,362,1710.821,22,32,F2,pp-,7,144,41,7,,,,, +370,24,1,12027,357,1710.885,,,,,,144,73,0,,,,, +370,26,1,12029,374,1710.885,17,64,E6,pp-,7,144,88,7,,,,, +370,25,3,12028,362,1710.938,,,,,,144,41,0,,,,, +370,27,3,12030,384,1710.938,128,8,C#2,ppp,5,144,37,5,,,,, +370,26,1,12029,374,1710.976,,,,,,144,88,0,,,,, +370,28,1,12031,391,1710.976,17,64,C5,pp,8,144,72,8,,,,, +370,28,1,12031,391,1711.066,,,,,,144,72,0,,,,, +370,29,1,12032,408,1711.066,18,64,G#4,pp,8,144,68,8,,,,, +370,29,1,12032,408,1711.162,,,,,,144,68,0,,,,, +370,30,1,12033,426,1711.162,57,16,C5,pp,8,144,72,8,,,,, +370,30,1,12033,426,1711.466,,,,,,144,72,0,,,,, +370,31,1,12034,483,1711.466,29,32,G#3,pp+,9,144,56,9,,,,, +370,32,0,12035,483,1711.466,,,,,,,,,,6036,,, +370,27,3,12030,384,1711.62,,,,,,144,37,0,,,,, +370,31,1,12034,483,1711.62,,,,,,144,56,0,,,,, +370,33,1,12036,512,1711.62,28,32,G2,p-,10,144,43,10,,,,, +370,34,2,12037,512,1711.62,,,,,,176,102,0,,,,, +370,35,3,12038,512,1711.62,,,,,,176,102,0,,,,, +370,33,1,12036,512,1711.769,,,,,,144,43,0,,,,, +370,36,1,12039,540,1711.769,28,32,G#3,p-,10,144,56,10,,,,, +370,36,1,12039,540,1711.918,,,,,,144,56,0,,,,, +370,37,1,12040,568,1711.918,29,32,C#5,p,11,144,73,11,,,,, +370,37,1,12040,568,1712.073,,,,,,144,73,0,,,,, +370,38,1,12041,597,1712.073,57,16,E6,p,11,144,88,11,,,,, +370,38,1,12041,597,1712.376,,,,,,144,88,0,,,,, +370,39,1,12042,654,1712.376,,,,,,176,102,0,,,,, +370,40,0,12043,689,1712.413,,,,,,176,64,0,,,,,^ +370,40,0,12044,689,1712.713,,,,,,176,64,127,,,,,V +370,41,1,12045,,1712.984,,8,E4,f,20,144,64,20,,,,g, +370,41,1,12045,,1713.034,,,,,,144,64,0,,,,, +370,42,1,12046,768,1713.059,128,8,B4,f,20,144,71,20,,,,, +370,45,3,12047,,1713.059,,8,F#2,p,11,144,42,11,,,,g, +370,45,3,12047,,1713.109,,,,,,144,42,0,,,,, +370,46,3,12048,,1713.134,,8,B5,p,11,144,83,11,,,,g, +370,46,3,12048,,1713.184,,,,,,144,83,0,,,,, +370,47,3,12049,,1713.209,,8,D6,f,20,144,86,20,,,,g, +370,47,3,12049,,1713.259,,,,,,144,86,0,,,,, +370,48,3,12050,,1713.284,,8,A#1,p,11,144,34,11,,,,g, +370,48,3,12050,,1713.334,,,,,,144,34,0,,,,, +370,42,1,12046,768,1713.359,,,,,,144,71,0,,,,, +370,43,3,12051,,1713.359,,8,B4,p,11,144,71,11,,,,g, +370,44,3,12052,,1713.434,,8,E3,p,11,144,52,11,,,,g, +370,44,3,12052,,1713.484,,,,,,144,52,0,,,,, +370,49,3,12053,768,1713.509,170,8,C4,ppp,5,144,60,5,,,,, +370,43,3,12051,,1713.74,,,,,,144,71,0,,,,, +370,50,1,12054,,1714.19,,8,F#6,ppp,5,144,90,5,,,,g, +370,50,1,12054,,1714.24,,,,,,144,90,0,,,,, +370,51,1,12055,,1714.265,,8,G#5,ppp,5,144,80,5,,,,g, +370,51,1,12055,,1714.315,,,,,,144,80,0,,,,, +370,52,1,12056,,1714.34,,8,D7,ppp,5,144,98,5,,,,g, +370,52,1,12056,,1714.39,,,,,,144,98,0,,,,, +370,49,3,12053,768,1714.414,,,,,,144,60,0,,,,, +370,53,1,12057,,1714.415,,8,D#6,ppp,5,144,87,5,,,,g, +370,53,1,12057,,1714.465,,,,,,144,87,0,,,,, +370,54,1,12058,,1714.49,,8,A#7,ppp,5,144,106,5,,,,g, +370,54,1,12058,,1714.54,,,,,,144,106,0,,,,, +370,55,1,12059,896,1714.565,36,32,B4,mp,14,144,71,14,,,,, +370,55,1,12059,896,1714.757,,,,,,144,71,0,,,,, +370,56,1,12060,932,1714.757,37,32,D5,p+,12,144,74,12,,,,, +370,57,3,12061,938,1714.789,16,64,E5,ppp,5,144,76,5,,,,, +370,57,3,12061,938,1714.874,,,,,,144,76,0,,,,, +370,58,3,12062,954,1714.874,17,64,C4,ppp,5,144,60,5,,,,, +370,56,1,12060,932,1714.954,,,,,,144,74,0,,,,, +370,59,1,12063,969,1714.954,18,64,E4,p-,10,144,64,10,,,,, +370,58,3,12062,954,1714.965,,,,,,144,60,0,,,,, +370,60,3,12064,971,1714.965,17,64,G#3,ppp,5,144,56,5,,,,, +370,59,1,12063,969,1715.05,,,,,,144,64,0,,,,, +370,61,1,12065,987,1715.05,18,64,B4,pp+,9,144,71,9,,,,, +370,60,3,12064,971,1715.056,,,,,,144,56,0,,,,, +370,62,3,12066,988,1715.056,17,64,C4,ppp,5,144,60,5,,,,, +370,61,1,12065,987,1715.146,,,,,,144,71,0,,,,, +370,62,3,12066,988,1715.146,,,,,,144,60,0,,,,, +370,63,1,12067,1005,1715.146,19,64,D5,pp,8,144,74,8,,,,, +370,64,3,12068,1005,1715.146,19,64,G#3,ppp,5,144,56,5,,,,, +371,5,0,12069,16,1715.183,,,,,,176,64,0,,,,,^ +370,63,1,12067,1005,1715.247,,,,,,144,74,0,,,,, +370,64,3,12068,1005,1715.247,,,,,,144,56,0,,,,, +371,0,0,12070,0,1715.247,,,,,,,,,371,,,, +371,1,1,12071,0,1715.247,28,32,C#5,ppp,5,144,73,5,,,,, +371,2,2,12072,0,1715.247,,,,,,176,102,0,,,,, +371,3,3,12073,0,1715.247,,,,,,176,102,0,,,,, +371,4,4,12074,0,1715.247,,,,,,176,102,0,,,,, +371,1,1,12071,0,1715.396,,,,,,144,73,0,,,,, +371,6,1,12075,28,1715.396,28,32,G4,ppp+,6,144,67,6,,,,, +371,7,4,12076,36,1715.439,37,32,F#3,pp,8,144,54,8,,,,, +371,5,0,12077,16,1715.483,,,,,,176,64,127,,,,,V +371,6,1,12075,28,1715.546,,,,,,144,67,0,,,,, +371,8,1,12078,56,1715.546,29,32,C#6,ppp+,6,144,85,6,,,,, +371,7,4,12076,36,1715.636,,,,,,144,54,0,,,,, +371,9,4,12079,73,1715.636,36,32,A#2,pp-,7,144,46,7,,,,, +371,8,1,12078,56,1715.7,,,,,,144,85,0,,,,, +371,10,1,12080,85,1715.7,57,16,E6,pp-,7,144,88,7,,,,, +371,9,4,12079,73,1715.828,,,,,,144,46,0,,,,, +371,11,4,12081,109,1715.828,37,32,F#3,ppp,5,144,54,5,,,,, +371,10,1,12080,85,1716.004,,,,,,144,88,0,,,,, +371,12,1,12082,142,1716.004,28,32,C5,pp,8,144,72,8,,,,, +371,11,4,12081,109,1716.025,,,,,,144,54,0,,,,, +371,13,4,12083,146,1716.025,110,16,A#2,ppp-,4,144,46,4,,,,, +371,12,1,12082,142,1716.153,,,,,,144,72,0,,,,, +371,14,1,12084,170,1716.153,16,64,C#6,pp+,9,144,85,9,,,,, +371,14,1,12084,170,1716.238,,,,,,144,85,0,,,,, +371,15,1,12085,186,1716.238,17,64,G4,pp+,9,144,67,9,,,,, +371,15,1,12085,186,1716.329,,,,,,144,67,0,,,,, +371,16,1,12086,203,1716.329,17,64,E7,p-,10,144,100,10,,,,, +371,16,1,12086,203,1716.419,,,,,,144,100,0,,,,, +371,17,1,12087,220,1716.419,17,64,C6,p-,10,144,84,10,,,,, +371,17,1,12087,220,1716.51,,,,,,144,84,0,,,,, +371,18,1,12088,237,1716.51,19,64,G#4,p,11,144,68,11,,,,, +371,13,4,12083,146,1716.611,,,,,,144,46,0,,,,, +371,18,1,12088,237,1716.611,,,,,,144,68,0,,,,, +371,19,1,12089,256,1716.611,28,32,C#5,p,11,144,73,11,,,,, +371,20,3,12090,256,1716.611,,,,,,176,102,0,,,,, +371,21,4,12091,256,1716.611,,,,,,176,102,0,,,,, +371,19,1,12089,256,1716.76,,,,,,144,73,0,,,,, +371,22,1,12092,284,1716.76,28,32,G2,p+,12,144,43,12,,,,, +371,22,1,12092,284,1716.909,,,,,,144,43,0,,,,, +371,23,1,12093,312,1716.909,29,32,E6,mp-,13,144,88,13,,,,, +371,23,1,12093,312,1717.064,,,,,,144,88,0,,,,, +371,24,1,12094,341,1717.064,16,64,G1,mp-,13,144,31,13,,,,, +371,24,1,12094,341,1717.149,,,,,,144,31,0,,,,, +371,25,1,12095,357,1717.149,17,64,C#5,mp,14,144,73,14,,,,, +371,25,1,12095,357,1717.239,,,,,,144,73,0,,,,, +371,26,1,12096,374,1717.239,52,32,E5,mp,14,144,76,14,,,,, +371,27,3,12097,384,1717.293,18,64,E1,ff,22,144,28,22,,,,, +371,28,4,12098,384,1717.293,,,,,,176,102,0,,,,, +371,27,3,12097,384,1717.389,,,,,,144,28,0,,,,, +371,29,3,12099,402,1717.389,18,64,A#0,f-,19,144,22,19,,,,, +371,29,3,12099,402,1717.485,,,,,,144,22,0,,,,, +371,30,3,12100,420,1717.485,18,64,A0,mf-,16,144,21,16,,,,, +371,26,1,12096,374,1717.516,,,,,,144,76,0,,,,, +371,31,1,12101,426,1717.516,16,64,C2,mp,14,144,36,14,,,,, +371,30,3,12100,420,1717.58,,,,,,144,21,0,,,,, +371,32,3,12102,438,1717.58,19,64,F1,mp,14,144,29,14,,,,, +371,31,1,12101,426,1717.602,,,,,,144,36,0,,,,, +371,33,1,12103,442,1717.602,17,64,E2,mp,14,144,40,14,,,,, +371,34,3,12104,457,1717.682,18,64,C#1,p,11,144,25,11,,,,, +371,32,3,12102,438,1717.682,,,,,,144,29,0,,,,, +371,33,1,12103,442,1717.692,,,,,,144,40,0,,,,, +371,35,1,12105,459,1717.692,17,64,G#1,mp,14,144,32,14,,,,, +371,34,3,12104,457,1717.777,,,,,,144,25,0,,,,, +371,36,3,12106,475,1717.777,18,64,F1,pp,8,144,29,8,,,,, +371,35,1,12105,459,1717.783,,,,,,144,32,0,,,,, +371,37,1,12107,476,1717.783,17,64,C2,mp,14,144,36,14,,,,, +371,40,0,12108,498,1717.787,,,,,,176,64,0,,,,,^ +371,36,3,12106,475,1717.873,,,,,,144,29,0,,,,, +371,37,1,12107,476,1717.873,,,,,,144,36,0,,,,, +371,38,1,12109,493,1717.873,19,64,G#1,mp,14,144,32,14,,,,, +371,39,3,12110,493,1717.873,19,64,C#1,ppp,5,144,25,5,,,,, +371,41,1,12111,512,1717.975,,,,,,176,102,0,,,,, +371,43,2,12112,512,1717.975,256,4,C6,ff,22,144,84,22,,,,, +371,44,3,12113,512,1717.975,,,,,,176,102,0,,,,, +371,45,4,12114,512,1717.975,256,4,F5,ff,22,144,77,22,,,,, +371,38,1,12109,493,1717.975,,,,,,144,32,0,,,,, +371,39,3,12110,493,1717.975,,,,,,144,25,0,,,,, +371,42,0,12115,512,1718.087,,,,,,176,64,127,,,,,V +371,46,3,12116,,1718.656,,8,D#4,pp,8,144,63,8,,,,g, +371,46,3,12116,,1718.706,,,,,,144,63,0,,,,, +371,47,3,12117,,1718.731,,8,C5,pp+,9,144,72,9,,,,g, +371,47,3,12117,,1718.781,,,,,,144,72,0,,,,, +371,48,3,12118,640,1718.806,384,4,F#4,p,11,144,66,11,,,,, +371,43,2,12112,512,1719.338,,,,,,144,84,0,,,,, +371,45,4,12114,512,1719.338,,,,,,144,77,0,,,,, +371,49,1,12119,768,1719.488,,,,,,176,102,0,,,,, +371,57,2,12120,768,1719.488,51,16,C6,ff,22,144,84,22,,,,, +371,58,4,12121,768,1719.488,32,32,F5,ff,22,144,77,22,,,,, +371,58,4,12121,768,1719.659,,,,,,144,77,0,,,,, +371,59,4,12122,800,1719.659,32,32,F5,ff,22,144,77,22,,,,, +371,57,2,12120,768,1719.76,,,,,,144,84,0,,,,, +371,50,2,12123,,1719.76,,8,F#6,ppp,5,144,90,5,,,,g, +371,50,2,12123,,1719.81,,,,,,144,90,0,,,,, +371,59,4,12122,800,1719.829,,,,,,144,77,0,,,,, +371,51,2,12124,,1719.835,,8,G#5,ppp,5,144,80,5,,,,g, +371,51,2,12124,,1719.885,,,,,,144,80,0,,,,, +371,52,2,12125,,1719.91,,8,D7,ppp,5,144,98,5,,,,g, +371,52,2,12125,,1719.96,,,,,,144,98,0,,,,, +371,53,2,12126,,1719.985,,8,F#6,ppp,5,144,90,5,,,,g, +371,53,2,12126,,1720.035,,,,,,144,90,0,,,,, +371,54,2,12127,,1720.06,,8,D7,ppp,5,144,98,5,,,,g, +371,54,2,12127,,1720.11,,,,,,144,98,0,,,,, +371,55,2,12128,,1720.135,,8,D#6,ppp,5,144,87,5,,,,g, +371,55,2,12128,,1720.185,,,,,,144,87,0,,,,, +371,56,2,12129,,1720.21,,8,A#7,ppp,5,144,106,5,,,,g, +371,56,2,12129,,1720.26,,,,,,144,106,0,,,,, +371,60,2,12130,819,1720.285,153,8,C6,ff,22,144,84,22,,,,, +371,61,4,12131,832,1720.354,,,,,,176,102,0,,,,, +371,62,1,12132,853,1720.466,16,32,C#6,p,11,144,85,11,,,,, +371,62,1,12132,853,1720.551,,,,,,144,85,0,,,,, +371,63,1,12133,869,1720.551,17,32,G3,p,11,144,55,11,,,,, +371,63,1,12133,869,1720.642,,,,,,144,55,0,,,,, +371,64,1,12134,886,1720.642,18,32,E6,p,11,144,88,11,,,,, +371,64,1,12134,886,1720.738,,,,,,144,88,0,,,,, +371,65,1,12135,904,1720.738,17,32,G2,p,11,144,43,11,,,,, +371,65,1,12135,904,1720.828,,,,,,144,43,0,,,,, +371,66,1,12136,921,1720.828,17,32,C#2,p,11,144,37,11,,,,, +371,48,3,12118,640,1720.852,,,,,,144,66,0,,,,, +371,66,1,12136,921,1720.919,,,,,,144,37,0,,,,, +371,67,1,12137,938,1720.919,16,32,E7,p,11,144,100,11,,,,, +371,67,1,12137,938,1721.004,,,,,,144,100,0,,,,, +371,68,1,12138,954,1721.004,17,32,C3,p,11,144,48,11,,,,, +371,68,1,12138,954,1721.095,,,,,,144,48,0,,,,, +371,69,1,12139,971,1721.095,18,32,G#2,p,11,144,44,11,,,,, +371,60,2,12130,819,1721.1,,,,,,144,84,0,,,,, +371,70,2,12140,972,1721.1,52,16,C6,mp,14,144,84,14,,,,, +371,69,1,12139,971,1721.19,,,,,,144,44,0,,,,, +371,71,1,12141,989,1721.19,17,32,C4,p,11,144,60,11,,,,, +371,73,0,12142,1023,1721.224,,,,,,176,64,0,,,,,^ +371,71,1,12141,989,1721.281,,,,,,144,60,0,,,,, +371,72,1,12143,1006,1721.281,18,32,A2,p,11,144,45,11,,,,, +371,70,2,12140,972,1721.377,,,,,,144,84,0,,,,, +371,72,1,12143,1006,1721.377,,,,,,144,45,0,,,,, +372,3,0,12144,0,1721.377,,,,,,,,,372,,,, +372,1,3,12145,0,1721.377,,,,,,176,102,0,,,,, +372,2,4,12146,0,1721.377,768,2,G1,ff,22,144,31,22,,,,, +372,4,1,12147,0,1721.377,73,16,G#5,mp,14,144,80,14,,,,, +372,5,1,12148,0,1721.377,64,16,B5,mp,14,144,83,14,,,,, +372,6,2,12149,0,1721.377,25,32,C6,ff,22,144,84,22,,,,, +372,6,2,12149,0,1721.51,,,,,,144,84,0,,,,, +372,7,2,12150,25,1721.51,77,16,C6,f,20,144,84,20,,,,, +372,0,0,12151,0,1721.524,,,,,,176,64,127,,,,,V +372,5,1,12148,0,1721.718,,,,,,144,83,0,,,,, +372,4,1,12147,0,1721.766,,,,,,144,80,0,,,,, +372,8,1,12152,73,1721.766,36,32,G#5,mf+,18,144,80,18,,,,, +372,9,1,12153,73,1721.766,32,32,B5,mf+,18,144,83,18,,,,, +372,7,2,12150,25,1721.92,,,,,,144,84,0,,,,, +372,10,2,12154,102,1721.92,,,,,,176,102,0,,,,, +372,9,1,12153,73,1721.936,,,,,,144,83,0,,,,, +372,8,1,12152,73,1721.957,,,,,,144,80,0,,,,, +372,11,1,12155,109,1721.957,147,8,F5,ff,22,144,77,22,,,,, +372,12,1,12156,109,1721.957,128,8,B5,ff,22,144,83,22,,,,, +372,13,1,12157,109,1721.957,128,8,C6,ff,22,144,84,22,,,,, +372,14,1,12158,109,1721.957,128,8,E6,ff,22,144,88,22,,,,, +372,12,1,12156,109,1722.639,,,,,,144,83,0,,,,, +372,13,1,12157,109,1722.639,,,,,,144,84,0,,,,, +372,14,1,12158,109,1722.639,,,,,,144,88,0,,,,, +372,11,1,12155,109,1722.74,,,,,,144,77,0,,,,, +372,15,3,12159,256,1722.74,512,2,F3,ff,22,144,53,22,,,,, +372,16,1,12160,256,1722.74,256,4,F5,mf,17,144,77,17,,,,, +372,17,1,12161,256,1722.74,256,4,B5,mf,17,144,83,17,,,,, +372,18,1,12162,256,1722.74,256,4,E6,mf,17,144,88,17,,,,, +372,19,2,12163,256,1722.74,,,,,,176,102,0,,,,, +372,20,1,12164,512,1724.104,36,32,F5,,,,,,,,,, +372,21,1,12165,512,1724.104,32,32,B5,,,,,,,,,, +372,22,1,12166,512,1724.104,32,32,E6,,,,,,,,,, +372,23,2,12167,512,1724.104,,,,,,176,102,0,,,,, +372,17,1,12161,256,1724.275,,,,,,144,83,0,,,,, +372,18,1,12162,256,1724.275,,,,,,144,88,0,,,,, +372,24,1,12168,548,1724.296,73,16,G2,p,11,144,43,11,,,,, +372,16,1,12160,256,1724.296,,,,,,144,77,0,,,,, +372,25,2,12169,614,1724.647,38,32,B3,ppp,5,144,59,5,,,,, +372,24,1,12168,548,1724.685,,,,,,144,43,0,,,,, +372,26,1,12170,621,1724.685,110,16,G#1,p-,10,144,32,10,,,,, +372,25,2,12169,614,1724.85,,,,,,144,59,0,,,,, +372,27,2,12171,652,1724.85,39,32,E3,ppp,5,144,52,5,,,,, +372,27,2,12171,652,1725.058,,,,,,144,52,0,,,,, +372,28,2,12172,691,1725.058,25,32,B3,ppp,5,144,59,5,,,,, +372,28,2,12172,691,1725.191,,,,,,144,59,0,,,,, +372,29,2,12173,716,1725.191,16,32,D4,ppp,5,144,62,5,,,,, +372,30,1,12174,731,1725.271,37,32,G2,pp,8,144,43,8,,,,, +372,26,1,12170,621,1725.271,,,,,,144,32,0,,,,, +372,29,2,12173,716,1725.276,,,,,,144,62,0,,,,, +372,31,2,12175,732,1725.276,18,32,E3,ppp,5,144,52,5,,,,, +372,31,2,12175,732,1725.372,,,,,,144,52,0,,,,, +372,32,2,12176,750,1725.372,18,32,D4,ppp,5,144,62,5,,,,, +372,32,2,12176,750,1725.468,,,,,,144,62,0,,,,, +372,33,1,12177,768,1725.468,36,32,G2,,,,,,,,,, +372,34,2,12178,768,1725.468,102,8,A#1,ppp,5,144,34,5,,,,, +372,35,3,12179,768,1725.468,,,,,,176,102,0,,,,, +372,36,4,12180,768,1725.468,,,,,,176,102,0,,,,, +372,2,4,12146,0,1725.468,,,,,,144,31,0,,,,, +372,15,3,12159,256,1725.468,,,,,,144,53,0,,,,, +372,30,1,12174,731,1725.66,,,,,,144,43,0,,,,, +372,37,1,12181,804,1725.66,110,16,G#1,pp,8,144,32,8,,,,, +372,34,2,12178,768,1726.011,,,,,,144,34,0,,,,, +372,38,2,12182,870,1726.011,26,32,A#1,ppp,5,144,34,5,,,,, +372,38,2,12182,870,1726.15,,,,,,144,34,0,,,,, +372,39,2,12183,896,1726.15,25,32,F#2,ppp,5,144,42,5,,,,, +372,37,1,12181,804,1726.245,,,,,,144,32,0,,,,, +372,40,1,12184,914,1726.245,36,32,B5,ppp,5,144,83,5,,,,, +372,41,3,12185,914,1726.245,110,16,G#5,ppp,5,144,80,5,,,,, +372,39,2,12183,896,1726.283,,,,,,144,42,0,,,,, +372,42,2,12186,921,1726.283,,,,,,176,102,0,,,,, +372,40,1,12184,914,1726.437,,,,,,144,83,0,,,,, +372,43,1,12187,950,1726.437,37,32,G2,ppp+,6,144,43,6,,,,, +372,43,1,12187,950,1726.634,,,,,,144,43,0,,,,, +372,44,1,12188,987,1726.634,37,32,G#1,ppp,5,144,32,5,,,,, +372,45,0,12189,1023,1726.826,,,,,,176,64,0,,,,,^ +372,44,1,12188,987,1726.831,,,,,,144,32,0,,,,, +373,0,0,12190,0,1726.831,,,,,,,,,373,,,, +373,1,1,12191,0,1726.831,,,,,,176,102,0,,,,, +373,2,2,12192,0,1726.831,,,,,,176,102,0,,,,, +373,3,3,12193,0,1726.831,170,8,G#5,,,,,,,,,, +372,41,3,12185,914,1727.737,,,,,,144,80,0,,,,, +373,4,3,12194,170,1727.737,57,16,G#5,ppp,5,144,80,5,,,,, +373,4,3,12194,170,1728.041,,,,,,144,80,0,,,,, +373,6,3,12195,227,1728.041,29,32,A6,ppp,5,144,93,5,,,,, +373,5,0,12196,227,1728.041,,,,,,176,64,127,,,,,V +373,6,3,12195,227,1728.195,,,,,,144,93,0,,,,, +373,7,1,12197,256,1728.195,56,16,F4,ppp,5,144,65,5,,,,, +373,8,2,12198,256,1728.195,,,,,,176,102,0,,,,, +373,9,3,12199,256,1728.195,,,,,,176,102,0,,,,, +373,7,1,12197,256,1728.493,,,,,,144,65,0,,,,, +373,10,1,12200,312,1728.493,29,32,A#3,ppp,5,144,58,5,,,,, +373,,,12201,341,1728.498,,,,,,176,64,0,,,,,^ +373,10,1,12200,312,1728.648,,,,,,144,58,0,,,,, +373,11,1,12202,341,1728.648,43,32,F5,ppp,5,144,77,5,,,,, +373,12,0,12203,341,1728.798,,,,,,176,64,127,,,,,V +373,11,1,12202,341,1728.877,,,,,,144,77,0,,,,, +373,13,1,12204,384,1728.877,42,32,C4,ppp,5,144,60,5,,,,, +373,14,0,12205,384,1728.877,,,,,,,,,,6037,,, +373,13,1,12204,384,1729.101,,,,,,144,60,0,,,,, +373,15,1,12206,426,1729.101,29,32,A#4,ppp,5,144,70,5,,,,, +373,16,1,12207,455,1729.255,28,32,C4,ppp+,6,144,60,6,,,,, +373,15,1,12206,426,1729.404,,,,,,144,70,0,,,,, +373,16,1,12207,455,1729.404,,,,,,144,60,0,,,,, +373,17,1,12208,483,1729.404,29,32,A#4,ppp+,6,144,70,6,,,,, +373,17,1,12208,483,1729.559,,,,,,144,70,0,,,,, +373,18,1,12209,512,1729.559,25,32,C4,ppp+,6,144,60,6,,,,, +373,19,2,12210,512,1729.559,,,,,,176,102,0,,,,, +373,18,1,12209,512,1729.692,,,,,,144,60,0,,,,, +373,20,1,12211,537,1729.692,26,32,A#4,ppp+,6,144,70,6,,,,, +373,20,1,12211,537,1729.83,,,,,,144,70,0,,,,, +373,21,1,12212,563,1729.83,25,32,G#5,pp-,7,144,80,7,,,,, +373,21,1,12212,563,1729.964,,,,,,144,80,0,,,,, +373,22,1,12213,588,1729.964,103,8,E6,pp-,7,144,88,7,,,,, +373,22,1,12213,588,1730.512,,,,,,144,88,0,,,,, +373,23,1,12214,691,1730.512,25,32,G#5,pp,8,144,80,8,,,,, +373,23,1,12214,691,1730.645,,,,,,144,80,0,,,,, +373,24,1,12215,716,1730.645,52,16,E6,pp,8,144,88,8,,,,, +373,25,2,12216,736,1730.752,32,32,F3,mf,17,144,53,17,,,,, +373,25,2,12216,736,1730.922,,,,,,144,53,0,,,,, +373,26,1,12217,768,1730.922,,,,,,176,102,0,,,,, +373,27,2,12218,768,1730.922,256,4,G#6,mf,17,144,92,17,,,,, +373,28,3,12219,768,1730.922,32,32,F5,ff,22,144,77,22,,,,, +373,24,1,12215,716,1730.922,,,,,,144,88,0,,,,, +373,28,3,12219,768,1731.093,,,,,,144,77,0,,,,, +373,29,3,12220,800,1731.093,96,16,D4,ff,22,144,62,22,,,,, +373,30,3,12221,800,1731.093,64,16,F5,ff,22,144,77,22,,,,, +373,31,1,12222,896,1731.604,32,32,G#5,pp,8,144,80,8,,,,, +373,32,3,12223,896,1731.604,64,16,D4,,,,,,,,,, +373,33,3,12224,896,1731.604,64,16,F5,,,,,,,,,, +373,30,3,12221,800,1731.775,,,,,,144,77,0,,,,, +373,31,1,12222,896,1731.775,,,,,,144,80,0,,,,, +373,34,1,12225,928,1731.775,96,16,E6,pp,8,144,88,8,,,,, +373,29,3,12220,800,1731.945,,,,,,144,62,0,,,,, +373,35,3,12226,960,1731.945,64,16,D6,f,20,144,86,20,,,,, +373,27,2,12218,768,1732.286,,,,,,144,92,0,,,,, +373,35,3,12226,960,1732.286,,,,,,144,86,0,,,,, +374,0,0,12227,0,1732.286,,,,,,,,,374,,,, +374,1,1,12228,0,1732.286,,,,,,176,102,0,,,,, +374,2,2,12229,0,1732.286,512,2,G#6,mp,14,144,92,14,,,,, +374,3,3,12230,0,1732.286,64,16,F5,f,20,144,77,20,,,,, +374,4,3,12231,0,1732.286,64,16,D6,f,20,144,86,20,,,,, +374,5,4,12232,0,1732.286,,,,,,176,102,0,,,,, +373,34,1,12225,928,1732.286,,,,,,144,88,0,,,,, +374,3,3,12230,0,1732.627,,,,,,144,77,0,,,,, +374,4,3,12231,0,1732.627,,,,,,144,86,0,,,,, +374,6,1,12233,64,1732.627,192,8,D4,p,11,144,62,11,,,,, +374,7,3,12234,64,1732.627,192,8,C#1,mp,14,144,25,14,,,,, +374,8,1,12235,256,1733.65,256,4,D4,,,,,,,,,, +374,9,3,12236,256,1733.65,192,8,C#1,,,,,,,,,, +374,10,4,12237,256,1733.65,,,,,,176,102,0,,,,, +374,7,3,12234,64,1734.672,,,,,,144,25,0,,,,, +374,11,3,12238,448,1734.672,64,16,F5,pp+,9,144,77,9,,,,, +374,11,3,12238,448,1735.013,,,,,,144,77,0,,,,, +374,12,0,12239,512,1735.013,,,,,,176,64,0,,,,,^ +374,13,1,12240,512,1735.013,,,,,,176,102,0,,,,, +374,14,2,12241,512,1735.013,,,,,,176,102,0,,,,, +374,15,3,12242,512,1735.013,96,16,E1,pp,8,144,28,8,,,,, +374,16,4,12243,512,1735.013,64,16,C#1,pp,8,144,25,8,,,,, +374,2,2,12229,0,1735.013,,,,,,144,92,0,,,,, +374,6,1,12233,64,1735.013,,,,,,144,62,0,,,,, +374,22,2,12244,,1735.327,,8,C4,ppp,5,144,60,5,,,,g, +374,16,4,12243,512,1735.354,,,,,,144,25,0,,,,, +374,18,4,12245,576,1735.354,,,,,,176,102,0,,,,, +374,17,0,12246,576,1735.354,,,,,,176,64,127,,,,,V +374,22,2,12244,,1735.377,,,,,,144,60,0,,,,, +374,23,2,12247,,1735.402,,8,F6,ppp,5,144,89,5,,,,g, +374,23,2,12247,,1735.452,,,,,,144,89,0,,,,, +374,24,2,12248,,1735.477,,8,G#6,ppp,5,144,92,5,,,,g, +374,19,3,12249,608,1735.525,96,16,B2,ppp,5,144,47,5,,,,, +374,15,3,12242,512,1735.525,,,,,,144,28,0,,,,, +374,24,2,12248,,1735.527,,,,,,144,92,0,,,,, +374,25,2,12250,,1735.552,,8,F6,ppp,5,144,89,5,,,,g, +374,25,2,12250,,1735.602,,,,,,144,89,0,,,,, +374,26,2,12251,,1735.627,,8,A#5,ppp+,6,144,82,6,,,,g, +374,26,2,12251,,1735.677,,,,,,144,82,0,,,,, +374,27,2,12252,,1735.702,,8,C4,ppp+,6,144,60,6,,,,g, +374,27,2,12252,,1735.752,,,,,,144,60,0,,,,, +374,28,2,12253,,1735.777,,8,F6,ppp+,6,144,89,6,,,,g, +374,28,2,12253,,1735.827,,,,,,144,89,0,,,,, +374,29,2,12254,,1735.852,,8,G#6,pp-,7,144,92,7,,,,g, +374,29,2,12254,,1735.902,,,,,,144,92,0,,,,, +374,30,2,12255,,1735.927,,8,A#5,pp-,7,144,82,7,,,,g, +374,30,2,12255,,1735.977,,,,,,144,82,0,,,,, +374,31,2,12256,,1736.002,,8,G#6,pp,8,144,92,8,,,,g, +374,19,3,12249,608,1736.036,,,,,,144,47,0,,,,, +374,20,3,12257,704,1736.036,64,16,G#5,ff,22,144,80,22,,,,, +374,31,2,12256,,1736.052,,,,,,144,92,0,,,,, +374,32,2,12258,,1736.077,,8,E7,pp,8,144,100,8,,,,g, +374,32,2,12258,,1736.127,,,,,,144,100,0,,,,, +374,33,2,12259,,1736.152,,8,A#5,pp+,9,144,82,9,,,,g, +374,33,2,12259,,1736.202,,,,,,144,82,0,,,,, +374,34,2,12260,,1736.227,,8,E7,pp+,9,144,100,9,,,,g, +374,34,2,12260,,1736.277,,,,,,144,100,0,,,,, +374,37,4,12261,,1736.302,,8,F5,pp+,9,144,77,9,,,,g, +374,37,4,12261,,1736.352,,,,,,144,77,0,,,,, +374,20,3,12257,704,1736.377,,,,,,144,80,0,,,,, +374,21,1,12262,768,1736.377,,,,,,176,102,0,,,,, +374,35,2,12263,768,1736.377,,,,,,176,102,0,,,,, +374,36,3,12264,768,1736.377,32,32,E2,mf,17,144,40,17,,,,, +374,38,4,12265,768,1736.377,256,4,C3,pp,8,144,48,8,,,,, +374,36,3,12264,768,1736.547,,,,,,144,40,0,,,,, +374,39,3,12266,800,1736.547,32,32,G#5,mp,14,144,80,14,,,,, +374,39,3,12266,800,1736.718,,,,,,144,80,0,,,,, +374,40,3,12267,832,1736.718,64,16,E2,p,11,144,40,11,,,,, +374,40,3,12267,832,1737.059,,,,,,144,40,0,,,,, +374,41,3,12268,896,1737.059,73,16,G#5,pp,8,144,80,8,,,,, +374,43,0,12269,969,1737.298,,,,,,176,64,0,,,,,^ +374,42,1,12270,960,1737.4,64,16,C#3,ppp,5,144,49,5,,,,, +374,44,3,12271,969,1737.448,36,32,E2,f,20,144,40,20,,,,, +374,41,3,12268,896,1737.448,,,,,,144,80,0,,,,, +374,43,0,12272,969,1737.598,,,,,,176,64,127,,,,,V +374,44,3,12271,969,1737.639,,,,,,144,40,0,,,,, +374,45,3,12273,1005,1737.639,19,64,C5,pp,8,144,72,8,,,,, +374,42,1,12270,960,1737.74,,,,,,144,49,0,,,,, +374,45,3,12273,1005,1737.74,,,,,,144,72,0,,,,, +375,0,0,12274,0,1737.74,,,,,,,,,375,,,, +375,1,1,12275,0,1737.74,,,,,,176,102,0,,,,, +375,2,2,12276,0,1737.74,,,,,,176,102,0,,,,, +375,3,3,12277,0,1737.74,36,32,B2,f,20,144,47,20,,,,, +375,4,4,12278,0,1737.74,,,,,,176,102,0,,,,, +374,38,4,12265,768,1737.74,,,,,,144,48,0,,,,, +375,3,3,12277,0,1737.932,,,,,,144,47,0,,,,, +375,5,3,12279,36,1737.932,37,32,C5,f,20,144,72,20,,,,, +375,5,3,12279,36,1738.129,,,,,,144,72,0,,,,, +375,6,3,12280,73,1738.129,18,64,B2,pp,8,144,47,8,,,,, +375,6,3,12280,73,1738.225,,,,,,144,47,0,,,,, +375,7,3,12281,91,1738.225,37,32,F3,mf,17,144,53,17,,,,, +375,7,3,12281,91,1738.422,,,,,,144,53,0,,,,, +375,8,3,12282,128,1738.422,21,32,G#5,fff,24,144,80,23,,,,, +375,8,3,12282,128,1738.534,,,,,,144,80,0,,,,, +375,9,3,12283,149,1738.534,21,32,E2,f-,19,144,40,19,,,,, +375,9,3,12283,149,1738.646,,,,,,144,40,0,,,,, +375,10,3,12284,170,1738.646,22,32,C5,mp,14,144,72,14,,,,, +375,10,3,12284,170,1738.763,,,,,,144,72,0,,,,, +375,11,3,12285,192,1738.763,21,32,B2,pp,8,144,47,8,,,,, +375,13,0,12286,224,1738.869,,,,,,176,64,0,,,,,^ +375,11,3,12285,192,1738.875,,,,,,144,47,0,,,,, +375,12,3,12287,213,1738.875,43,16,F3,pp,8,144,53,8,,,,, +375,14,2,12288,224,1738.934,16,64,G5,pp,8,144,79,8,,,,, +375,14,2,12288,224,1739.019,,,,,,144,79,0,,,,, +375,15,2,12289,240,1739.019,16,64,A1,pp,8,144,33,8,,,,, +375,12,3,12287,213,1739.104,,,,,,144,53,0,,,,, +375,15,2,12289,240,1739.104,,,,,,144,33,0,,,,, +375,16,3,12290,256,1739.104,25,32,D4,pp,8,144,62,8,,,,, +375,17,0,12291,256,1739.104,,,,,,,,,,6038,,, +375,19,1,12292,256,1739.104,,,,,,176,102,0,,,,, +375,20,2,12293,256,1739.104,,,,,,176,102,0,,,,, +375,21,4,12294,256,1739.104,,,,,,176,102,0,,,,, +375,18,0,12295,256,1739.169,,,,,,176,64,127,,,,,V +375,16,3,12290,256,1739.237,,,,,,144,62,0,,,,, +375,22,3,12296,281,1739.237,26,32,F4,p-,10,144,65,10,,,,, +375,22,3,12296,281,1739.376,,,,,,144,65,0,,,,, +375,23,3,12297,307,1739.376,25,32,D4,p+,12,144,62,12,,,,, +375,23,3,12297,307,1739.509,,,,,,144,62,0,,,,, +375,24,3,12298,332,1739.509,52,16,C#3,mp,14,144,49,14,,,,, +375,24,3,12298,332,1739.786,,,,,,144,49,0,,,,, +375,25,3,12299,384,1739.786,25,32,A2,mf+,18,144,45,18,,,,, +375,25,3,12299,384,1739.919,,,,,,144,45,0,,,,, +375,26,3,12300,409,1739.919,26,32,G#5,f,20,144,80,20,,,,, +375,26,3,12300,409,1740.058,,,,,,144,80,0,,,,, +375,27,3,12301,435,1740.058,25,32,A2,ff,22,144,45,22,,,,, +375,27,3,12301,435,1740.191,,,,,,144,45,0,,,,, +375,28,3,12302,460,1740.191,16,32,F4,fff,24,144,65,23,,,,, +375,31,0,12303,502,1740.264,,,,,,176,64,0,,,,,^ +375,28,3,12302,460,1740.276,,,,,,144,65,0,,,,, +375,29,3,12304,476,1740.276,18,32,C#4,fff,24,144,61,23,,,,, +375,29,3,12304,476,1740.372,,,,,,144,61,0,,,,, +375,30,3,12305,494,1740.372,18,32,D4,fff,24,144,62,23,,,,, +375,30,3,12305,494,1740.468,,,,,,144,62,0,,,,, +375,32,3,12306,,1740.468,,8,C4,ppp,5,144,60,5,,,,g, +375,32,3,12306,,1740.518,,,,,,144,60,0,,,,, +375,33,3,12307,,1740.543,,8,A5,ppp,5,144,81,5,,,,g, +375,37,4,12308,,1740.543,,8,G#3,f,20,144,56,20,,,,g, +375,31,0,12309,502,1740.564,,,,,,176,64,127,,,,,V +375,33,3,12307,,1740.593,,,,,,144,81,0,,,,, +375,37,4,12308,,1740.593,,,,,,144,56,0,,,,, +375,34,3,12310,512,1740.618,256,4,C3,f,20,144,48,20,,,,, +375,35,3,12311,512,1740.618,256,4,D#5,pp,8,144,75,8,,,,, +375,36,3,12312,512,1740.618,256,4,A5,pp,8,144,81,8,,,,, +375,38,4,12313,512,1740.618,32,32,G#4,fff,24,144,68,23,,,,, +375,39,1,12314,512,1740.618,,,,,,176,102,0,,,,, +375,40,2,12315,512,1740.618,,,,,,176,102,0,,,,, +375,38,4,12313,512,1740.788,,,,,,144,68,0,,,,, +375,41,4,12316,544,1740.788,32,32,A3,fff,24,144,57,23,,,,, +375,41,4,12316,544,1740.959,,,,,,144,57,0,,,,, +375,42,4,12317,576,1740.959,192,8,F4,fff,24,144,65,23,,,,, +375,43,1,12318,614,1741.161,26,32,D7,pppp,2,144,98,2,,,,, +375,43,1,12318,614,1741.3,,,,,,144,98,0,,,,, +375,44,1,12319,640,1741.3,16,32,D#6,pppp,2,144,87,2,,,,, +375,44,1,12319,640,1741.385,,,,,,144,87,0,,,,, +375,45,1,12320,656,1741.385,18,32,F#6,pppp,2,144,90,2,,,,, +375,45,1,12320,656,1741.481,,,,,,144,90,0,,,,, +375,46,1,12321,674,1741.481,17,32,D#6,pppp,2,144,87,2,,,,, +375,46,1,12321,674,1741.571,,,,,,144,87,0,,,,, +375,47,1,12322,691,1741.571,25,32,F#6,pppp,2,144,90,2,,,,, +375,47,1,12322,691,1741.704,,,,,,144,90,0,,,,, +375,48,1,12323,716,1741.704,26,32,A#7,pppp,2,144,106,2,,,,, +375,49,1,12324,742,1741.843,26,32,G#5,pppp,2,144,80,2,,,,, +375,49,1,12324,742,1741.981,,,,,,144,80,0,,,,, +375,50,1,12325,768,1741.981,25,32,D#6,pppp,2,144,87,2,,,,, +375,51,3,12326,768,1741.981,128,8,G#6,ff,22,144,92,22,,,,, +375,52,4,12327,768,1741.981,,,,,,176,102,0,,,,, +375,48,1,12323,716,1741.993,,,,,,144,106,0,,,,, +375,50,1,12325,768,1742.115,,,,,,144,87,0,,,,, +375,53,1,12328,793,1742.115,26,32,F#6,pppp,2,144,90,2,,,,, +375,34,3,12310,512,1742.131,,,,,,144,48,0,,,,, +375,35,3,12311,512,1742.131,,,,,,144,75,0,,,,, +375,36,3,12312,512,1742.131,,,,,,144,81,0,,,,, +375,42,4,12317,576,1742.131,,,,,,144,65,0,,,,, +375,53,1,12328,793,1742.253,,,,,,144,90,0,,,,, +375,54,1,12329,819,1742.253,25,32,A#7,pppp,2,144,106,2,,,,, +375,54,1,12329,819,1742.386,,,,,,144,106,0,,,,, +375,55,1,12330,844,1742.386,26,32,G#5,pppp,2,144,80,2,,,,, +375,55,1,12330,844,1742.525,,,,,,144,80,0,,,,, +375,56,1,12331,870,1742.525,16,32,D7,pppp,2,144,98,2,,,,, +375,56,1,12331,870,1742.61,,,,,,144,98,0,,,,, +375,57,1,12332,886,1742.61,18,32,F#6,pppp,2,144,90,2,,,,, +375,51,3,12326,768,1742.663,,,,,,144,92,0,,,,, +375,58,3,12333,896,1742.663,32,32,G#6,f,20,144,92,20,,,,, +375,57,1,12332,886,1742.706,,,,,,144,90,0,,,,, +375,59,1,12334,904,1742.706,17,32,D#5,pppp,2,144,75,2,,,,, +375,59,1,12334,904,1742.796,,,,,,144,75,0,,,,, +375,60,1,12335,921,1742.796,16,32,F#5,pppp,2,144,78,2,,,,, +375,58,3,12333,896,1742.834,,,,,,144,92,0,,,,, +375,61,3,12336,928,1742.834,32,32,E7,f-,19,144,100,19,,,,, +375,60,1,12335,921,1742.882,,,,,,144,78,0,,,,, +375,62,1,12337,937,1742.882,18,32,D#5,pppp,2,144,75,2,,,,, +375,62,1,12337,937,1742.977,,,,,,144,75,0,,,,, +375,63,1,12338,955,1742.977,17,32,G#4,pppp,2,144,68,2,,,,, +375,61,3,12336,928,1743.004,,,,,,144,100,0,,,,, +375,64,3,12339,960,1743.004,32,32,A#5,mf,17,144,82,17,,,,, +375,63,1,12338,955,1743.068,,,,,,144,68,0,,,,, +375,65,1,12340,972,1743.068,26,32,D6,pppp,2,144,86,2,,,,, +375,64,3,12339,960,1743.175,,,,,,144,82,0,,,,, +375,66,3,12341,992,1743.175,32,32,G#6,mf-,16,144,92,16,,,,, +375,68,0,12342,1023,1743.19,,,,,,176,64,0,,,,,^ +375,65,1,12340,972,1743.207,,,,,,144,86,0,,,,, +375,67,1,12343,998,1743.207,26,32,D#5,pppp,2,144,75,2,,,,, +376,4,4,12344,-3,1743.329,,,,,,176,102,0,,,,, +375,66,3,12341,992,1743.345,,,,,,144,92,0,,,,, +375,67,1,12343,998,1743.345,,,,,,144,75,0,,,,, +376,0,0,12345,0,1743.345,,,,,,,,,376,,,, +376,1,1,12346,0,1743.345,25,32,F#5,pppp,2,144,78,2,,,,, +376,2,2,12347,0,1743.345,,,,,,176,102,0,,,,, +376,3,3,12348,0,1743.345,64,16,E7,mp,14,144,100,14,,,,, +376,1,1,12346,0,1743.478,,,,,,144,78,0,,,,, +376,5,1,12349,25,1743.478,26,32,A#7,pppp,2,144,106,2,,,,, +375,68,0,12350,1023,1743.49,,,,,,176,64,127,,,,,V +376,5,1,12349,25,1743.617,,,,,,144,106,0,,,,, +376,6,1,12351,51,1743.617,25,32,G#4,pppp,2,144,68,2,,,,, +376,3,3,12348,0,1743.686,,,,,,144,100,0,,,,, +376,7,3,12352,64,1743.686,,,,,,176,102,0,,,,, +376,6,1,12351,51,1743.75,,,,,,144,68,0,,,,, +376,8,1,12353,76,1743.75,16,32,D7,pppp,2,144,98,2,,,,, +376,8,1,12353,76,1743.835,,,,,,144,98,0,,,,, +376,9,1,12354,92,1743.835,18,32,D#5,pppp,2,144,75,2,,,,, +376,9,1,12354,92,1743.931,,,,,,144,75,0,,,,, +376,10,1,12355,110,1743.931,18,32,F#6,pppp,2,144,90,2,,,,, +376,10,1,12355,110,1744.027,,,,,,144,90,0,,,,, +376,11,1,12356,128,1744.027,16,32,D#5,pppp,2,144,75,2,,,,, +376,11,1,12356,128,1744.112,,,,,,144,75,0,,,,, +376,12,1,12357,144,1744.112,18,32,G#3,pppp,2,144,56,2,,,,, +376,12,1,12357,144,1744.208,,,,,,144,56,0,,,,, +376,13,1,12358,162,1744.208,17,32,A#7,pppp,2,144,106,2,,,,, +376,13,1,12358,162,1744.299,,,,,,144,106,0,,,,, +376,14,1,12359,179,1744.299,77,16,G#3,pppp,2,144,56,2,,,,, +376,15,3,12360,192,1744.368,21,32,D3,fff,24,144,50,23,,,,, +376,15,3,12360,192,1744.48,,,,,,144,50,0,,,,, +376,16,3,12361,213,1744.48,21,32,C#2,ff+,23,144,37,23,,,,, +376,16,3,12361,213,1744.591,,,,,,144,37,0,,,,, +376,17,3,12362,234,1744.591,22,32,A1,f+,21,144,33,21,,,,, +376,20,4,12363,253,1744.693,256,4,G#1,f,20,144,32,20,,,,, +376,14,1,12359,179,1744.709,,,,,,144,56,0,,,,, +376,18,1,12364,256,1744.709,,,,,,176,102,0,,,,, +376,19,3,12365,256,1744.709,21,32,G#3,f,20,144,56,20,,,,, +376,17,3,12362,234,1744.784,,,,,,144,33,0,,,,, +376,21,3,12366,277,1744.821,21,32,A1,mf+,18,144,33,18,,,,, +376,19,3,12365,256,1744.932,,,,,,144,56,0,,,,, +376,21,3,12366,277,1744.932,,,,,,144,33,0,,,,, +376,22,3,12367,298,1744.932,22,32,G#3,mf,17,144,56,17,,,,, +376,23,3,12368,320,1745.05,21,32,D3,mp+,15,144,50,15,,,,, +376,23,3,12368,320,1745.161,,,,,,144,50,0,,,,, +376,24,3,12369,341,1745.161,43,16,C#2,mp,14,144,37,14,,,,, +376,22,3,12367,298,1745.271,,,,,,144,56,0,,,,, +376,24,3,12369,341,1745.39,,,,,,144,37,0,,,,, +376,25,3,12370,384,1745.39,21,32,A1,p,11,144,33,11,,,,, +376,25,3,12370,384,1745.502,,,,,,144,33,0,,,,, +376,26,3,12371,405,1745.502,21,32,G#3,pp+,9,144,56,9,,,,, +376,26,3,12371,405,1745.614,,,,,,144,56,0,,,,, +376,27,3,12372,426,1745.614,22,32,A1,pp,8,144,33,8,,,,, +376,27,3,12372,426,1745.731,,,,,,144,33,0,,,,, +376,28,0,12373,448,1745.731,,,,,,176,64,0,,,,,^ +376,29,3,12374,448,1745.731,42,16,G#3,pp,8,144,56,8,,,,, +376,30,3,12375,490,1745.955,,,,,,176,102,0,,,,, +376,31,0,12376,490,1745.955,,,,,,,,,,6039,,, +376,35,3,12377,,1746.056,,8,D2,mf,17,144,38,17,,,,g, +376,35,3,12377,,1746.106,,,,,,144,38,0,,,,, +376,36,3,12378,,1746.131,,8,F2,mf,17,144,41,17,,,,g, +376,36,3,12378,,1746.181,,,,,,144,41,0,,,,, +376,37,3,12379,,1746.206,,8,D2,mf,17,144,38,17,,,,g, +376,37,3,12379,,1746.256,,,,,,144,38,0,,,,, +376,38,3,12380,509,1746.281,102,8,C#1,mf,17,144,25,17,,,,, +376,39,4,12381,509,1746.281,,,,,,176,102,0,,,,, +376,33,1,12382,512,1746.297,,,,,,176,102,0,,,,, +376,34,2,12383,512,1746.297,,,,,,176,102,0,,,,, +376,32,0,12384,512,1746.297,,,,,,176,64,127,,,,,V +376,29,3,12374,448,1746.33,,,,,,144,56,0,,,,, +376,40,2,12385,597,1746.75,21,32,D4,mp,14,144,62,14,,,,, +376,38,3,12380,509,1746.825,,,,,,144,25,0,,,,, +376,41,3,12386,611,1746.825,77,16,G#2,p,11,144,44,11,,,,, +376,40,2,12385,597,1746.862,,,,,,144,62,0,,,,, +376,42,2,12387,618,1746.862,22,32,A#4,p+,12,144,70,12,,,,, +376,20,4,12363,253,1746.881,,,,,,144,32,0,,,,, +376,42,2,12387,618,1746.979,,,,,,144,70,0,,,,, +376,43,2,12388,640,1746.979,21,32,D4,p-,10,144,62,10,,,,, +376,43,2,12388,640,1747.091,,,,,,144,62,0,,,,, +376,44,2,12389,661,1747.091,21,32,F#4,pp+,9,144,66,9,,,,, +376,44,2,12389,661,1747.203,,,,,,144,66,0,,,,, +376,45,1,12390,682,1747.203,86,8,G#4,pp-,7,144,68,7,,,,, +376,46,2,12391,682,1747.203,22,32,D4,pp-,7,144,62,7,,,,, +376,41,3,12386,611,1747.235,,,,,,144,44,0,,,,, +376,47,3,12392,688,1747.235,25,32,A0,pp,8,144,21,8,,,,, +376,46,2,12391,682,1747.32,,,,,,144,62,0,,,,, +376,48,0,12393,704,1747.32,,,,,,176,64,0,,,,,^ +376,49,2,12394,704,1747.32,64,16,F4,ppp,5,144,65,5,,,,, +376,47,3,12392,688,1747.368,,,,,,144,21,0,,,,, +376,50,3,12395,713,1747.368,52,16,F1,ppp,5,144,29,5,,,,, +376,51,3,12396,765,1747.645,51,16,F1,,,,,,,,,, +376,45,1,12390,682,1747.661,,,,,,144,68,0,,,,, +376,49,2,12394,704,1747.661,,,,,,144,65,0,,,,, +376,52,1,12397,768,1747.661,,,,,,176,102,0,,,,, +376,53,2,12398,768,1747.661,128,8,C2,ppp,5,144,36,5,,,,, +376,50,3,12395,713,1747.917,,,,,,144,29,0,,,,, +376,54,3,12399,816,1747.917,,,,,,176,102,0,,,,, +376,55,3,12400,841,1748.05,26,32,D1,ppp-,4,144,26,4,,,,, +376,55,3,12400,841,1748.188,,,,,,144,26,0,,,,, +376,56,3,12401,867,1748.188,26,32,F1,ppp-,4,144,29,4,,,,, +376,56,3,12401,867,1748.327,,,,,,144,29,0,,,,, +376,58,3,12402,893,1748.327,51,16,D1,ppp-,4,144,26,4,,,,, +376,57,2,12403,896,1748.343,128,8,G#5,ppp,5,144,80,5,,,,, +376,53,2,12398,768,1748.343,,,,,,144,36,0,,,,, +376,59,3,12404,944,1748.598,25,32,F1,ppp-,4,144,29,4,,,,, +376,58,3,12402,893,1748.598,,,,,,144,26,0,,,,, +376,59,3,12404,944,1748.732,,,,,,144,29,0,,,,, +376,60,3,12405,969,1748.732,26,32,D1,ppp-,4,144,26,4,,,,, +376,60,3,12405,969,1748.87,,,,,,144,26,0,,,,, +376,61,3,12406,995,1748.87,26,32,G#1,ppp-,4,144,32,4,,,,, +376,61,3,12406,995,1749.009,,,,,,144,32,0,,,,, +377,0,0,12407,0,1749.025,,,,,,,,,377,,,, +377,1,1,12408,0,1749.025,,,,,,176,102,0,,,,, +377,2,2,12409,0,1749.025,,,,,,176,102,0,,,,, +377,3,3,12410,0,1749.025,25,32,D1,pppp+,3,144,26,3,,,,, +376,57,2,12403,896,1749.025,,,,,,144,80,0,,,,, +377,3,3,12410,0,1749.158,,,,,,144,26,0,,,,, +377,4,3,12411,25,1749.158,26,32,C#1,pppp+,3,144,25,3,,,,, +377,4,3,12411,25,1749.296,,,,,,144,25,0,,,,, +377,5,3,12412,51,1749.296,25,32,D1,pppp+,3,144,26,3,,,,, +377,5,3,12412,51,1749.429,,,,,,144,26,0,,,,, +377,6,3,12413,76,1749.429,26,32,G#1,pppp+,3,144,32,3,,,,, +377,6,3,12413,76,1749.568,,,,,,144,32,0,,,,, +377,7,3,12414,102,1749.568,26,32,C#1,pppp+,3,144,25,3,,,,, +377,7,3,12414,102,1749.706,,,,,,144,25,0,,,,, +377,8,3,12415,128,1749.706,76,16,A0,pppp+,3,144,21,3,,,,, +377,8,3,12415,128,1750.111,,,,,,144,21,0,,,,, +377,9,3,12416,204,1750.111,52,16,F1,pppp,2,144,29,2,,,,, +377,10,2,12417,256,1750.388,128,8,C5,pppp,2,144,72,2,,,,, +377,11,3,12418,256,1750.388,25,32,F1,,,,,,,,,, +377,9,3,12416,204,1750.521,,,,,,144,29,0,,,,, +377,12,3,12419,281,1750.521,51,16,D1,pppp,2,144,26,2,,,,, +377,13,3,12420,332,1750.793,26,32,G#1,pppp,2,144,32,2,,,,, +377,13,3,12420,332,1750.932,,,,,,144,32,0,,,,, +377,14,3,12421,358,1750.932,51,16,C#1,pppp,2,144,25,2,,,,, +377,12,3,12419,281,1750.943,,,,,,144,26,0,,,,, +377,15,2,12422,384,1751.07,,,,,,176,102,0,,,,, +377,16,3,12423,409,1751.203,26,32,D1,pppp-,1,144,26,1,,,,, +377,14,3,12421,358,1751.203,,,,,,144,25,0,,,,, +377,10,2,12417,256,1751.22,,,,,,144,72,0,,,,, +377,16,3,12423,409,1751.342,,,,,,144,26,0,,,,, +377,17,3,12424,435,1751.342,25,32,G#1,pppp-,1,144,32,1,,,,, +377,17,3,12424,435,1751.475,,,,,,144,32,0,,,,, +377,18,3,12425,460,1751.475,26,32,C#1,pppp-,1,144,25,1,,,,, +377,18,3,12425,460,1751.613,,,,,,144,25,0,,,,, +377,19,3,12426,486,1751.613,26,32,A0,pppp-,1,144,21,1,,,,, +377,20,0,12427,512,1751.722,,,,,,,,,,,56,, +377,21,2,12428,512,1751.722,,,,,,176,102,0,,,,, +377,22,3,12429,512,1751.722,,,,,,176,102,0,,,,, +377,19,3,12426,486,1752.277,,,,,,144,21,0,,,,, +377,23,3,12430,768,1752.794,,,,,,176,102,0,,,,, +378,0,0,12431,0,1753.865,,,,,,,,,378,,,, +378,1,0,12432,0,1753.865,,,,,,,,,,6040,,, +378,3,1,12433,0,1753.865,768,2,F4,pp,8,144,65,8,,,,, +378,4,1,12434,0,1753.865,512,2,C5,pp,8,144,72,8,,,,, +378,5,2,12435,0,1753.865,,,,,,176,102,0,,,,, +378,6,3,12436,0,1753.865,768,2,C3,pp,8,144,48,8,,,,, +378,7,3,12437,0,1753.865,512,2,G#3,pp,8,144,56,8,,,,, +378,2,0,12438,0,1753.865,,,,,,176,64,127,,,,,V +378,4,1,12434,0,1756.008,,,,,,144,72,0,,,,, +378,7,3,12437,0,1756.008,,,,,,144,56,0,,,,, +378,8,2,12439,512,1756.008,,,,,,176,102,0,,,,, +378,9,0,12440,707,1756.802,,,,,,176,64,0,,,,,^ +378,3,1,12433,0,1757.079,,,,,,144,65,0,,,,, +378,6,3,12436,0,1757.079,,,,,,144,48,0,,,,, +378,11,1,12441,768,1757.079,256,4,C#6,mp,14,144,85,14,,,,, +378,12,2,12442,768,1757.079,256,4,C5,pp,8,144,72,8,,,,, +378,13,3,12443,768,1757.079,256,4,C3,pp,8,144,48,8,,,,, +378,14,3,12444,768,1757.079,256,4,G#3,pp,8,144,56,8,,,,, +378,10,0,12445,768,1757.102,,,,,,176,64,127,,,,,V +378,11,1,12441,768,1758.151,,,,,,144,85,0,,,,, +378,12,2,12442,768,1758.151,,,,,,144,72,0,,,,, +378,13,3,12443,768,1758.151,,,,,,144,48,0,,,,, +378,14,3,12444,768,1758.151,,,,,,144,56,0,,,,, +379,0,0,12446,0,1758.151,,,,,,,,,379,,,, +379,1,0,12447,0,1758.151,,,,,,176,64,0,,,,,^ +379,2,1,12448,0,1758.151,85,8,C3,mp,14,144,48,14,,,,, +379,3,1,12449,0,1758.151,128,8,G#3,mp,14,144,56,14,,,,, +379,4,3,12450,,1758.151,,8,F2,mp,14,144,41,14,,,,g, +379,4,3,12450,,1758.201,,,,,,144,41,0,,,,, +379,5,3,12451,0,1758.226,128,8,E1,mp,14,144,28,14,,,,, +379,6,3,12452,0,1758.226,128,8,F2,mp,14,144,41,14,,,,, +379,2,1,12448,0,1758.506,,,,,,144,48,0,,,,, +379,7,1,12453,,1758.581,,8,C#5,p,11,144,73,11,,,,g, +379,7,1,12453,,1758.631,,,,,,144,73,0,,,,, +379,8,1,12454,85,1758.656,171,4,B5,p,11,144,83,11,,,,, +379,3,1,12449,0,1758.686,,,,,,144,56,0,,,,, +379,5,3,12451,0,1758.761,,,,,,144,28,0,,,,, +379,6,3,12452,0,1758.761,,,,,,144,41,0,,,,, +379,9,3,12455,128,1758.836,42,32,C5,pp,8,144,72,8,,,,, +379,9,3,12455,128,1759.012,,,,,,144,72,0,,,,, +379,10,3,12456,170,1759.012,29,32,D#3,pp+,9,144,51,9,,,,, +379,11,0,12457,183,1759.067,,,,,,176,64,127,,,,,V +379,10,3,12456,170,1759.134,,,,,,144,51,0,,,,, +379,12,3,12458,199,1759.134,28,32,B3,p-,10,144,59,10,,,,, +379,13,3,12459,199,1759.134,32,32,C5,p-,10,144,72,10,,,,, +379,12,3,12458,199,1759.251,,,,,,144,59,0,,,,, +379,14,3,12460,227,1759.251,29,32,F#3,p,11,144,54,11,,,,, +379,13,3,12459,199,1759.268,,,,,,144,72,0,,,,, +379,8,1,12454,85,1759.372,,,,,,144,83,0,,,,, +379,14,3,12460,227,1759.372,,,,,,144,54,0,,,,, +379,15,1,12461,256,1759.372,,,,,,176,102,0,,,,, +379,16,3,12462,256,1759.372,48,32,D#2,p+,12,144,39,12,,,,, +379,17,3,12463,256,1759.372,32,32,F#2,p+,12,144,42,12,,,,, +379,17,3,12463,256,1759.506,,,,,,144,42,0,,,,, +379,16,3,12462,256,1759.573,,,,,,144,39,0,,,,, +379,18,3,12464,304,1759.573,48,32,F#3,mp-,13,144,54,13,,,,, +379,18,3,12464,304,1759.774,,,,,,144,54,0,,,,, +379,19,3,12465,352,1759.774,32,32,B4,mp,14,144,71,14,,,,, +379,19,3,12465,352,1759.908,,,,,,144,71,0,,,,, +379,20,3,12466,384,1759.908,28,32,F#1,mp+,15,144,30,15,,,,, +379,21,3,12467,384,1759.908,32,32,B3,mp+,15,144,59,15,,,,, +379,22,3,12468,384,1759.908,32,32,C5,mp+,15,144,72,15,,,,, +379,20,3,12466,384,1760.025,,,,,,144,30,0,,,,, +379,23,3,12469,412,1760.025,28,32,G3,mf-,16,144,55,16,,,,, +379,21,3,12467,384,1760.042,,,,,,144,59,0,,,,, +379,22,3,12468,384,1760.042,,,,,,144,72,0,,,,, +379,23,3,12469,412,1760.142,,,,,,144,55,0,,,,, +379,24,3,12470,440,1760.142,43,32,B3,mf,17,144,59,17,,,,, +379,24,3,12470,440,1760.322,,,,,,144,59,0,,,,, +379,25,0,12471,483,1760.322,,,,,,176,64,0,,,,,^ +379,26,3,12472,483,1760.322,29,32,D#1,mf,17,144,27,17,,,,, +379,27,3,12473,483,1760.322,32,32,F#1,mf,17,144,30,17,,,,, +379,28,3,12474,483,1760.322,32,32,G3,mf,17,144,55,17,,,,, +379,26,3,12472,483,1760.444,,,,,,144,27,0,,,,, +379,29,1,12475,512,1760.444,,,,,,176,102,0,,,,, +379,30,3,12476,,1760.444,,8,D#2,p,11,144,39,11,,,,g, +379,27,3,12473,483,1760.456,,,,,,144,30,0,,,,, +379,28,3,12474,483,1760.456,,,,,,144,55,0,,,,, +379,30,3,12476,,1760.494,,,,,,144,39,0,,,,, +379,31,3,12477,,1760.519,,8,C3,p,11,144,48,11,,,,g, +379,31,3,12477,,1760.569,,,,,,144,48,0,,,,, +379,32,3,12478,512,1760.594,256,4,D#2,p,11,144,39,11,,,,, +379,33,3,12479,512,1760.594,256,4,B2,p,11,144,47,11,,,,, +379,34,3,12480,512,1760.594,256,4,C3,p,11,144,48,11,,,,, +379,35,1,12481,640,1761.129,42,32,B5,p,11,144,83,11,,,,, +379,35,1,12481,640,1761.305,,,,,,144,83,0,,,,, +379,36,1,12482,682,1761.305,29,32,A3,p-,10,144,57,10,,,,, +379,36,1,12482,682,1761.426,,,,,,144,57,0,,,,, +379,37,1,12483,711,1761.426,28,32,F#3,pp+,9,144,54,9,,,,, +379,37,1,12483,711,1761.544,,,,,,144,54,0,,,,, +379,38,1,12484,739,1761.544,29,32,F#3,pp,8,144,54,8,,,,, +379,39,1,12485,739,1761.544,32,32,A3,pp,8,144,57,8,,,,, +379,40,1,12486,739,1761.544,32,32,F4,pp,8,144,65,8,,,,, +379,41,1,12487,739,1761.544,32,32,C#5,pp,8,144,73,8,,,,, +379,34,3,12480,512,1761.665,,,,,,144,48,0,,,,, +379,38,1,12484,739,1761.665,,,,,,144,54,0,,,,, +379,42,1,12488,768,1761.665,,,,,,176,102,0,,,,, +379,43,3,12489,768,1761.665,51,16,E1,f,20,144,28,20,,,,, +379,44,3,12490,768,1761.665,64,16,F2,f,20,144,41,20,,,,, +379,45,3,12491,768,1761.665,64,16,C3,f,20,144,48,20,,,,, +379,46,3,12492,768,1761.665,64,16,G#3,f,20,144,56,20,,,,, +379,32,3,12478,512,1761.665,,,,,,144,39,0,,,,, +379,33,3,12479,512,1761.665,,,,,,144,47,0,,,,, +379,39,1,12485,739,1761.678,,,,,,144,57,0,,,,, +379,40,1,12486,739,1761.678,,,,,,144,65,0,,,,, +379,41,1,12487,739,1761.678,,,,,,144,73,0,,,,, +379,43,3,12489,768,1761.878,,,,,,144,28,0,,,,, +379,44,3,12490,768,1761.878,,,,,,144,41,0,,,,, +379,45,3,12491,768,1761.878,,,,,,144,48,0,,,,, +379,46,3,12492,768,1761.878,,,,,,144,56,0,,,,, +379,47,3,12493,819,1761.878,77,16,E1,ff,22,144,28,22,,,,, +379,48,3,12494,819,1761.878,64,16,B1,ff,22,144,35,22,,,,, +379,49,3,12495,819,1761.878,64,16,F2,ff,22,144,41,22,,,,, +379,50,3,12496,819,1761.878,64,16,C3,ff,22,144,48,22,,,,, +379,51,3,12497,819,1761.878,64,16,G#3,ff,22,144,56,22,,,,, +379,53,1,12498,,1762.126,,8,C4,mp,14,144,60,14,,,,g, +379,48,3,12494,819,1762.146,,,,,,144,35,0,,,,, +379,49,3,12495,819,1762.146,,,,,,144,41,0,,,,, +379,50,3,12496,819,1762.146,,,,,,144,48,0,,,,, +379,51,3,12497,819,1762.146,,,,,,144,56,0,,,,, +379,53,1,12498,,1762.176,,,,,,144,60,0,,,,, +379,47,3,12493,819,1762.201,,,,,,144,28,0,,,,, +379,54,1,12499,896,1762.201,42,32,G#4,mp-,13,144,68,13,,,,, +379,55,3,12500,896,1762.201,,,,,,176,102,0,,,,, +379,52,0,12501,896,1762.201,,,,,,176,64,127,,,,,V +379,54,1,12499,896,1762.377,,,,,,144,68,0,,,,, +379,56,1,12502,938,1762.377,29,32,E2,p,11,144,40,11,,,,, +379,61,0,12503,995,1762.488,,,,,,176,64,0,,,,,^ +379,56,1,12502,938,1762.498,,,,,,144,40,0,,,,, +379,57,1,12504,967,1762.498,28,32,F3,pp+,9,144,53,9,,,,, +379,58,1,12505,967,1762.498,32,32,C4,pp+,9,144,60,9,,,,, +379,59,1,12506,967,1762.498,32,32,G#4,pp+,9,144,68,9,,,,, +379,60,0,12507,967,1762.498,,,,,,,,,,6041,,, +379,57,1,12504,967,1762.615,,,,,,144,53,0,,,,, +379,62,1,12508,995,1762.615,29,32,E2,pp,8,144,40,8,,,,, +379,63,1,12509,995,1762.615,32,32,B2,pp,8,144,47,8,,,,, +379,58,1,12505,967,1762.632,,,,,,144,60,0,,,,, +379,59,1,12506,967,1762.632,,,,,,144,68,0,,,,, +379,62,1,12508,995,1762.736,,,,,,144,40,0,,,,, +379,65,0,12510,1024,1762.736,,,,,,176,64,0,,,,,^ +379,66,1,12511,1024,1762.736,,,,,,176,102,0,,,,, +379,67,3,12512,,1762.736,,8,C#3,p,11,144,49,11,,,,g, +379,63,1,12509,995,1762.749,,,,,,144,47,0,,,,, +379,67,3,12512,,1762.786,,,,,,144,49,0,,,,, +379,64,0,12513,1006,1762.788,,,,,,176,64,127,,,,,V +379,68,3,12514,,1762.811,,8,D#1,mp-,13,144,27,13,,,,g, +379,68,3,12514,,1762.861,,,,,,144,27,0,,,,, +379,69,3,12515,,1762.886,,8,G#1,mp+,15,144,32,15,,,,g, +379,69,3,12515,,1762.936,,,,,,144,32,0,,,,, +379,70,3,12516,1024,1762.961,85,8,D#1,mf,17,144,27,17,,,,, +379,71,3,12517,1024,1762.961,128,8,G#1,mf,17,144,32,17,,,,, +379,72,3,12518,1024,1762.961,128,8,C#4,mf,17,144,61,17,,,,, +379,73,3,12519,1024,1762.961,128,8,B4,mf,17,144,71,17,,,,, +379,70,3,12516,1024,1763.317,,,,,,144,27,0,,,,, +379,74,3,12520,1109,1763.317,128,8,G2,mp,14,144,43,14,,,,, +379,71,3,12517,1024,1763.497,,,,,,144,32,0,,,,, +379,72,3,12518,1024,1763.497,,,,,,144,61,0,,,,, +379,73,3,12519,1024,1763.497,,,,,,144,71,0,,,,, +379,75,0,12521,1161,1763.535,,,,,,176,64,127,,,,,V +379,74,3,12520,1109,1763.853,,,,,,144,43,0,,,,, +379,76,3,12522,1237,1763.853,43,16,D#1,ppp,5,144,27,5,,,,, +379,77,3,12523,1237,1763.853,64,16,G#1,ppp,5,144,32,5,,,,, +379,78,3,12524,1237,1763.853,64,16,C#4,ppp,5,144,61,5,,,,, +379,79,3,12525,1237,1763.853,64,16,B4,ppp,5,144,71,5,,,,, +379,76,3,12522,1237,1764.033,,,,,,144,27,0,,,,, +380,0,0,12526,0,1764.033,,,,,,,,,380,,,, +380,1,1,12527,0,1764.033,,,,,,176,102,0,,,,, +380,2,3,12528,0,1764.033,,,,,,176,102,0,,,,, +379,77,3,12523,1237,1764.121,,,,,,144,32,0,,,,, +379,78,3,12524,1237,1764.121,,,,,,144,61,0,,,,, +379,79,3,12525,1237,1764.121,,,,,,144,71,0,,,,, +380,3,1,12529,85,1764.389,171,4,F#3,mp,14,144,54,14,,,,, +380,4,1,12530,85,1764.389,256,4,A3,mp,14,144,57,14,,,,, +380,5,1,12531,85,1764.389,256,4,F4,mp,14,144,65,14,,,,, +380,6,1,12532,85,1764.389,256,4,C#5,mp,14,144,73,14,,,,, +380,7,1,12533,85,1764.389,256,4,B5,mp,14,144,83,14,,,,, +380,9,1,12534,,1764.954,,8,B6,p,11,144,95,11,,,,g, +380,9,1,12534,,1765.004,,,,,,144,95,0,,,,, +380,6,1,12532,85,1765.029,,,,,,144,73,0,,,,, +380,10,1,12535,,1765.029,,8,C#5,p,11,144,73,11,,,,g, +380,3,1,12529,85,1765.104,,,,,,144,54,0,,,,, +380,4,1,12530,85,1765.104,,,,,,144,57,0,,,,, +380,8,0,12536,256,1765.104,,,,,,176,64,0,,,,,^ +380,11,1,12537,256,1765.104,256,4,C#6,f,20,144,85,20,,,,, +380,12,1,12538,256,1765.104,256,4,E7,f,20,144,100,20,,,,, +380,13,3,12539,256,1765.104,128,8,A3,p,11,144,57,11,,,,, +380,5,1,12531,85,1765.46,,,,,,144,65,0,,,,, +380,7,1,12533,85,1765.46,,,,,,144,83,0,,,,, +380,10,1,12535,,1765.46,,,,,,144,73,0,,,,, +380,13,3,12539,256,1765.64,,,,,,144,57,0,,,,, +380,15,3,12540,384,1765.64,128,8,G#1,f,20,144,32,20,,,,, +380,14,0,12541,384,1765.64,,,,,,176,64,127,,,,,V +380,16,0,12542,512,1766.026,,,,,,176,64,0,,,,,^ +380,15,3,12540,384,1766.176,,,,,,144,32,0,,,,, +380,18,1,12543,512,1766.176,,,,,,176,102,0,,,,, +380,19,3,12544,512,1766.176,42,32,G#1,pp,8,144,32,8,,,,, +380,11,1,12537,256,1766.176,,,,,,144,85,0,,,,, +380,12,1,12538,256,1766.176,,,,,,144,100,0,,,,, +380,17,0,12545,512,1766.326,,,,,,176,64,127,,,,,V +380,19,3,12544,512,1766.352,,,,,,144,32,0,,,,, +380,20,3,12546,554,1766.352,29,32,C5,pp+,9,144,72,9,,,,, +380,20,3,12546,554,1766.473,,,,,,144,72,0,,,,, +380,21,3,12547,583,1766.473,28,32,C#6,p-,10,144,85,10,,,,, +380,21,3,12547,583,1766.59,,,,,,144,85,0,,,,, +380,22,3,12548,611,1766.59,29,32,E5,p,11,144,76,11,,,,, +380,22,3,12548,611,1766.711,,,,,,144,76,0,,,,, +380,23,3,12549,640,1766.711,32,32,G#2,p+,12,144,44,12,,,,, +380,24,3,12550,640,1766.711,32,32,D3,p+,12,144,50,12,,,,, +380,25,3,12551,640,1766.711,32,32,C5,p+,12,144,72,12,,,,, +380,23,3,12549,640,1766.845,,,,,,144,44,0,,,,, +380,24,3,12550,640,1766.845,,,,,,144,50,0,,,,, +380,25,3,12551,640,1766.845,,,,,,144,72,0,,,,, +380,26,3,12552,672,1766.845,32,32,C#6,mp,14,144,85,14,,,,, +380,26,3,12552,672,1766.979,,,,,,144,85,0,,,,, +380,27,3,12553,704,1766.979,32,32,E5,mp+,15,144,76,15,,,,, +380,27,3,12553,704,1767.113,,,,,,144,76,0,,,,, +380,28,3,12554,736,1767.113,32,32,D4,mf-,16,144,62,16,,,,, +380,29,3,12555,736,1767.113,32,32,C#6,mf-,16,144,85,16,,,,, +380,28,3,12554,736,1767.247,,,,,,144,62,0,,,,, +380,29,3,12555,736,1767.247,,,,,,144,85,0,,,,, +380,30,1,12556,768,1767.247,85,8,C#7,mf,17,144,97,17,,,,, +380,31,3,12557,768,1767.247,,,,,,176,102,0,,,,, +380,32,3,12558,810,1767.423,43,16,D3,mf,17,144,50,17,,,,, +380,30,1,12556,768,1767.603,,,,,,144,97,0,,,,, +380,32,3,12558,810,1767.603,,,,,,144,50,0,,,,, +380,33,0,12559,853,1767.603,,,,,,176,64,0,,,,,^ +380,34,1,12560,853,1767.603,43,16,C#7,mf,17,144,97,17,,,,, +380,35,3,12561,853,1767.603,43,16,G#2,mf,17,144,44,17,,,,, +380,36,3,12562,853,1767.603,64,16,D3,mf,17,144,50,17,,,,, +380,34,1,12560,853,1767.783,,,,,,144,97,0,,,,, +380,35,3,12561,853,1767.783,,,,,,144,44,0,,,,, +380,37,1,12563,896,1767.783,,,,,,176,102,0,,,,, +380,38,3,12564,896,1767.783,,,,,,176,102,0,,,,, +380,36,3,12562,853,1767.871,,,,,,144,50,0,,,,, +380,40,1,12565,938,1767.959,43,16,D#4,pp,8,144,63,8,,,,, +380,39,0,12566,938,1767.959,,,,,,176,64,127,,,,,V +380,40,1,12565,938,1768.139,,,,,,144,63,0,,,,, +380,41,1,12567,981,1768.139,43,16,G#3,pp,8,144,56,8,,,,, +380,41,1,12567,981,1768.319,,,,,,144,56,0,,,,, +380,42,1,12568,1024,1768.319,,,,,,176,102,0,,,,, +380,43,3,12569,1024,1768.319,64,16,C2,pp,8,144,36,8,,,,, +380,43,3,12569,1024,1768.586,,,,,,144,36,0,,,,, +380,44,3,12570,1088,1768.586,64,16,D#4,pp,8,144,63,8,,,,, +380,44,3,12570,1088,1768.854,,,,,,144,63,0,,,,, +380,45,3,12571,1152,1768.854,96,16,G#2,pp,8,144,44,8,,,,, +380,45,3,12571,1152,1769.256,,,,,,144,44,0,,,,, +380,46,3,12572,1248,1769.256,32,32,D#2,pp,8,144,39,8,,,,, +380,47,3,12573,1248,1769.256,32,32,B2,pp,8,144,47,8,,,,, +380,48,3,12574,1248,1769.256,32,32,C3,pp,8,144,48,8,,,,, +380,49,0,12575,1279,1769.386,,,,,,176,64,0,,,,,^ +381,0,0,12576,0,1769.39,,,,,,,,,381,,,, +381,1,1,12577,0,1769.39,,,,,,176,102,0,,,,, +381,2,3,12578,0,1769.39,32,32,F#2,p+,12,144,42,12,,,,, +380,46,3,12572,1248,1769.39,,,,,,144,39,0,,,,, +380,47,3,12573,1248,1769.39,,,,,,144,47,0,,,,, +380,48,3,12574,1248,1769.39,,,,,,144,48,0,,,,, +381,2,3,12578,0,1769.524,,,,,,144,42,0,,,,, +381,3,3,12579,32,1769.524,32,32,G2,mf-,16,144,43,16,,,,, +381,3,3,12579,32,1769.658,,,,,,144,43,0,,,,, +381,4,1,12580,64,1769.658,64,16,B2,f,20,144,47,20,,,,, +381,5,1,12581,64,1769.658,64,16,C4,f,20,144,60,20,,,,, +381,6,3,12582,64,1769.658,64,16,D#1,f,20,144,27,20,,,,, +381,7,3,12583,64,1769.658,64,16,F#1,f,20,144,30,20,,,,, +381,4,1,12580,64,1769.926,,,,,,144,47,0,,,,, +381,5,1,12581,64,1769.926,,,,,,144,60,0,,,,, +381,6,3,12582,64,1769.926,,,,,,144,27,0,,,,, +381,7,3,12583,64,1769.926,,,,,,144,30,0,,,,, +381,8,1,12584,128,1769.926,,,,,,176,102,0,,,,, +381,9,3,12585,128,1769.926,,,,,,176,102,0,,,,, +381,10,0,12586,128,1769.926,,,,,,,,,,6042,,, +381,11,1,12587,160,1770.06,96,16,B2,pp,8,144,47,8,,,,, +381,12,1,12588,160,1770.06,64,16,C4,pp,8,144,60,8,,,,, +381,13,3,12589,160,1770.06,96,16,D#1,pp,8,144,27,8,,,,, +381,14,3,12590,160,1770.06,64,16,F#1,pp,8,144,30,8,,,,, +381,12,1,12588,160,1770.328,,,,,,144,60,0,,,,, +381,14,3,12590,160,1770.328,,,,,,144,30,0,,,,, +381,11,1,12587,160,1770.461,,,,,,144,47,0,,,,, +381,13,3,12589,160,1770.461,,,,,,144,27,0,,,,, +381,15,1,12591,256,1770.461,,,,,,176,102,0,,,,, +381,16,3,12592,256,1770.461,25,32,F2,pp,8,144,41,8,,,,, +381,16,3,12592,256,1770.566,,,,,,144,41,0,,,,, +381,17,3,12593,281,1770.566,26,32,C#2,pp,8,144,37,8,,,,, +381,17,3,12593,281,1770.675,,,,,,144,37,0,,,,, +381,18,3,12594,307,1770.675,25,32,D2,pp,8,144,38,8,,,,, +381,18,3,12594,307,1770.78,,,,,,144,38,0,,,,, +381,19,3,12595,332,1770.78,26,32,C#2,pp,8,144,37,8,,,,, +381,19,3,12595,332,1770.888,,,,,,144,37,0,,,,, +381,20,3,12596,358,1770.888,26,32,D2,pp,8,144,38,8,,,,, +381,20,3,12596,358,1770.997,,,,,,144,38,0,,,,, +381,21,3,12597,384,1770.997,25,32,C#2,pp,8,144,37,8,,,,, +381,21,3,12597,384,1771.102,,,,,,144,37,0,,,,, +381,22,3,12598,409,1771.102,39,32,F2,pp,8,144,41,8,,,,, +381,23,1,12599,426,1771.173,43,16,C#5,p,11,144,73,11,,,,, +381,24,1,12600,426,1771.173,64,16,A5,p,11,144,81,11,,,,, +381,26,3,12601,448,1771.265,38,32,D2,pp,8,144,38,8,,,,, +381,25,0,12602,448,1771.265,,,,,,176,64,127,,,,,V +381,22,3,12598,409,1771.265,,,,,,144,41,0,,,,, +381,23,1,12599,426,1771.353,,,,,,144,73,0,,,,, +381,27,1,12603,469,1771.353,43,16,F4,p+,12,144,65,12,,,,, +381,26,3,12601,448,1771.424,,,,,,144,38,0,,,,, +381,28,3,12604,486,1771.424,26,32,C#2,pp,8,144,37,8,,,,, +381,24,1,12600,426,1771.441,,,,,,144,81,0,,,,, +381,27,1,12603,469,1771.533,,,,,,144,65,0,,,,, +381,28,3,12604,486,1771.533,,,,,,144,37,0,,,,, +381,29,1,12605,512,1771.533,170,4,F4,mp,14,144,65,14,,,,, +381,30,1,12606,512,1771.533,256,4,C#5,mp,14,144,73,14,,,,, +381,31,3,12607,512,1771.533,25,32,A1,pp,8,144,33,8,,,,, +381,32,3,12608,512,1771.533,32,32,F2,pp,8,144,41,8,,,,, +381,31,3,12607,512,1771.638,,,,,,144,33,0,,,,, +381,33,3,12609,537,1771.638,39,32,G#2,pp,8,144,44,8,,,,, +381,32,3,12608,512,1771.667,,,,,,144,41,0,,,,, +381,33,3,12609,537,1771.801,,,,,,144,44,0,,,,, +381,34,3,12610,576,1771.801,25,32,A1,pp,8,144,33,8,,,,, +381,35,3,12611,576,1771.801,32,32,C#2,pp,8,144,37,8,,,,, +381,36,3,12612,576,1771.801,32,32,D2,pp,8,144,38,8,,,,, +381,34,3,12610,576,1771.905,,,,,,144,33,0,,,,, +381,37,3,12613,601,1771.905,26,32,G#2,pp,8,144,44,8,,,,, +381,35,3,12611,576,1771.935,,,,,,144,37,0,,,,, +381,36,3,12612,576,1771.935,,,,,,144,38,0,,,,, +381,37,3,12613,601,1772.014,,,,,,144,44,0,,,,, +381,38,3,12614,627,1772.014,38,32,D2,pp,8,144,38,8,,,,, +381,38,3,12614,627,1772.173,,,,,,144,38,0,,,,, +381,39,3,12615,665,1772.173,39,32,A1,pp,8,144,33,8,,,,, +381,40,3,12616,665,1772.173,32,32,C#2,pp,8,144,37,8,,,,, +381,41,3,12617,665,1772.173,32,32,F2,pp,8,144,41,8,,,,, +381,29,1,12605,512,1772.244,,,,,,144,65,0,,,,, +381,42,0,12618,682,1772.244,,,,,,176,64,0,,,,,^ +381,43,1,12619,682,1772.244,,,,,,176,102,0,,,,, +381,40,3,12616,665,1772.307,,,,,,144,37,0,,,,, +381,41,3,12617,665,1772.307,,,,,,144,41,0,,,,, +381,44,3,12620,704,1772.336,38,32,G#2,pp,8,144,44,8,,,,, +381,39,3,12615,665,1772.336,,,,,,144,33,0,,,,, +381,44,3,12620,704,1772.496,,,,,,144,44,0,,,,, +381,45,3,12621,742,1772.496,26,32,A1,pp,8,144,33,8,,,,, +381,30,1,12606,512,1772.604,,,,,,144,73,0,,,,, +381,45,3,12621,742,1772.604,,,,,,144,33,0,,,,, +381,46,1,12622,768,1772.604,42,16,D#4,mp,14,144,63,14,,,,, +381,47,3,12623,768,1772.604,42,16,C2,pp,8,144,36,8,,,,, +381,46,1,12622,768,1772.78,,,,,,144,63,0,,,,, +381,47,3,12623,768,1772.78,,,,,,144,36,0,,,,, +381,48,1,12624,810,1772.78,,,,,,176,102,0,,,,, +381,49,3,12625,810,1772.78,86,8,C2,pp,8,144,36,8,,,,, +381,50,3,12626,810,1772.78,128,8,G#2,pp,8,144,44,8,,,,, +381,52,1,12627,853,1772.96,43,16,E6,mp,14,144,88,14,,,,, +381,51,0,12628,853,1772.96,,,,,,176,64,127,,,,,V +381,52,1,12627,853,1773.14,,,,,,144,88,0,,,,, +381,53,1,12629,896,1773.14,42,16,A5,mp,14,144,81,14,,,,, +381,54,3,12630,896,1773.14,42,16,G#3,pp+,9,144,56,9,,,,, +381,55,3,12631,896,1773.14,64,16,D#4,pp+,9,144,63,9,,,,, +381,49,3,12625,810,1773.29,,,,,,144,36,0,,,,, +381,53,1,12629,896,1773.316,,,,,,144,81,0,,,,, +381,54,3,12630,896,1773.316,,,,,,144,56,0,,,,, +381,56,1,12632,938,1773.316,,,,,,176,102,0,,,,, +381,57,3,12633,938,1773.316,,,,,,176,102,0,,,,, +381,55,3,12631,896,1773.408,,,,,,144,63,0,,,,, +381,50,3,12626,810,1773.466,,,,,,144,44,0,,,,, +381,58,1,12634,1024,1773.676,85,8,G2,mp,14,144,43,14,,,,, +381,59,1,12635,1024,1773.676,128,8,B2,mp,14,144,47,14,,,,, +381,60,3,12636,1024,1773.676,85,8,D#1,p,11,144,27,11,,,,, +381,61,3,12637,1024,1773.676,128,8,F#1,p,11,144,30,11,,,,, +381,62,0,12638,1109,1773.896,,,,,,176,64,0,,,,,^ +381,58,1,12634,1024,1774.031,,,,,,144,43,0,,,,, +381,60,3,12636,1024,1774.031,,,,,,144,27,0,,,,, +381,63,1,12639,1109,1774.031,43,16,C#7,ff,22,144,97,22,,,,, +381,64,3,12640,1109,1774.031,,,,,,176,102,0,,,,, +381,66,3,12641,1130,1774.119,22,32,D#4,pp,8,144,63,8,,,,, +381,65,0,12642,1116,1774.196,,,,,,176,64,127,,,,,V +381,59,1,12635,1024,1774.211,,,,,,144,47,0,,,,, +381,61,3,12637,1024,1774.211,,,,,,144,30,0,,,,, +381,63,1,12639,1109,1774.211,,,,,,144,97,0,,,,, +381,66,3,12641,1130,1774.211,,,,,,144,63,0,,,,, +381,67,1,12643,1152,1774.211,21,32,B5,pp,8,144,83,8,,,,, +381,68,3,12644,1152,1774.211,,,,,,176,102,0,,,,, +381,67,1,12643,1152,1774.299,,,,,,144,83,0,,,,, +381,69,1,12645,1173,1774.299,43,16,C7,pp+,9,144,96,9,,,,, +381,70,3,12646,1194,1774.387,22,32,F#4,p-,10,144,66,10,,,,, +381,69,1,12645,1173,1774.479,,,,,,144,96,0,,,,, +381,70,3,12646,1194,1774.479,,,,,,144,66,0,,,,, +381,71,1,12647,1216,1774.479,64,16,C7,p,11,144,96,11,,,,, +381,72,3,12648,1216,1774.479,,,,,,176,102,0,,,,, +381,73,3,12649,1248,1774.613,32,32,D#4,p+,12,144,63,12,,,,, +381,71,1,12647,1216,1774.747,,,,,,144,96,0,,,,, +381,73,3,12649,1248,1774.747,,,,,,144,63,0,,,,, +382,0,0,12650,0,1774.747,,,,,,,,,382,,,, +382,1,1,12651,0,1774.747,,,,,,176,102,0,,,,, +382,2,3,12652,0,1774.747,32,32,F#4,p+,12,144,66,12,,,,, +382,2,3,12652,0,1774.881,,,,,,144,66,0,,,,, +382,3,3,12653,32,1774.881,32,32,B5,p+,12,144,83,12,,,,, +382,3,3,12653,32,1775.015,,,,,,144,83,0,,,,, +382,4,3,12654,64,1775.015,21,32,C7,p+,12,144,96,12,,,,, +382,4,3,12654,64,1775.103,,,,,,144,96,0,,,,, +382,5,1,12655,85,1775.103,85,8,C#7,ff,22,144,97,22,,,,, +382,6,3,12656,85,1775.103,21,32,F#4,p+,12,144,66,12,,,,, +382,6,3,12656,85,1775.191,,,,,,144,66,0,,,,, +382,7,3,12657,106,1775.191,22,32,G5,p+,12,144,79,12,,,,, +382,7,3,12657,106,1775.283,,,,,,144,79,0,,,,, +382,8,3,12658,128,1775.283,,,,,,176,102,0,,,,, +382,5,1,12655,85,1775.459,,,,,,144,97,0,,,,, +382,9,0,12659,170,1775.459,,,,,,176,64,0,,,,,^ +382,10,1,12660,170,1775.459,86,8,C#7,ff,22,144,97,22,,,,, +382,11,3,12661,170,1775.459,86,8,D3,ff,22,144,50,22,,,,, +382,10,1,12660,170,1775.819,,,,,,144,97,0,,,,, +382,11,3,12661,170,1775.819,,,,,,144,50,0,,,,, +382,12,1,12662,256,1775.819,42,16,C#3,f,20,144,49,20,,,,, +382,13,1,12663,256,1775.819,64,16,B3,f,20,144,59,20,,,,, +382,14,3,12664,256,1775.819,42,16,D#1,f,20,144,27,20,,,,, +382,15,3,12665,256,1775.819,64,16,G#1,f,20,144,32,20,,,,, +382,12,1,12662,256,1775.994,,,,,,144,49,0,,,,, +382,14,3,12664,256,1775.994,,,,,,144,27,0,,,,, +382,16,1,12666,298,1775.994,128,8,G2,mf,17,144,43,17,,,,, +382,17,3,12667,298,1775.994,,,,,,176,102,0,,,,, +382,18,0,12668,298,1775.994,,,,,,,,,,6043,,, +382,13,1,12663,256,1776.086,,,,,,144,59,0,,,,, +382,15,3,12665,256,1776.086,,,,,,144,32,0,,,,, +382,16,1,12666,298,1776.53,,,,,,144,43,0,,,,, +382,20,1,12669,426,1776.53,86,8,G2,pp,8,144,43,8,,,,, +382,21,1,12670,426,1776.53,128,8,C#3,pp,8,144,49,8,,,,, +382,22,3,12671,426,1776.53,86,8,D#1,pp,8,144,27,8,,,,, +382,23,3,12672,426,1776.53,128,8,G#1,pp,8,144,32,8,,,,, +382,19,0,12673,426,1776.53,,,,,,176,64,127,,,,,V +382,20,1,12669,426,1776.89,,,,,,144,43,0,,,,, +382,22,3,12671,426,1776.89,,,,,,144,27,0,,,,, +382,24,1,12674,512,1776.89,,,,,,176,102,0,,,,, +382,25,3,12675,512,1776.89,,,,,,176,102,0,,,,, +382,21,1,12670,426,1777.066,,,,,,144,49,0,,,,, +382,23,3,12672,426,1777.066,,,,,,144,32,0,,,,, +382,26,1,12676,576,1777.158,32,32,G#5,p,11,144,80,11,,,,, +382,26,1,12676,576,1777.292,,,,,,144,80,0,,,,, +382,27,1,12677,608,1777.292,32,32,C5,p,11,144,72,11,,,,, +382,27,1,12677,608,1777.426,,,,,,144,72,0,,,,, +382,28,1,12678,640,1777.426,,,,,,176,102,0,,,,, +382,29,3,12679,640,1777.426,64,16,E2,p,11,144,40,11,,,,, +382,29,3,12679,640,1777.694,,,,,,144,40,0,,,,, +382,30,3,12680,704,1777.694,32,32,B2,p,11,144,47,11,,,,, +382,30,3,12680,704,1777.828,,,,,,144,47,0,,,,, +382,31,3,12681,736,1777.828,32,32,F3,p,11,144,53,11,,,,, +382,31,3,12681,736,1777.961,,,,,,144,53,0,,,,, +382,32,1,12682,768,1777.961,28,32,G#5,p,11,144,80,11,,,,, +382,33,1,12683,768,1777.961,32,32,C6,mf,17,144,84,17,,,,, +382,34,3,12684,,1777.961,,8,D#3,pp,8,144,51,8,,,,g, +382,34,3,12684,,1778.011,,,,,,144,51,0,,,,, +382,35,3,12685,,1778.036,,8,C2,pp,8,144,36,8,,,,g, +382,32,1,12682,768,1778.079,,,,,,144,80,0,,,,, +382,35,3,12685,,1778.086,,,,,,144,36,0,,,,, +382,33,1,12683,768,1778.095,,,,,,144,84,0,,,,, +382,36,3,12686,,1778.111,,8,D#3,pp,8,144,51,8,,,,g, +382,36,3,12686,,1778.161,,,,,,144,51,0,,,,, +382,37,3,12687,,1778.186,,8,A3,pp,8,144,57,8,,,,g, +382,37,3,12687,,1778.236,,,,,,144,57,0,,,,, +382,38,3,12688,768,1778.261,64,16,C2,p,11,144,36,11,,,,, +382,39,3,12689,768,1778.261,64,16,G#2,pp,8,144,44,8,,,,, +382,40,1,12690,796,1778.379,43,32,C5,p,11,144,72,11,,,,, +382,38,3,12688,768,1778.529,,,,,,144,36,0,,,,, +382,39,3,12689,768,1778.529,,,,,,144,44,0,,,,, +382,41,3,12691,832,1778.529,,,,,,176,102,0,,,,, +382,40,1,12690,796,1778.559,,,,,,144,72,0,,,,, +382,42,1,12692,839,1778.559,28,32,E2,p+,12,144,40,12,,,,, +382,43,1,12693,839,1778.559,32,32,B2,p+,12,144,47,12,,,,, +382,44,1,12694,839,1778.559,32,32,F4,p+,12,144,65,12,,,,, +382,42,1,12692,839,1778.676,,,,,,144,40,0,,,,, +382,45,1,12695,867,1778.676,29,32,C5,mp-,13,144,72,13,,,,, +382,43,1,12693,839,1778.693,,,,,,144,47,0,,,,, +382,44,1,12694,839,1778.693,,,,,,144,65,0,,,,, +382,46,1,12696,896,1778.797,,,,,,176,102,0,,,,, +382,47,3,12697,896,1778.797,28,32,F3,mp-,13,144,53,13,,,,, +382,47,3,12697,896,1778.914,,,,,,144,53,0,,,,, +382,48,3,12698,924,1778.914,28,32,G#5,mp,14,144,80,14,,,,, +382,45,1,12695,867,1779.022,,,,,,144,72,0,,,,, +382,48,3,12698,924,1779.032,,,,,,144,80,0,,,,, +382,49,3,12699,952,1779.032,43,32,E1,mp,14,144,28,14,,,,, +382,49,3,12699,952,1779.212,,,,,,144,28,0,,,,, +382,50,3,12700,995,1779.212,29,32,B2,mp+,15,144,47,15,,,,, +382,51,1,12701,1024,1779.333,,,,,,176,102,0,,,,, +382,52,3,12702,1024,1779.333,32,32,B2,,,,,,,,,, +382,50,3,12700,995,1779.467,,,,,,144,47,0,,,,, +382,53,1,12703,1056,1779.467,32,32,C5,p,11,144,72,11,,,,, +382,54,1,12704,1056,1779.467,32,32,G#5,p,11,144,80,11,,,,, +382,55,3,12705,1056,1779.467,32,32,E2,p,11,144,40,11,,,,, +382,56,3,12706,1056,1779.467,32,32,B2,p,11,144,47,11,,,,, +382,57,3,12707,1056,1779.467,32,32,F3,p,11,144,53,11,,,,, +382,53,1,12703,1056,1779.601,,,,,,144,72,0,,,,, +382,54,1,12704,1056,1779.601,,,,,,144,80,0,,,,, +382,55,3,12705,1056,1779.601,,,,,,144,40,0,,,,, +382,56,3,12706,1056,1779.601,,,,,,144,47,0,,,,, +382,57,3,12707,1056,1779.601,,,,,,144,53,0,,,,, +382,58,1,12708,1088,1779.601,64,16,G#4,p,11,144,68,11,,,,, +382,59,3,12709,1088,1779.601,,,,,,176,102,0,,,,, +382,58,1,12708,1088,1779.869,,,,,,144,68,0,,,,, +382,60,1,12710,1152,1779.869,32,32,F3,mf,17,144,53,17,,,,, +382,61,1,12711,1152,1779.869,32,32,G#3,mf,17,144,56,17,,,,, +382,62,3,12712,1152,1779.869,32,32,C2,mf,17,144,36,17,,,,, +382,63,3,12713,1152,1779.869,32,32,A#2,mf,17,144,46,17,,,,, +382,60,1,12710,1152,1780.003,,,,,,144,53,0,,,,, +382,61,1,12711,1152,1780.003,,,,,,144,56,0,,,,, +382,62,3,12712,1152,1780.003,,,,,,144,36,0,,,,, +382,63,3,12713,1152,1780.003,,,,,,144,46,0,,,,, +382,64,1,12714,1184,1780.003,96,16,E5,pp,8,144,76,8,,,,, +382,65,3,12715,1184,1780.003,,,,,,176,102,0,,,,, +382,64,1,12714,1184,1780.404,,,,,,144,76,0,,,,, +383,0,0,12716,0,1780.404,,,,,,,,,383,,,, +383,1,0,12717,0,1780.404,,,,,,,,,,6044,,, +383,2,1,12718,0,1780.404,85,8,C#6,f,20,144,85,20,,,,, +383,3,1,12719,0,1780.404,128,8,E7,f,20,144,100,20,,,,, +383,4,3,12720,0,1780.404,64,16,G1,f,20,144,31,20,,,,, +383,5,3,12721,0,1780.404,64,16,G#2,f,20,144,44,20,,,,, +383,4,3,12720,0,1780.672,,,,,,144,31,0,,,,, +383,5,3,12721,0,1780.672,,,,,,144,44,0,,,,, +383,6,3,12722,64,1780.672,21,32,C4,mp,14,144,60,14,,,,, +383,2,1,12718,0,1780.76,,,,,,144,85,0,,,,, +383,6,3,12722,64,1780.76,,,,,,144,60,0,,,,, +383,7,1,12723,85,1780.76,171,4,C#7,pp,8,144,97,8,,,,, +383,8,3,12724,85,1780.76,43,16,D3,pp,8,144,50,8,,,,, +383,3,1,12719,0,1780.94,,,,,,144,100,0,,,,, +383,9,3,12725,128,1780.94,128,8,D3,,,,,,,,,, +383,7,1,12723,85,1781.476,,,,,,144,97,0,,,,, +383,8,3,12724,85,1781.476,,,,,,144,50,0,,,,, +383,10,1,12726,256,1781.476,,,,,,176,102,0,,,,, +383,11,3,12727,256,1781.476,,,,,,176,102,0,,,,, +383,12,3,12728,288,1781.61,32,32,G#4,p,11,144,68,11,,,,, +383,12,3,12728,288,1781.744,,,,,,144,68,0,,,,, +383,13,3,12729,320,1781.744,64,16,E1,p,11,144,28,11,,,,, +383,13,3,12729,320,1782.011,,,,,,144,28,0,,,,, +383,14,1,12730,384,1782.011,32,32,D#3,mp,14,144,51,14,,,,, +383,15,1,12731,384,1782.011,32,32,A3,mp,14,144,57,14,,,,, +383,16,3,12732,384,1782.011,32,32,C2,mp,14,144,36,14,,,,, +383,17,3,12733,384,1782.011,32,32,G#2,mp,14,144,44,14,,,,, +383,14,1,12730,384,1782.145,,,,,,144,51,0,,,,, +383,15,1,12731,384,1782.145,,,,,,144,57,0,,,,, +383,16,3,12732,384,1782.145,,,,,,144,36,0,,,,, +383,17,3,12733,384,1782.145,,,,,,144,44,0,,,,, +383,18,1,12734,416,1782.145,96,16,E5,mp,14,144,76,14,,,,, +383,19,3,12735,416,1782.145,,,,,,176,102,0,,,,, +383,20,3,12736,448,1782.279,,,,,,176,102,0,,,,, +383,18,1,12734,416,1782.547,,,,,,144,76,0,,,,, +383,21,1,12737,512,1782.547,512,2,C6,mp,14,144,84,14,,,,, +383,22,3,12738,512,1782.547,25,32,F2,pp,8,144,41,8,,,,, +383,22,3,12738,512,1782.652,,,,,,144,41,0,,,,, +383,23,3,12739,537,1782.652,26,32,C#2,pp,8,144,37,8,,,,, +383,23,3,12739,537,1782.761,,,,,,144,37,0,,,,, +383,24,3,12740,563,1782.761,25,32,D2,pp,8,144,38,8,,,,, +383,24,3,12740,563,1782.865,,,,,,144,38,0,,,,, +383,25,3,12741,588,1782.865,26,32,C#2,pp,8,144,37,8,,,,, +383,25,3,12741,588,1782.974,,,,,,144,37,0,,,,, +383,26,3,12742,614,1782.974,26,32,D2,pp,8,144,38,8,,,,, +383,26,3,12742,614,1783.083,,,,,,144,38,0,,,,, +383,27,3,12743,640,1783.083,25,32,C#2,pp,8,144,37,8,,,,, +383,27,3,12743,640,1783.188,,,,,,144,37,0,,,,, +383,28,3,12744,665,1783.188,39,32,F2,pp,8,144,41,8,,,,, +383,28,3,12744,665,1783.351,,,,,,144,41,0,,,,, +383,29,3,12745,704,1783.351,38,32,D2,pp,8,144,38,8,,,,, +383,29,3,12745,704,1783.51,,,,,,144,38,0,,,,, +383,30,3,12746,742,1783.51,26,32,C#2,pp,8,144,37,8,,,,, +383,30,3,12746,742,1783.619,,,,,,144,37,0,,,,, +383,31,3,12747,768,1783.619,25,32,A1,pp,8,144,33,8,,,,, +383,32,3,12748,768,1783.619,32,32,F2,pp,8,144,41,8,,,,, +383,33,0,12749,772,1783.635,,,,,,176,64,0,,,,,^ +383,31,3,12747,768,1783.723,,,,,,144,33,0,,,,, +383,34,3,12750,793,1783.723,39,32,G#2,pp,8,144,44,8,,,,, +383,32,3,12748,768,1783.753,,,,,,144,41,0,,,,, +383,34,3,12750,793,1783.886,,,,,,144,44,0,,,,, +383,35,3,12751,832,1783.886,25,32,A1,pp,8,144,33,8,,,,, +383,36,3,12752,832,1783.886,32,32,C#2,pp,8,144,37,8,,,,, +383,37,3,12753,832,1783.886,32,32,D2,pp,8,144,38,8,,,,, +383,35,3,12751,832,1783.991,,,,,,144,33,0,,,,, +383,38,3,12754,857,1783.991,26,32,G#2,pp,8,144,44,8,,,,, +383,36,3,12752,832,1784.02,,,,,,144,37,0,,,,, +383,37,3,12753,832,1784.02,,,,,,144,38,0,,,,, +383,38,3,12754,857,1784.1,,,,,,144,44,0,,,,, +383,39,3,12755,883,1784.1,38,32,D2,pp,8,144,38,8,,,,, +383,39,3,12755,883,1784.259,,,,,,144,38,0,,,,, +383,40,3,12756,921,1784.259,39,32,A1,pp,8,144,33,8,,,,, +383,41,3,12757,921,1784.259,32,32,C#2,pp,8,144,37,8,,,,, +383,42,3,12758,921,1784.259,32,32,F2,pp,8,144,41,8,,,,, +383,41,3,12757,921,1784.393,,,,,,144,37,0,,,,, +383,42,3,12758,921,1784.393,,,,,,144,41,0,,,,, +383,40,3,12756,921,1784.422,,,,,,144,33,0,,,,, +383,43,3,12759,960,1784.422,38,32,G#2,pp,8,144,44,8,,,,, +383,43,3,12759,960,1784.581,,,,,,144,44,0,,,,, +383,44,3,12760,998,1784.581,26,32,A1,pp,8,144,33,8,,,,, +383,45,0,12761,998,1784.581,,,,,,,,,,6045,,, +383,21,1,12737,512,1784.69,,,,,,144,84,0,,,,, +383,44,3,12760,998,1784.69,,,,,,144,33,0,,,,, +383,46,1,12762,1024,1784.69,,,,,,176,102,0,,,,, +383,47,3,12763,1024,1784.69,64,16,D#1,mf,17,144,27,17,,,,, +383,48,3,12764,1024,1784.69,64,16,G#1,mf,17,144,32,17,,,,, +383,49,3,12765,1024,1784.69,64,16,C#2,mf,17,144,37,17,,,,, +383,50,3,12766,1024,1784.69,64,16,G3,mf,17,144,55,17,,,,, +383,51,3,12767,1024,1784.69,64,16,B3,mf,17,144,59,17,,,,, +383,47,3,12763,1024,1784.74,,,,,,144,27,0,,,,, +383,48,3,12764,1024,1784.74,,,,,,144,32,0,,,,, +383,49,3,12765,1024,1784.74,,,,,,144,37,0,,,,, +383,50,3,12766,1024,1784.74,,,,,,144,55,0,,,,, +383,51,3,12767,1024,1784.74,,,,,,144,59,0,,,,, +383,52,3,12768,1088,1784.958,192,8,D#2,pp,8,144,39,8,,,,, +383,53,0,12769,1140,1785.176,,,,,,176,64,127,,,,,V +383,52,3,12768,1088,1785.761,,,,,,144,39,0,,,,, +384,0,0,12770,0,1785.761,,,,,,,,,384,,,, +384,1,1,12771,0,1785.761,,,,,,176,102,0,,,,, +384,2,3,12772,0,1785.761,,,,,,176,102,0,,,,, +384,3,1,12773,128,1786.297,85,8,C6,p,11,144,84,11,,,,, +384,4,3,12774,128,1786.297,85,8,D#3,pp,8,144,51,8,,,,, +384,3,1,12773,128,1786.653,,,,,,144,84,0,,,,, +384,4,3,12774,128,1786.653,,,,,,144,51,0,,,,, +384,5,1,12775,213,1786.653,,,,,,176,102,0,,,,, +384,6,3,12776,213,1786.653,43,16,C2,pp,8,144,36,8,,,,, +384,7,1,12777,234,1786.741,22,32,F4,p,11,144,65,11,,,,, +384,6,3,12776,213,1786.833,,,,,,144,36,0,,,,, +384,7,1,12777,234,1786.833,,,,,,144,65,0,,,,, +384,8,1,12778,256,1786.833,21,32,G#4,mp-,13,144,68,13,,,,, +384,9,3,12779,256,1786.833,,,,,,176,102,0,,,,, +384,11,0,12780,298,1786.905,,,,,,176,64,0,,,,,^ +384,8,1,12778,256,1786.921,,,,,,144,68,0,,,,, +384,10,1,12781,277,1786.921,21,32,E5,mp+,15,144,76,15,,,,, +384,10,1,12781,277,1787.009,,,,,,144,76,0,,,,, +384,12,1,12782,298,1787.009,22,32,F4,mf,17,144,65,17,,,,, +384,13,1,12783,298,1787.009,32,32,G#4,mf,17,144,68,17,,,,, +384,14,3,12784,298,1787.009,22,32,C2,mf,17,144,36,17,,,,, +384,15,3,12785,298,1787.009,32,32,A#2,mf,17,144,46,17,,,,, +384,12,1,12782,298,1787.059,,,,,,144,65,0,,,,, +384,13,1,12783,298,1787.059,,,,,,144,68,0,,,,, +384,14,3,12784,298,1787.059,,,,,,144,36,0,,,,, +384,15,3,12785,298,1787.059,,,,,,144,46,0,,,,, +384,17,1,12786,320,1787.101,,,,,,176,102,0,,,,, +384,18,3,12787,320,1787.101,21,32,C3,mp,14,144,48,14,,,,, +384,18,3,12787,320,1787.189,,,,,,144,48,0,,,,, +384,19,3,12788,341,1787.189,21,32,F2,p+,12,144,41,12,,,,, +384,16,0,12789,320,1787.205,,,,,,176,64,127,,,,,V +384,19,3,12788,341,1787.277,,,,,,144,41,0,,,,, +384,20,3,12790,362,1787.277,22,32,B1,p,11,144,35,11,,,,, +384,20,3,12790,362,1787.369,,,,,,144,35,0,,,,, +384,21,1,12791,384,1787.369,21,32,G2,p,11,144,43,11,,,,, +384,22,3,12792,384,1787.369,,,,,,176,102,0,,,,, +384,21,1,12791,384,1787.456,,,,,,144,43,0,,,,, +384,23,1,12793,405,1787.456,21,32,E6,p,11,144,88,11,,,,, +384,23,1,12793,405,1787.544,,,,,,144,88,0,,,,, +384,24,1,12794,426,1787.544,22,32,C#6,p,11,144,85,11,,,,, +384,24,1,12794,426,1787.636,,,,,,144,85,0,,,,, +384,25,1,12795,448,1787.636,21,32,E6,p-,10,144,88,10,,,,, +384,25,1,12795,448,1787.724,,,,,,144,88,0,,,,, +384,26,1,12796,469,1787.724,21,32,C#5,p-,10,144,73,10,,,,, +384,26,1,12796,469,1787.812,,,,,,144,73,0,,,,, +384,27,1,12797,490,1787.812,22,32,E5,p-,10,144,76,10,,,,, +384,27,1,12797,490,1787.904,,,,,,144,76,0,,,,, +384,28,1,12798,512,1787.904,32,32,G3,p-,10,144,55,10,,,,, +384,29,3,12799,512,1787.904,256,4,C3,mf,17,144,48,17,,,,, +384,28,1,12798,512,1788.038,,,,,,144,55,0,,,,, +384,30,1,12800,544,1788.038,32,32,C#4,pp+,9,144,61,9,,,,, +384,30,1,12800,544,1788.172,,,,,,144,61,0,,,,, +384,31,1,12801,576,1788.172,21,32,E5,pp+,9,144,76,9,,,,, +384,31,1,12801,576,1788.26,,,,,,144,76,0,,,,, +384,32,1,12802,597,1788.26,21,32,C#4,pp+,9,144,61,9,,,,, +384,32,1,12802,597,1788.348,,,,,,144,61,0,,,,, +384,33,1,12803,618,1788.348,22,32,C4,pp,8,144,60,8,,,,, +384,33,1,12803,618,1788.44,,,,,,144,60,0,,,,, +384,34,1,12804,640,1788.44,32,32,G2,pp,8,144,43,8,,,,, +384,35,1,12805,640,1788.44,32,32,G#3,pp,8,144,56,8,,,,, +384,34,1,12804,640,1788.574,,,,,,144,43,0,,,,, +384,35,1,12805,640,1788.574,,,,,,144,56,0,,,,, +384,36,1,12806,672,1788.574,32,32,C4,pp,8,144,60,8,,,,, +384,36,1,12806,672,1788.708,,,,,,144,60,0,,,,, +384,37,1,12807,704,1788.708,32,32,G#2,pp-,7,144,44,7,,,,, +384,37,1,12807,704,1788.842,,,,,,144,44,0,,,,, +384,38,1,12808,736,1788.842,32,32,C5,pp-,7,144,72,7,,,,, +384,39,1,12809,736,1788.842,32,32,E5,pp-,7,144,76,7,,,,, +384,29,3,12799,512,1788.976,,,,,,144,48,0,,,,, +384,38,1,12808,736,1788.976,,,,,,144,72,0,,,,, +384,39,1,12809,736,1788.976,,,,,,144,76,0,,,,, +384,40,1,12810,768,1788.976,,,,,,176,102,0,,,,, +384,41,3,12811,768,1788.976,32,32,G1,pp-,7,144,31,7,,,,, +384,41,3,12811,768,1789.11,,,,,,144,31,0,,,,, +384,42,3,12812,800,1789.11,32,32,C#4,ppp+,6,144,61,6,,,,, +384,42,3,12812,800,1789.244,,,,,,144,61,0,,,,, +384,43,3,12813,832,1789.244,21,32,G#2,ppp+,6,144,44,6,,,,, +384,44,3,12814,832,1789.244,32,32,E5,ppp+,6,144,76,6,,,,, +384,43,3,12813,832,1789.331,,,,,,144,44,0,,,,, +384,45,3,12815,853,1789.331,21,32,C3,ppp+,6,144,48,6,,,,, +384,44,3,12814,832,1789.378,,,,,,144,76,0,,,,, +384,45,3,12815,853,1789.419,,,,,,144,48,0,,,,, +384,46,3,12816,874,1789.419,22,32,G#2,ppp,5,144,44,5,,,,, +384,47,3,12817,896,1789.511,10,64,G#2,,,,,,,,,, +384,48,3,12818,906,1789.553,22,32,C3,ppp,5,144,48,5,,,,, +384,46,3,12816,874,1789.553,,,,,,144,44,0,,,,, +384,48,3,12818,906,1789.645,,,,,,144,48,0,,,,, +384,49,3,12819,928,1789.645,32,32,C#3,ppp,5,144,49,5,,,,, +384,50,0,12820,960,1789.763,,,,,,176,64,0,,,,,^ +384,49,3,12819,928,1789.779,,,,,,144,49,0,,,,, +384,51,3,12821,960,1789.779,32,32,G#2,ppp,5,144,44,5,,,,, +384,52,3,12822,960,1789.779,32,32,C3,ppp,5,144,48,5,,,,, +384,53,3,12823,960,1789.779,32,32,E4,ppp,5,144,64,5,,,,, +384,51,3,12821,960,1789.913,,,,,,144,44,0,,,,, +384,52,3,12822,960,1789.913,,,,,,144,48,0,,,,, +384,53,3,12823,960,1789.913,,,,,,144,64,0,,,,, +384,54,3,12824,992,1789.913,32,32,G1,ppp,5,144,31,5,,,,, +384,55,3,12825,992,1789.913,32,32,G#1,ppp,5,144,32,5,,,,, +384,56,0,12826,992,1789.913,,,,,,,,,,6046,,, +384,54,3,12824,992,1790.047,,,,,,144,31,0,,,,, +384,55,3,12825,992,1790.047,,,,,,144,32,0,,,,, +384,58,1,12827,1024,1790.047,64,16,C5,pp,8,144,72,8,,,,, +384,59,3,12828,1024,1790.047,42,16,C2,ppp,5,144,36,5,,,,, +384,60,3,12829,1024,1790.047,64,16,C#3,ppp,5,144,49,5,,,,, +384,61,3,12830,1024,1790.047,64,16,E4,ppp,5,144,64,5,,,,, +384,57,0,12831,1024,1790.063,,,,,,176,64,127,,,,,V +384,59,3,12828,1024,1790.223,,,,,,144,36,0,,,,, +384,62,3,12832,1066,1790.223,,,,,,176,102,0,,,,, +384,58,1,12827,1024,1790.315,,,,,,144,72,0,,,,, +384,60,3,12829,1024,1790.315,,,,,,144,49,0,,,,, +384,61,3,12830,1024,1790.315,,,,,,144,64,0,,,,, +384,63,1,12833,1088,1790.315,64,16,G#5,pp,8,144,80,8,,,,, +384,64,3,12834,1109,1790.403,43,16,C#4,ppp,5,144,61,5,,,,, +384,63,1,12833,1088,1790.583,,,,,,144,80,0,,,,, +384,64,3,12834,1109,1790.583,,,,,,144,61,0,,,,, +384,65,1,12835,1152,1790.583,,,,,,176,102,0,,,,, +384,66,3,12836,1152,1790.583,64,16,G2,ppp,5,144,43,5,,,,, +384,66,3,12836,1152,1790.851,,,,,,144,43,0,,,,, +384,67,3,12837,1216,1790.851,64,16,C#4,ppp,5,144,61,5,,,,, +385,0,0,12838,0,1791.119,,,,,,,,,385,,,, +385,1,1,12839,0,1791.119,,,,,,176,102,0,,,,, +385,2,2,12840,0,1791.119,256,4,E5,ppp,5,144,76,5,,,,, +385,3,3,12841,0,1791.119,,,,,,176,102,0,,,,, +384,67,3,12837,1216,1791.194,,,,,,144,61,0,,,,, +385,4,1,12842,,1792.04,,8,E6,pp,8,144,88,8,,,,g, +385,4,1,12842,,1792.09,,,,,,144,88,0,,,,, +385,5,1,12843,,1792.115,,8,F#3,pp,8,144,54,8,,,,g, +385,5,1,12843,,1792.165,,,,,,144,54,0,,,,, +385,6,1,12844,256,1792.19,25,32,B3,pp,8,144,59,8,,,,, +385,7,2,12845,256,1792.19,256,4,D6,pp,8,144,86,8,,,,, +385,8,3,12846,256,1792.19,170,4,C3,p,11,144,48,11,,,,, +385,2,2,12840,0,1792.265,,,,,,144,76,0,,,,, +385,6,1,12844,256,1792.295,,,,,,144,59,0,,,,, +385,9,1,12847,281,1792.295,39,32,E7,pp,8,144,100,8,,,,, +385,9,1,12847,281,1792.458,,,,,,144,100,0,,,,, +385,10,1,12848,320,1792.458,38,32,B3,pp,8,144,59,8,,,,, +385,10,1,12848,320,1792.617,,,,,,144,59,0,,,,, +385,11,1,12849,358,1792.617,102,8,A#4,pp,8,144,70,8,,,,, +385,8,3,12846,256,1792.902,,,,,,144,48,0,,,,, +385,12,3,12850,426,1792.902,86,8,D#4,p,11,144,63,11,,,,, +385,11,1,12849,358,1793.044,,,,,,144,70,0,,,,, +385,13,1,12851,460,1793.044,52,16,D4,pp,8,144,62,8,,,,, +385,7,2,12845,256,1793.261,,,,,,144,86,0,,,,, +385,14,1,12852,512,1793.261,,,,,,176,102,0,,,,, +385,15,2,12853,512,1793.261,64,16,D6,pp,8,144,86,8,,,,, +385,16,3,12854,512,1793.261,85,8,D#4,,,,,,,,,, +385,13,1,12851,460,1793.411,,,,,,144,62,0,,,,, +385,15,2,12853,512,1793.529,,,,,,144,86,0,,,,, +385,17,2,12855,576,1793.529,64,16,F#5,pp,8,144,78,8,,,,, +385,18,3,12856,597,1793.617,43,16,G#3,p,11,144,56,11,,,,, +385,12,3,12850,426,1793.767,,,,,,144,63,0,,,,, +385,17,2,12855,576,1793.797,,,,,,144,78,0,,,,, +385,18,3,12856,597,1793.797,,,,,,144,56,0,,,,, +385,19,2,12857,640,1793.797,,,,,,176,102,0,,,,, +385,20,3,12858,640,1793.797,21,32,G#2,pp,8,144,44,8,,,,, +385,20,3,12858,640,1793.885,,,,,,144,44,0,,,,, +385,21,3,12859,661,1793.885,21,32,D#3,pp,8,144,51,8,,,,, +385,21,3,12859,661,1793.973,,,,,,144,51,0,,,,, +385,22,2,12860,682,1793.973,22,32,A5,p,11,144,81,11,,,,, +385,23,3,12861,682,1793.973,22,32,G#2,pp,8,144,44,8,,,,, +385,22,2,12860,682,1794.065,,,,,,144,81,0,,,,, +385,23,3,12861,682,1794.065,,,,,,144,44,0,,,,, +385,24,2,12862,704,1794.065,32,32,E7,p,11,144,100,11,,,,, +385,25,3,12863,704,1794.065,32,32,D#3,pp,8,144,51,8,,,,, +385,24,2,12862,704,1794.199,,,,,,144,100,0,,,,, +385,25,3,12863,704,1794.199,,,,,,144,51,0,,,,, +385,26,2,12864,736,1794.199,32,32,A6,p,11,144,93,11,,,,, +385,27,3,12865,736,1794.199,32,32,G#2,pp,8,144,44,8,,,,, +385,26,2,12864,736,1794.333,,,,,,144,93,0,,,,, +385,27,3,12865,736,1794.333,,,,,,144,44,0,,,,, +385,28,1,12866,768,1794.333,,,,,,176,102,0,,,,, +385,29,2,12867,768,1794.333,512,2,A#6,pp,8,144,94,8,,,,, +385,30,3,12868,768,1794.333,51,16,B2,pp,8,144,47,8,,,,, +385,30,3,12868,768,1794.546,,,,,,144,47,0,,,,, +385,31,3,12869,819,1794.546,25,32,A#3,pp,8,144,58,8,,,,, +385,31,3,12869,819,1794.651,,,,,,144,58,0,,,,, +385,32,3,12870,844,1794.651,26,32,E5,pp,8,144,76,8,,,,, +385,32,3,12870,844,1794.76,,,,,,144,76,0,,,,, +385,33,3,12871,870,1794.76,26,32,D3,pp,8,144,50,8,,,,, +385,33,3,12871,870,1794.869,,,,,,144,50,0,,,,, +385,34,3,12872,896,1794.869,76,16,F#2,pp,8,144,42,8,,,,, +385,35,0,12873,896,1794.869,,,,,,,,,,6047,,, +385,36,0,12874,972,1795.118,,,,,,176,64,0,,,,,^ +385,34,3,12872,896,1795.187,,,,,,144,42,0,,,,, +385,37,3,12875,972,1795.187,52,16,F#2,mp,14,144,42,14,,,,, +385,38,3,12876,972,1795.187,64,16,B2,mp,14,144,47,14,,,,, +385,39,3,12877,972,1795.187,64,16,D3,mp,14,144,50,14,,,,, +385,40,3,12878,972,1795.187,64,16,A#3,mp,14,144,58,14,,,,, +385,37,3,12875,972,1795.404,,,,,,144,42,0,,,,, +385,42,3,12879,,1795.404,,8,D#3,p,11,144,51,11,,,,g, +385,41,0,12880,1011,1795.418,,,,,,176,64,127,,,,,V +385,42,3,12879,,1795.454,,,,,,144,51,0,,,,, +385,43,3,12881,,1795.479,,8,C2,p,11,144,36,11,,,,g, +385,43,3,12881,,1795.529,,,,,,144,36,0,,,,, +385,44,3,12882,1024,1795.554,56,16,G#2,p,11,144,44,11,,,,, +385,38,3,12876,972,1795.68,,,,,,144,47,0,,,,, +385,39,3,12877,972,1795.68,,,,,,144,50,0,,,,, +385,40,3,12878,972,1795.68,,,,,,144,58,0,,,,, +385,45,3,12883,1080,1795.789,57,16,A4,p,11,144,69,11,,,,, +385,44,3,12882,1024,1796.014,,,,,,144,44,0,,,,, +385,45,3,12883,1080,1796.027,,,,,,144,69,0,,,,, +385,46,3,12884,1137,1796.027,86,16,E6,p,11,144,88,11,,,,, +385,46,3,12884,1137,1796.387,,,,,,144,88,0,,,,, +385,47,3,12885,1223,1796.387,57,16,A4,p,11,144,69,11,,,,, +385,47,3,12885,1223,1796.626,,,,,,144,69,0,,,,, +386,0,0,12886,0,1796.626,,,,,,,,,386,,,, +386,1,1,12887,,1796.626,,8,F#4,p,11,144,66,11,,,,g, +386,1,1,12887,,1796.676,,,,,,144,66,0,,,,, +385,29,2,12867,768,1796.701,,,,,,144,94,0,,,,, +386,2,1,12888,,1796.701,,8,C5,p,11,144,72,11,,,,g, +386,2,1,12888,,1796.751,,,,,,144,72,0,,,,, +386,3,1,12889,,1796.776,,8,G5,p,11,144,79,11,,,,g, +386,3,1,12889,,1796.826,,,,,,144,79,0,,,,, +386,4,1,12890,0,1796.851,128,8,E5,p,11,144,76,11,,,,, +386,5,1,12891,0,1796.851,128,8,A#5,p,11,144,82,11,,,,, +386,6,3,12892,,1796.851,,8,B3,mp,14,144,59,14,,,,g, +386,6,3,12892,,1796.901,,,,,,144,59,0,,,,, +386,4,1,12890,0,1796.926,,,,,,144,76,0,,,,, +386,7,3,12893,,1796.926,,8,E5,mp,14,144,76,14,,,,g, +386,8,3,12894,,1797.001,,8,B3,mp+,15,144,59,15,,,,g, +386,8,3,12894,,1797.051,,,,,,144,59,0,,,,, +386,9,3,12895,,1797.076,,8,F#3,mp+,15,144,54,15,,,,g, +386,9,3,12895,,1797.126,,,,,,144,54,0,,,,, +386,10,3,12896,0,1797.151,96,16,A#4,mp+,15,144,70,15,,,,, +386,5,1,12891,0,1797.386,,,,,,144,82,0,,,,, +386,7,3,12893,,1797.386,,,,,,144,76,0,,,,, +386,10,3,12896,0,1797.553,,,,,,144,70,0,,,,, +386,11,3,12897,96,1797.553,96,16,D4,mf,17,144,62,17,,,,, +386,12,3,12898,96,1797.553,64,16,A#4,mf,17,144,70,17,,,,, +386,13,1,12899,128,1797.686,128,8,D7,p,11,144,98,11,,,,, +386,12,3,12898,96,1797.82,,,,,,144,70,0,,,,, +386,11,3,12897,96,1797.954,,,,,,144,62,0,,,,, +386,14,3,12900,192,1797.954,64,16,F#3,mf+,18,144,54,18,,,,, +386,15,3,12901,192,1797.954,64,16,D4,mf+,18,144,62,18,,,,, +386,16,0,12902,215,1798.051,,,,,,176,64,0,,,,,^ +386,13,1,12899,128,1798.222,,,,,,144,98,0,,,,, +386,14,3,12900,192,1798.222,,,,,,144,54,0,,,,, +386,15,3,12901,192,1798.222,,,,,,144,62,0,,,,, +386,17,1,12903,256,1798.222,,,,,,176,102,0,,,,, +386,18,3,12904,256,1798.222,,,,,,176,102,0,,,,, +386,20,1,12905,288,1798.356,32,32,C5,f,20,144,72,20,,,,, +386,21,1,12906,288,1798.356,32,32,G#5,f,20,144,80,20,,,,, +386,19,0,12907,288,1798.356,,,,,,176,64,127,,,,,V +386,20,1,12905,288,1798.49,,,,,,144,72,0,,,,, +386,21,1,12906,288,1798.49,,,,,,144,80,0,,,,, +386,22,1,12908,320,1798.49,32,32,E2,f,20,144,40,20,,,,, +386,22,1,12908,320,1798.624,,,,,,144,40,0,,,,, +386,23,1,12909,352,1798.624,32,32,B2,f,20,144,47,20,,,,, +386,27,0,12910,405,1798.74,,,,,,176,64,0,,,,,^ +386,23,1,12909,352,1798.758,,,,,,144,47,0,,,,, +386,24,1,12911,384,1798.758,21,32,F3,f,20,144,53,20,,,,, +386,25,1,12912,384,1798.758,32,32,C5,f,20,144,72,20,,,,, +386,26,1,12913,384,1798.758,32,32,G#5,f,20,144,80,20,,,,, +386,24,1,12911,384,1798.846,,,,,,144,53,0,,,,, +386,28,1,12914,405,1798.846,21,32,G#4,f-,19,144,68,19,,,,, +386,25,1,12912,384,1798.892,,,,,,144,72,0,,,,, +386,26,1,12913,384,1798.892,,,,,,144,80,0,,,,, +386,28,1,12914,405,1798.934,,,,,,144,68,0,,,,, +386,30,1,12915,426,1798.934,22,32,C4,mf,17,144,60,17,,,,, +386,30,1,12915,426,1799.026,,,,,,144,60,0,,,,, +386,31,1,12916,448,1799.026,,,,,,176,102,0,,,,, +386,32,3,12917,448,1799.026,21,32,E1,mf,17,144,28,17,,,,, +386,29,0,12918,426,1799.04,,,,,,176,64,127,,,,,V +386,32,3,12917,448,1799.114,,,,,,144,28,0,,,,, +386,33,1,12919,469,1799.114,43,16,C4,mp,14,144,60,14,,,,, +386,34,1,12920,469,1799.114,64,16,G#4,mp,14,144,68,14,,,,, +386,35,3,12921,469,1799.114,21,32,E1,mf,17,144,28,17,,,,, +386,36,3,12922,469,1799.114,32,32,F2,mf,17,144,41,17,,,,, +386,35,3,12921,469,1799.202,,,,,,144,28,0,,,,, +386,37,3,12923,490,1799.202,22,32,B1,mf,17,144,35,17,,,,, +386,36,3,12922,469,1799.248,,,,,,144,41,0,,,,, +386,33,1,12919,469,1799.294,,,,,,144,60,0,,,,, +386,37,3,12923,490,1799.294,,,,,,144,35,0,,,,, +386,38,1,12924,,1799.294,,8,C3,p,11,144,48,11,,,,g, +386,38,1,12924,,1799.344,,,,,,144,48,0,,,,, +386,39,1,12925,,1799.369,,8,G#3,p,11,144,56,11,,,,g, +386,34,1,12920,469,1799.381,,,,,,144,68,0,,,,, +386,39,1,12925,,1799.419,,,,,,144,56,0,,,,, +386,40,1,12926,,1799.444,,8,F2,p,11,144,41,11,,,,g, +386,40,1,12926,,1799.494,,,,,,144,41,0,,,,, +386,41,1,12927,512,1799.519,42,16,C3,p,11,144,48,11,,,,, +386,42,1,12928,512,1799.519,64,16,G#3,p,11,144,56,11,,,,, +386,43,3,12929,512,1799.519,64,16,E1,p,11,144,28,11,,,,, +386,44,3,12930,512,1799.519,64,16,F2,p,11,144,41,11,,,,, +386,41,1,12927,512,1799.694,,,,,,144,48,0,,,,, +386,45,1,12931,554,1799.694,,,,,,176,102,0,,,,, +386,42,1,12928,512,1799.786,,,,,,144,56,0,,,,, +386,43,3,12929,512,1799.786,,,,,,144,28,0,,,,, +386,44,3,12930,512,1799.786,,,,,,144,41,0,,,,, +386,46,3,12932,576,1799.786,64,16,B1,p,11,144,35,11,,,,, +386,47,1,12933,597,1799.874,43,16,A#2,p,11,144,46,11,,,,, +386,46,3,12932,576,1800.054,,,,,,144,35,0,,,,, +386,47,1,12933,597,1800.054,,,,,,144,46,0,,,,, +386,48,1,12934,640,1800.054,128,8,G#6,p,11,144,92,11,,,,, +386,49,3,12935,640,1800.054,,,,,,176,102,0,,,,, +386,48,1,12934,640,1800.59,,,,,,144,92,0,,,,, +386,50,1,12936,768,1800.59,42,16,C#5,p,11,144,73,11,,,,, +386,51,1,12937,768,1800.59,64,16,A5,p,11,144,81,11,,,,, +386,52,3,12938,768,1800.59,,,,,,176,102,0,,,,, +386,50,1,12936,768,1800.766,,,,,,144,73,0,,,,, +386,53,1,12939,810,1800.766,43,16,F4,mp-,13,144,65,13,,,,, +386,54,1,12940,810,1800.766,64,16,C#5,mp-,13,144,73,13,,,,, +386,51,1,12937,768,1800.858,,,,,,144,81,0,,,,, +386,53,1,12939,810,1800.946,,,,,,144,65,0,,,,, +386,54,1,12940,810,1800.946,,,,,,144,73,0,,,,, +386,55,1,12941,853,1800.946,85,8,F4,mp+,15,144,65,15,,,,, +386,56,1,12942,853,1800.946,128,8,C#5,mp+,15,144,73,15,,,,, +386,57,3,12943,896,1801.126,42,16,A#2,mp,14,144,46,14,,,,, +386,55,1,12941,853,1801.302,,,,,,144,65,0,,,,, +386,57,3,12943,896,1801.302,,,,,,144,46,0,,,,, +386,58,1,12944,938,1801.302,,,,,,176,102,0,,,,, +386,59,3,12945,938,1801.302,86,8,E2,mf,17,144,40,17,,,,, +386,56,1,12942,853,1801.481,,,,,,144,73,0,,,,, +386,60,1,12946,1002,1801.569,22,32,D#3,mf,17,144,51,17,,,,, +386,61,1,12947,1002,1801.569,32,32,C6,mf,17,144,84,17,,,,, +386,59,3,12945,938,1801.661,,,,,,144,40,0,,,,, +386,60,1,12946,1002,1801.661,,,,,,144,51,0,,,,, +386,61,1,12947,1002,1801.661,,,,,,144,84,0,,,,, +386,62,1,12948,1024,1801.661,32,32,B4,mf+,18,144,71,18,,,,, +386,63,1,12949,1024,1801.661,32,32,C6,mf+,18,144,84,18,,,,, +386,64,3,12950,1024,1801.661,64,16,D#2,mf,17,144,39,17,,,,, +386,62,1,12948,1024,1801.795,,,,,,144,71,0,,,,, +386,63,1,12949,1024,1801.795,,,,,,144,84,0,,,,, +386,65,1,12951,1056,1801.795,,,,,,176,102,0,,,,, +386,64,3,12950,1024,1801.929,,,,,,144,39,0,,,,, +386,66,1,12952,1088,1801.929,,,,,,176,102,0,,,,, +386,67,3,12953,1088,1801.929,,,,,,176,102,0,,,,, +386,68,1,12954,1152,1802.197,,,,,,176,102,0,,,,, +386,69,3,12955,1152,1802.197,51,16,E3,pp,8,144,52,8,,,,, +386,69,3,12955,1152,1802.411,,,,,,144,52,0,,,,, +386,70,3,12956,1203,1802.411,77,16,B3,pp,8,144,59,8,,,,, +386,70,3,12956,1203,1802.733,,,,,,144,59,0,,,,, +387,0,0,12957,0,1802.733,,,,,,,,,387,,,, +387,1,1,12958,0,1802.733,153,8,C6,ppp,5,144,84,5,,,,, +387,2,1,12959,0,1802.733,128,8,G#6,ppp,5,144,92,5,,,,, +387,3,3,12960,0,1802.733,153,8,E3,ppp,5,144,52,5,,,,, +387,4,3,12961,0,1802.733,128,8,B3,ppp,5,144,59,5,,,,, +387,2,1,12959,0,1803.269,,,,,,144,92,0,,,,, +387,4,3,12961,0,1803.269,,,,,,144,59,0,,,,, +387,1,1,12958,0,1803.373,,,,,,144,84,0,,,,, +387,3,3,12960,0,1803.373,,,,,,144,52,0,,,,, +387,5,1,12962,153,1803.373,103,8,C6,ppp,5,144,84,5,,,,, +387,6,1,12963,153,1803.373,128,8,G#6,ppp,5,144,92,5,,,,, +387,7,3,12964,153,1803.373,103,8,E3,ppp,5,144,52,5,,,,, +387,8,3,12965,153,1803.373,128,8,B3,ppp,5,144,59,5,,,,, +387,9,3,12966,153,1803.373,128,8,F4,ppp,5,144,65,5,,,,, +387,10,1,12967,256,1803.804,256,4,C6,,,,,,,,,, +387,11,1,12968,256,1803.804,256,4,G#6,,,,,,,,,, +387,12,3,12969,256,1803.804,256,4,E3,,,,,,,,,, +387,13,3,12970,256,1803.804,256,4,B3,,,,,,,,,, +387,14,3,12971,256,1803.804,256,4,F4,,,,,,,,,, +387,15,0,12972,256,1803.804,,,,,,,,,,6047,,, +387,16,0,12973,512,1804.726,,,,,,176,64,0,,,,,^ +387,5,1,12962,153,1804.876,,,,,,144,84,0,,,,, +387,7,3,12964,153,1804.876,,,,,,144,52,0,,,,, +387,18,1,12974,512,1804.876,21,32,D#2,f,20,144,39,20,,,,, +387,19,1,12975,512,1804.876,32,32,B4,f,20,144,71,20,,,,, +387,20,1,12976,512,1804.876,32,32,C6,f,20,144,84,20,,,,, +387,21,3,12977,512,1804.876,,,,,,176,102,0,,,,, +387,18,1,12974,512,1804.964,,,,,,144,39,0,,,,, +387,22,1,12978,533,1804.964,21,32,G4,f,20,144,67,20,,,,, +387,6,1,12963,153,1804.98,,,,,,144,92,0,,,,, +387,8,3,12965,153,1804.98,,,,,,144,59,0,,,,, +387,9,3,12966,153,1804.98,,,,,,144,65,0,,,,, +387,19,1,12975,512,1805.01,,,,,,144,71,0,,,,, +387,20,1,12976,512,1805.01,,,,,,144,84,0,,,,, +387,17,0,12979,512,1805.026,,,,,,176,64,127,,,,,V +387,22,1,12978,533,1805.052,,,,,,144,67,0,,,,, +387,23,1,12980,554,1805.052,43,16,F#3,f,20,144,54,20,,,,, +387,24,0,12981,597,1805.171,,,,,,176,64,0,,,,,^ +387,23,1,12980,554,1805.231,,,,,,144,54,0,,,,, +387,25,1,12982,597,1805.231,,,,,,176,102,0,,,,, +387,26,0,12983,640,1805.411,,,,,,,,,,,56,, +387,28,1,12984,640,1805.411,64,16,E5,ppp,5,144,76,5,,,,, +387,29,3,12985,640,1805.411,,,,,,176,102,0,,,,, +387,27,0,12986,640,1805.471,,,,,,176,64,127,,,,,V +387,28,1,12984,640,1805.679,,,,,,144,76,0,,,,, +387,30,1,12987,704,1805.679,42,16,G#3,pp,8,144,56,8,,,,, +387,30,1,12987,704,1805.855,,,,,,144,56,0,,,,, +387,31,1,12988,746,1805.855,22,32,C7,pp+,9,144,96,9,,,,, +387,31,1,12988,746,1805.947,,,,,,144,96,0,,,,, +387,32,1,12989,768,1805.947,21,32,A2,p-,10,144,45,10,,,,, +387,33,3,12990,768,1805.947,,,,,,176,102,0,,,,, +387,32,1,12989,768,1806.035,,,,,,144,45,0,,,,, +387,34,1,12991,789,1806.035,21,32,C7,p,11,144,96,11,,,,, +387,34,1,12991,789,1806.123,,,,,,144,96,0,,,,, +387,35,1,12992,810,1806.123,22,32,A2,p+,12,144,45,12,,,,, +387,35,1,12992,810,1806.215,,,,,,144,45,0,,,,, +387,36,1,12993,832,1806.215,32,32,E5,mp-,13,144,76,13,,,,, +387,36,1,12993,832,1806.349,,,,,,144,76,0,,,,, +387,37,1,12994,864,1806.349,32,32,G#3,mp,14,144,56,14,,,,, +387,37,1,12994,864,1806.483,,,,,,144,56,0,,,,, +387,38,1,12995,896,1806.483,21,32,A2,mf-,16,144,45,16,,,,, +387,38,1,12995,896,1806.571,,,,,,144,45,0,,,,, +387,39,1,12996,917,1806.571,21,32,D6,mf-,16,144,86,16,,,,, +387,39,1,12996,917,1806.659,,,,,,144,86,0,,,,, +387,40,1,12997,938,1806.659,32,32,C7,mf,17,144,96,17,,,,, +387,40,1,12997,938,1806.793,,,,,,144,96,0,,,,, +387,41,1,12998,970,1806.793,32,32,D6,f-,19,144,86,19,,,,, +387,42,0,12999,970,1806.793,,,,,,,,,,6048,,, +387,41,1,12998,970,1806.927,,,,,,144,86,0,,,,, +387,43,0,13000,1002,1806.927,,,,,,176,64,0,,,,,^ +387,44,1,13001,1002,1806.927,22,32,A2,f,20,144,45,20,,,,, +387,45,1,13002,1002,1806.927,32,32,G#3,f,20,144,56,20,,,,, +387,46,1,13003,1002,1806.927,32,32,D6,f,20,144,86,20,,,,, +387,47,1,13004,1002,1806.927,32,32,C7,f,20,144,96,20,,,,, +387,44,1,13001,1002,1807.019,,,,,,144,45,0,,,,, +387,48,1,13005,1024,1807.019,,,,,,176,102,0,,,,, +387,49,3,13006,1024,1807.019,,,,,,176,102,0,,,,, +387,45,1,13002,1002,1807.06,,,,,,144,56,0,,,,, +387,46,1,13003,1002,1807.06,,,,,,144,86,0,,,,, +387,47,1,13004,1002,1807.06,,,,,,144,96,0,,,,, +387,51,3,13007,1088,1807.286,64,16,D#2,pp,8,144,39,8,,,,, +387,50,0,13008,1088,1807.286,,,,,,176,64,127,,,,,V +387,51,3,13007,1088,1807.554,,,,,,144,39,0,,,,, +387,52,1,13009,1152,1807.554,64,16,B5,pp,8,144,83,8,,,,, +387,53,3,13010,1152,1807.554,64,16,D#2,pp,8,144,39,8,,,,, +387,52,1,13009,1152,1807.822,,,,,,144,83,0,,,,, +387,53,3,13010,1152,1807.822,,,,,,144,39,0,,,,, +387,54,1,13011,1216,1807.822,64,16,B5,pp,8,144,83,8,,,,, +387,55,3,13012,1216,1807.822,64,16,G3,pp,8,144,55,8,,,,, +387,54,1,13011,1216,1808.09,,,,,,144,83,0,,,,, +387,55,3,13012,1216,1808.09,,,,,,144,55,0,,,,, +388,0,0,13013,0,1808.09,,,,,,,,,388,,,, +388,1,1,13014,0,1808.09,28,32,D#4,f,20,144,63,20,,,,, +388,2,3,13015,0,1808.09,,,,,,176,102,0,,,,, +388,1,1,13014,0,1808.207,,,,,,144,63,0,,,,, +388,3,1,13016,28,1808.207,28,32,C8,f-,19,144,108,19,,,,, +388,3,1,13016,28,1808.324,,,,,,144,108,0,,,,, +388,4,1,13017,56,1808.324,29,32,D#5,f-,19,144,75,19,,,,, +388,4,1,13017,56,1808.446,,,,,,144,75,0,,,,, +388,5,1,13018,85,1808.446,43,32,C7,mf+,18,144,96,18,,,,, +388,5,1,13018,85,1808.626,,,,,,144,96,0,,,,, +388,6,1,13019,128,1808.626,36,32,D#3,mf,17,144,51,17,,,,, +388,6,1,13019,128,1808.776,,,,,,144,51,0,,,,, +388,7,1,13020,164,1808.776,37,32,C7,mf-,16,144,96,16,,,,, +388,7,1,13020,164,1808.931,,,,,,144,96,0,,,,, +388,8,1,13021,201,1808.931,36,32,B6,mp+,15,144,95,15,,,,, +388,8,1,13021,201,1809.082,,,,,,144,95,0,,,,, +388,9,1,13022,237,1809.082,37,32,D#3,mp,14,144,51,14,,,,, +388,10,1,13023,237,1809.082,32,32,F#4,mp,14,144,66,14,,,,, +388,10,1,13023,237,1809.216,,,,,,144,66,0,,,,, +388,9,1,13022,237,1809.237,,,,,,144,51,0,,,,, +388,11,1,13024,274,1809.237,55,32,C7,mp-,13,144,96,13,,,,, +388,11,1,13024,274,1809.467,,,,,,144,96,0,,,,, +388,12,1,13025,329,1809.467,55,32,D#4,p+,12,144,63,12,,,,, +388,12,1,13025,329,1809.697,,,,,,144,63,0,,,,, +388,13,1,13026,384,1809.697,42,32,F#5,p-,10,144,78,10,,,,, +388,14,1,13027,384,1809.697,32,32,C6,p-,10,144,84,10,,,,, +388,14,1,13027,384,1809.831,,,,,,144,84,0,,,,, +388,13,1,13026,384,1809.873,,,,,,144,78,0,,,,, +388,15,1,13028,426,1809.873,29,32,B5,pp+,9,144,83,9,,,,, +388,15,1,13028,426,1809.994,,,,,,144,83,0,,,,, +388,16,1,13029,455,1809.994,28,32,D#2,pp+,9,144,39,9,,,,, +388,16,1,13029,455,1810.112,,,,,,144,39,0,,,,, +388,17,1,13030,483,1810.112,29,32,G4,pp,8,144,67,8,,,,, +388,17,1,13030,483,1810.233,,,,,,144,67,0,,,,, +388,18,1,13031,512,1810.233,56,16,G5,pp,8,144,79,8,,,,, +388,19,3,13032,512,1810.233,42,16,B4,ppp,5,144,71,5,,,,, +388,19,3,13032,512,1810.409,,,,,,144,71,0,,,,, +388,20,3,13033,554,1810.409,22,32,G3,ppp,5,144,55,5,,,,, +388,18,1,13031,512,1810.467,,,,,,144,79,0,,,,, +388,21,1,13034,568,1810.467,57,16,A#5,pp+,9,144,82,9,,,,, +388,20,3,13033,554,1810.501,,,,,,144,55,0,,,,, +388,22,3,13035,576,1810.501,96,16,E6,pp,8,144,88,8,,,,, +388,21,1,13034,568,1810.706,,,,,,144,82,0,,,,, +388,23,1,13036,625,1810.706,86,16,F#4,pp+,9,144,66,9,,,,, +388,22,3,13035,576,1810.903,,,,,,144,88,0,,,,, +388,24,3,13037,672,1810.903,96,16,E6,pp+,9,144,88,9,,,,, +388,23,1,13036,625,1811.066,,,,,,144,66,0,,,,, +388,25,1,13038,711,1811.066,57,16,A#5,p-,10,144,82,10,,,,, +388,24,3,13037,672,1811.304,,,,,,144,88,0,,,,, +388,25,1,13038,711,1811.304,,,,,,144,82,0,,,,, +388,26,1,13039,768,1811.304,96,16,G5,p,11,144,79,11,,,,, +388,27,1,13040,768,1811.304,64,16,E6,p,11,144,88,11,,,,, +388,28,3,13041,768,1811.304,192,8,B2,p,11,144,47,11,,,,, +388,29,1,13042,864,1811.706,96,16,F#4,p+,12,144,66,12,,,,, +388,30,1,13043,864,1811.706,64,16,A#4,p+,12,144,70,12,,,,, +388,27,1,13040,768,1811.872,,,,,,144,88,0,,,,, +388,30,1,13043,864,1811.974,,,,,,144,70,0,,,,, +388,26,1,13039,768,1812.006,,,,,,144,79,0,,,,, +388,29,1,13042,864,1812.108,,,,,,144,66,0,,,,, +388,31,1,13044,960,1812.108,64,16,A#5,mp-,13,144,82,13,,,,, +388,32,3,13045,960,1812.108,21,32,F#2,p,11,144,42,11,,,,, +388,32,3,13045,960,1812.196,,,,,,144,42,0,,,,, +388,33,3,13046,981,1812.196,21,32,D3,p,11,144,50,11,,,,, +388,33,3,13046,981,1812.284,,,,,,144,50,0,,,,, +388,34,3,13047,1002,1812.284,22,32,F#2,p,11,144,42,11,,,,, +388,28,3,13041,768,1812.376,,,,,,144,47,0,,,,, +388,31,1,13044,960,1812.376,,,,,,144,82,0,,,,, +388,34,3,13047,1002,1812.376,,,,,,144,42,0,,,,, +388,35,1,13048,1024,1812.376,64,16,F#4,mp-,13,144,66,13,,,,, +388,36,3,13049,1024,1812.376,21,32,B2,p-,10,144,47,10,,,,, +388,37,3,13050,1024,1812.376,32,32,D3,p-,10,144,50,10,,,,, +388,36,3,13049,1024,1812.464,,,,,,144,47,0,,,,, +388,38,3,13051,1045,1812.464,21,32,F#2,p-,10,144,42,10,,,,, +388,37,3,13050,1024,1812.51,,,,,,144,50,0,,,,, +388,38,3,13051,1045,1812.552,,,,,,144,42,0,,,,, +388,39,3,13052,1066,1812.552,22,32,D3,pp,8,144,50,8,,,,, +388,35,1,13048,1024,1812.644,,,,,,144,66,0,,,,, +388,39,3,13052,1066,1812.644,,,,,,144,50,0,,,,, +388,40,1,13053,1088,1812.644,192,8,G5,mp,14,144,79,14,,,,, +388,41,1,13054,1088,1812.644,128,8,A#5,mp,14,144,82,14,,,,, +388,42,1,13055,1088,1812.644,128,8,D6,mp,14,144,86,14,,,,, +388,43,3,13056,1088,1812.644,64,16,F#2,pp,8,144,42,8,,,,, +388,43,3,13056,1088,1812.911,,,,,,144,42,0,,,,, +388,44,3,13057,1152,1812.911,128,8,C2,mp,14,144,36,14,,,,, +388,45,3,13058,1152,1812.911,128,8,E5,mp,14,144,76,14,,,,, +388,41,1,13054,1088,1813.179,,,,,,144,82,0,,,,, +388,42,1,13055,1088,1813.179,,,,,,144,86,0,,,,, +388,40,1,13053,1088,1813.447,,,,,,144,79,0,,,,, +388,44,3,13057,1152,1813.447,,,,,,144,36,0,,,,, +388,45,3,13058,1152,1813.447,,,,,,144,76,0,,,,, +389,0,0,13059,0,1813.447,,,,,,,,,389,,,, +389,1,1,13060,0,1813.447,102,8,C5,mp,14,144,72,14,,,,, +389,2,1,13061,0,1813.447,128,8,G5,mp,14,144,79,14,,,,, +389,3,1,13062,0,1813.447,128,8,A#5,mp,14,144,82,14,,,,, +389,4,1,13063,0,1813.447,128,8,D6,mp,14,144,86,14,,,,, +389,5,3,13064,0,1813.447,,,,,,176,102,0,,,,, +389,6,0,13065,64,1813.715,,,,,,176,64,0,,,,,^ +389,1,1,13060,0,1813.874,,,,,,144,72,0,,,,, +389,2,1,13061,0,1813.874,,,,,,144,79,0,,,,, +389,3,1,13062,0,1813.874,,,,,,144,82,0,,,,, +389,4,1,13063,0,1813.874,,,,,,144,86,0,,,,, +389,7,1,13066,102,1813.874,154,8,C5,mp,14,144,72,14,,,,, +389,8,1,13067,102,1813.874,128,8,G5,mp,14,144,79,14,,,,, +389,9,1,13068,102,1813.874,128,8,A#5,mp,14,144,82,14,,,,, +389,10,1,13069,102,1813.874,128,8,D6,mp,14,144,86,14,,,,, +389,11,0,13070,102,1813.874,,,,,,,,,,6049,,, +389,12,3,13071,128,1813.983,,,,,,176,102,0,,,,, +389,13,0,13072,156,1814.1,,,,,,176,64,127,,,,,V +389,8,1,13067,102,1814.41,,,,,,144,79,0,,,,, +389,9,1,13068,102,1814.41,,,,,,144,82,0,,,,, +389,10,1,13069,102,1814.41,,,,,,144,86,0,,,,, +389,7,1,13066,102,1814.519,,,,,,144,72,0,,,,, +389,14,1,13073,256,1814.519,,,,,,176,102,0,,,,, +389,15,3,13074,,1814.519,,8,B2,mp,14,144,47,14,,,,g, +389,15,3,13074,,1814.569,,,,,,144,47,0,,,,, +389,16,3,13075,,1814.594,,8,E4,mp,14,144,64,14,,,,g, +389,16,3,13075,,1814.644,,,,,,144,64,0,,,,, +389,17,3,13076,,1814.669,,8,B1,mp,14,144,35,14,,,,g, +389,17,3,13076,,1814.719,,,,,,144,35,0,,,,, +389,18,3,13077,256,1814.744,51,16,G3,mp,14,144,55,14,,,,, +389,19,3,13078,256,1814.744,64,16,A#3,mp,14,144,58,14,,,,, +389,18,3,13077,256,1814.957,,,,,,144,55,0,,,,, +389,20,3,13079,307,1814.957,25,32,F#2,mp,14,144,42,14,,,,, +389,21,3,13080,307,1814.957,32,32,G3,mp,14,144,55,14,,,,, +389,19,3,13078,256,1815.011,,,,,,144,58,0,,,,, +389,20,3,13079,307,1815.062,,,,,,144,42,0,,,,, +389,22,3,13081,332,1815.062,52,16,C3,mp,14,144,48,14,,,,, +389,21,3,13080,307,1815.091,,,,,,144,55,0,,,,, +389,22,3,13081,332,1815.279,,,,,,144,48,0,,,,, +389,23,1,13082,384,1815.279,32,32,C2,pp,8,144,36,8,,,,, +389,24,1,13083,384,1815.279,32,32,E5,pp,8,144,76,8,,,,, +389,25,3,13084,384,1815.279,,,,,,176,102,0,,,,, +389,23,1,13082,384,1815.413,,,,,,144,36,0,,,,, +389,24,1,13083,384,1815.413,,,,,,144,76,0,,,,, +389,26,1,13085,416,1815.413,32,32,D6,p-,10,144,86,10,,,,, +389,26,1,13085,416,1815.547,,,,,,144,86,0,,,,, +389,27,1,13086,448,1815.547,21,32,A6,p+,12,144,93,12,,,,, +389,27,1,13086,448,1815.635,,,,,,144,93,0,,,,, +389,28,1,13087,469,1815.635,21,32,G#2,mp-,13,144,44,13,,,,, +389,28,1,13087,469,1815.723,,,,,,144,44,0,,,,, +389,29,1,13088,490,1815.723,22,32,A6,mp,14,144,93,14,,,,, +389,29,1,13088,490,1815.815,,,,,,144,93,0,,,,, +389,30,1,13089,512,1815.815,32,32,D6,mp,14,144,86,14,,,,, +389,31,3,13090,512,1815.815,,,,,,176,102,0,,,,, +389,30,1,13089,512,1815.949,,,,,,144,86,0,,,,, +389,32,1,13091,544,1815.949,32,32,G#3,f,20,144,56,20,,,,, +389,32,1,13091,544,1816.083,,,,,,144,56,0,,,,, +389,33,1,13092,576,1816.083,32,32,A7,f,20,144,105,20,,,,, +389,33,1,13092,576,1816.217,,,,,,144,105,0,,,,, +389,34,1,13093,608,1816.217,32,32,D7,f,20,144,98,20,,,,, +389,35,3,13094,608,1816.217,32,32,C3,f,20,144,48,20,,,,, +389,36,3,13095,608,1816.217,32,32,G#3,f,20,144,56,20,,,,, +389,34,1,13093,608,1816.351,,,,,,144,98,0,,,,, +389,35,3,13094,608,1816.351,,,,,,144,48,0,,,,, +389,36,3,13095,608,1816.351,,,,,,144,56,0,,,,, +389,37,1,13096,640,1816.351,42,16,D7,f,20,144,98,20,,,,, +389,38,1,13097,640,1816.351,64,16,A7,f,20,144,105,20,,,,, +389,39,3,13098,640,1816.351,42,16,C3,f,20,144,48,20,,,,, +389,40,3,13099,640,1816.351,64,16,G#3,f,20,144,56,20,,,,, +389,37,1,13096,640,1816.527,,,,,,144,98,0,,,,, +389,39,3,13098,640,1816.527,,,,,,144,48,0,,,,, +389,41,1,13100,682,1816.527,43,16,B6,p,11,144,95,11,,,,, +389,42,3,13101,682,1816.527,,,,,,176,102,0,,,,, +389,38,1,13097,640,1816.619,,,,,,144,105,0,,,,, +389,40,3,13099,640,1816.619,,,,,,144,56,0,,,,, +389,43,0,13102,725,1816.646,,,,,,176,64,0,,,,,^ +389,41,1,13100,682,1816.706,,,,,,144,95,0,,,,, +389,44,1,13103,725,1816.706,,,,,,176,102,0,,,,, +389,45,3,13104,725,1816.706,43,16,A2,p,11,144,45,11,,,,, +389,45,3,13104,725,1816.886,,,,,,144,45,0,,,,, +389,47,1,13105,768,1816.886,512,2,A2,p,11,144,45,11,,,,, +389,48,1,13106,768,1816.886,512,2,B3,ppp,5,144,59,5,,,,, +389,49,1,13107,768,1816.886,512,2,B6,p,11,144,95,11,,,,, +389,50,3,13108,768,1816.886,,,,,,176,102,0,,,,, +389,46,0,13109,768,1816.946,,,,,,176,64,127,,,,,V +389,51,3,13110,819,1817.1,25,32,F#2,p,11,144,42,11,,,,, +389,52,3,13111,819,1817.1,32,32,G3,p,11,144,55,11,,,,, +389,51,3,13110,819,1817.205,,,,,,144,42,0,,,,, +389,53,3,13112,844,1817.205,52,16,C3,p,11,144,48,11,,,,, +389,52,3,13111,819,1817.234,,,,,,144,55,0,,,,, +389,53,3,13112,844,1817.422,,,,,,144,48,0,,,,, +389,54,3,13113,896,1817.422,,,,,,176,102,0,,,,, +389,55,3,13114,917,1817.51,21,32,A1,pp,8,144,33,8,,,,, +389,55,3,13114,917,1817.598,,,,,,144,33,0,,,,, +389,56,3,13115,938,1817.598,22,32,E4,pp+,9,144,64,9,,,,, +389,56,3,13115,938,1817.69,,,,,,144,64,0,,,,, +389,57,3,13116,960,1817.69,21,32,D5,p-,10,144,74,10,,,,, +389,57,3,13116,960,1817.778,,,,,,144,74,0,,,,, +389,58,3,13117,981,1817.778,21,32,A1,p,11,144,33,11,,,,, +389,59,3,13118,981,1817.778,32,32,G#2,p,11,144,44,11,,,,, +389,58,3,13117,981,1817.866,,,,,,144,33,0,,,,, +389,60,3,13119,1002,1817.866,22,32,D5,p+,12,144,74,12,,,,, +389,61,3,13120,1002,1817.866,32,32,C6,p+,12,144,84,12,,,,, +389,59,3,13118,981,1817.912,,,,,,144,44,0,,,,, +389,60,3,13119,1002,1817.958,,,,,,144,74,0,,,,, +389,62,3,13121,1024,1817.958,28,32,F#3,pp,8,144,54,8,,,,, +389,61,3,13120,1002,1818,,,,,,144,84,0,,,,, +389,62,3,13121,1024,1818.075,,,,,,144,54,0,,,,, +389,63,3,13122,1052,1818.075,28,32,D4,pp+,9,144,62,9,,,,, +389,63,3,13122,1052,1818.192,,,,,,144,62,0,,,,, +389,64,3,13123,1080,1818.192,29,32,F#3,p,11,144,54,11,,,,, +389,64,3,13123,1080,1818.314,,,,,,144,54,0,,,,, +389,65,3,13124,1109,1818.314,85,16,D4,p+,12,144,62,12,,,,, +389,65,3,13124,1109,1818.669,,,,,,144,62,0,,,,, +389,66,3,13125,1194,1818.669,86,16,F#3,mf,17,144,54,17,,,,, +389,66,3,13125,1194,1819.029,,,,,,144,54,0,,,,, +389,67,1,13126,,1819.029,,8,F4,mp,14,144,65,14,,,,g, +389,47,1,13105,768,1819.029,,,,,,144,45,0,,,,, +389,48,1,13106,768,1819.029,,,,,,144,59,0,,,,, +389,49,1,13107,768,1819.029,,,,,,144,95,0,,,,, +389,67,1,13126,,1819.079,,,,,,144,65,0,,,,, +390,0,0,13127,0,1819.104,,,,,,,,,390,,,, +390,1,1,13128,0,1819.104,128,8,C2,mp,14,144,36,14,,,,, +390,2,3,13129,0,1819.104,128,8,D#2,mp,14,144,39,14,,,,, +390,1,1,13128,0,1819.64,,,,,,144,36,0,,,,, +390,2,3,13129,0,1819.64,,,,,,144,39,0,,,,, +390,3,1,13130,128,1819.64,,,,,,176,102,0,,,,, +390,4,3,13131,128,1819.64,,,,,,176,102,0,,,,, +390,5,3,13132,149,1819.728,21,32,A1,pp,8,144,33,8,,,,, +390,5,3,13132,149,1819.816,,,,,,144,33,0,,,,, +390,6,3,13133,170,1819.816,22,32,E4,pp+,9,144,64,9,,,,, +390,6,3,13133,170,1819.908,,,,,,144,64,0,,,,, +390,7,3,13134,192,1819.908,21,32,D5,p-,10,144,74,10,,,,, +390,7,3,13134,192,1819.996,,,,,,144,74,0,,,,, +390,8,3,13135,213,1819.996,21,32,A1,p,11,144,33,11,,,,, +390,9,3,13136,213,1819.996,32,32,G#2,p,11,144,44,11,,,,, +390,8,3,13135,213,1820.084,,,,,,144,33,0,,,,, +390,10,3,13137,234,1820.084,22,32,D5,p+,12,144,74,12,,,,, +390,11,3,13138,234,1820.084,32,32,C6,p+,12,144,84,12,,,,, +390,9,3,13136,213,1820.13,,,,,,144,44,0,,,,, +390,10,3,13137,234,1820.176,,,,,,144,74,0,,,,, +390,12,1,13139,256,1820.176,,,,,,176,102,0,,,,, +390,13,3,13140,256,1820.176,,,,,,176,102,0,,,,, +390,11,3,13138,234,1820.218,,,,,,144,84,0,,,,, +390,14,3,13141,329,1820.481,36,32,A1,pp,8,144,33,8,,,,, +390,14,3,13141,329,1820.632,,,,,,144,33,0,,,,, +390,15,3,13142,365,1820.632,55,32,E4,pp,8,144,64,8,,,,, +390,15,3,13142,365,1820.862,,,,,,144,64,0,,,,, +390,16,3,13143,420,1820.862,55,32,G#2,pp+,9,144,44,9,,,,, +390,16,3,13143,420,1821.092,,,,,,144,44,0,,,,, +390,17,3,13144,475,1821.092,37,32,A1,p-,10,144,33,10,,,,, +390,17,3,13144,475,1821.247,,,,,,144,33,0,,,,, +390,18,1,13145,512,1821.247,,,,,,176,102,0,,,,, +390,19,3,13146,512,1821.247,54,32,C6,p-,10,144,84,10,,,,, +390,19,3,13146,512,1821.473,,,,,,144,84,0,,,,, +390,20,3,13147,566,1821.473,37,32,D5,p,11,144,74,11,,,,, +390,20,3,13147,566,1821.628,,,,,,144,74,0,,,,, +390,21,3,13148,603,1821.628,37,32,G#2,p+,12,144,44,12,,,,, +390,21,3,13148,603,1821.783,,,,,,144,44,0,,,,, +390,22,3,13149,640,1821.783,36,32,D5,p+,12,144,74,12,,,,, +390,22,3,13149,640,1821.934,,,,,,144,74,0,,,,, +390,23,0,13150,676,1821.934,,,,,,176,64,0,,,,,^ +390,24,3,13151,676,1821.934,55,32,C6,p+,12,144,84,12,,,,, +390,25,0,13152,676,1821.934,,,,,,,,,,6050,,, +390,24,3,13151,676,1822.164,,,,,,144,84,0,,,,, +390,26,3,13153,731,1822.164,37,32,D5,p+,12,144,74,12,,,,, +390,26,3,13153,731,1822.319,,,,,,144,74,0,,,,, +390,28,1,13154,768,1822.319,85,8,A2,p+,12,144,45,12,,,,, +390,29,1,13155,768,1822.319,128,8,B6,p+,12,144,95,12,,,,, +390,30,3,13156,768,1822.319,,,,,,176,102,0,,,,, +390,27,0,13157,768,1822.319,,,,,,176,64,127,,,,,V +390,28,1,13154,768,1822.674,,,,,,144,45,0,,,,, +390,31,1,13158,853,1822.674,21,32,C#5,p+,12,144,73,12,,,,, +390,31,1,13158,853,1822.762,,,,,,144,73,0,,,,, +390,32,1,13159,874,1822.762,22,32,F#2,p+,12,144,42,12,,,,, +390,29,1,13155,768,1822.854,,,,,,144,95,0,,,,, +390,32,1,13159,874,1822.854,,,,,,144,42,0,,,,, +390,33,1,13160,896,1822.854,32,32,F3,p+,12,144,53,12,,,,, +390,33,1,13160,896,1822.988,,,,,,144,53,0,,,,, +390,34,1,13161,928,1822.988,32,32,C#4,p+,12,144,61,12,,,,, +390,34,1,13161,928,1823.122,,,,,,144,61,0,,,,, +390,35,1,13162,960,1823.122,64,16,F#2,p+,12,144,42,12,,,,, +390,35,1,13162,960,1823.39,,,,,,144,42,0,,,,, +390,36,1,13163,1024,1823.39,128,8,F4,mp,14,144,65,14,,,,, +390,37,3,13164,1024,1823.39,256,4,C2,mp,14,144,36,14,,,,, +390,36,1,13163,1024,1823.926,,,,,,144,65,0,,,,, +390,38,1,13165,1152,1823.926,51,16,G#4,mp,14,144,68,14,,,,, +390,38,1,13165,1152,1824.139,,,,,,144,68,0,,,,, +390,39,1,13166,1203,1824.139,77,16,A#3,mp,14,144,58,14,,,,, +390,40,0,13167,1279,1824.309,,,,,,176,64,0,,,,,^ +390,39,1,13166,1203,1824.461,,,,,,144,58,0,,,,, +391,0,0,13168,0,1824.461,,,,,,,,,391,,,, +391,2,1,13169,0,1824.461,128,8,E4,pp,8,144,64,8,,,,, +391,3,2,13170,0,1824.461,51,16,A#3,mp,14,144,58,14,,,,, +391,4,2,13171,0,1824.461,64,16,F4,mp,14,144,65,14,,,,, +391,5,2,13172,0,1824.461,64,16,G#4,mp,14,144,68,14,,,,, +391,6,3,13173,0,1824.461,,,,,,176,102,0,,,,, +390,37,3,13164,1024,1824.461,,,,,,144,36,0,,,,, +391,1,0,13174,0,1824.609,,,,,,176,64,127,,,,,V +391,3,2,13170,0,1824.675,,,,,,144,58,0,,,,, +391,7,2,13175,51,1824.675,77,16,E6,mp,14,144,88,14,,,,, +391,4,2,13171,0,1824.729,,,,,,144,65,0,,,,, +391,5,2,13172,0,1824.729,,,,,,144,68,0,,,,, +391,2,1,13169,0,1824.997,,,,,,144,64,0,,,,, +391,7,2,13175,51,1824.997,,,,,,144,88,0,,,,, +391,8,1,13176,128,1824.997,85,8,D5,pp,8,144,74,8,,,,, +391,9,2,13177,128,1824.997,,,,,,176,102,0,,,,, +391,10,3,13178,170,1825.173,29,32,F#3,p,11,144,54,11,,,,, +391,10,3,13178,170,1825.294,,,,,,144,54,0,,,,, +391,11,3,13179,199,1825.294,28,32,D4,mp-,13,144,62,13,,,,, +391,8,1,13176,128,1825.353,,,,,,144,74,0,,,,, +391,12,1,13180,213,1825.353,85,8,E4,pp,8,144,64,8,,,,, +391,11,3,13179,199,1825.412,,,,,,144,62,0,,,,, +391,13,3,13181,227,1825.412,29,32,F#3,mp+,15,144,54,15,,,,, +391,13,3,13181,227,1825.533,,,,,,144,54,0,,,,, +391,18,0,13182,256,1825.533,,,,,,176,64,0,,,,,^ +391,14,3,13183,256,1825.533,42,16,G#1,mf,17,144,32,17,,,,, +391,15,3,13184,256,1825.533,64,16,D#2,mf,17,144,39,17,,,,, +391,16,3,13185,256,1825.533,64,16,F#3,mf,17,144,54,17,,,,, +391,17,3,13186,256,1825.533,64,16,D4,mf,17,144,62,17,,,,, +391,19,2,13187,256,1825.533,,,,,,176,102,0,,,,, +391,12,1,13180,213,1825.709,,,,,,144,64,0,,,,, +391,14,3,13183,256,1825.709,,,,,,144,32,0,,,,, +391,15,3,13184,256,1825.709,,,,,,144,39,0,,,,, +391,17,3,13186,256,1825.709,,,,,,144,62,0,,,,, +391,20,3,13188,298,1825.709,43,16,G#1,mf,17,144,32,17,,,,, +391,21,3,13189,298,1825.709,64,16,D#2,mf,17,144,39,17,,,,, +391,22,1,13190,298,1825.709,86,8,D5,pp,8,144,74,8,,,,, +391,23,2,13191,298,1825.709,43,16,D4,mf,17,144,62,17,,,,, +391,24,2,13192,298,1825.709,64,16,A#4,mf,17,144,70,17,,,,, +391,16,3,13185,256,1825.801,,,,,,144,54,0,,,,, +391,20,3,13188,298,1825.889,,,,,,144,32,0,,,,, +391,23,2,13191,298,1825.889,,,,,,144,62,0,,,,, +391,25,3,13193,341,1825.889,,,,,,176,102,0,,,,, +391,26,2,13194,341,1825.889,,,,,,176,102,0,,,,, +391,21,3,13189,298,1825.977,,,,,,144,39,0,,,,, +391,24,2,13192,298,1825.977,,,,,,144,70,0,,,,, +391,22,1,13190,298,1826.069,,,,,,144,74,0,,,,, +391,27,3,13195,384,1826.069,128,8,C1,pp,8,144,24,8,,,,, +391,29,1,13196,384,1826.069,,,,,,176,102,0,,,,, +391,28,0,13197,384,1826.069,,,,,,176,64,127,,,,,V +391,30,2,13198,426,1826.244,,,,,,176,102,0,,,,, +391,27,3,13195,384,1826.604,,,,,,144,24,0,,,,, +391,31,1,13199,512,1826.604,128,8,D5,pp,8,144,74,8,,,,, +391,32,2,13200,512,1826.604,,,,,,176,102,0,,,,, +391,33,3,13201,512,1826.604,512,2,G1,ppp,5,144,31,5,,,,, +391,31,1,13199,512,1827.14,,,,,,144,74,0,,,,, +391,34,1,13202,640,1827.14,128,8,G#3,pp,8,144,56,8,,,,, +391,34,1,13202,640,1827.676,,,,,,144,56,0,,,,, +391,35,1,13203,768,1827.676,256,4,A7,pp,8,144,105,8,,,,, +391,36,2,13204,768,1827.676,,,,,,176,102,0,,,,, +391,37,0,13205,1024,1828.731,,,,,,176,64,0,,,,,^ +391,33,3,13201,512,1828.747,,,,,,144,31,0,,,,, +391,35,1,13203,768,1828.747,,,,,,144,105,0,,,,, +391,38,1,13206,1024,1828.747,256,4,D5,mf,17,144,74,17,,,,, +391,39,2,13207,1024,1828.747,64,16,A#4,ppp,5,144,70,5,,,,, +391,40,3,13208,1024,1828.747,64,16,F#2,ppp,5,144,42,5,,,,, +391,41,3,13209,1024,1828.747,64,16,C3,ppp,5,144,48,5,,,,, +391,42,3,13210,1024,1828.747,64,16,G3,ppp,5,144,55,5,,,,, +391,39,2,13207,1024,1829.015,,,,,,144,70,0,,,,, +391,40,3,13208,1024,1829.015,,,,,,144,42,0,,,,, +391,41,3,13209,1024,1829.015,,,,,,144,48,0,,,,, +391,42,3,13210,1024,1829.015,,,,,,144,55,0,,,,, +391,44,2,13211,1088,1829.015,64,16,B5,ppp,5,144,83,5,,,,, +391,45,3,13212,1088,1829.015,64,16,D#2,ppp,5,144,39,5,,,,, +391,43,0,13213,1088,1829.031,,,,,,176,64,127,,,,,V +391,44,2,13211,1088,1829.283,,,,,,144,83,0,,,,, +391,45,3,13212,1088,1829.283,,,,,,144,39,0,,,,, +391,46,2,13214,1152,1829.283,64,16,B4,ppp,5,144,71,5,,,,, +391,47,3,13215,1152,1829.283,64,16,G3,ppp,5,144,55,5,,,,, +391,48,2,13216,1216,1829.551,,,,,,176,102,0,,,,, +391,49,3,13217,1216,1829.551,32,32,C#4,ppp,5,144,61,5,,,,, +391,49,3,13217,1216,1829.685,,,,,,144,61,0,,,,, +391,50,3,13218,1248,1829.685,32,32,G#2,ppp,5,144,44,5,,,,, +391,46,2,13214,1152,1829.701,,,,,,144,71,0,,,,, +391,47,3,13215,1152,1829.701,,,,,,144,55,0,,,,, +391,50,3,13218,1248,1829.819,,,,,,144,44,0,,,,, +392,0,0,13219,0,1829.819,,,,,,,,,392,,,, +392,1,1,13220,0,1829.819,64,16,C#4,ppp,5,144,61,5,,,,, +392,2,3,13221,0,1829.819,32,32,G#2,ppp,5,144,44,5,,,,, +392,2,3,13221,0,1829.953,,,,,,144,44,0,,,,, +392,3,3,13222,32,1829.953,32,32,D#2,ppp,5,144,39,5,,,,, +391,38,1,13206,1024,1829.969,,,,,,144,74,0,,,,, +392,1,1,13220,0,1830.086,,,,,,144,61,0,,,,, +392,3,3,13222,32,1830.086,,,,,,144,39,0,,,,, +392,4,1,13223,64,1830.086,32,32,B4,ppp,5,144,71,5,,,,, +392,5,3,13224,64,1830.086,64,16,D#2,ppp,5,144,39,5,,,,, +392,4,1,13223,64,1830.22,,,,,,144,71,0,,,,, +392,6,1,13225,96,1830.22,32,32,G3,ppp,5,144,55,5,,,,, +392,5,3,13224,64,1830.354,,,,,,144,39,0,,,,, +392,6,1,13225,96,1830.354,,,,,,144,55,0,,,,, +392,7,1,13226,128,1830.354,,,,,,176,102,0,,,,, +392,8,3,13227,128,1830.354,,,,,,176,102,0,,,,, +392,9,1,13228,160,1830.488,21,32,C#4,ppp,5,144,61,5,,,,, +392,10,3,13229,160,1830.488,42,16,D#2,ppp,5,144,39,5,,,,, +392,11,3,13230,160,1830.488,64,16,G#2,ppp,5,144,44,5,,,,, +392,12,1,13231,181,1830.576,21,32,B4,ppp,5,144,71,5,,,,, +392,9,1,13228,160,1830.664,,,,,,144,61,0,,,,, +392,10,3,13229,160,1830.664,,,,,,144,39,0,,,,, +392,11,3,13230,160,1830.664,,,,,,144,44,0,,,,, +392,12,1,13231,181,1830.664,,,,,,144,71,0,,,,, +392,13,1,13232,202,1830.664,22,32,G3,ppp,5,144,55,5,,,,, +392,14,1,13233,202,1830.664,32,32,C#4,ppp,5,144,61,5,,,,, +392,15,3,13234,202,1830.664,22,32,D#2,ppp,5,144,39,5,,,,, +392,16,3,13235,202,1830.664,32,32,G#2,ppp,5,144,44,5,,,,, +392,17,0,13236,224,1830.673,,,,,,176,64,0,,,,,^ +392,18,1,13237,224,1830.756,,,,,,176,102,0,,,,, +392,19,3,13238,224,1830.756,,,,,,176,102,0,,,,, +392,20,0,13239,224,1830.756,,,,,,,,,,6051,,, +392,22,1,13240,256,1830.89,42,16,C#7,fff,24,144,97,23,,,,, +392,23,3,13241,256,1830.89,,,,,,176,102,0,,,,, +392,21,0,13242,256,1830.973,,,,,,176,64,127,,,,,V +392,13,1,13232,202,1831.056,,,,,,144,55,0,,,,, +392,15,3,13234,202,1831.056,,,,,,144,39,0,,,,, +392,22,1,13240,256,1831.066,,,,,,144,97,0,,,,, +392,24,1,13243,298,1831.066,43,16,C#7,fff,24,144,97,23,,,,, +392,25,3,13244,298,1831.066,43,16,D3,fff,24,144,50,23,,,,, +392,14,1,13233,202,1831.098,,,,,,144,61,0,,,,, +392,25,3,13244,298,1831.246,,,,,,144,50,0,,,,, +392,26,1,13245,341,1831.246,171,4,C#7,,,,,,,,,, +392,27,3,13246,341,1831.246,171,4,G#1,fff,24,144,32,23,,,,, +392,28,3,13247,341,1831.246,256,4,D2,fff,24,144,38,23,,,,, +392,16,3,13235,202,1831.281,,,,,,144,44,0,,,,, +392,27,3,13246,341,1831.961,,,,,,144,32,0,,,,, +392,29,1,13248,512,1831.961,,,,,,176,102,0,,,,, +392,30,3,13249,512,1831.961,,,,,,176,102,0,,,,, +392,24,1,13243,298,1831.961,,,,,,144,97,0,,,,, +392,28,3,13247,341,1832.317,,,,,,144,38,0,,,,, +392,31,1,13250,768,1833.033,102,8,A#4,fff,24,144,70,23,,,,, +392,32,3,13251,768,1833.033,102,8,F#2,fff,24,144,42,23,,,,, +392,33,3,13252,768,1833.033,128,8,C3,fff,24,144,48,23,,,,, +392,34,3,13253,768,1833.033,128,8,G3,fff,24,144,55,23,,,,, +392,32,3,13251,768,1833.46,,,,,,144,42,0,,,,, +392,33,3,13252,768,1833.46,,,,,,144,48,0,,,,, +392,34,3,13253,768,1833.46,,,,,,144,55,0,,,,, +392,35,1,13254,870,1833.46,154,8,D6,fff,24,144,86,23,,,,, +392,36,3,13255,870,1833.46,154,8,F#2,fff,24,144,42,23,,,,, +392,37,3,13256,870,1833.46,128,8,C3,fff,24,144,48,23,,,,, +392,38,3,13257,870,1833.46,128,8,G3,fff,24,144,55,23,,,,, +392,31,1,13250,768,1833.685,,,,,,144,70,0,,,,, +392,39,0,13258,929,1833.707,,,,,,176,64,0,,,,,^ +392,37,3,13256,870,1833.996,,,,,,144,48,0,,,,, +392,38,3,13257,870,1833.996,,,,,,144,55,0,,,,, +392,41,1,13259,,1834.029,,8,D4,p,11,144,62,11,,,,g, +392,41,1,13259,,1834.079,,,,,,144,62,0,,,,, +392,35,1,13254,870,1834.104,,,,,,144,86,0,,,,, +392,36,3,13255,870,1834.104,,,,,,144,42,0,,,,, +392,42,1,13260,1024,1834.104,85,8,E3,p,11,144,52,11,,,,, +392,43,3,13261,1024,1834.104,,,,,,176,102,0,,,,, +392,40,0,13262,1024,1834.104,,,,,,176,64,127,,,,,V +392,44,3,13263,1066,1834.28,171,4,C1,p,11,144,24,11,,,,, +392,42,1,13260,1024,1834.46,,,,,,144,52,0,,,,, +392,45,1,13264,1109,1834.46,128,8,D4,p,11,144,62,11,,,,, +392,44,3,13263,1066,1834.996,,,,,,144,24,0,,,,, +392,45,1,13264,1109,1834.996,,,,,,144,62,0,,,,, +392,46,1,13265,1237,1834.996,43,16,E3,p,11,144,52,11,,,,, +392,47,1,13266,1237,1834.996,64,16,D4,p,11,144,62,11,,,,, +392,48,3,13267,1237,1834.996,43,16,C1,p,11,144,24,11,,,,, +392,46,1,13265,1237,1835.176,,,,,,144,52,0,,,,, +392,48,3,13267,1237,1835.176,,,,,,144,24,0,,,,, +393,0,0,13268,0,1835.176,,,,,,,,,393,,,, +393,1,1,13269,0,1835.176,,,,,,176,102,0,,,,, +393,2,3,13270,0,1835.176,,,,,,176,102,0,,,,, +392,47,1,13266,1237,1835.264,,,,,,144,62,0,,,,, +393,3,1,13271,28,1835.293,28,32,A4,p,11,144,69,11,,,,, +393,3,1,13271,28,1835.41,,,,,,144,69,0,,,,, +393,4,1,13272,56,1835.41,29,32,G#2,p+,12,144,44,12,,,,, +393,4,1,13272,56,1835.531,,,,,,144,44,0,,,,, +393,5,1,13273,85,1835.531,28,32,A5,p+,12,144,81,12,,,,, +393,5,1,13273,85,1835.649,,,,,,144,81,0,,,,, +393,6,1,13274,113,1835.649,29,32,G#2,mp-,13,144,44,13,,,,, +393,6,1,13274,113,1835.77,,,,,,144,44,0,,,,, +393,7,1,13275,142,1835.77,28,32,A4,mp-,13,144,69,13,,,,, +393,7,1,13275,142,1835.887,,,,,,144,69,0,,,,, +393,8,1,13276,170,1835.887,43,32,E3,mp,14,144,52,14,,,,, +393,8,1,13276,170,1836.067,,,,,,144,52,0,,,,, +393,9,1,13277,213,1836.067,43,32,C2,mp+,15,144,36,15,,,,, +393,9,1,13277,213,1836.247,,,,,,144,36,0,,,,, +393,10,1,13278,256,1836.247,42,16,D5,mp+,15,144,74,15,,,,, +393,11,3,13279,256,1836.247,,,,,,176,102,0,,,,, +393,10,1,13278,256,1836.423,,,,,,144,74,0,,,,, +393,12,1,13280,298,1836.423,43,16,G#2,mf-,16,144,44,16,,,,, +393,12,1,13280,298,1836.603,,,,,,144,44,0,,,,, +393,13,1,13281,341,1836.603,43,16,A6,mf,17,144,93,17,,,,, +393,14,3,13282,341,1836.603,43,16,C2,mf,17,144,36,17,,,,, +393,15,3,13283,341,1836.603,64,16,G#2,mf,17,144,44,17,,,,, +393,16,3,13284,341,1836.603,64,16,E3,mf,17,144,52,17,,,,, +393,13,1,13281,341,1836.783,,,,,,144,93,0,,,,, +393,14,3,13282,341,1836.783,,,,,,144,36,0,,,,, +393,17,1,13285,384,1836.783,,,,,,176,102,0,,,,, +393,18,3,13286,384,1836.783,,,,,,176,102,0,,,,, +393,15,3,13283,341,1836.871,,,,,,144,44,0,,,,, +393,16,3,13284,341,1836.871,,,,,,144,52,0,,,,, +393,19,1,13287,426,1836.959,22,32,E5,pp,8,144,76,8,,,,, +393,19,1,13287,426,1837.051,,,,,,144,76,0,,,,, +393,20,1,13288,448,1837.051,21,32,D6,pp+,9,144,86,9,,,,, +393,20,1,13288,448,1837.139,,,,,,144,86,0,,,,, +393,21,1,13289,469,1837.139,21,32,A6,p-,10,144,93,10,,,,, +393,21,1,13289,469,1837.227,,,,,,144,93,0,,,,, +393,22,1,13290,490,1837.227,22,32,C3,p,11,144,48,11,,,,, +393,22,1,13290,490,1837.319,,,,,,144,48,0,,,,, +393,23,1,13291,512,1837.319,42,16,E4,p+,12,144,64,12,,,,, +393,24,3,13292,512,1837.319,,,,,,176,102,0,,,,, +393,23,1,13291,512,1837.494,,,,,,144,64,0,,,,, +393,25,1,13293,554,1837.494,22,32,C2,mp,14,144,36,14,,,,, +393,25,1,13293,554,1837.586,,,,,,144,36,0,,,,, +393,26,1,13294,576,1837.586,21,32,E4,mp+,15,144,64,15,,,,, +393,26,1,13294,576,1837.674,,,,,,144,64,0,,,,, +393,27,1,13295,597,1837.674,21,32,D5,mf-,16,144,74,16,,,,, +393,27,1,13295,597,1837.762,,,,,,144,74,0,,,,, +393,28,1,13296,618,1837.762,22,32,A5,mf,17,144,81,17,,,,, +393,28,1,13296,618,1837.854,,,,,,144,81,0,,,,, +393,29,1,13297,640,1837.854,21,32,C3,f-,19,144,48,19,,,,, +393,29,1,13297,640,1837.942,,,,,,144,48,0,,,,, +393,30,1,13298,661,1837.942,21,32,G#3,f,20,144,56,20,,,,, +393,30,1,13298,661,1838.03,,,,,,144,56,0,,,,, +393,31,1,13299,682,1838.03,,,,,,176,102,0,,,,, +393,32,3,13300,682,1838.03,29,32,D5,f+,21,144,74,21,,,,, +393,33,1,13301,710,1838.147,,,,,,176,102,0,,,,, +393,32,3,13300,682,1838.151,,,,,,144,74,0,,,,, +393,34,3,13302,711,1838.151,28,32,G#1,ff,22,144,32,22,,,,, +393,35,1,13303,738,1838.264,30,16,A7,ff,22,144,105,22,,,,, +393,34,3,13302,711,1838.269,,,,,,144,32,0,,,,, +393,36,0,13304,739,1838.269,,,,,,176,64,0,,,,,^ +393,37,3,13305,739,1838.269,29,32,C1,ff,22,144,24,22,,,,, +393,35,1,13303,738,1838.39,,,,,,144,105,0,,,,, +393,37,3,13305,739,1838.39,,,,,,144,24,0,,,,, +393,38,1,13306,768,1838.39,,,,,,176,102,0,,,,, +393,39,0,13307,768,1838.39,,,,,,,,,,6052,,, +393,40,3,13308,768,1838.39,256,4,E4,ff,22,144,64,22,,,,, +393,41,1,13309,853,1838.746,85,8,F#4,mp,14,144,66,14,,,,, +393,42,1,13310,853,1838.746,128,8,D5,mp,14,144,74,14,,,,, +393,41,1,13309,853,1839.102,,,,,,144,66,0,,,,, +393,43,1,13311,938,1839.102,86,8,D#4,mp,14,144,63,14,,,,, +393,42,1,13310,853,1839.281,,,,,,144,74,0,,,,, +393,43,1,13311,938,1839.461,,,,,,144,63,0,,,,, +393,44,1,13312,1024,1839.461,85,8,F#4,mp,14,144,66,14,,,,, +393,45,1,13313,1024,1839.461,128,8,D5,mp,14,144,74,14,,,,, +393,47,3,13314,1024,1839.461,,,,,,176,102,0,,,,, +393,46,0,13315,1024,1839.461,,,,,,176,64,127,,,,,V +393,40,3,13308,768,1839.461,,,,,,144,64,0,,,,, +393,44,1,13312,1024,1839.817,,,,,,144,66,0,,,,, +393,48,1,13316,1109,1839.817,64,16,D#3,mp,14,144,51,14,,,,, +393,45,1,13313,1024,1839.997,,,,,,144,74,0,,,,, +393,48,1,13316,1109,1840.085,,,,,,144,51,0,,,,, +393,49,1,13317,1173,1840.085,21,32,A#5,p,11,144,82,11,,,,, +393,49,1,13317,1173,1840.173,,,,,,144,82,0,,,,, +393,50,1,13318,1194,1840.173,22,32,G#2,p,11,144,44,11,,,,, +393,50,1,13318,1194,1840.265,,,,,,144,44,0,,,,, +393,51,1,13319,1216,1840.265,21,32,A#5,p-,10,144,82,10,,,,, +393,51,1,13319,1216,1840.353,,,,,,144,82,0,,,,, +393,52,1,13320,1237,1840.353,21,32,G#1,pp+,9,144,32,9,,,,, +393,52,1,13320,1237,1840.441,,,,,,144,32,0,,,,, +393,53,1,13321,1258,1840.441,22,32,A#6,pp,8,144,94,8,,,,, +393,53,1,13321,1258,1840.533,,,,,,144,94,0,,,,, +394,0,0,13322,0,1840.533,,,,,,,,,394,,,, +394,1,1,13323,0,1840.533,76,16,C#7,fff,24,144,97,23,,,,, +394,2,3,13324,0,1840.533,,,,,,176,102,0,,,,, +394,1,1,13323,0,1840.851,,,,,,144,97,0,,,,, +394,3,1,13325,76,1840.851,,,,,,176,102,0,,,,, +394,4,3,13326,85,1840.889,171,4,G#1,fff,24,144,32,23,,,,, +394,5,3,13327,85,1840.889,256,4,D3,fff,24,144,50,23,,,,, +394,6,1,13328,115,1841.014,25,32,D7,p,11,144,98,11,,,,, +394,6,1,13328,115,1841.119,,,,,,144,98,0,,,,, +394,7,1,13329,140,1841.119,26,32,D#6,p,11,144,87,11,,,,, +394,7,1,13329,140,1841.228,,,,,,144,87,0,,,,, +394,8,1,13330,166,1841.228,26,32,F#6,p,11,144,90,11,,,,, +394,8,1,13330,166,1841.336,,,,,,144,90,0,,,,, +394,9,1,13331,192,1841.336,25,32,D#5,p,11,144,75,11,,,,, +394,9,1,13331,192,1841.441,,,,,,144,75,0,,,,, +394,10,1,13332,217,1841.441,39,32,F#6,p,11,144,90,11,,,,, +394,10,1,13332,217,1841.604,,,,,,144,90,0,,,,, +394,11,1,13333,256,1841.604,25,32,D#4,p,11,144,63,11,,,,, +394,12,3,13334,256,1841.604,512,2,G#1,,,,,,,,,, +394,13,3,13335,256,1841.604,512,2,D3,,,,,,,,,, +394,11,1,13333,256,1841.709,,,,,,144,63,0,,,,, +394,14,1,13336,281,1841.709,39,32,D7,p,11,144,98,11,,,,, +394,14,1,13336,281,1841.872,,,,,,144,98,0,,,,, +394,15,1,13337,320,1841.872,38,32,F#5,p,11,144,78,11,,,,, +394,15,1,13337,320,1842.031,,,,,,144,78,0,,,,, +394,16,1,13338,358,1842.031,26,32,D#5,p,11,144,75,11,,,,, +394,16,1,13338,358,1842.14,,,,,,144,75,0,,,,, +394,17,1,13339,384,1842.14,25,32,F#5,p,11,144,78,11,,,,, +394,17,1,13339,384,1842.245,,,,,,144,78,0,,,,, +394,18,1,13340,409,1842.245,39,32,D#4,p,11,144,63,11,,,,, +394,18,1,13340,409,1842.408,,,,,,144,63,0,,,,, +394,19,1,13341,448,1842.408,38,32,G#3,p,11,144,56,11,,,,, +394,19,1,13341,448,1842.567,,,,,,144,56,0,,,,, +394,20,1,13342,486,1842.567,26,32,A#7,p,11,144,106,11,,,,, +394,20,1,13342,486,1842.676,,,,,,144,106,0,,,,, +394,21,1,13343,512,1842.676,54,32,D7,p,11,144,98,11,,,,, +394,21,1,13343,512,1842.902,,,,,,144,98,0,,,,, +394,22,1,13344,566,1842.902,55,32,F#5,p,11,144,78,11,,,,, +394,22,1,13344,566,1843.132,,,,,,144,78,0,,,,, +394,23,1,13345,621,1843.132,55,32,D#5,p,11,144,75,11,,,,, +394,23,1,13345,621,1843.362,,,,,,144,75,0,,,,, +394,24,1,13346,676,1843.362,55,32,G#3,p,11,144,56,11,,,,, +394,24,1,13346,676,1843.592,,,,,,144,56,0,,,,, +394,25,0,13347,731,1843.592,,,,,,176,64,0,,,,,^ +394,26,1,13348,731,1843.592,37,32,A#7,p,11,144,106,11,,,,, +394,4,3,13326,85,1843.747,,,,,,144,32,0,,,,, +394,26,1,13348,731,1843.747,,,,,,144,106,0,,,,, +394,27,3,13349,768,1843.747,,,,,,176,102,0,,,,, +394,28,1,13350,768,1843.747,,,,,,176,102,0,,,,, +394,5,3,13327,85,1844.103,,,,,,144,50,0,,,,, +394,30,3,13351,853,1844.103,,,,,,176,102,0,,,,, +394,31,0,13352,853,1844.103,,,,,,,,,,6053,,, +394,29,0,13353,853,1844.103,,,,,,176,64,127,,,,,V +394,32,3,13354,874,1844.191,22,32,F#2,p,11,144,42,11,,,,, +394,32,3,13354,874,1844.283,,,,,,144,42,0,,,,, +394,33,3,13355,896,1844.283,21,32,D3,mp-,13,144,50,13,,,,, +394,33,3,13355,896,1844.371,,,,,,144,50,0,,,,, +394,34,3,13356,917,1844.371,21,32,F#2,mp+,15,144,42,15,,,,, +394,34,3,13356,917,1844.459,,,,,,144,42,0,,,,, +394,35,3,13357,938,1844.459,22,32,D#2,mf-,16,144,39,16,,,,, +394,36,1,13358,938,1844.459,,,,,,176,102,0,,,,, +394,35,3,13357,938,1844.551,,,,,,144,39,0,,,,, +394,37,3,13359,960,1844.551,21,32,F#2,mf+,18,144,42,18,,,,, +394,38,3,13360,960,1844.551,32,32,D3,mf+,18,144,50,18,,,,, +394,39,3,13361,960,1844.551,32,32,A#3,mf+,18,144,58,18,,,,, +394,37,3,13359,960,1844.639,,,,,,144,42,0,,,,, +394,40,3,13362,981,1844.639,21,32,G#1,f,20,144,32,20,,,,, +394,41,1,13363,981,1844.639,43,16,B1,f,20,144,35,20,,,,, +394,42,1,13364,981,1844.639,64,16,E4,f,20,144,64,20,,,,, +394,38,3,13360,960,1844.685,,,,,,144,50,0,,,,, +394,39,3,13361,960,1844.685,,,,,,144,58,0,,,,, +394,40,3,13362,981,1844.727,,,,,,144,32,0,,,,, +394,43,0,13365,1002,1844.727,,,,,,176,64,0,,,,,^ +394,44,3,13366,1002,1844.727,22,32,G#1,ff,22,144,32,22,,,,, +394,45,3,13367,1002,1844.727,32,32,D#2,ff,22,144,39,22,,,,, +394,46,3,13368,1002,1844.727,32,32,F#2,ff,22,144,42,22,,,,, +394,47,3,13369,1002,1844.727,32,32,A#4,ff,22,144,70,22,,,,, +394,41,1,13363,981,1844.819,,,,,,144,35,0,,,,, +394,44,3,13366,1002,1844.819,,,,,,144,32,0,,,,, +394,48,1,13370,1024,1844.819,256,4,D5,ff,22,144,74,22,,,,, +394,49,3,13371,1024,1844.819,42,16,B1,mp,14,144,35,14,,,,, +394,50,3,13372,1024,1844.819,64,16,D2,mp,14,144,38,14,,,,, +394,45,3,13367,1002,1844.86,,,,,,144,39,0,,,,, +394,46,3,13368,1002,1844.86,,,,,,144,42,0,,,,, +394,47,3,13369,1002,1844.86,,,,,,144,70,0,,,,, +394,42,1,13364,981,1844.906,,,,,,144,64,0,,,,, +394,49,3,13371,1024,1844.994,,,,,,144,35,0,,,,, +394,51,3,13373,1066,1844.994,43,16,F#1,mp,14,144,30,14,,,,, +394,50,3,13372,1024,1845.086,,,,,,144,38,0,,,,, +394,51,3,13373,1066,1845.174,,,,,,144,30,0,,,,, +394,52,3,13374,1109,1845.174,,,,,,176,102,0,,,,, +394,53,3,13375,1194,1845.53,,,,,,176,102,0,,,,, +395,0,0,13376,0,1845.89,,,,,,,,,395,,,, +395,1,1,13377,0,1845.89,128,8,D5,,,,,,,,,, +395,2,3,13378,0,1845.89,,,,,,176,102,0,,,,, +395,3,1,13379,128,1846.426,21,32,F#3,pp,8,144,54,8,,,,, +394,48,1,13370,1024,1846.426,,,,,,144,74,0,,,,, +395,3,1,13379,128,1846.514,,,,,,144,54,0,,,,, +395,5,1,13380,149,1846.514,21,32,G4,pp,8,144,67,8,,,,, +395,4,0,13381,149,1846.514,,,,,,176,64,127,,,,,V +395,5,1,13380,149,1846.602,,,,,,144,67,0,,,,, +395,6,1,13382,170,1846.602,22,32,F#3,pp,8,144,54,8,,,,, +395,6,1,13382,170,1846.694,,,,,,144,54,0,,,,, +395,7,1,13383,192,1846.694,21,32,G4,pp,8,144,67,8,,,,, +395,7,1,13383,192,1846.781,,,,,,144,67,0,,,,, +395,8,1,13384,213,1846.781,21,32,F#3,pp,8,144,54,8,,,,, +395,8,1,13384,213,1846.869,,,,,,144,54,0,,,,, +395,9,0,13385,234,1846.869,,,,,,176,64,0,,,,,^ +395,10,1,13386,234,1846.869,22,32,G4,pp,8,144,67,8,,,,, +395,11,1,13387,256,1846.961,32,32,G4,,,,,,,,,, +395,12,3,13388,256,1846.961,64,16,C1,ff,22,144,24,22,,,,, +395,13,3,13389,256,1846.961,64,16,E4,ff,22,144,64,22,,,,, +395,14,3,13390,256,1846.961,64,16,C5,f,20,144,72,20,,,,, +395,10,1,13386,234,1847.095,,,,,,144,67,0,,,,, +395,15,1,13391,288,1847.095,32,32,F#3,pp,8,144,54,8,,,,, +395,12,3,13388,256,1847.229,,,,,,144,24,0,,,,, +395,13,3,13389,256,1847.229,,,,,,144,64,0,,,,, +395,14,3,13390,256,1847.229,,,,,,144,72,0,,,,, +395,15,1,13391,288,1847.229,,,,,,144,54,0,,,,, +395,17,1,13392,320,1847.229,32,32,G4,pp,8,144,67,8,,,,, +395,18,3,13393,320,1847.229,,,,,,176,102,0,,,,, +395,16,0,13394,320,1847.229,,,,,,176,64,127,,,,,V +395,17,1,13392,320,1847.363,,,,,,144,67,0,,,,, +395,19,1,13395,352,1847.363,32,32,F#3,pp,8,144,54,8,,,,, +395,19,1,13395,352,1847.497,,,,,,144,54,0,,,,, +395,20,1,13396,384,1847.497,21,32,A#4,pp,8,144,70,8,,,,, +395,20,1,13396,384,1847.585,,,,,,144,70,0,,,,, +395,21,1,13397,405,1847.585,21,32,C4,pp,8,144,60,8,,,,, +395,21,1,13397,405,1847.673,,,,,,144,60,0,,,,, +395,22,1,13398,426,1847.673,22,32,D5,pp,8,144,74,8,,,,, +395,23,1,13399,448,1847.765,32,32,D5,,,,,,,,,, +395,22,1,13398,426,1847.899,,,,,,144,74,0,,,,, +395,24,0,13400,480,1847.899,,,,,,176,64,0,,,,,^ +395,25,1,13401,480,1847.899,32,32,C4,pp,8,144,60,8,,,,, +395,25,1,13401,480,1848.033,,,,,,144,60,0,,,,, +395,26,1,13402,512,1848.033,,,,,,176,102,0,,,,, +395,27,3,13403,512,1848.033,64,16,C1,ff,22,144,24,22,,,,, +395,28,3,13404,512,1848.033,64,16,E4,ff,22,144,64,22,,,,, +395,29,3,13405,512,1848.033,64,16,D5,ff,22,144,74,22,,,,, +395,30,1,13406,544,1848.167,32,32,G4,pp,8,144,67,8,,,,, +395,27,3,13403,512,1848.301,,,,,,144,24,0,,,,, +395,28,3,13404,512,1848.301,,,,,,144,64,0,,,,, +395,29,3,13405,512,1848.301,,,,,,144,74,0,,,,, +395,30,1,13406,544,1848.301,,,,,,144,67,0,,,,, +395,32,1,13407,576,1848.301,32,32,F#3,pp,8,144,54,8,,,,, +395,33,3,13408,576,1848.301,,,,,,176,102,0,,,,, +395,31,0,13409,576,1848.301,,,,,,176,64,127,,,,,V +395,34,1,13410,608,1848.435,32,32,A#4,pp,8,144,70,8,,,,, +395,34,1,13410,608,1848.569,,,,,,144,70,0,,,,, +395,35,1,13411,640,1848.569,21,32,D6,pp,8,144,86,8,,,,, +395,35,1,13411,640,1848.656,,,,,,144,86,0,,,,, +395,36,1,13412,661,1848.656,21,32,C4,pp,8,144,60,8,,,,, +395,32,1,13407,576,1848.66,,,,,,144,54,0,,,,, +395,36,1,13412,661,1848.744,,,,,,144,60,0,,,,, +395,37,1,13413,682,1848.744,22,32,D6,pp,8,144,86,8,,,,, +395,37,1,13413,682,1848.836,,,,,,144,86,0,,,,, +395,38,1,13414,704,1848.836,21,32,C4,pp,8,144,60,8,,,,, +395,38,1,13414,704,1848.924,,,,,,144,60,0,,,,, +395,39,0,13415,725,1848.924,,,,,,176,64,0,,,,,^ +395,40,1,13416,725,1848.924,43,16,D6,pp,8,144,86,8,,,,, +395,40,1,13416,725,1849.104,,,,,,144,86,0,,,,, +395,41,1,13417,768,1849.104,32,32,F#4,ff,22,144,66,22,,,,, +395,42,1,13418,768,1849.104,32,32,D5,ff,22,144,74,22,,,,, +395,43,3,13419,,1849.104,,8,C3,p,11,144,48,11,,,,g, +395,43,3,13419,,1849.154,,,,,,144,48,0,,,,, +395,44,3,13420,768,1849.179,170,4,F4,p,11,144,65,11,,,,, +395,41,1,13417,768,1849.238,,,,,,144,66,0,,,,, +395,42,1,13418,768,1849.238,,,,,,144,74,0,,,,, +395,46,1,13421,800,1849.313,32,32,A#4,pp,8,144,70,8,,,,, +395,45,0,13422,800,1849.313,,,,,,176,64,127,,,,,V +395,48,0,13423,864,1849.431,,,,,,176,64,0,,,,,^ +395,46,1,13421,800,1849.447,,,,,,144,70,0,,,,, +395,47,1,13424,832,1849.447,32,32,D6,pp,8,144,86,8,,,,, +395,47,1,13424,832,1849.581,,,,,,144,86,0,,,,, +395,50,1,13425,864,1849.581,32,32,C4,pp,8,144,60,8,,,,, +395,50,1,13425,864,1849.715,,,,,,144,60,0,,,,, +395,51,1,13426,896,1849.715,,,,,,176,102,0,,,,, +395,49,0,13427,864,1849.731,,,,,,176,64,127,,,,,V +395,44,3,13420,768,1849.891,,,,,,144,65,0,,,,, +395,52,3,13428,938,1849.891,86,8,A#3,p,11,144,58,11,,,,, +395,53,1,13429,1024,1850.251,56,16,A#4,mp,14,144,70,14,,,,, +395,54,3,13430,1024,1850.251,85,8,A#3,,,,,,,,,, +395,53,1,13429,1024,1850.485,,,,,,144,70,0,,,,, +395,55,1,13431,1080,1850.485,57,16,B6,mp,14,144,95,14,,,,, +395,52,3,13428,938,1850.606,,,,,,144,58,0,,,,, +395,56,3,13432,1109,1850.606,43,16,C3,p,11,144,48,11,,,,, +395,55,1,13431,1080,1850.724,,,,,,144,95,0,,,,, +395,57,1,13433,1137,1850.724,86,16,E4,mp,14,144,64,14,,,,, +395,56,3,13432,1109,1850.786,,,,,,144,48,0,,,,, +395,58,3,13434,1152,1850.786,42,16,F4,p,11,144,65,11,,,,, +395,58,3,13434,1152,1850.962,,,,,,144,65,0,,,,, +395,59,3,13435,1194,1850.962,43,16,A#3,p,11,144,58,11,,,,, +395,57,1,13433,1137,1851.084,,,,,,144,64,0,,,,, +395,60,1,13436,1223,1851.084,57,16,B6,mp,14,144,95,14,,,,, +395,59,3,13435,1194,1851.142,,,,,,144,58,0,,,,, +395,61,3,13437,1237,1851.142,43,16,C3,p,11,144,48,11,,,,, +395,62,0,13438,1255,1851.218,,,,,,176,64,0,,,,,^ +395,60,1,13436,1223,1851.322,,,,,,144,95,0,,,,, +395,61,3,13437,1237,1851.322,,,,,,144,48,0,,,,, +396,0,0,13439,0,1851.322,,,,,,,,,396,,,, +396,1,0,13440,0,1851.322,,,,,,,,,,6054,,, +396,2,1,13441,0,1851.322,256,4,F#4,mp,14,144,66,14,,,,, +396,3,1,13442,0,1851.322,256,4,D5,mp,14,144,74,14,,,,, +396,4,3,13443,0,1851.322,256,4,D#3,ff,22,144,51,22,,,,, +396,5,0,13444,64,1851.59,,,,,,176,64,127,,,,,V +396,2,1,13441,0,1852.394,,,,,,144,66,0,,,,, +396,6,1,13445,256,1852.394,64,16,F#4,mp,14,144,66,14,,,,, +396,7,3,13446,256,1852.394,128,8,G#1,ff,22,144,32,22,,,,, +396,3,1,13442,0,1852.394,,,,,,144,74,0,,,,, +396,4,3,13443,0,1852.394,,,,,,144,51,0,,,,, +396,6,1,13445,256,1852.661,,,,,,144,66,0,,,,, +396,8,1,13447,320,1852.661,64,16,A#7,mp,14,144,106,14,,,,, +396,7,3,13446,256,1852.929,,,,,,144,32,0,,,,, +396,8,1,13447,320,1852.929,,,,,,144,106,0,,,,, +396,9,1,13448,384,1852.929,38,32,D#4,ppp,5,144,63,5,,,,, +396,10,3,13449,384,1852.929,,,,,,176,102,0,,,,, +396,11,1,13450,422,1853.088,26,32,G#3,ppp+,6,144,56,6,,,,, +396,9,1,13448,384,1853.163,,,,,,144,63,0,,,,, +396,11,1,13450,422,1853.197,,,,,,144,56,0,,,,, +396,12,1,13451,448,1853.197,38,32,D#4,ppp+,6,144,63,6,,,,, +396,12,1,13451,448,1853.356,,,,,,144,63,0,,,,, +396,13,1,13452,486,1853.356,26,32,G#3,pp-,7,144,56,7,,,,, +396,13,1,13452,486,1853.465,,,,,,144,56,0,,,,, +396,14,1,13453,512,1853.465,38,32,D#4,pp-,7,144,63,7,,,,, +396,15,3,13454,512,1853.465,,,,,,176,102,0,,,,, +396,14,1,13453,512,1853.624,,,,,,144,63,0,,,,, +396,16,1,13455,550,1853.624,38,32,G#3,pp,8,144,56,8,,,,, +396,16,1,13455,550,1853.783,,,,,,144,56,0,,,,, +396,17,1,13456,588,1853.783,39,32,C3,pp+,9,144,48,9,,,,, +396,17,1,13456,588,1853.946,,,,,,144,48,0,,,,, +396,18,1,13457,627,1853.946,13,64,D#4,p-,10,144,63,10,,,,, +396,20,0,13458,640,1854.001,,,,,,176,64,0,,,,,^ +396,19,1,13459,640,1854.001,25,32,D#4,,,,,,,,,, +396,18,1,13457,627,1854.105,,,,,,144,63,0,,,,, +396,21,1,13460,665,1854.105,39,32,G#3,p-,10,144,56,10,,,,, +396,21,1,13460,665,1854.269,,,,,,144,56,0,,,,, +396,22,1,13461,704,1854.269,25,32,A4,p,11,144,69,11,,,,, +396,23,3,13462,704,1854.269,21,32,F#3,ppp,5,144,54,5,,,,, +396,23,3,13462,704,1854.356,,,,,,144,54,0,,,,, +396,24,3,13463,725,1854.356,21,32,D4,ppp,5,144,62,5,,,,, +396,22,1,13461,704,1854.373,,,,,,144,69,0,,,,, +396,25,1,13464,729,1854.373,39,32,E6,p,11,144,88,11,,,,, +396,24,3,13463,725,1854.444,,,,,,144,62,0,,,,, +396,26,3,13465,746,1854.444,22,32,F#3,ppp,5,144,54,5,,,,, +396,26,3,13465,746,1854.536,,,,,,144,54,0,,,,, +396,27,1,13466,768,1854.536,28,32,A#4,p,11,144,70,11,,,,, +396,29,3,13467,768,1854.536,,,,,,176,102,0,,,,, +396,28,0,13468,768,1854.536,,,,,,176,64,127,,,,,V +396,25,1,13464,729,1854.536,,,,,,144,88,0,,,,, +396,27,1,13466,768,1854.654,,,,,,144,70,0,,,,, +396,30,1,13469,796,1854.654,28,32,E4,mp-,13,144,64,13,,,,, +396,30,1,13469,796,1854.771,,,,,,144,64,0,,,,, +396,31,1,13470,824,1854.771,29,32,E4,mp+,15,144,64,15,,,,, +396,32,1,13471,824,1854.771,32,32,A#4,mp+,15,144,70,15,,,,, +396,33,1,13472,824,1854.771,32,32,B6,mp+,15,144,95,15,,,,, +396,31,1,13470,824,1854.892,,,,,,144,64,0,,,,, +396,34,1,13473,853,1854.892,28,32,C#6,mf+,18,144,85,18,,,,, +396,32,1,13471,824,1854.905,,,,,,144,70,0,,,,, +396,33,1,13472,824,1854.905,,,,,,144,95,0,,,,, +396,34,1,13473,853,1855.009,,,,,,144,85,0,,,,, +396,35,1,13474,881,1855.009,86,16,F5,f,20,144,77,20,,,,, +396,36,3,13475,896,1855.072,21,32,D4,ppp,5,144,62,5,,,,, +396,36,3,13475,896,1855.16,,,,,,144,62,0,,,,, +396,37,3,13476,917,1855.16,21,32,F#3,ppp,5,144,54,5,,,,, +396,37,3,13476,917,1855.248,,,,,,144,54,0,,,,, +396,38,3,13477,938,1855.248,32,32,D4,ppp,5,144,62,5,,,,, +396,35,1,13474,881,1855.369,,,,,,144,77,0,,,,, +396,39,1,13478,967,1855.369,,,,,,176,102,0,,,,, +396,40,3,13479,970,1855.382,32,32,F#3,ppp,5,144,54,5,,,,, +396,38,3,13477,938,1855.382,,,,,,144,62,0,,,,, +396,40,3,13479,970,1855.516,,,,,,144,54,0,,,,, +396,41,3,13480,1002,1855.516,22,32,G#2,ppp,5,144,44,5,,,,, +396,42,3,13481,1002,1855.516,32,32,F#3,ppp,5,144,54,5,,,,, +396,43,3,13482,1002,1855.516,32,32,D4,ppp,5,144,62,5,,,,, +396,41,3,13480,1002,1855.608,,,,,,144,44,0,,,,, +396,44,1,13483,1024,1855.608,,,,,,176,102,0,,,,, +396,45,3,13484,1024,1855.608,21,32,D#3,ppp,5,144,51,5,,,,, +396,42,3,13481,1002,1855.65,,,,,,144,54,0,,,,, +396,43,3,13482,1002,1855.65,,,,,,144,62,0,,,,, +396,45,3,13484,1024,1855.696,,,,,,144,51,0,,,,, +396,46,3,13485,1045,1855.696,21,32,G#2,ppp,5,144,44,5,,,,, +396,46,3,13485,1045,1855.784,,,,,,144,44,0,,,,, +396,47,1,13486,1066,1855.784,64,16,F#3,ppp,5,144,54,5,,,,, +396,48,1,13487,1066,1855.784,64,16,D4,ppp,5,144,62,5,,,,, +396,49,3,13488,1066,1855.784,32,32,D#3,ppp,5,144,51,5,,,,, +396,49,3,13488,1066,1855.918,,,,,,144,51,0,,,,, +396,50,3,13489,1098,1855.918,32,32,G#2,ppp,5,144,44,5,,,,, +396,47,1,13486,1066,1856.052,,,,,,144,54,0,,,,, +396,48,1,13487,1066,1856.052,,,,,,144,62,0,,,,, +396,50,3,13489,1098,1856.052,,,,,,144,44,0,,,,, +396,51,1,13490,1130,1856.052,22,32,A#5,ppp,5,144,82,5,,,,, +396,52,3,13491,1130,1856.052,22,32,G#2,ppp,5,144,44,5,,,,, +396,53,3,13492,1130,1856.052,32,32,D#3,ppp,5,144,51,5,,,,, +396,54,0,13493,1152,1856.128,,,,,,176,64,0,,,,,^ +396,51,1,13490,1130,1856.144,,,,,,144,82,0,,,,, +396,52,3,13491,1130,1856.144,,,,,,144,44,0,,,,, +396,55,1,13494,1152,1856.144,,,,,,176,102,0,,,,, +396,56,3,13495,1152,1856.144,,,,,,176,102,0,,,,, +396,53,3,13492,1130,1856.185,,,,,,144,51,0,,,,, +396,58,3,13496,1216,1856.411,21,32,F4,ppp,5,144,65,5,,,,, +396,57,0,13497,1216,1856.428,,,,,,176,64,127,,,,,V +396,58,3,13496,1216,1856.499,,,,,,144,65,0,,,,, +396,59,3,13498,1237,1856.499,21,32,A#3,pp+,9,144,58,9,,,,, +396,59,3,13498,1237,1856.587,,,,,,144,58,0,,,,, +396,60,3,13499,1258,1856.587,22,32,C3,mp-,13,144,48,13,,,,, +396,60,3,13499,1258,1856.679,,,,,,144,48,0,,,,, +397,0,0,13500,0,1856.679,,,,,,,,,397,,,, +397,1,1,13501,0,1856.679,21,32,G#6,f,20,144,92,20,,,,, +397,2,3,13502,0,1856.679,64,16,A#3,mf,17,144,58,17,,,,, +397,3,3,13503,0,1856.679,64,16,F4,mf,17,144,65,17,,,,, +397,1,1,13501,0,1856.767,,,,,,144,92,0,,,,, +397,4,1,13504,21,1856.767,43,16,E7,f,20,144,100,20,,,,, +397,2,3,13502,0,1856.947,,,,,,144,58,0,,,,, +397,3,3,13503,0,1856.947,,,,,,144,65,0,,,,, +397,4,1,13504,21,1856.947,,,,,,144,100,0,,,,, +397,5,1,13505,64,1856.947,,,,,,176,102,0,,,,, +397,6,3,13506,64,1856.947,,,,,,176,102,0,,,,, +397,7,0,13507,192,1857.483,,,,,,176,64,0,,,,,^ +397,8,1,13508,192,1857.483,64,16,G1,p,11,144,31,11,,,,, +397,9,3,13509,192,1857.483,,,,,,176,102,0,,,,, +397,8,1,13508,192,1857.751,,,,,,144,31,0,,,,, +397,10,1,13510,256,1857.751,192,8,G1,p,11,144,31,11,,,,, +397,11,1,13511,256,1857.751,128,8,C#4,p,11,144,61,11,,,,, +397,12,3,13512,256,1857.751,170,4,D#1,ff,22,144,27,22,,,,, +397,13,3,13513,256,1857.751,256,4,C5,ff,22,144,72,22,,,,, +397,11,1,13511,256,1858.286,,,,,,144,61,0,,,,, +397,12,3,13512,256,1858.462,,,,,,144,27,0,,,,, +397,13,3,13513,256,1858.462,,,,,,144,72,0,,,,, +397,14,3,13514,426,1858.462,43,16,G#1,ff,22,144,32,22,,,,, +397,15,3,13515,426,1858.462,64,16,C5,ff,22,144,72,22,,,,, +397,10,1,13510,256,1858.554,,,,,,144,31,0,,,,, +397,16,1,13516,448,1858.554,,,,,,176,102,0,,,,, +397,14,3,13514,426,1858.642,,,,,,144,32,0,,,,, +397,15,3,13515,426,1858.642,,,,,,144,72,0,,,,, +397,17,3,13517,469,1858.642,43,16,G#1,ff,22,144,32,22,,,,, +397,18,3,13518,469,1858.642,64,16,C5,ff,22,144,72,22,,,,, +397,19,3,13519,469,1858.642,64,16,E5,ff,22,144,76,22,,,,, +397,17,3,13517,469,1858.822,,,,,,144,32,0,,,,, +397,21,1,13520,512,1858.822,256,4,D5,pp,8,144,74,8,,,,, +397,22,3,13521,512,1858.822,64,16,G1,p,11,144,31,11,,,,, +397,23,3,13522,512,1858.822,64,16,C#4,p,11,144,61,11,,,,, +397,20,0,13523,512,1858.822,,,,,,176,64,127,,,,,V +397,18,3,13518,469,1858.91,,,,,,144,72,0,,,,, +397,19,3,13519,469,1858.91,,,,,,144,76,0,,,,, +397,22,3,13521,512,1859.09,,,,,,144,31,0,,,,, +397,23,3,13522,512,1859.09,,,,,,144,61,0,,,,, +397,24,3,13524,576,1859.09,42,16,E5,p,11,144,76,11,,,,, +397,24,3,13524,576,1859.266,,,,,,144,76,0,,,,, +397,25,3,13525,618,1859.266,43,16,C3,p,11,144,48,11,,,,, +397,25,3,13525,618,1859.446,,,,,,144,48,0,,,,, +397,26,3,13526,661,1859.446,64,16,G#2,p,11,144,44,11,,,,, +397,28,0,13527,742,1859.689,,,,,,176,64,0,,,,,^ +397,26,3,13526,661,1859.714,,,,,,144,44,0,,,,, +397,27,3,13528,725,1859.714,43,16,C4,p,11,144,60,11,,,,, +397,21,1,13520,512,1859.894,,,,,,144,74,0,,,,, +397,27,3,13528,725,1859.894,,,,,,144,60,0,,,,, +397,30,1,13529,768,1859.894,,,,,,176,102,0,,,,, +397,31,3,13530,768,1859.894,21,32,D5,f,20,144,74,20,,,,, +397,31,3,13530,768,1859.981,,,,,,144,74,0,,,,, +397,32,3,13531,789,1859.981,21,32,D#2,f-,19,144,39,19,,,,, +397,29,0,13532,768,1859.989,,,,,,176,64,127,,,,,V +397,32,3,13531,789,1860.069,,,,,,144,39,0,,,,, +397,33,3,13533,810,1860.069,22,32,A#5,mf+,18,144,82,18,,,,, +397,33,3,13533,810,1860.161,,,,,,144,82,0,,,,, +397,34,3,13534,832,1860.161,21,32,D#2,mf,17,144,39,17,,,,, +397,35,3,13535,832,1860.161,32,32,F#2,mf,17,144,42,17,,,,, +397,34,3,13534,832,1860.249,,,,,,144,39,0,,,,, +397,36,3,13536,853,1860.249,32,32,D4,mf-,16,144,62,16,,,,, +397,35,3,13535,832,1860.295,,,,,,144,42,0,,,,, +397,36,3,13536,853,1860.383,,,,,,144,62,0,,,,, +397,37,3,13537,885,1860.383,11,64,D#2,mp+,15,144,39,15,,,,, +397,38,3,13538,885,1860.383,16,64,F#2,mp+,15,144,42,15,,,,, +397,39,3,13539,896,1860.429,10,64,D#2,,,,,,,,,, +397,40,3,13540,896,1860.429,16,64,F#2,,,,,,,,,, +397,37,3,13537,885,1860.471,,,,,,144,39,0,,,,, +397,41,3,13541,906,1860.471,32,32,D3,mp,14,144,50,14,,,,, +397,38,3,13538,885,1860.517,,,,,,144,42,0,,,,, +397,41,3,13541,906,1860.605,,,,,,144,50,0,,,,, +397,42,3,13542,938,1860.605,32,32,F#2,mp-,13,144,42,13,,,,, +397,42,3,13542,938,1860.739,,,,,,144,42,0,,,,, +397,43,3,13543,970,1860.739,32,32,D#2,p,11,144,39,11,,,,, +397,43,3,13543,970,1860.873,,,,,,144,39,0,,,,, +397,44,0,13544,1002,1860.873,,,,,,176,64,0,,,,,^ +397,45,3,13545,1002,1860.873,22,32,G#1,p-,10,144,32,10,,,,, +397,46,3,13546,1002,1860.873,32,32,F#2,p-,10,144,42,10,,,,, +397,45,3,13545,1002,1860.965,,,,,,144,32,0,,,,, +397,47,3,13547,1024,1860.965,21,32,D#2,pp+,9,144,39,9,,,,, +397,46,3,13546,1002,1861.007,,,,,,144,42,0,,,,, +397,47,3,13547,1024,1861.053,,,,,,144,39,0,,,,, +397,48,3,13548,1045,1861.053,21,32,D3,pp,8,144,50,8,,,,, +397,49,3,13549,1045,1861.053,32,32,A#4,pp,8,144,70,8,,,,, +397,48,3,13548,1045,1861.141,,,,,,144,50,0,,,,, +397,50,3,13550,1066,1861.141,32,32,G#1,pp-,7,144,32,7,,,,, +397,51,3,13551,1066,1861.141,32,32,D#2,pp-,7,144,39,7,,,,, +397,49,3,13549,1045,1861.187,,,,,,144,70,0,,,,, +397,50,3,13550,1066,1861.275,,,,,,144,32,0,,,,, +397,51,3,13551,1066,1861.275,,,,,,144,39,0,,,,, +397,52,3,13552,1098,1861.275,22,32,A#3,ppp+,6,144,58,6,,,,, +397,52,3,13552,1098,1861.367,,,,,,144,58,0,,,,, +397,53,3,13553,1120,1861.367,32,32,D3,ppp,5,144,50,5,,,,, +397,53,3,13553,1120,1861.501,,,,,,144,50,0,,,,, +397,54,3,13554,1152,1861.501,32,32,F#2,ppp,5,144,42,5,,,,, +397,54,3,13554,1152,1861.635,,,,,,144,42,0,,,,, +397,55,3,13555,1184,1861.635,32,32,D#2,ppp,5,144,39,5,,,,, +397,56,3,13556,1184,1861.635,32,32,D3,ppp,5,144,50,5,,,,, +397,55,3,13555,1184,1861.769,,,,,,144,39,0,,,,, +397,56,3,13556,1184,1861.769,,,,,,144,50,0,,,,, +397,57,3,13557,1216,1861.769,32,32,G#1,ppp,5,144,32,5,,,,, +397,58,3,13558,1216,1861.769,32,32,D#2,ppp,5,144,39,5,,,,, +397,59,3,13559,1216,1861.769,32,32,F#2,ppp,5,144,42,5,,,,, +397,57,3,13557,1216,1861.903,,,,,,144,32,0,,,,, +397,58,3,13558,1216,1861.903,,,,,,144,39,0,,,,, +397,59,3,13559,1216,1861.903,,,,,,144,42,0,,,,, +397,60,3,13560,1248,1861.903,32,32,A#3,ppp,5,144,58,5,,,,, +397,60,3,13560,1248,1862.036,,,,,,144,58,0,,,,, +398,0,0,13561,0,1862.036,,,,,,,,,398,,,, +398,1,0,13562,0,1862.036,,,,,,,,,,6055,,, +398,2,1,13563,0,1862.036,,,,,,176,102,0,,,,, +398,3,3,13564,0,1862.036,,,,,,176,102,0,,,,, +398,4,3,13565,64,1862.304,25,32,B2,p,11,144,47,11,,,,, +398,5,3,13566,64,1862.304,32,32,D4,p,11,144,62,11,,,,, +398,4,3,13565,64,1862.409,,,,,,144,47,0,,,,, +398,7,3,13567,89,1862.409,26,32,E2,mp,14,144,40,14,,,,, +398,6,0,13568,89,1862.409,,,,,,176,64,127,,,,,V +398,5,3,13566,64,1862.438,,,,,,144,62,0,,,,, +398,7,3,13567,89,1862.518,,,,,,144,40,0,,,,, +398,8,3,13569,115,1862.518,25,32,F#1,mf-,16,144,30,16,,,,, +398,9,3,13570,115,1862.518,32,32,D3,mf-,16,144,50,16,,,,, +398,8,3,13569,115,1862.622,,,,,,144,30,0,,,,, +398,10,3,13571,140,1862.622,26,32,A#0,f-,19,144,22,19,,,,, +398,11,3,13572,140,1862.622,32,32,E2,f-,19,144,40,19,,,,, +398,12,3,13573,140,1862.622,32,32,B2,f-,19,144,47,19,,,,, +398,9,3,13570,115,1862.652,,,,,,144,50,0,,,,, +398,10,3,13571,140,1862.731,,,,,,144,22,0,,,,, +398,11,3,13572,140,1862.731,,,,,,144,40,0,,,,, +398,12,3,13573,140,1862.731,,,,,,144,47,0,,,,, +398,13,3,13574,166,1862.731,26,32,F#1,ff,22,144,30,22,,,,, +398,14,3,13575,166,1862.731,32,32,E2,ff,22,144,40,22,,,,, +398,15,3,13576,166,1862.731,32,32,B2,ff,22,144,47,22,,,,, +398,16,3,13577,166,1862.731,32,32,D3,ff,22,144,50,22,,,,, +398,13,3,13574,166,1862.84,,,,,,144,30,0,,,,, +398,17,3,13578,192,1862.84,,,,,,176,102,0,,,,, +398,14,3,13575,166,1862.865,,,,,,144,40,0,,,,, +398,15,3,13576,166,1862.865,,,,,,144,47,0,,,,, +398,16,3,13577,166,1862.865,,,,,,144,50,0,,,,, +398,18,1,13579,256,1863.108,42,16,D3,fff,24,144,50,23,,,,, +398,19,1,13580,256,1863.108,64,16,C#7,fff,24,144,97,23,,,,, +398,20,3,13581,256,1863.108,,,,,,176,102,0,,,,, +398,18,1,13579,256,1863.284,,,,,,144,50,0,,,,, +398,21,1,13582,298,1863.284,43,16,G#1,fff,24,144,32,23,,,,, +398,22,1,13583,298,1863.284,64,16,C5,fff,24,144,72,23,,,,, +398,23,1,13584,298,1863.284,64,16,E5,fff,24,144,76,23,,,,, +398,19,1,13580,256,1863.376,,,,,,144,97,0,,,,, +398,21,1,13582,298,1863.464,,,,,,144,32,0,,,,, +398,24,1,13585,341,1863.464,,,,,,176,102,0,,,,, +398,22,1,13583,298,1863.552,,,,,,144,72,0,,,,, +398,23,1,13584,298,1863.552,,,,,,144,76,0,,,,, +398,25,0,13586,512,1864.179,,,,,,176,64,0,,,,,^ +398,26,1,13587,512,1864.179,,,,,,176,102,0,,,,, +398,27,3,13588,512,1864.179,85,8,C1,fff,24,144,24,23,,,,, +398,28,1,13589,576,1864.447,21,32,C#4,ff,22,144,61,22,,,,, +398,28,1,13589,576,1864.535,,,,,,144,61,0,,,,, +398,29,1,13590,597,1864.535,,,,,,176,102,0,,,,, +398,30,3,13591,597,1864.535,21,32,C1,,,,,,,,,, +398,31,3,13592,597,1864.535,32,32,G1,f,20,144,31,20,,,,, +398,27,3,13588,512,1864.623,,,,,,144,24,0,,,,, +398,32,1,13593,618,1864.623,22,32,C#3,f-,19,144,49,19,,,,, +398,33,3,13594,618,1864.623,,,,,,176,102,0,,,,, +398,31,3,13592,597,1864.669,,,,,,144,31,0,,,,, +398,32,1,13593,618,1864.715,,,,,,144,49,0,,,,, +398,34,1,13595,640,1864.715,21,32,C#4,mf,17,144,61,17,,,,, +398,35,3,13596,640,1864.715,21,32,C2,mf,17,144,36,17,,,,, +398,34,1,13595,640,1864.803,,,,,,144,61,0,,,,, +398,35,3,13596,640,1864.803,,,,,,144,36,0,,,,, +398,36,1,13597,661,1864.803,,,,,,176,102,0,,,,, +398,37,3,13598,661,1864.803,21,32,G1,mf-,16,144,31,16,,,,, +398,37,3,13598,661,1864.891,,,,,,144,31,0,,,,, +398,38,1,13599,682,1864.891,22,32,C3,mp,14,144,48,14,,,,, +398,39,1,13600,682,1864.891,32,32,C#4,mp,14,144,61,14,,,,, +398,40,3,13601,682,1864.891,,,,,,176,102,0,,,,, +398,38,1,13599,682,1864.983,,,,,,144,48,0,,,,, +398,41,1,13602,704,1864.983,,,,,,176,102,0,,,,, +398,42,3,13603,704,1864.983,21,32,G1,mp-,13,144,31,13,,,,, +398,43,3,13604,704,1864.983,32,32,C2,mp-,13,144,36,13,,,,, +398,39,1,13600,682,1865.025,,,,,,144,61,0,,,,, +398,42,3,13603,704,1865.071,,,,,,144,31,0,,,,, +398,44,1,13605,725,1865.071,21,32,C3,p,11,144,48,11,,,,, +398,45,1,13606,725,1865.071,32,32,C#3,p,11,144,49,11,,,,, +398,46,3,13607,725,1865.071,,,,,,176,102,0,,,,, +398,43,3,13604,704,1865.117,,,,,,144,36,0,,,,, +398,44,1,13605,725,1865.159,,,,,,144,48,0,,,,, +398,47,1,13608,746,1865.159,,,,,,176,102,0,,,,, +398,48,3,13609,746,1865.159,22,32,C2,p-,10,144,36,10,,,,, +398,45,1,13606,725,1865.205,,,,,,144,49,0,,,,, +398,48,3,13609,746,1865.251,,,,,,144,36,0,,,,, +398,49,1,13610,768,1865.251,32,32,C#4,pp,8,144,61,8,,,,, +398,50,1,13611,768,1865.251,32,32,E4,pp,8,144,64,8,,,,, +398,51,3,13612,768,1865.251,32,32,G1,pp,8,144,31,8,,,,, +398,49,1,13610,768,1865.385,,,,,,144,61,0,,,,, +398,50,1,13611,768,1865.385,,,,,,144,64,0,,,,, +398,51,3,13612,768,1865.385,,,,,,144,31,0,,,,, +398,52,1,13613,800,1865.385,,,,,,176,102,0,,,,, +398,53,3,13614,800,1865.385,32,32,G#1,pp,8,144,32,8,,,,, +398,53,3,13614,800,1865.519,,,,,,144,32,0,,,,, +398,54,1,13615,832,1865.519,,,,,,176,102,0,,,,, +398,55,3,13616,832,1865.519,,,,,,176,102,0,,,,, +398,58,3,13617,,1865.786,,8,E5,p,11,144,76,11,,,,g, +398,58,3,13617,,1865.836,,,,,,144,76,0,,,,, +398,56,1,13618,896,1865.861,64,16,D5,ff,22,144,74,22,,,,, +398,57,1,13619,896,1865.861,64,16,E5,mf,17,144,76,17,,,,, +398,59,3,13620,896,1865.861,128,8,G#2,p,11,144,44,11,,,,, +398,60,3,13621,896,1865.861,128,8,D#3,p,11,144,51,11,,,,, +398,61,3,13622,896,1865.861,128,8,G#3,ff,22,144,56,22,,,,, +398,56,1,13618,896,1866.129,,,,,,144,74,0,,,,, +398,57,1,13619,896,1866.129,,,,,,144,76,0,,,,, +398,62,1,13623,960,1866.129,64,16,A7,ff,22,144,105,22,,,,, +398,59,3,13620,896,1866.397,,,,,,144,44,0,,,,, +398,60,3,13621,896,1866.397,,,,,,144,51,0,,,,, +398,61,3,13622,896,1866.397,,,,,,144,56,0,,,,, +398,62,1,13623,960,1866.397,,,,,,144,105,0,,,,, +398,64,1,13624,1024,1866.397,,,,,,176,102,0,,,,, +398,65,3,13625,,1866.397,,8,D3,f,20,144,50,20,,,,g, +398,65,3,13625,,1866.447,,,,,,144,50,0,,,,, +398,66,3,13626,,1866.472,,8,A3,mf+,18,144,57,18,,,,g, +398,66,3,13626,,1866.522,,,,,,144,57,0,,,,, +398,67,3,13627,1024,1866.547,21,32,E2,mf-,16,144,40,16,,,,, +398,63,0,13628,1024,1866.547,,,,,,176,64,127,,,,,V +398,67,3,13627,1024,1866.635,,,,,,144,40,0,,,,, +398,68,3,13629,1045,1866.635,21,32,C1,mp,14,144,24,14,,,,, +398,68,3,13629,1045,1866.723,,,,,,144,24,0,,,,, +398,69,3,13630,1066,1866.723,22,32,D3,p+,12,144,50,12,,,,, +398,69,3,13630,1066,1866.815,,,,,,144,50,0,,,,, +398,70,3,13631,1088,1866.815,21,32,G#1,pp+,9,144,32,9,,,,, +398,71,0,13632,1109,1866.843,,,,,,176,64,0,,,,,^ +398,70,3,13631,1088,1866.903,,,,,,144,32,0,,,,, +398,72,3,13633,1109,1866.903,21,32,A3,pp-,7,144,57,7,,,,, +398,72,3,13633,1109,1866.991,,,,,,144,57,0,,,,, +398,73,3,13634,1130,1866.991,22,32,C1,ppp,5,144,24,5,,,,, +398,74,3,13635,1130,1866.991,32,32,G#1,ppp,5,144,32,5,,,,, +398,75,3,13636,1130,1866.991,32,32,E2,ppp,5,144,40,5,,,,, +398,76,3,13637,1130,1866.991,32,32,D3,ppp,5,144,50,5,,,,, +398,73,3,13634,1130,1867.083,,,,,,144,24,0,,,,, +398,78,3,13638,1152,1867.083,85,8,A3,ppp,5,144,57,5,,,,, +398,74,3,13635,1130,1867.125,,,,,,144,32,0,,,,, +398,75,3,13636,1130,1867.125,,,,,,144,40,0,,,,, +398,76,3,13637,1130,1867.125,,,,,,144,50,0,,,,, +398,77,0,13639,1152,1867.143,,,,,,176,64,127,,,,,V +398,78,3,13638,1152,1867.439,,,,,,144,57,0,,,,, +398,79,3,13640,1237,1867.439,,,,,,176,102,0,,,,, +398,80,3,13641,1258,1867.527,22,32,G1,ppp,5,144,31,5,,,,, +398,80,3,13641,1258,1867.619,,,,,,144,31,0,,,,, +399,0,0,13642,0,1867.619,,,,,,,,,399,,,, +399,1,1,13643,0,1867.619,,,,,,176,102,0,,,,, +399,2,3,13644,0,1867.619,32,32,E5,ppp,5,144,76,5,,,,, +399,2,3,13644,0,1867.753,,,,,,144,76,0,,,,, +399,3,3,13645,32,1867.753,32,32,G#2,ppp,5,144,44,5,,,,, +399,3,3,13645,32,1867.886,,,,,,144,44,0,,,,, +399,4,3,13646,64,1867.886,32,32,G1,ppp,5,144,31,5,,,,, +399,5,3,13647,64,1867.886,32,32,C#5,ppp,5,144,73,5,,,,, +399,4,3,13646,64,1868.02,,,,,,144,31,0,,,,, +399,5,3,13647,64,1868.02,,,,,,144,73,0,,,,, +399,6,3,13648,96,1868.02,32,32,E5,ppp,5,144,76,5,,,,, +399,6,3,13648,96,1868.154,,,,,,144,76,0,,,,, +399,7,3,13649,128,1868.154,32,32,G#2,ppp,5,144,44,5,,,,, +399,7,3,13649,128,1868.288,,,,,,144,44,0,,,,, +399,8,3,13650,160,1868.288,32,32,G1,ppp,5,144,31,5,,,,, +399,9,3,13651,160,1868.288,32,32,C4,ppp,5,144,60,5,,,,, +399,10,3,13652,160,1868.288,32,32,C#5,ppp,5,144,73,5,,,,, +399,11,0,13653,160,1868.288,,,,,,,,,,6056,,, +399,8,3,13650,160,1868.422,,,,,,144,31,0,,,,, +399,9,3,13651,160,1868.422,,,,,,144,60,0,,,,, +399,10,3,13652,160,1868.422,,,,,,144,73,0,,,,, +399,12,0,13654,192,1868.422,,,,,,176,64,0,,,,,^ +399,13,3,13655,192,1868.422,,,,,,176,102,0,,,,, +399,14,1,13656,256,1868.69,,,,,,176,102,0,,,,, +399,15,3,13657,256,1868.69,256,4,C1,ff,22,144,24,22,,,,, +399,16,3,13658,256,1868.69,256,4,D#1,ff,22,144,27,22,,,,, +399,17,3,13659,256,1868.69,256,4,D#3,ff,22,144,51,22,,,,, +399,18,1,13660,352,1869.092,32,32,B3,mp,14,144,59,14,,,,, +399,18,1,13660,352,1869.226,,,,,,144,59,0,,,,, +399,20,1,13661,384,1869.226,32,32,D5,mp,14,144,74,14,,,,, +399,19,0,13662,384,1869.226,,,,,,176,64,127,,,,,V +399,20,1,13661,384,1869.36,,,,,,144,74,0,,,,, +399,21,1,13663,416,1869.36,32,32,E3,mp,14,144,52,14,,,,, +399,21,1,13663,416,1869.494,,,,,,144,52,0,,,,, +399,22,1,13664,448,1869.494,21,32,F#2,mp,14,144,42,14,,,,, +399,22,1,13664,448,1869.581,,,,,,144,42,0,,,,, +399,23,1,13665,469,1869.581,21,32,A#1,mp,14,144,34,14,,,,, +399,24,1,13666,469,1869.581,32,32,E3,mp,14,144,52,14,,,,, +399,25,1,13667,469,1869.581,32,32,B3,mp,14,144,59,14,,,,, +399,23,1,13665,469,1869.669,,,,,,144,34,0,,,,, +399,26,1,13668,490,1869.669,22,32,F#2,mp,14,144,42,14,,,,, +399,24,1,13666,469,1869.715,,,,,,144,52,0,,,,, +399,25,1,13667,469,1869.715,,,,,,144,59,0,,,,, +399,27,0,13669,503,1869.724,,,,,,176,64,0,,,,,^ +399,15,3,13657,256,1869.761,,,,,,144,24,0,,,,, +399,16,3,13658,256,1869.761,,,,,,144,27,0,,,,, +399,17,3,13659,256,1869.761,,,,,,144,51,0,,,,, +399,26,1,13668,490,1869.761,,,,,,144,42,0,,,,, +399,28,1,13670,512,1869.761,,,,,,176,102,0,,,,, +399,29,3,13671,,1869.761,,8,E2,pp,8,144,40,8,,,,g, +399,29,3,13671,,1869.811,,,,,,144,40,0,,,,, +399,30,3,13672,512,1869.836,170,4,B2,pp,8,144,47,8,,,,, +399,31,1,13673,576,1870.104,21,32,E5,mf,17,144,76,17,,,,, +399,31,1,13673,576,1870.192,,,,,,144,76,0,,,,, +399,32,1,13674,597,1870.192,43,16,G#4,mf+,18,144,68,18,,,,, +399,32,1,13674,597,1870.372,,,,,,144,68,0,,,,, +399,33,1,13675,640,1870.372,21,32,C7,f,20,144,96,20,,,,, +399,33,1,13675,640,1870.46,,,,,,144,96,0,,,,, +399,34,1,13676,661,1870.46,43,16,D6,f+,21,144,86,21,,,,, +399,30,3,13672,512,1870.548,,,,,,144,47,0,,,,, +399,35,3,13677,682,1870.548,86,8,E2,pp,8,144,40,8,,,,, +399,36,3,13678,682,1870.548,128,8,B2,pp,8,144,47,8,,,,, +399,37,3,13679,682,1870.548,128,8,D3,pp,8,144,50,8,,,,, +399,34,1,13676,661,1870.64,,,,,,144,86,0,,,,, +399,38,1,13680,704,1870.64,,,,,,176,102,0,,,,, +399,35,3,13677,682,1870.908,,,,,,144,40,0,,,,, +399,39,1,13681,768,1870.908,256,4,E3,f+,21,144,52,21,,,,, +399,40,3,13682,768,1870.908,128,8,C1,ff,22,144,24,22,,,,, +399,41,3,13683,768,1870.908,128,8,G#2,ff,22,144,44,22,,,,, +399,42,3,13684,768,1870.908,128,8,D#3,ff,22,144,51,22,,,,, +399,36,3,13678,682,1871.084,,,,,,144,47,0,,,,, +399,37,3,13679,682,1871.084,,,,,,144,50,0,,,,, +399,40,3,13682,768,1871.444,,,,,,144,24,0,,,,, +399,41,3,13683,768,1871.444,,,,,,144,44,0,,,,, +399,42,3,13684,768,1871.444,,,,,,144,51,0,,,,, +399,43,3,13685,896,1871.444,128,8,G#2,mp,14,144,44,14,,,,, +399,43,3,13685,896,1871.979,,,,,,144,44,0,,,,, +399,44,1,13686,1024,1871.979,,,,,,176,102,0,,,,, +399,45,3,13687,1024,1871.979,85,8,C4,mp,14,144,60,14,,,,, +399,39,1,13681,768,1871.979,,,,,,144,52,0,,,,, +399,45,3,13687,1024,1872.335,,,,,,144,60,0,,,,, +399,47,3,13688,1109,1872.335,85,8,E6,mp,14,144,88,14,,,,, +399,46,0,13689,1109,1872.335,,,,,,176,64,127,,,,,V +399,47,3,13688,1109,1872.691,,,,,,144,88,0,,,,, +399,48,3,13690,1194,1872.691,,,,,,176,102,0,,,,, +400,0,0,13691,0,1873.051,,,,,,,,,400,,,, +400,1,1,13692,0,1873.051,,,,,,176,102,0,,,,, +400,2,3,13693,0,1873.051,,,,,,176,102,0,,,,, +400,3,1,13694,85,1873.406,43,16,C#7,f,20,144,97,20,,,,, +400,4,3,13695,85,1873.406,43,16,D3,f,20,144,50,20,,,,, +400,3,1,13694,85,1873.586,,,,,,144,97,0,,,,, +400,4,3,13695,85,1873.586,,,,,,144,50,0,,,,, +400,5,1,13696,128,1873.586,42,16,C5,f,20,144,72,20,,,,, +400,6,1,13697,128,1873.586,64,16,E5,f,20,144,76,20,,,,, +400,7,3,13698,128,1873.586,42,16,G#1,f,20,144,32,20,,,,, +400,5,1,13696,128,1873.762,,,,,,144,72,0,,,,, +400,7,3,13698,128,1873.762,,,,,,144,32,0,,,,, +400,8,1,13699,170,1873.762,,,,,,176,102,0,,,,, +400,9,3,13700,170,1873.762,,,,,,176,102,0,,,,, +400,6,1,13697,128,1873.854,,,,,,144,76,0,,,,, +400,10,0,13701,212,1873.938,,,,,,176,64,0,,,,,^ +400,11,1,13702,256,1874.122,32,32,B3,fff,24,144,59,23,,,,, +400,12,1,13703,256,1874.122,32,32,C5,fff,24,144,72,23,,,,, +400,13,3,13704,256,1874.122,32,32,D#1,fff,24,144,27,23,,,,, +400,14,3,13705,256,1874.122,32,32,F#1,fff,24,144,30,23,,,,, +400,11,1,13702,256,1874.256,,,,,,144,59,0,,,,, +400,12,1,13703,256,1874.256,,,,,,144,72,0,,,,, +400,13,3,13704,256,1874.256,,,,,,144,27,0,,,,, +400,14,3,13705,256,1874.256,,,,,,144,30,0,,,,, +400,15,1,13706,288,1874.256,32,32,G3,fff,24,144,55,23,,,,, +400,16,1,13707,288,1874.256,32,32,B3,fff,24,144,59,23,,,,, +400,17,3,13708,288,1874.256,32,32,D#1,fff,24,144,27,23,,,,, +400,18,3,13709,288,1874.256,32,32,F#1,fff,24,144,30,23,,,,, +400,15,1,13706,288,1874.39,,,,,,144,55,0,,,,, +400,16,1,13707,288,1874.39,,,,,,144,59,0,,,,, +400,17,3,13708,288,1874.39,,,,,,144,27,0,,,,, +400,18,3,13709,288,1874.39,,,,,,144,30,0,,,,, +400,19,1,13710,320,1874.39,,,,,,176,102,0,,,,, +400,20,3,13711,320,1874.39,,,,,,176,102,0,,,,, +400,22,1,13712,512,1875.194,76,16,B2,p,11,144,47,11,,,,, +400,23,3,13713,512,1875.194,,,,,,176,102,0,,,,, +400,21,0,13714,512,1875.194,,,,,,176,64,127,,,,,V +400,22,1,13712,512,1875.512,,,,,,144,47,0,,,,, +400,24,1,13715,588,1875.512,52,16,A#4,p,11,144,70,11,,,,, +400,24,1,13715,588,1875.729,,,,,,144,70,0,,,,, +400,25,1,13716,640,1875.729,42,16,E6,p,11,144,88,11,,,,, +400,25,1,13716,640,1875.905,,,,,,144,88,0,,,,, +400,26,1,13717,682,1875.905,43,16,B3,p,11,144,59,11,,,,, +400,26,1,13717,682,1876.085,,,,,,144,59,0,,,,, +400,27,1,13718,725,1876.085,43,16,A#5,p,11,144,82,11,,,,, +400,27,1,13718,725,1876.265,,,,,,144,82,0,,,,, +400,28,1,13719,768,1876.265,,,,,,176,102,0,,,,, +400,29,3,13720,768,1876.265,21,32,F#2,p,11,144,42,11,,,,, +400,30,3,13721,768,1876.265,32,32,B3,p,11,144,59,11,,,,, +400,29,3,13720,768,1876.353,,,,,,144,42,0,,,,, +400,31,3,13722,789,1876.353,21,32,D4,p,11,144,62,11,,,,, +400,30,3,13721,768,1876.399,,,,,,144,59,0,,,,, +400,31,3,13722,789,1876.441,,,,,,144,62,0,,,,, +400,32,3,13723,810,1876.441,22,32,F#2,p,11,144,42,11,,,,, +400,32,3,13723,810,1876.533,,,,,,144,42,0,,,,, +400,33,1,13724,832,1876.533,,,,,,176,102,0,,,,, +400,34,3,13725,832,1876.533,32,32,B3,p,11,144,59,11,,,,, +400,35,3,13726,832,1876.533,32,32,D4,p,11,144,62,11,,,,, +400,36,3,13727,832,1876.533,32,32,A#4,p,11,144,70,11,,,,, +400,34,3,13725,832,1876.667,,,,,,144,59,0,,,,, +400,35,3,13726,832,1876.667,,,,,,144,62,0,,,,, +400,36,3,13727,832,1876.667,,,,,,144,70,0,,,,, +400,37,3,13728,864,1876.667,32,32,F#2,p,11,144,42,11,,,,, +400,37,3,13728,864,1876.801,,,,,,144,42,0,,,,, +400,38,1,13729,896,1876.801,,,,,,176,102,0,,,,, +400,39,3,13730,896,1876.801,,,,,,176,102,0,,,,, +400,40,1,13731,1024,1877.336,,,,,,176,102,0,,,,, +400,41,3,13732,1024,1877.336,,,,,,176,102,0,,,,, +400,42,0,13733,1279,1878.404,,,,,,176,64,0,,,,,^ +401,0,0,13734,0,1878.408,,,,,,,,,401,,,, +401,1,0,13735,0,1878.408,,,,,,,,,,6057,,, +401,2,1,13736,0,1878.408,,,,,,176,102,0,,,,, +401,3,3,13737,0,1878.408,,,,,,176,102,0,,,,, +401,4,1,13738,256,1879.479,64,16,E7,fff,24,144,100,23,,,,, +401,5,3,13739,256,1879.479,64,16,G#2,fff,24,144,44,23,,,,, +401,6,3,13740,256,1879.479,64,16,D#3,fff,24,144,51,23,,,,, +401,4,1,13738,256,1879.747,,,,,,144,100,0,,,,, +401,5,3,13739,256,1879.747,,,,,,144,44,0,,,,, +401,6,3,13740,256,1879.747,,,,,,144,51,0,,,,, +401,8,1,13741,320,1879.747,32,32,A4,fff,24,144,69,23,,,,, +401,9,1,13742,320,1879.747,32,32,E7,fff,24,144,100,23,,,,, +401,10,3,13743,320,1879.747,,,,,,176,102,0,,,,, +401,7,0,13744,320,1879.747,,,,,,176,64,127,,,,,V +401,8,1,13741,320,1879.881,,,,,,144,69,0,,,,, +401,9,1,13742,320,1879.881,,,,,,144,100,0,,,,, +401,11,1,13745,352,1879.881,,,,,,176,102,0,,,,, +401,12,0,13746,384,1879.953,,,,,,176,64,0,,,,,^ +401,13,1,13747,384,1880.015,,,,,,176,102,0,,,,, +401,14,3,13748,384,1880.015,21,32,C1,fff,24,144,24,23,,,,, +401,14,3,13748,384,1880.103,,,,,,144,24,0,,,,, +401,15,3,13749,405,1880.103,21,32,G#1,ff+,23,144,32,23,,,,, +401,15,3,13749,405,1880.191,,,,,,144,32,0,,,,, +401,17,3,13750,426,1880.191,22,32,D#2,f+,21,144,39,21,,,,, +401,16,0,13751,426,1880.253,,,,,,176,64,127,,,,,V +401,17,3,13750,426,1880.283,,,,,,144,39,0,,,,, +401,18,3,13752,448,1880.283,32,32,C1,f,20,144,24,20,,,,, +401,19,3,13753,448,1880.283,32,32,G#1,f,20,144,32,20,,,,, +401,18,3,13752,448,1880.417,,,,,,144,24,0,,,,, +401,19,3,13753,448,1880.417,,,,,,144,32,0,,,,, +401,20,3,13754,480,1880.417,32,32,D#3,mf+,18,144,51,18,,,,, +401,20,3,13754,480,1880.551,,,,,,144,51,0,,,,, +401,21,1,13755,512,1880.551,,,,,,176,102,0,,,,, +401,22,3,13756,512,1880.551,32,32,G#1,mf-,16,144,32,16,,,,, +401,22,3,13756,512,1880.685,,,,,,144,32,0,,,,, +401,23,3,13757,544,1880.685,32,32,A3,mp,14,144,57,14,,,,, +401,23,3,13757,544,1880.819,,,,,,144,57,0,,,,, +401,24,3,13758,576,1880.819,32,32,E4,p+,12,144,64,12,,,,, +401,24,3,13758,576,1880.953,,,,,,144,64,0,,,,, +401,25,3,13759,608,1880.953,32,32,A2,p-,10,144,45,10,,,,, +401,25,3,13759,608,1881.086,,,,,,144,45,0,,,,, +401,26,1,13760,640,1881.086,,,,,,176,102,0,,,,, +401,27,3,13761,640,1881.086,42,16,C1,pp,8,144,24,8,,,,, +401,28,3,13762,640,1881.086,64,16,G#1,pp,8,144,32,8,,,,, +401,27,3,13761,640,1881.262,,,,,,144,24,0,,,,, +401,29,3,13763,682,1881.262,43,16,E5,ppp,5,144,76,5,,,,, +401,28,3,13762,640,1881.354,,,,,,144,32,0,,,,, +401,30,0,13764,725,1881.382,,,,,,176,64,0,,,,,^ +401,29,3,13763,682,1881.442,,,,,,144,76,0,,,,, +401,31,3,13765,725,1881.442,43,16,A2,ppp,5,144,45,5,,,,, +401,31,3,13765,725,1881.622,,,,,,144,45,0,,,,, +401,33,1,13766,768,1881.622,16,64,A7,p,11,144,105,11,,,,, +401,34,3,13767,768,1881.622,128,8,C4,pp,8,144,60,8,,,,, +401,32,0,13768,768,1881.682,,,,,,176,64,127,,,,,V +401,33,1,13766,768,1881.689,,,,,,144,105,0,,,,, +401,35,1,13769,784,1881.689,16,64,A#4,p,11,144,70,11,,,,, +401,35,1,13769,784,1881.756,,,,,,144,70,0,,,,, +401,36,1,13770,800,1881.756,16,64,C#7,p,11,144,97,11,,,,, +401,36,1,13770,800,1881.823,,,,,,144,97,0,,,,, +401,37,1,13771,816,1881.823,16,64,A7,p-,10,144,105,10,,,,, +401,37,1,13771,816,1881.89,,,,,,144,105,0,,,,, +401,38,1,13772,832,1881.89,16,64,C#7,p-,10,144,97,10,,,,, +401,38,1,13772,832,1881.957,,,,,,144,97,0,,,,, +401,39,1,13773,848,1881.957,16,64,E4,p-,10,144,64,10,,,,, +401,39,1,13773,848,1882.024,,,,,,144,64,0,,,,, +401,40,1,13774,864,1882.024,16,64,A7,p-,10,144,105,10,,,,, +401,40,1,13774,864,1882.091,,,,,,144,105,0,,,,, +401,41,1,13775,880,1882.091,16,64,C#7,p-,10,144,97,10,,,,, +401,41,1,13775,880,1882.158,,,,,,144,97,0,,,,, +401,42,1,13776,896,1882.158,25,32,A#4,pp+,9,144,70,9,,,,, +401,43,3,13777,896,1882.158,128,8,D#5,pp,8,144,75,8,,,,, +401,34,3,13767,768,1882.158,,,,,,144,60,0,,,,, +401,42,1,13776,896,1882.263,,,,,,144,70,0,,,,, +401,44,1,13778,921,1882.263,26,32,E4,pp+,9,144,64,9,,,,, +401,44,1,13778,921,1882.371,,,,,,144,64,0,,,,, +401,45,1,13779,947,1882.371,25,32,A7,pp+,9,144,105,9,,,,, +401,45,1,13779,947,1882.476,,,,,,144,105,0,,,,, +401,46,1,13780,972,1882.476,26,32,C#7,pp,8,144,97,8,,,,, +401,46,1,13780,972,1882.585,,,,,,144,97,0,,,,, +401,47,1,13781,998,1882.585,26,32,F5,pp,8,144,77,8,,,,, +401,43,3,13777,896,1882.694,,,,,,144,75,0,,,,, +401,47,1,13781,998,1882.694,,,,,,144,77,0,,,,, +401,48,1,13782,,1882.694,,8,A#2,pp,8,144,46,8,,,,g, +401,48,1,13782,,1882.744,,,,,,144,46,0,,,,, +401,49,1,13783,,1882.769,,8,C#3,pp,8,144,49,8,,,,g, +401,49,1,13783,,1882.819,,,,,,144,49,0,,,,, +401,50,1,13784,1024,1882.844,256,4,E5,ff,22,144,76,22,,,,, +401,51,1,13785,1024,1882.844,256,4,A5,p,11,144,81,11,,,,, +401,52,3,13786,1024,1882.844,128,8,A1,pp,8,144,33,8,,,,, +401,53,3,13787,1024,1882.844,128,8,C5,pp,8,144,72,8,,,,, +401,52,3,13786,1024,1883.379,,,,,,144,33,0,,,,, +401,53,3,13787,1024,1883.379,,,,,,144,72,0,,,,, +401,54,0,13788,1152,1883.379,,,,,,176,64,0,,,,,^ +401,55,3,13789,1152,1883.379,128,8,A1,pp,8,144,33,8,,,,, +401,56,3,13790,1152,1883.379,128,8,C#2,pp,8,144,37,8,,,,, +401,57,3,13791,1152,1883.379,128,8,F2,pp,8,144,41,8,,,,, +401,58,3,13792,1152,1883.379,128,8,C5,pp,8,144,72,8,,,,, +402,0,0,13793,0,1883.915,,,,,,,,,402,,,, +402,1,1,13794,0,1883.915,192,8,G5,pp,8,144,79,8,,,,, +402,2,3,13795,0,1883.915,128,8,D6,p,11,144,86,11,,,,, +401,50,1,13784,1024,1883.99,,,,,,144,76,0,,,,, +401,51,1,13785,1024,1883.99,,,,,,144,81,0,,,,, +401,55,3,13789,1152,1883.99,,,,,,144,33,0,,,,, +401,56,3,13790,1152,1883.99,,,,,,144,37,0,,,,, +401,57,3,13791,1152,1883.99,,,,,,144,41,0,,,,, +401,58,3,13792,1152,1883.99,,,,,,144,72,0,,,,, +402,2,3,13795,0,1884.451,,,,,,144,86,0,,,,, +402,3,3,13796,128,1884.451,128,8,G#5,p,11,144,80,11,,,,, +402,1,1,13794,0,1884.719,,,,,,144,79,0,,,,, +402,4,1,13797,192,1884.719,64,16,B1,ff,22,144,35,22,,,,, +402,5,1,13798,192,1884.719,64,16,E5,ff,22,144,76,22,,,,, +402,3,3,13796,128,1884.986,,,,,,144,80,0,,,,, +402,4,1,13797,192,1884.986,,,,,,144,35,0,,,,, +402,5,1,13798,192,1884.986,,,,,,144,76,0,,,,, +402,7,1,13799,256,1884.986,512,2,G3,f,20,144,55,20,,,,, +402,8,3,13800,256,1884.986,42,16,D4,pp,8,144,62,8,,,,, +402,6,0,13801,256,1884.986,,,,,,176,64,127,,,,,V +402,8,3,13800,256,1885.162,,,,,,144,62,0,,,,, +402,9,3,13802,298,1885.162,43,16,G#3,pp,8,144,56,8,,,,, +402,9,3,13802,298,1885.342,,,,,,144,56,0,,,,, +402,10,3,13803,341,1885.342,43,16,D4,pp,8,144,62,8,,,,, +402,10,3,13803,341,1885.522,,,,,,144,62,0,,,,, +402,11,3,13804,384,1885.522,64,16,C#3,pp,8,144,49,8,,,,, +402,11,3,13804,384,1885.79,,,,,,144,49,0,,,,, +402,12,3,13805,448,1885.79,64,16,G#3,pp,8,144,56,8,,,,, +402,12,3,13805,448,1886.058,,,,,,144,56,0,,,,, +402,13,3,13806,512,1886.058,64,16,A0,pp,8,144,21,8,,,,, +402,13,3,13806,512,1886.326,,,,,,144,21,0,,,,, +402,14,3,13807,576,1886.326,64,16,F1,pp,8,144,29,8,,,,, +402,14,3,13807,576,1886.594,,,,,,144,29,0,,,,, +402,15,3,13808,640,1886.594,,,,,,176,102,0,,,,, +402,16,0,13809,640,1886.594,,,,,,,,,,6058,,, +402,17,0,13810,768,1887.084,,,,,,176,64,0,,,,,^ +402,18,1,13811,768,1887.129,128,8,C4,p,11,144,60,11,,,,, +402,19,3,13812,768,1887.129,256,4,C#4,p,11,144,61,11,,,,, +402,7,1,13799,256,1887.129,,,,,,144,55,0,,,,, +402,20,0,13813,818,1887.384,,,,,,176,64,127,,,,,V +402,18,1,13811,768,1887.665,,,,,,144,60,0,,,,, +402,21,1,13814,896,1887.665,85,8,D#5,pp+,9,144,75,9,,,,, +402,21,1,13814,896,1888.021,,,,,,144,75,0,,,,, +402,22,1,13815,981,1888.021,43,16,A6,pp-,7,144,93,7,,,,, +402,23,0,13816,994,1888.075,,,,,,176,64,0,,,,,^ +402,22,1,13815,981,1888.201,,,,,,144,93,0,,,,, +402,24,1,13817,1024,1888.201,102,8,C4,pp-,7,144,60,7,,,,, +402,25,1,13818,1024,1888.201,128,8,G#4,pp-,7,144,68,7,,,,, +402,26,1,13819,1024,1888.201,128,8,D#5,pp-,7,144,75,7,,,,, +402,27,1,13820,1024,1888.201,128,8,A5,pp-,7,144,81,7,,,,, +402,28,3,13821,1024,1888.201,256,4,C3,pp,8,144,48,8,,,,, +402,19,3,13812,768,1888.201,,,,,,144,61,0,,,,, +402,29,1,13822,1126,1888.628,154,8,C4,,,,,,,,,, +402,30,1,13823,1126,1888.628,128,8,G#4,,,,,,,,,, +402,31,1,13824,1126,1888.628,128,8,D#5,,,,,,,,,, +402,32,1,13825,1126,1888.628,128,8,A5,,,,,,,,,, +402,33,1,13826,1126,1888.628,128,8,E7,ppp,5,144,100,5,,,,, +402,33,1,13826,1126,1889.163,,,,,,144,100,0,,,,, +402,28,3,13821,1024,1889.272,,,,,,144,48,0,,,,, +403,0,0,13827,0,1889.272,,,,,,,,,403,,,, +403,1,1,13828,0,1889.272,512,2,C4,,,,,,,,,, +403,2,1,13829,0,1889.272,512,2,G#4,,,,,,,,,, +403,3,1,13830,0,1889.272,512,2,D#5,,,,,,,,,, +403,4,1,13831,0,1889.272,512,2,A5,,,,,,,,,, +403,5,2,13832,0,1889.272,,,,,,176,102,0,,,,, +403,6,3,13833,0,1889.272,25,32,D1,pp,8,144,26,8,,,,, +403,6,3,13833,0,1889.377,,,,,,144,26,0,,,,, +403,7,3,13834,25,1889.377,26,32,G#1,pp,8,144,32,8,,,,, +403,7,3,13834,25,1889.486,,,,,,144,32,0,,,,, +403,8,3,13835,51,1889.486,25,32,F1,pp,8,144,29,8,,,,, +403,8,3,13835,51,1889.59,,,,,,144,29,0,,,,, +403,9,3,13836,76,1889.59,26,32,C#1,pp,8,144,25,8,,,,, +403,9,3,13836,76,1889.699,,,,,,144,25,0,,,,, +403,10,3,13837,102,1889.699,26,32,D1,pp,8,144,26,8,,,,, +403,10,3,13837,102,1889.808,,,,,,144,26,0,,,,, +403,11,3,13838,128,1889.808,25,32,G#1,pp,8,144,32,8,,,,, +403,11,3,13838,128,1889.913,,,,,,144,32,0,,,,, +403,12,3,13839,153,1889.913,39,32,F1,pp,8,144,29,8,,,,, +403,12,3,13839,153,1890.076,,,,,,144,29,0,,,,, +403,13,3,13840,192,1890.076,38,32,D1,pp,8,144,26,8,,,,, +403,13,3,13840,192,1890.235,,,,,,144,26,0,,,,, +403,14,3,13841,230,1890.235,26,32,C#1,pp,8,144,25,8,,,,, +403,14,3,13841,230,1890.344,,,,,,144,25,0,,,,, +403,15,2,13842,256,1890.344,,,,,,176,102,0,,,,, +403,16,3,13843,256,1890.344,25,32,A0,pp,8,144,21,8,,,,, +403,16,3,13843,256,1890.448,,,,,,144,21,0,,,,, +403,18,3,13844,281,1890.448,39,32,C#1,pp,8,144,25,8,,,,, +403,17,0,13845,281,1890.448,,,,,,176,64,127,,,,,V +403,18,3,13844,281,1890.611,,,,,,144,25,0,,,,, +403,19,3,13846,320,1890.611,25,32,G#1,pp,8,144,32,8,,,,, +403,19,3,13846,320,1890.716,,,,,,144,32,0,,,,, +403,20,3,13847,345,1890.716,26,32,F1,pp,8,144,29,8,,,,, +403,20,3,13847,345,1890.825,,,,,,144,29,0,,,,, +403,21,3,13848,371,1890.825,38,32,D2,pp,8,144,38,8,,,,, +403,21,3,13848,371,1890.984,,,,,,144,38,0,,,,, +403,22,3,13849,409,1890.984,39,32,C#1,pp,8,144,25,8,,,,, +403,22,3,13849,409,1891.147,,,,,,144,25,0,,,,, +403,23,3,13850,448,1891.147,38,32,G#1,pp,8,144,32,8,,,,, +403,23,3,13850,448,1891.306,,,,,,144,32,0,,,,, +403,24,3,13851,486,1891.306,26,32,A0,pp,8,144,21,8,,,,, +402,24,1,13817,1024,1891.415,,,,,,144,60,0,,,,, +402,25,1,13818,1024,1891.415,,,,,,144,68,0,,,,, +402,26,1,13819,1024,1891.415,,,,,,144,75,0,,,,, +402,27,1,13820,1024,1891.415,,,,,,144,81,0,,,,, +403,24,3,13851,486,1891.415,,,,,,144,21,0,,,,, +403,25,1,13852,512,1891.415,42,16,C#5,p,11,144,73,11,,,,, +403,26,1,13853,512,1891.415,64,16,A5,p,11,144,81,11,,,,, +403,27,2,13854,512,1891.415,,,,,,176,102,0,,,,, +403,28,3,13855,512,1891.415,,,,,,176,102,0,,,,, +403,25,1,13852,512,1891.591,,,,,,144,73,0,,,,, +403,26,1,13853,512,1891.591,,,,,,144,81,0,,,,, +403,29,0,13856,554,1891.591,,,,,,176,64,0,,,,,^ +403,30,1,13857,554,1891.591,64,16,F3,mp-,13,144,53,13,,,,, +403,31,1,13858,554,1891.591,64,16,C#5,mp-,13,144,73,13,,,,, +403,32,1,13859,554,1891.591,64,16,A5,mp-,13,144,81,13,,,,, +403,30,1,13857,554,1891.859,,,,,,144,53,0,,,,, +403,31,1,13858,554,1891.859,,,,,,144,73,0,,,,, +403,32,1,13859,554,1891.859,,,,,,144,81,0,,,,, +403,33,1,13860,618,1891.859,22,32,E2,mp+,15,144,40,15,,,,, +403,33,1,13860,618,1891.951,,,,,,144,40,0,,,,, +403,34,1,13861,640,1891.951,32,32,C#5,mf,17,144,73,17,,,,, +403,35,1,13862,640,1891.951,32,32,A5,mf,17,144,81,17,,,,, +403,36,2,13863,640,1891.951,64,16,E5,ff,22,144,76,22,,,,, +403,37,3,13864,640,1891.951,42,16,E2,mf,17,144,40,17,,,,, +403,38,3,13865,640,1891.951,64,16,F3,mf,17,144,53,17,,,,, +403,34,1,13861,640,1892.085,,,,,,144,73,0,,,,, +403,35,1,13862,640,1892.085,,,,,,144,81,0,,,,, +403,39,1,13866,672,1892.085,,,,,,176,102,0,,,,, +403,37,3,13864,640,1892.127,,,,,,144,40,0,,,,, +403,40,3,13867,682,1892.127,86,8,F#2,f,20,144,42,20,,,,, +403,41,3,13868,682,1892.127,128,8,G3,f,20,144,55,20,,,,, +403,36,2,13863,640,1892.219,,,,,,144,76,0,,,,, +403,38,3,13865,640,1892.219,,,,,,144,53,0,,,,, +403,42,2,13869,704,1892.219,64,16,B1,ff,22,144,35,22,,,,, +403,43,2,13870,704,1892.219,64,16,A#3,ff,22,144,58,22,,,,, +403,40,3,13867,682,1892.486,,,,,,144,42,0,,,,, +403,42,2,13869,704,1892.486,,,,,,144,35,0,,,,, +403,43,2,13870,704,1892.486,,,,,,144,58,0,,,,, +403,44,1,13871,768,1892.486,128,8,E3,pp,8,144,52,8,,,,, +403,45,1,13872,768,1892.486,128,8,G5,pp,8,144,79,8,,,,, +403,46,2,13873,768,1892.486,,,,,,176,102,0,,,,, +403,47,3,13874,768,1892.486,,,,,,176,102,0,,,,, +403,41,3,13868,682,1892.662,,,,,,144,55,0,,,,, +403,44,1,13871,768,1892.662,,,,,,144,52,0,,,,, +403,49,3,13875,810,1892.662,43,16,E3,p,11,144,52,11,,,,, +403,50,3,13876,810,1892.662,64,16,B3,p,11,144,59,11,,,,, +403,51,3,13877,810,1892.662,64,16,D4,p,11,144,62,11,,,,, +403,48,0,13878,810,1892.662,,,,,,176,64,127,,,,,V +403,52,3,13879,853,1892.842,85,8,A#0,p,11,144,22,11,,,,, +403,50,3,13876,810,1892.93,,,,,,144,59,0,,,,, +403,51,3,13877,810,1892.93,,,,,,144,62,0,,,,, +403,45,1,13872,768,1893.022,,,,,,144,79,0,,,,, +403,49,3,13875,810,1893.022,,,,,,144,52,0,,,,, +403,53,0,13880,896,1893.022,,,,,,176,64,0,,,,,^ +403,54,1,13881,896,1893.022,128,8,G#2,p,11,144,44,11,,,,, +403,55,1,13882,896,1893.022,128,8,E3,p,11,144,52,11,,,,, +403,52,3,13879,853,1893.198,,,,,,144,22,0,,,,, +403,56,3,13883,938,1893.198,86,8,F#1,p,11,144,30,11,,,,, +403,54,1,13881,896,1893.558,,,,,,144,44,0,,,,, +403,55,1,13882,896,1893.558,,,,,,144,52,0,,,,, +403,56,3,13883,938,1893.558,,,,,,144,30,0,,,,, +403,58,1,13884,1024,1893.558,64,16,C#4,pp,8,144,61,8,,,,, +403,59,3,13885,1024,1893.558,256,4,B6,ff,22,144,95,22,,,,, +403,57,0,13886,1024,1893.558,,,,,,176,64,127,,,,,V +403,58,1,13884,1024,1893.826,,,,,,144,61,0,,,,, +403,60,1,13887,1088,1893.826,42,16,D5,p-,10,144,74,10,,,,, +403,60,1,13887,1088,1894.002,,,,,,144,74,0,,,,, +403,61,1,13888,1130,1894.002,22,32,A2,p,11,144,45,11,,,,, +403,61,1,13888,1130,1894.094,,,,,,144,45,0,,,,, +403,62,1,13889,1152,1894.094,21,32,G#4,p+,12,144,68,12,,,,, +403,62,1,13889,1152,1894.181,,,,,,144,68,0,,,,, +403,63,1,13890,1173,1894.181,21,32,A2,p+,12,144,45,12,,,,, +403,63,1,13890,1173,1894.269,,,,,,144,45,0,,,,, +403,64,1,13891,1194,1894.269,22,32,G#4,mp-,13,144,68,13,,,,, +403,64,1,13891,1194,1894.361,,,,,,144,68,0,,,,, +403,65,1,13892,1216,1894.361,21,32,A2,mp-,13,144,45,13,,,,, +403,65,1,13892,1216,1894.449,,,,,,144,45,0,,,,, +403,66,1,13893,1237,1894.449,43,16,F3,mp,14,144,53,14,,,,, +403,67,0,13894,1279,1894.625,,,,,,176,64,0,,,,,^ +403,66,1,13893,1237,1894.629,,,,,,144,53,0,,,,, +404,0,0,13895,0,1894.629,,,,,,,,,404,,,, +404,1,1,13896,0,1894.629,,,,,,176,102,0,,,,, +404,2,3,13897,0,1894.629,,,,,,176,102,0,,,,, +404,3,4,13898,0,1894.629,,,,,,176,102,0,,,,, +403,59,3,13885,1024,1894.629,,,,,,144,95,0,,,,, +404,4,1,13899,64,1894.897,32,32,D6,mp,14,144,86,14,,,,, +404,5,0,13900,76,1894.947,,,,,,176,64,127,,,,,V +404,4,1,13899,64,1895.031,,,,,,144,86,0,,,,, +404,6,1,13901,96,1895.031,32,32,C#5,mp,14,144,73,14,,,,, +404,6,1,13901,96,1895.165,,,,,,144,73,0,,,,, +404,7,1,13902,128,1895.165,,,,,,176,102,0,,,,, +404,8,3,13903,128,1895.165,42,16,A1,mp,14,144,33,14,,,,, +404,8,3,13903,128,1895.341,,,,,,144,33,0,,,,, +404,9,3,13904,170,1895.341,22,32,F2,mp,14,144,41,14,,,,, +404,9,3,13904,170,1895.433,,,,,,144,41,0,,,,, +404,10,3,13905,192,1895.433,42,16,D6,mp,14,144,86,14,,,,, +404,10,3,13905,192,1895.609,,,,,,144,86,0,,,,, +404,11,3,13906,234,1895.609,22,32,G#5,mp,14,144,80,14,,,,, +404,11,3,13906,234,1895.701,,,,,,144,80,0,,,,, +404,12,1,13907,256,1895.701,384,4,C#5,mp,14,144,73,14,,,,, +404,13,1,13908,256,1895.701,256,4,G5,mp,14,144,79,14,,,,, +404,14,1,13909,256,1895.701,256,4,D6,mp,14,144,86,14,,,,, +404,15,3,13910,256,1895.701,384,4,A1,mp,14,144,33,14,,,,, +404,16,3,13911,256,1895.701,256,4,F2,mp,14,144,41,14,,,,, +404,17,4,13912,,1895.701,,8,D#2,pp,8,144,39,8,,,,g, +404,17,4,13912,,1895.751,,,,,,144,39,0,,,,, +404,18,4,13913,256,1895.776,384,4,B2,pp,8,144,47,8,,,,, +404,13,1,13908,256,1896.772,,,,,,144,79,0,,,,, +404,14,1,13909,256,1896.772,,,,,,144,86,0,,,,, +404,16,3,13911,256,1896.772,,,,,,144,41,0,,,,, +404,12,1,13907,256,1897.308,,,,,,144,73,0,,,,, +404,15,3,13910,256,1897.308,,,,,,144,33,0,,,,, +404,18,4,13913,256,1897.383,,,,,,144,47,0,,,,, +404,19,1,13914,640,1897.383,128,8,C#5,f,20,144,73,20,,,,, +404,20,1,13915,640,1897.383,128,8,G5,f,20,144,79,20,,,,, +404,21,1,13916,640,1897.383,128,8,D6,f,20,144,86,20,,,,, +404,22,3,13917,640,1897.383,32,32,D#2,f,20,144,39,20,,,,, +404,23,3,13918,640,1897.383,32,32,B2,f,20,144,47,20,,,,, +404,24,4,13919,640,1897.383,128,8,A1,f,20,144,33,20,,,,, +404,25,4,13920,640,1897.383,128,8,F2,f,20,144,41,20,,,,, +404,22,3,13917,640,1897.517,,,,,,144,39,0,,,,, +404,23,3,13918,640,1897.517,,,,,,144,47,0,,,,, +404,26,3,13921,672,1897.517,32,32,G2,mf-,16,144,43,16,,,,, +404,26,3,13921,672,1897.651,,,,,,144,43,0,,,,, +404,27,3,13922,704,1897.651,32,32,C4,p+,12,144,60,12,,,,, +404,27,3,13922,704,1897.785,,,,,,144,60,0,,,,, +404,28,3,13923,736,1897.785,32,32,D#2,pp,8,144,39,8,,,,, +404,29,3,13924,736,1897.785,32,32,F#2,pp,8,144,42,8,,,,, +404,30,3,13925,736,1897.785,32,32,G2,pp,8,144,43,8,,,,, +404,31,3,13926,736,1897.785,32,32,B2,pp,8,144,47,8,,,,, +404,32,3,13927,736,1897.785,32,32,C4,pp,8,144,60,8,,,,, +404,33,0,13928,767,1897.914,,,,,,176,64,0,,,,,^ +404,19,1,13914,640,1897.919,,,,,,144,73,0,,,,, +404,20,1,13915,640,1897.919,,,,,,144,79,0,,,,, +404,21,1,13916,640,1897.919,,,,,,144,86,0,,,,, +404,24,4,13919,640,1897.919,,,,,,144,33,0,,,,, +404,25,4,13920,640,1897.919,,,,,,144,41,0,,,,, +404,34,1,13929,768,1897.919,,,,,,176,102,0,,,,, +404,35,3,13930,768,1897.919,256,4,D#2,,,,,,,,,, +404,36,3,13931,768,1897.919,256,4,F#2,,,,,,,,,, +404,37,3,13932,768,1897.919,256,4,G2,,,,,,,,,, +404,38,3,13933,768,1897.919,256,4,B2,,,,,,,,,, +404,39,3,13934,768,1897.919,256,4,C4,,,,,,,,,, +404,40,4,13935,768,1897.919,,,,,,176,102,0,,,,, +404,41,1,13936,896,1898.454,64,16,B6,pp,8,144,95,8,,,,, +404,42,4,13937,896,1898.454,64,16,A2,pp,8,144,45,8,,,,, +404,41,1,13936,896,1898.722,,,,,,144,95,0,,,,, +404,42,4,13937,896,1898.722,,,,,,144,45,0,,,,, +404,43,1,13938,960,1898.722,64,16,C#5,pp,8,144,73,8,,,,, +404,44,1,13939,960,1898.722,64,16,G5,pp,8,144,79,8,,,,, +404,45,1,13940,960,1898.722,64,16,D6,pp,8,144,86,8,,,,, +404,46,4,13941,960,1898.722,64,16,F2,pp,8,144,41,8,,,,, +404,47,0,13942,989,1898.844,,,,,,176,64,127,,,,,V +404,43,1,13938,960,1898.99,,,,,,144,73,0,,,,, +404,44,1,13939,960,1898.99,,,,,,144,79,0,,,,, +404,45,1,13940,960,1898.99,,,,,,144,86,0,,,,, +404,46,4,13941,960,1898.99,,,,,,144,41,0,,,,, +404,48,1,13943,1024,1898.99,,,,,,176,102,0,,,,, +404,49,3,13944,1024,1898.99,42,32,C3,pp,8,144,48,8,,,,, +404,50,4,13945,1024,1898.99,,,,,,176,102,0,,,,, +404,28,3,13923,736,1898.99,,,,,,144,39,0,,,,, +404,29,3,13924,736,1898.99,,,,,,144,42,0,,,,, +404,30,3,13925,736,1898.99,,,,,,144,43,0,,,,, +404,31,3,13926,736,1898.99,,,,,,144,47,0,,,,, +404,32,3,13927,736,1898.99,,,,,,144,60,0,,,,, +404,49,3,13944,1024,1899.166,,,,,,144,48,0,,,,, +404,51,3,13946,1066,1899.166,29,32,G#4,pp+,9,144,68,9,,,,, +404,51,3,13946,1066,1899.287,,,,,,144,68,0,,,,, +404,52,3,13947,1095,1899.287,28,32,F4,p-,10,144,65,10,,,,, +404,52,3,13947,1095,1899.404,,,,,,144,65,0,,,,, +404,53,3,13948,1123,1899.404,29,32,E5,p,11,144,76,11,,,,, +404,53,3,13948,1123,1899.526,,,,,,144,76,0,,,,, +404,54,1,13949,1152,1899.526,42,16,F4,p+,12,144,65,12,,,,, +404,55,1,13950,1152,1899.526,64,16,A4,p+,12,144,69,12,,,,, +404,56,1,13951,1152,1899.526,64,16,E5,p+,12,144,76,12,,,,, +404,57,3,13952,1152,1899.526,,,,,,176,102,0,,,,, +404,54,1,13949,1152,1899.702,,,,,,144,65,0,,,,, +404,58,1,13953,1194,1899.702,43,16,A#3,mp-,13,144,58,13,,,,, +404,55,1,13950,1152,1899.794,,,,,,144,69,0,,,,, +404,56,1,13951,1152,1899.794,,,,,,144,76,0,,,,, +404,59,0,13954,1237,1899.821,,,,,,176,64,0,,,,,^ +404,58,1,13953,1194,1899.881,,,,,,144,58,0,,,,, +404,60,1,13955,1237,1899.881,43,16,C3,mp,14,144,48,14,,,,, +404,60,1,13955,1237,1900.061,,,,,,144,48,0,,,,, +405,0,0,13956,0,1900.061,,,,,,,,,405,,,, +405,1,0,13957,0,1900.061,,,,,,,,,,6059,,, +405,3,1,13958,0,1900.061,85,8,A6,mp,14,144,93,14,,,,, +405,4,3,13959,0,1900.061,64,16,G#2,pp,8,144,44,8,,,,, +405,5,3,13960,0,1900.061,64,16,E3,pp,8,144,52,8,,,,, +405,2,0,13961,0,1900.121,,,,,,176,64,127,,,,,V +405,6,3,13962,64,1900.329,42,16,A1,mp-,13,144,33,13,,,,, +405,4,3,13959,0,1900.404,,,,,,144,44,0,,,,, +405,5,3,13960,0,1900.404,,,,,,144,52,0,,,,, +405,3,1,13958,0,1900.417,,,,,,144,93,0,,,,, +405,7,1,13963,85,1900.417,171,4,C#6,mp+,15,144,85,15,,,,, +405,8,1,13964,85,1900.417,256,4,A6,mp+,15,144,93,15,,,,, +405,6,3,13962,64,1900.505,,,,,,144,33,0,,,,, +405,9,3,13965,106,1900.505,43,16,D4,mf,17,144,62,17,,,,, +405,9,3,13965,106,1900.685,,,,,,144,62,0,,,,, +405,10,3,13966,149,1900.685,64,16,G#2,f,20,144,44,20,,,,, +405,11,3,13967,149,1900.685,64,16,E3,f,20,144,52,20,,,,, +405,12,3,13968,149,1900.685,64,16,C5,f,20,144,72,20,,,,, +405,13,3,13969,213,1900.953,43,16,D4,f,20,144,62,20,,,,, +405,14,0,13970,256,1901.041,,,,,,176,64,0,,,,,^ +405,10,3,13966,149,1901.103,,,,,,144,44,0,,,,, +405,11,3,13967,149,1901.103,,,,,,144,52,0,,,,, +405,12,3,13968,149,1901.103,,,,,,144,72,0,,,,, +405,13,3,13969,213,1901.133,,,,,,144,62,0,,,,, +405,15,1,13971,256,1901.133,,,,,,176,102,0,,,,, +405,16,3,13972,256,1901.133,256,4,D#2,ppp,5,144,39,5,,,,, +405,7,1,13963,85,1901.283,,,,,,144,85,0,,,,, +405,17,0,13973,284,1901.341,,,,,,176,64,127,,,,,V +405,18,1,13974,312,1901.367,29,32,E5,p,11,144,76,11,,,,, +405,18,1,13974,312,1901.489,,,,,,144,76,0,,,,, +405,19,1,13975,341,1901.489,28,32,A3,mp,14,144,57,14,,,,, +405,19,1,13975,341,1901.606,,,,,,144,57,0,,,,, +405,20,1,13976,369,1901.606,29,32,G#4,mf-,16,144,68,16,,,,, +405,8,1,13964,85,1901.639,,,,,,144,93,0,,,,, +405,20,1,13976,369,1901.727,,,,,,144,68,0,,,,, +405,21,1,13977,398,1901.727,28,32,A3,f-,19,144,57,19,,,,, +405,21,1,13977,398,1901.844,,,,,,144,57,0,,,,, +405,22,1,13978,426,1901.844,29,32,A3,ff,22,144,57,22,,,,, +405,23,1,13979,426,1901.844,32,32,G#4,ff,22,144,68,22,,,,, +405,24,1,13980,426,1901.844,32,32,C7,ff,22,144,96,22,,,,, +405,22,1,13978,426,1901.966,,,,,,144,57,0,,,,, +405,25,1,13981,455,1901.966,57,16,D6,ff,22,144,86,22,,,,, +405,23,1,13979,426,1901.978,,,,,,144,68,0,,,,, +405,24,1,13980,426,1901.978,,,,,,144,96,0,,,,, +405,26,0,13982,511,1902.14,,,,,,176,64,0,,,,,^ +405,25,1,13981,455,1902.204,,,,,,144,86,0,,,,, +405,27,1,13983,512,1902.204,42,32,G#4,ppp,5,144,68,5,,,,, +405,28,3,13984,512,1902.204,,,,,,176,102,0,,,,, +405,16,3,13972,256,1902.204,,,,,,144,39,0,,,,, +405,27,1,13983,512,1902.38,,,,,,144,68,0,,,,, +405,30,1,13985,554,1902.38,29,32,E5,ppp,5,144,76,5,,,,, +405,29,0,13986,554,1902.44,,,,,,176,64,127,,,,,V +405,30,1,13985,554,1902.501,,,,,,144,76,0,,,,, +405,31,1,13987,583,1902.501,28,32,F4,ppp,5,144,65,5,,,,, +405,31,1,13987,583,1902.619,,,,,,144,65,0,,,,, +405,32,1,13988,611,1902.619,29,32,E6,ppp,5,144,88,5,,,,, +405,32,1,13988,611,1902.74,,,,,,144,88,0,,,,, +405,33,1,13989,640,1902.74,25,32,A#3,ppp,5,144,58,5,,,,, +405,33,1,13989,640,1902.845,,,,,,144,58,0,,,,, +405,34,1,13990,665,1902.845,39,32,F4,ppp,5,144,65,5,,,,, +405,34,1,13990,665,1903.008,,,,,,144,65,0,,,,, +405,35,1,13991,704,1903.008,25,32,A#3,ppp,5,144,58,5,,,,, +405,35,1,13991,704,1903.113,,,,,,144,58,0,,,,, +405,36,1,13992,729,1903.113,39,32,C2,ppp,5,144,36,5,,,,, +405,36,1,13992,729,1903.276,,,,,,144,36,0,,,,, +405,38,0,13993,768,1903.276,,,,,,176,64,0,,,,,^ +405,37,1,13994,768,1903.276,25,32,G#4,ppp,5,144,68,5,,,,, +405,39,3,13995,768,1903.276,,,,,,176,102,0,,,,, +405,37,1,13994,768,1903.38,,,,,,144,68,0,,,,, +405,40,1,13996,793,1903.38,26,32,F4,ppp,5,144,65,5,,,,, +405,40,1,13996,793,1903.489,,,,,,144,65,0,,,,, +405,41,1,13997,819,1903.489,77,16,E6,ppp,5,144,88,5,,,,, +405,41,1,13997,819,1903.811,,,,,,144,88,0,,,,, +405,42,1,13998,896,1903.811,,,,,,176,102,0,,,,, +405,44,1,13999,1024,1904.347,,,,,,176,102,0,,,,, +405,45,3,14000,1024,1904.347,256,4,G#1,ppp,5,144,32,5,,,,, +405,46,3,14001,1024,1904.347,256,4,D#2,ppp,5,144,39,5,,,,, +405,43,0,14002,1024,1904.347,,,,,,176,64,127,,,,,V +405,45,3,14000,1024,1905.419,,,,,,144,32,0,,,,, +405,46,3,14001,1024,1905.419,,,,,,144,39,0,,,,, +406,0,0,14003,0,1905.419,,,,,,,,,406,,,, +406,1,1,14004,,1905.419,,8,A2,ppp,5,144,45,5,,,,g, +406,1,1,14004,,1905.469,,,,,,144,45,0,,,,, +406,2,1,14005,0,1905.494,48,32,E6,p,11,144,88,11,,,,, +406,3,3,14006,0,1905.494,,,,,,176,102,0,,,,, +406,2,1,14005,0,1905.695,,,,,,144,88,0,,,,, +406,4,1,14007,48,1905.695,48,32,G#5,p+,12,144,80,12,,,,, +406,4,1,14007,48,1905.895,,,,,,144,80,0,,,,, +406,5,1,14008,96,1905.895,32,32,A3,mp-,13,144,57,13,,,,, +406,5,1,14008,96,1906.029,,,,,,144,57,0,,,,, +406,6,1,14009,128,1906.029,25,32,D7,mp,14,144,98,14,,,,, +406,6,1,14009,128,1906.134,,,,,,144,98,0,,,,, +406,7,1,14010,153,1906.134,26,32,C8,mp+,15,144,108,15,,,,, +406,7,1,14010,153,1906.243,,,,,,144,108,0,,,,, +406,8,1,14011,179,1906.243,25,32,D7,mf-,16,144,98,16,,,,, +406,8,1,14011,179,1906.347,,,,,,144,98,0,,,,, +406,9,1,14012,204,1906.347,26,32,C8,mf-,16,144,108,16,,,,, +406,9,1,14012,204,1906.456,,,,,,144,108,0,,,,, +406,10,1,14013,230,1906.456,26,32,D7,mf,17,144,98,17,,,,, +406,10,1,14013,230,1906.565,,,,,,144,98,0,,,,, +406,11,0,14014,256,1906.565,,,,,,176,64,0,,,,,^ +406,12,1,14015,256,1906.565,48,32,C8,mf+,18,144,108,18,,,,, +406,12,1,14015,256,1906.766,,,,,,144,108,0,,,,, +406,13,1,14016,304,1906.766,48,32,D7,f-,19,144,98,19,,,,, +406,13,1,14016,304,1906.967,,,,,,144,98,0,,,,, +406,14,1,14017,352,1906.967,32,32,A2,f,20,144,45,20,,,,, +406,15,1,14018,352,1906.967,32,32,G#5,f,20,144,80,20,,,,, +406,16,1,14019,352,1906.967,32,32,E6,f,20,144,88,20,,,,, +406,14,1,14017,352,1907.101,,,,,,144,45,0,,,,, +406,15,1,14018,352,1907.101,,,,,,144,80,0,,,,, +406,16,1,14019,352,1907.101,,,,,,144,88,0,,,,, +406,17,1,14020,384,1907.101,,,,,,176,102,0,,,,, +406,18,1,14021,512,1907.636,128,8,E5,ppp,5,144,76,5,,,,, +406,19,3,14022,512,1907.636,128,8,G#1,ppp,5,144,32,5,,,,, +406,20,3,14023,512,1907.636,128,8,D#2,ppp,5,144,39,5,,,,, +406,18,1,14021,512,1908.172,,,,,,144,76,0,,,,, +406,19,3,14022,512,1908.172,,,,,,144,32,0,,,,, +406,20,3,14023,512,1908.172,,,,,,144,39,0,,,,, +406,22,1,14024,640,1908.172,,,,,,176,102,0,,,,, +406,23,3,14025,640,1908.172,32,32,C1,ppp,5,144,24,5,,,,, +406,21,0,14026,640,1908.172,,,,,,176,64,127,,,,,V +406,23,3,14025,640,1908.306,,,,,,144,24,0,,,,, +406,24,1,14027,672,1908.306,96,16,A3,ppp,5,144,57,5,,,,, +406,25,1,14028,672,1908.306,64,16,E4,ppp,5,144,64,5,,,,, +406,26,3,14029,672,1908.306,96,16,G#1,ppp,5,144,32,5,,,,, +406,27,3,14030,672,1908.306,64,16,D#2,ppp,5,144,39,5,,,,, +406,25,1,14028,672,1908.574,,,,,,144,64,0,,,,, +406,27,3,14030,672,1908.574,,,,,,144,39,0,,,,, +406,24,1,14027,672,1908.708,,,,,,144,57,0,,,,, +406,26,3,14029,672,1908.708,,,,,,144,32,0,,,,, +406,28,1,14031,768,1908.708,256,4,F4,ff,22,144,65,22,,,,, +406,29,3,14032,768,1908.708,,,,,,176,102,0,,,,, +406,28,1,14031,768,1909.779,,,,,,144,65,0,,,,, +406,30,1,14033,1024,1909.779,85,16,G6,ppp,5,144,91,5,,,,, +406,30,1,14033,1024,1910.135,,,,,,144,91,0,,,,, +406,31,1,14034,1109,1910.135,57,16,E5,ppp,5,144,76,5,,,,, +406,31,1,14034,1109,1910.374,,,,,,144,76,0,,,,, +406,32,1,14035,1166,1910.374,28,32,C6,ppp,5,144,84,5,,,,, +406,32,1,14035,1166,1910.491,,,,,,144,84,0,,,,, +406,33,1,14036,1194,1910.491,29,32,G#3,ppp,5,144,56,5,,,,, +406,33,1,14036,1194,1910.612,,,,,,144,56,0,,,,, +406,34,1,14037,1223,1910.612,28,32,C6,ppp,5,144,84,5,,,,, +406,34,1,14037,1223,1910.729,,,,,,144,84,0,,,,, +406,35,1,14038,1251,1910.729,29,32,G#3,ppp,5,144,56,5,,,,, +406,35,1,14038,1251,1910.851,,,,,,144,56,0,,,,, +407,0,0,14039,0,1910.851,,,,,,,,,407,,,, +407,1,1,14040,0,1910.851,56,16,C6,ppp,5,144,84,5,,,,, +407,2,3,14041,0,1910.851,,,,,,176,102,0,,,,, +407,1,1,14040,0,1911.085,,,,,,144,84,0,,,,, +407,3,1,14042,56,1911.085,29,32,C#3,ppp,5,144,49,5,,,,, +407,4,1,14043,56,1911.085,32,32,G#3,ppp,5,144,56,5,,,,, +407,3,1,14042,56,1911.206,,,,,,144,49,0,,,,, +407,5,1,14044,85,1911.206,,,,,,176,102,0,,,,, +407,4,1,14043,56,1911.219,,,,,,144,56,0,,,,, +407,6,3,14045,128,1911.386,25,32,E5,mp,14,144,76,14,,,,, +407,6,3,14045,128,1911.491,,,,,,144,76,0,,,,, +407,7,3,14046,153,1911.491,26,32,A2,mf-,16,144,45,16,,,,, +407,7,3,14046,153,1911.6,,,,,,144,45,0,,,,, +407,8,3,14047,179,1911.6,25,32,D6,mf+,18,144,86,18,,,,, +407,8,3,14047,179,1911.705,,,,,,144,86,0,,,,, +407,9,3,14048,204,1911.705,26,32,A2,f,20,144,45,20,,,,, +407,10,3,14049,204,1911.705,32,32,G#3,f,20,144,56,20,,,,, +407,9,3,14048,204,1911.813,,,,,,144,45,0,,,,, +407,11,3,14050,230,1911.813,26,32,D6,ff,22,144,86,22,,,,, +407,12,3,14051,230,1911.813,32,32,C7,ff,22,144,96,22,,,,, +407,10,3,14049,204,1911.838,,,,,,144,56,0,,,,, +407,11,3,14050,230,1911.922,,,,,,144,86,0,,,,, +407,13,1,14052,256,1911.922,,,,,,176,102,0,,,,, +407,14,3,14053,256,1911.922,256,4,A2,ff,22,144,45,22,,,,, +407,15,3,14054,256,1911.922,256,4,G#3,ff,22,144,56,22,,,,, +407,16,3,14055,256,1911.922,256,4,E4,ff,22,144,64,22,,,,, +407,12,3,14051,230,1911.947,,,,,,144,96,0,,,,, +407,14,3,14053,256,1912.994,,,,,,144,45,0,,,,, +407,15,3,14054,256,1912.994,,,,,,144,56,0,,,,, +407,16,3,14055,256,1912.994,,,,,,144,64,0,,,,, +407,17,1,14056,512,1912.994,,,,,,176,102,0,,,,, +407,18,3,14057,512,1912.994,,,,,,176,102,0,,,,, +407,19,1,14058,704,1913.797,64,16,A#3,ff,22,144,58,22,,,,, +407,20,1,14059,704,1913.797,64,16,F4,ff,22,144,65,22,,,,, +407,21,1,14060,768,1914.065,256,4,A#3,,,,,,,,,, +407,22,1,14061,768,1914.065,256,4,F4,,,,,,,,,, +407,23,3,14062,768,1914.065,256,4,E4,ff,22,144,64,22,,,,, +407,24,0,14063,1024,1914.986,,,,,,176,64,0,,,,,^ +407,19,1,14058,704,1915.136,,,,,,144,58,0,,,,, +407,20,1,14059,704,1915.136,,,,,,144,65,0,,,,, +407,26,1,14064,1024,1915.136,,,,,,176,102,0,,,,, +407,27,3,14065,1024,1915.136,128,8,E4,,,,,,,,,, +407,25,0,14066,1024,1915.286,,,,,,176,64,127,,,,,V +407,23,3,14062,768,1915.672,,,,,,144,64,0,,,,, +407,28,3,14067,1152,1915.672,21,32,G#3,ff,22,144,56,22,,,,, +407,29,3,14068,1152,1915.672,32,32,E4,ff,22,144,64,22,,,,, +407,28,3,14067,1152,1915.76,,,,,,144,56,0,,,,, +407,29,3,14068,1152,1915.76,,,,,,144,64,0,,,,, +407,30,3,14069,1173,1915.76,21,32,A1,ff,22,144,33,22,,,,, +407,31,3,14070,1173,1915.76,32,32,G#3,ff,22,144,56,22,,,,, +407,32,3,14071,1173,1915.76,32,32,E4,ff,22,144,64,22,,,,, +407,33,3,14072,1194,1915.848,86,8,A1,,,,,,,,,, +407,31,3,14070,1173,1915.894,,,,,,144,56,0,,,,, +407,32,3,14071,1173,1915.894,,,,,,144,64,0,,,,, +408,0,0,14073,0,1916.208,,,,,,,,,408,,,, +408,1,1,14074,0,1916.208,85,8,A#3,f,20,144,58,20,,,,, +408,2,1,14075,0,1916.208,128,8,F4,f,20,144,65,20,,,,, +408,3,3,14076,0,1916.208,85,8,A1,,,,,,,,,, +407,30,3,14069,1173,1916.564,,,,,,144,33,0,,,,, +408,1,1,14074,0,1916.564,,,,,,144,58,0,,,,, +408,4,1,14077,85,1916.564,21,32,C7,f,20,144,96,20,,,,, +408,5,3,14078,85,1916.564,43,16,A1,f,20,144,33,20,,,,, +408,4,1,14077,85,1916.652,,,,,,144,96,0,,,,, +408,6,0,14079,106,1916.652,,,,,,176,64,0,,,,,^ +408,7,1,14080,106,1916.652,22,32,D5,f,20,144,74,20,,,,, +408,2,1,14075,0,1916.744,,,,,,144,65,0,,,,, +408,5,3,14078,85,1916.744,,,,,,144,33,0,,,,, +408,7,1,14080,106,1916.744,,,,,,144,74,0,,,,, +408,8,1,14081,128,1916.744,,,,,,176,102,0,,,,, +408,9,3,14082,,1916.744,,8,A0,mf,17,144,21,17,,,,g, +408,9,3,14082,,1916.794,,,,,,144,21,0,,,,, +408,10,3,14083,,1916.819,,8,D4,mf-,16,144,62,16,,,,g, +408,10,3,14083,,1916.869,,,,,,144,62,0,,,,, +408,11,3,14084,128,1916.894,42,16,E2,mp,14,144,40,14,,,,, +408,12,0,14085,148,1916.977,,,,,,176,64,127,,,,,V +408,11,3,14084,128,1917.069,,,,,,144,40,0,,,,, +408,13,3,14086,170,1917.069,43,16,A0,p,11,144,21,11,,,,, +408,14,3,14087,170,1917.069,64,16,G#1,p,11,144,32,11,,,,, +408,13,3,14086,170,1917.249,,,,,,144,21,0,,,,, +408,14,3,14087,170,1917.249,,,,,,144,32,0,,,,, +408,15,1,14088,213,1917.249,43,16,D4,pp,8,144,62,8,,,,, +408,16,1,14089,213,1917.249,64,16,C5,pp,8,144,72,8,,,,, +408,17,3,14090,213,1917.249,43,16,A0,pp,8,144,21,8,,,,, +408,18,3,14091,213,1917.249,64,16,G#1,pp,8,144,32,8,,,,, +408,19,0,14092,256,1917.429,,,,,,176,64,0,,,,,^ +408,20,1,14093,256,1917.429,256,4,D4,,,,,,,,,, +408,21,1,14094,256,1917.429,256,4,C5,,,,,,,,,, +408,22,3,14095,256,1917.429,256,4,A0,,,,,,,,,, +408,23,3,14096,256,1917.429,256,4,G#1,,,,,,,,,, +408,24,0,14097,256,1917.429,,,,,,,,,,6060,,, +408,26,1,14098,,1918.426,,8,G5,pp,8,144,79,8,,,,g, +408,26,1,14098,,1918.476,,,,,,144,79,0,,,,, +408,27,1,14099,512,1918.501,512,2,C5,pp,8,144,72,8,,,,, +408,28,3,14100,512,1918.501,170,4,F2,ppp,5,144,41,5,,,,, +408,25,0,14101,512,1918.501,,,,,,176,64,127,,,,,V +408,15,1,14088,213,1918.651,,,,,,144,62,0,,,,, +408,17,3,14090,213,1918.651,,,,,,144,21,0,,,,, +408,16,1,14089,213,1918.739,,,,,,144,72,0,,,,, +408,18,3,14091,213,1918.739,,,,,,144,32,0,,,,, +408,28,3,14100,512,1919.212,,,,,,144,41,0,,,,, +408,29,3,14102,682,1919.212,86,8,F2,ppp,5,144,41,5,,,,, +408,30,3,14103,682,1919.212,128,8,C#3,ppp,5,144,49,5,,,,, +408,31,3,14104,768,1919.572,128,8,F2,,,,,,,,,, +408,32,3,14105,768,1919.572,128,8,C#3,,,,,,,,,, +408,33,3,14106,896,1920.108,128,8,C#2,pp,8,144,37,8,,,,, +408,29,3,14102,682,1920.108,,,,,,144,41,0,,,,, +408,30,3,14103,682,1920.284,,,,,,144,49,0,,,,, +408,33,3,14106,896,1920.644,,,,,,144,37,0,,,,, +408,34,1,14107,1024,1920.644,,,,,,176,102,0,,,,, +408,35,3,14108,1024,1920.644,,,,,,176,102,0,,,,, +408,27,1,14099,512,1920.644,,,,,,144,72,0,,,,, +408,36,1,14109,1109,1920.999,43,16,A#4,ff,22,144,70,22,,,,, +408,37,3,14110,1109,1920.999,43,16,F#2,ff,22,144,42,22,,,,, +408,38,3,14111,1109,1920.999,64,16,G3,ff,22,144,55,22,,,,, +408,36,1,14109,1109,1921.179,,,,,,144,70,0,,,,, +408,37,3,14110,1109,1921.179,,,,,,144,42,0,,,,, +408,40,1,14112,1152,1921.179,,,,,,176,102,0,,,,, +408,39,1,14113,,1921.179,,8,G5,pp,8,144,79,8,,,,g, +408,39,1,14113,,1921.229,,,,,,144,79,0,,,,, +408,41,3,14114,1152,1921.254,64,16,E3,pp,8,144,52,8,,,,, +408,38,3,14111,1109,1921.267,,,,,,144,55,0,,,,, +408,41,3,14114,1152,1921.522,,,,,,144,52,0,,,,, +408,42,3,14115,1216,1921.522,21,32,G#2,pp,8,144,44,8,,,,, +408,42,3,14115,1216,1921.61,,,,,,144,44,0,,,,, +408,43,1,14116,1237,1921.61,43,16,E6,mp,14,144,88,14,,,,, +408,44,3,14117,1237,1921.61,43,16,C3,mp,14,144,48,14,,,,, +408,43,1,14116,1237,1921.79,,,,,,144,88,0,,,,, +408,44,3,14117,1237,1921.79,,,,,,144,48,0,,,,, +409,0,0,14118,0,1921.79,,,,,,,,,409,,,, +409,1,1,14119,0,1921.79,64,16,F5,mp,14,144,77,14,,,,, +409,2,1,14120,0,1921.79,64,16,E6,mp,14,144,88,14,,,,, +409,3,3,14121,0,1921.79,32,32,A#3,mp,14,144,58,14,,,,, +409,3,3,14121,0,1921.924,,,,,,144,58,0,,,,, +409,4,3,14122,32,1921.924,32,32,E2,mp,14,144,40,14,,,,, +409,1,1,14119,0,1922.058,,,,,,144,77,0,,,,, +409,2,1,14120,0,1922.058,,,,,,144,88,0,,,,, +409,4,3,14122,32,1922.058,,,,,,144,40,0,,,,, +409,5,1,14123,64,1922.058,64,16,C#6,mp,14,144,85,14,,,,, +409,6,1,14124,64,1922.058,64,16,A6,mp,14,144,93,14,,,,, +409,7,3,14125,64,1922.058,32,32,E3,mp,14,144,52,14,,,,, +409,8,3,14126,64,1922.058,32,32,A#3,mp,14,144,58,14,,,,, +409,7,3,14125,64,1922.192,,,,,,144,52,0,,,,, +409,8,3,14126,64,1922.192,,,,,,144,58,0,,,,, +409,9,3,14127,96,1922.192,32,32,F4,mp,14,144,65,14,,,,, +409,5,1,14123,64,1922.326,,,,,,144,85,0,,,,, +409,6,1,14124,64,1922.326,,,,,,144,93,0,,,,, +409,9,3,14127,96,1922.326,,,,,,144,65,0,,,,, +409,10,1,14128,128,1922.326,,,,,,176,102,0,,,,, +409,11,3,14129,128,1922.326,,,,,,176,102,0,,,,, +409,12,1,14130,213,1922.681,43,16,A#4,mp,14,144,70,14,,,,, +409,12,1,14130,213,1922.861,,,,,,144,70,0,,,,, +409,13,1,14131,256,1922.861,85,8,A#3,fff,24,144,58,23,,,,, +409,14,1,14132,256,1922.861,128,8,F4,fff,24,144,65,23,,,,, +409,15,3,14133,256,1922.861,85,8,C2,fff,24,144,36,23,,,,, +409,16,0,14134,341,1923.067,,,,,,176,64,0,,,,,^ +409,13,1,14131,256,1923.217,,,,,,144,58,0,,,,, +409,15,3,14133,256,1923.217,,,,,,144,36,0,,,,, +409,18,1,14135,341,1923.217,128,8,A#4,fff,24,144,70,23,,,,, +409,19,3,14136,341,1923.217,128,8,F#2,fff,24,144,42,23,,,,, +409,20,3,14137,341,1923.217,128,8,G3,fff,24,144,55,23,,,,, +409,17,0,14138,341,1923.367,,,,,,176,64,127,,,,,V +409,14,1,14132,256,1923.397,,,,,,144,65,0,,,,, +409,18,1,14135,341,1923.753,,,,,,144,70,0,,,,, +409,19,3,14136,341,1923.753,,,,,,144,42,0,,,,, +409,20,3,14137,341,1923.753,,,,,,144,55,0,,,,, +409,21,1,14139,469,1923.753,21,32,A#3,fff,24,144,58,23,,,,, +409,22,1,14140,469,1923.753,32,32,F4,fff,24,144,65,23,,,,, +409,23,3,14141,469,1923.753,21,32,C2,fff,24,144,36,23,,,,, +409,21,1,14139,469,1923.841,,,,,,144,58,0,,,,, +409,23,3,14141,469,1923.841,,,,,,144,36,0,,,,, +409,24,1,14142,490,1923.841,,,,,,176,102,0,,,,, +409,25,3,14143,490,1923.841,,,,,,176,102,0,,,,, +409,22,1,14140,469,1923.887,,,,,,144,65,0,,,,, +409,26,0,14144,512,1923.917,,,,,,176,64,0,,,,,^ +409,27,1,14145,512,1923.933,113,8,A#3,f,20,144,58,20,,,,, +409,28,1,14146,512,1923.933,128,8,F4,f,20,144,65,20,,,,, +409,29,1,14147,512,1923.933,128,8,A#4,f,20,144,70,20,,,,, +409,30,3,14148,512,1923.933,128,8,C2,f,20,144,36,20,,,,, +409,31,3,14149,512,1923.933,128,8,F#2,f,20,144,42,20,,,,, +409,32,0,14150,576,1924.217,,,,,,176,64,127,,,,,V +409,27,1,14145,512,1924.406,,,,,,144,58,0,,,,, +409,33,1,14151,625,1924.406,,,,,,176,102,0,,,,, +409,28,1,14146,512,1924.469,,,,,,144,65,0,,,,, +409,29,1,14147,512,1924.469,,,,,,144,70,0,,,,, +409,30,3,14148,512,1924.469,,,,,,144,36,0,,,,, +409,31,3,14149,512,1924.469,,,,,,144,42,0,,,,, +409,34,3,14152,640,1924.469,,,,,,176,102,0,,,,, +409,35,1,14153,654,1924.527,28,32,F6,pp,8,144,89,8,,,,, +409,35,1,14153,654,1924.644,,,,,,144,89,0,,,,, +409,36,1,14154,682,1924.644,29,32,G#4,p,11,144,68,11,,,,, +409,36,1,14154,682,1924.766,,,,,,144,68,0,,,,, +409,37,1,14155,711,1924.766,28,32,A#5,p,11,144,82,11,,,,, +409,37,1,14155,711,1924.883,,,,,,144,82,0,,,,, +409,38,1,14156,739,1924.883,29,32,C5,pp,8,144,72,8,,,,, +409,38,1,14156,739,1925.004,,,,,,144,72,0,,,,, +409,39,1,14157,768,1925.004,28,32,G#3,pp,8,144,56,8,,,,, +409,40,3,14158,768,1925.004,170,4,G#2,pp,8,144,44,8,,,,, +409,41,3,14159,768,1925.004,256,4,E3,pp,8,144,52,8,,,,, +409,39,1,14157,768,1925.122,,,,,,144,56,0,,,,, +409,42,1,14160,796,1925.122,28,32,A#5,pp,8,144,82,8,,,,, +409,42,1,14160,796,1925.239,,,,,,144,82,0,,,,, +409,43,1,14161,824,1925.239,29,32,C5,pp,8,144,72,8,,,,, +409,43,1,14161,824,1925.36,,,,,,144,72,0,,,,, +409,44,1,14162,853,1925.36,43,32,G#3,pp,8,144,56,8,,,,, +409,44,1,14162,853,1925.54,,,,,,144,56,0,,,,, +409,45,1,14163,896,1925.54,42,32,C4,pp,8,144,60,8,,,,, +409,40,3,14158,768,1925.716,,,,,,144,44,0,,,,, +409,45,1,14163,896,1925.716,,,,,,144,60,0,,,,, +409,46,1,14164,938,1925.716,29,32,F5,pp,8,144,77,8,,,,, +409,47,3,14165,938,1925.716,86,8,C5,p,11,144,72,11,,,,, +409,48,3,14166,938,1925.716,128,8,G5,p,11,144,79,11,,,,, +409,46,1,14164,938,1925.837,,,,,,144,77,0,,,,, +409,49,1,14167,967,1925.837,28,32,G#2,pp,8,144,44,8,,,,, +409,49,1,14167,967,1925.954,,,,,,144,44,0,,,,, +409,50,1,14168,995,1925.954,29,32,A#5,pp,8,144,82,8,,,,, +409,41,3,14159,768,1926.076,,,,,,144,52,0,,,,, +409,47,3,14165,938,1926.076,,,,,,144,72,0,,,,, +409,50,1,14168,995,1926.076,,,,,,144,82,0,,,,, +409,51,1,14169,1024,1926.076,42,32,F6,pp,8,144,89,8,,,,, +409,52,3,14170,1024,1926.076,113,8,G#2,p,11,144,44,11,,,,, +409,53,3,14171,1024,1926.076,128,8,E3,p,11,144,52,11,,,,, +409,48,3,14166,938,1926.252,,,,,,144,79,0,,,,, +409,51,1,14169,1024,1926.252,,,,,,144,89,0,,,,, +409,54,1,14172,1066,1926.252,29,32,A#5,pp,8,144,82,8,,,,, +409,52,3,14170,1024,1926.373,,,,,,144,44,0,,,,, +409,54,1,14172,1066,1926.373,,,,,,144,82,0,,,,, +409,55,1,14173,1095,1926.373,28,32,G#2,pp,8,144,44,8,,,,, +409,56,1,14174,1123,1926.49,29,32,A#5,pp,8,144,82,8,,,,, +409,55,1,14173,1095,1926.549,,,,,,144,44,0,,,,, +409,57,3,14175,1137,1926.549,,,,,,176,102,0,,,,, +409,53,3,14171,1024,1926.611,,,,,,144,52,0,,,,, +409,56,1,14174,1123,1926.611,,,,,,144,82,0,,,,, +409,58,1,14176,1152,1926.611,28,32,C3,pp,8,144,48,8,,,,, +409,58,1,14176,1152,1926.729,,,,,,144,48,0,,,,, +409,59,1,14177,1180,1926.729,28,32,E7,pp,8,144,100,8,,,,, +409,59,1,14177,1180,1926.846,,,,,,144,100,0,,,,, +409,60,1,14178,1208,1926.846,43,32,A#5,pp,8,144,82,8,,,,, +409,60,1,14178,1208,1927.026,,,,,,144,82,0,,,,, +409,61,1,14179,1251,1927.026,29,32,E7,pp,8,144,100,8,,,,, +409,62,3,14180,1251,1927.026,29,32,C#2,p,11,144,37,11,,,,, +409,63,3,14181,1251,1927.026,32,32,G#2,p,11,144,44,11,,,,, +409,61,1,14179,1251,1927.147,,,,,,144,100,0,,,,, +409,62,3,14180,1251,1927.147,,,,,,144,37,0,,,,, +410,0,0,14182,0,1927.147,,,,,,,,,410,,,, +410,2,3,14183,,1927.147,,8,E5,fff,24,144,76,23,,,,g, +409,63,3,14181,1251,1927.16,,,,,,144,44,0,,,,, +410,2,3,14183,,1927.197,,,,,,144,76,0,,,,, +410,1,1,14184,0,1927.222,64,16,A#3,fff,24,144,58,23,,,,, +410,3,3,14185,0,1927.222,64,16,B1,fff,24,144,35,23,,,,, +410,4,3,14186,0,1927.222,64,16,D2,fff,24,144,38,23,,,,, +410,1,1,14184,0,1927.49,,,,,,144,58,0,,,,, +410,3,3,14185,0,1927.49,,,,,,144,35,0,,,,, +410,4,3,14186,0,1927.49,,,,,,144,38,0,,,,, +410,5,1,14187,64,1927.49,85,8,A#3,fff,24,144,58,23,,,,, +410,6,3,14188,64,1927.49,85,8,F#1,fff,24,144,30,23,,,,, +410,7,3,14189,64,1927.49,128,8,B1,fff,24,144,35,23,,,,, +410,8,3,14190,64,1927.49,128,8,D2,fff,24,144,38,23,,,,, +410,5,1,14187,64,1927.846,,,,,,144,58,0,,,,, +410,6,3,14188,64,1927.846,,,,,,144,30,0,,,,, +410,9,1,14191,149,1927.846,,,,,,176,102,0,,,,, +410,10,3,14192,149,1927.846,,,,,,176,102,0,,,,, +410,11,0,14193,149,1927.846,,,,,,,,,,6061,,, +410,12,0,14194,170,1927.934,,,,,,176,64,0,,,,,^ +410,13,1,14195,170,1927.934,86,8,A#3,ff,22,144,58,22,,,,, +410,14,1,14196,170,1927.934,128,8,F4,ff,22,144,65,22,,,,, +410,15,1,14197,170,1927.934,128,8,A#4,ff,22,144,70,22,,,,, +410,16,3,14198,170,1927.934,86,8,C2,ff,22,144,36,22,,,,, +410,17,3,14199,170,1927.934,128,8,F#2,ff,22,144,42,22,,,,, +410,13,1,14195,170,1927.984,,,,,,144,58,0,,,,, +410,14,1,14196,170,1927.984,,,,,,144,65,0,,,,, +410,15,1,14197,170,1927.984,,,,,,144,70,0,,,,, +410,16,3,14198,170,1927.984,,,,,,144,36,0,,,,, +410,17,3,14199,170,1927.984,,,,,,144,42,0,,,,, +410,7,3,14189,64,1928.026,,,,,,144,35,0,,,,, +410,8,3,14190,64,1928.026,,,,,,144,38,0,,,,, +410,19,1,14200,256,1928.294,64,16,B5,pp,8,144,83,8,,,,, +410,20,3,14201,256,1928.294,,,,,,176,102,0,,,,, +410,18,0,14202,256,1928.294,,,,,,176,64,127,,,,,V +410,19,1,14200,256,1928.561,,,,,,144,83,0,,,,, +410,21,1,14203,320,1928.561,42,16,A1,p-,10,144,33,10,,,,, +410,21,1,14203,320,1928.737,,,,,,144,33,0,,,,, +410,22,1,14204,362,1928.737,22,32,G2,p,11,144,43,11,,,,, +410,22,1,14204,362,1928.829,,,,,,144,43,0,,,,, +410,23,1,14205,384,1928.829,64,16,D#5,p+,12,144,75,12,,,,, +410,24,0,14206,448,1929.081,,,,,,176,64,0,,,,,^ +410,23,1,14205,384,1929.097,,,,,,144,75,0,,,,, +410,25,1,14207,448,1929.097,64,16,B5,mp-,13,144,83,13,,,,, +410,26,3,14208,448,1929.097,64,16,F#1,ff,22,144,30,22,,,,, +410,27,3,14209,448,1929.097,64,16,B1,ff,22,144,35,22,,,,, +410,28,3,14210,448,1929.097,64,16,D2,ff,22,144,38,22,,,,, +410,25,1,14207,448,1929.365,,,,,,144,83,0,,,,, +410,26,3,14208,448,1929.365,,,,,,144,30,0,,,,, +410,27,3,14209,448,1929.365,,,,,,144,35,0,,,,, +410,28,3,14210,448,1929.365,,,,,,144,38,0,,,,, +410,30,1,14211,512,1929.365,21,32,A1,mp+,15,144,33,15,,,,, +410,31,3,14212,512,1929.365,,,,,,176,102,0,,,,, +410,29,0,14213,512,1929.381,,,,,,176,64,127,,,,,V +410,30,1,14211,512,1929.453,,,,,,144,33,0,,,,, +410,32,1,14214,533,1929.453,21,32,G2,mf-,16,144,43,16,,,,, +410,32,1,14214,533,1929.541,,,,,,144,43,0,,,,, +410,33,1,14215,554,1929.541,22,32,D#5,mf-,16,144,75,16,,,,, +410,33,1,14215,554,1929.633,,,,,,144,75,0,,,,, +410,34,1,14216,576,1929.633,21,32,E6,mf,17,144,88,17,,,,, +410,35,3,14217,576,1929.633,21,32,A1,mp,14,144,33,14,,,,, +410,36,3,14218,576,1929.633,32,32,G2,mp,14,144,43,14,,,,, +410,34,1,14216,576,1929.721,,,,,,144,88,0,,,,, +410,35,3,14217,576,1929.721,,,,,,144,33,0,,,,, +410,37,1,14219,597,1929.721,32,32,D#5,mf,17,144,75,17,,,,, +410,38,3,14220,597,1929.721,,,,,,176,102,0,,,,, +410,36,3,14218,576,1929.767,,,,,,144,43,0,,,,, +410,37,1,14219,597,1929.855,,,,,,144,75,0,,,,, +410,39,1,14221,629,1929.855,32,32,B5,mf+,18,144,83,18,,,,, +410,39,1,14221,629,1929.989,,,,,,144,83,0,,,,, +410,40,1,14222,661,1929.989,32,32,A1,f-,19,144,33,19,,,,, +410,40,1,14222,661,1930.123,,,,,,144,33,0,,,,, +410,41,1,14223,693,1930.123,32,32,E6,f,20,144,88,20,,,,, +410,41,1,14223,693,1930.256,,,,,,144,88,0,,,,, +410,42,1,14224,725,1930.256,43,16,G2,f,20,144,43,20,,,,, +410,43,3,14225,725,1930.256,43,16,C2,ff,22,144,36,22,,,,, +410,44,3,14226,725,1930.256,64,16,F#2,ff,22,144,42,22,,,,, +410,45,3,14227,725,1930.256,64,16,B3,ff,22,144,59,22,,,,, +410,46,3,14228,725,1930.256,64,16,F4,ff,22,144,65,22,,,,, +410,47,3,14229,725,1930.256,64,16,A#4,ff,22,144,70,22,,,,, +410,48,0,14230,746,1930.344,,,,,,176,64,0,,,,,^ +410,42,1,14224,725,1930.436,,,,,,144,43,0,,,,, +410,43,3,14225,725,1930.436,,,,,,144,36,0,,,,, +410,49,1,14231,768,1930.436,,,,,,176,102,0,,,,, +410,50,3,14232,768,1930.436,384,4,F#1,mf,17,144,30,17,,,,, +410,51,3,14233,768,1930.436,256,4,B1,mf,17,144,35,17,,,,, +410,52,3,14234,768,1930.436,256,4,D2,mf,17,144,38,17,,,,, +410,53,3,14235,768,1930.436,256,4,A#3,mf,17,144,58,17,,,,, +410,44,3,14226,725,1930.524,,,,,,144,42,0,,,,, +410,45,3,14227,725,1930.524,,,,,,144,59,0,,,,, +410,46,3,14228,725,1930.524,,,,,,144,65,0,,,,, +410,47,3,14229,725,1930.524,,,,,,144,70,0,,,,, +410,53,3,14235,768,1931.148,,,,,,144,58,0,,,,, +410,54,1,14236,938,1931.148,86,8,C2,ff,22,144,36,22,,,,, +410,55,1,14237,938,1931.148,128,8,F#2,ff,22,144,42,22,,,,, +410,56,1,14238,938,1931.148,128,8,A#3,ff,22,144,58,22,,,,, +410,57,1,14239,938,1931.148,128,8,F4,ff,22,144,65,22,,,,, +410,58,1,14240,938,1931.148,128,8,A#4,ff,22,144,70,22,,,,, +410,54,1,14236,938,1931.508,,,,,,144,36,0,,,,, +410,59,1,14241,1024,1931.508,,,,,,176,102,0,,,,, +410,51,3,14233,768,1931.583,,,,,,144,35,0,,,,, +410,52,3,14234,768,1931.583,,,,,,144,38,0,,,,, +410,55,1,14237,938,1931.684,,,,,,144,42,0,,,,, +410,56,1,14238,938,1931.684,,,,,,144,58,0,,,,, +410,57,1,14239,938,1931.684,,,,,,144,65,0,,,,, +410,58,1,14240,938,1931.684,,,,,,144,70,0,,,,, +410,50,3,14232,768,1932.044,,,,,,144,30,0,,,,, +410,60,3,14242,1152,1932.044,128,8,F#1,p,11,144,30,11,,,,, +410,61,3,14243,1152,1932.044,128,8,B1,p,11,144,35,11,,,,, +410,62,3,14244,1152,1932.044,128,8,D2,p,11,144,38,11,,,,, +410,63,3,14245,1152,1932.044,128,8,A#3,p,11,144,58,11,,,,, +411,0,0,14246,0,1932.579,,,,,,,,,411,,,, +411,1,1,14247,0,1932.579,,,,,,176,102,0,,,,, +411,2,3,14248,0,1932.579,128,8,F#1,,,,,,,,,, +411,3,3,14249,0,1932.579,128,8,B1,,,,,,,,,, +411,4,3,14250,0,1932.579,128,8,D2,,,,,,,,,, +411,5,3,14251,0,1932.579,128,8,A#3,,,,,,,,,, +411,6,3,14252,128,1933.115,128,8,F#1,p-,10,144,30,10,,,,, +411,7,3,14253,128,1933.115,128,8,B1,p-,10,144,35,10,,,,, +411,8,3,14254,128,1933.115,128,8,D2,p-,10,144,38,10,,,,, +411,9,3,14255,128,1933.115,128,8,A#3,p-,10,144,58,10,,,,, +411,10,0,14256,128,1933.115,,,,,,,,,,6062,,, +410,60,3,14242,1152,1933.115,,,,,,144,30,0,,,,, +410,61,3,14243,1152,1933.115,,,,,,144,35,0,,,,, +410,62,3,14244,1152,1933.115,,,,,,144,38,0,,,,, +410,63,3,14245,1152,1933.115,,,,,,144,58,0,,,,, +411,6,3,14252,128,1933.651,,,,,,144,30,0,,,,, +411,7,3,14253,128,1933.651,,,,,,144,35,0,,,,, +411,8,3,14254,128,1933.651,,,,,,144,38,0,,,,, +411,9,3,14255,128,1933.651,,,,,,144,58,0,,,,, +411,12,3,14257,256,1933.651,28,32,G#1,pp,8,144,32,8,,,,, +411,11,0,14258,256,1933.651,,,,,,176,64,127,,,,,V +411,12,3,14257,256,1933.768,,,,,,144,32,0,,,,, +411,13,3,14259,284,1933.768,28,32,F3,pp,8,144,53,8,,,,, +411,13,3,14259,284,1933.885,,,,,,144,53,0,,,,, +411,14,3,14260,312,1933.885,29,32,C2,pp+,9,144,36,9,,,,, +411,14,3,14260,312,1934.006,,,,,,144,36,0,,,,, +411,15,3,14261,341,1934.006,28,32,G#1,pp+,9,144,32,9,,,,, +411,15,3,14261,341,1934.124,,,,,,144,32,0,,,,, +411,16,3,14262,369,1934.124,29,32,F3,p-,10,144,53,10,,,,, +411,16,3,14262,369,1934.245,,,,,,144,53,0,,,,, +411,17,3,14263,398,1934.245,28,32,C2,p-,10,144,36,10,,,,, +411,17,3,14263,398,1934.362,,,,,,144,36,0,,,,, +411,18,3,14264,426,1934.362,43,32,G#1,p,11,144,32,11,,,,, +411,18,3,14264,426,1934.542,,,,,,144,32,0,,,,, +411,19,3,14265,469,1934.542,43,32,C2,p,11,144,36,11,,,,, +411,19,3,14265,469,1934.722,,,,,,144,36,0,,,,, +411,20,3,14266,512,1934.722,28,32,F3,p+,12,144,53,12,,,,, +411,20,3,14266,512,1934.839,,,,,,144,53,0,,,,, +411,21,3,14267,540,1934.839,28,32,C2,p+,12,144,36,12,,,,, +411,22,0,14268,568,1934.867,,,,,,176,64,0,,,,,^ +411,21,3,14267,540,1934.957,,,,,,144,36,0,,,,, +411,23,3,14269,568,1934.957,29,32,F4,mp-,13,144,65,13,,,,, +411,23,3,14269,568,1935.078,,,,,,144,65,0,,,,, +411,24,3,14270,597,1935.078,43,32,G#1,mp-,13,144,32,13,,,,, +411,25,0,14271,597,1935.167,,,,,,176,64,127,,,,,V +411,24,3,14270,597,1935.258,,,,,,144,32,0,,,,, +411,26,3,14272,640,1935.258,42,32,C2,mp,14,144,36,14,,,,, +411,26,3,14272,640,1935.434,,,,,,144,36,0,,,,, +411,27,3,14273,682,1935.434,86,16,F4,mp,14,144,65,14,,,,, +411,27,3,14273,682,1935.794,,,,,,144,65,0,,,,, +411,28,3,14274,768,1935.794,85,8,A#2,mp,14,144,46,14,,,,, +411,29,1,14275,768,1935.794,384,4,D#3,f,20,144,51,20,,,,, +411,28,3,14274,768,1936.149,,,,,,144,46,0,,,,, +411,30,3,14276,853,1936.149,85,8,E5,mp,14,144,76,14,,,,, +411,30,3,14276,853,1936.505,,,,,,144,76,0,,,,, +411,31,3,14277,938,1936.505,,,,,,176,102,0,,,,, +411,,,14278,1024,1936.715,,,,,,176,64,0,,,,,^ +411,32,3,14279,1024,1936.865,,,,,,176,102,0,,,,, +411,33,0,14280,1024,1937.015,,,,,,176,64,127,,,,,V +411,34,3,14281,1066,1937.041,22,32,B3,mp,14,144,59,14,,,,, +411,34,3,14281,1066,1937.133,,,,,,144,59,0,,,,, +411,35,3,14282,1088,1937.133,21,32,E6,mp,14,144,88,14,,,,, +411,35,3,14282,1088,1937.221,,,,,,144,88,0,,,,, +411,36,3,14283,1109,1937.221,21,32,B2,mp-,13,144,47,13,,,,, +411,36,3,14283,1109,1937.309,,,,,,144,47,0,,,,, +411,37,3,14284,1130,1937.309,22,32,E7,mp-,13,144,100,13,,,,, +411,37,3,14284,1130,1937.401,,,,,,144,100,0,,,,, +411,38,3,14285,1152,1937.401,32,32,B3,p+,12,144,59,12,,,,, +411,39,1,14286,1152,1937.401,,,,,,176,102,0,,,,, +411,29,1,14275,768,1937.401,,,,,,144,51,0,,,,, +411,38,3,14285,1152,1937.535,,,,,,144,59,0,,,,, +411,40,3,14287,1184,1937.535,32,32,A#5,p+,12,144,82,12,,,,, +411,40,3,14287,1184,1937.669,,,,,,144,82,0,,,,, +411,41,3,14288,1216,1937.669,21,32,F#2,p,11,144,42,11,,,,, +411,42,3,14289,1216,1937.669,32,32,B2,p,11,144,47,11,,,,, +411,41,3,14288,1216,1937.756,,,,,,144,42,0,,,,, +411,43,3,14290,1237,1937.756,43,16,D3,p,11,144,50,11,,,,, +411,42,3,14289,1216,1937.803,,,,,,144,47,0,,,,, +411,43,3,14290,1237,1937.936,,,,,,144,50,0,,,,, +412,0,0,14291,0,1937.936,,,,,,,,,412,,,, +412,1,1,14292,0,1937.936,,,,,,176,102,0,,,,, +412,2,3,14293,0,1937.936,32,32,F#2,p-,10,144,42,10,,,,, +412,2,3,14293,0,1938.07,,,,,,144,42,0,,,,, +412,3,1,14294,32,1938.07,64,16,A#5,p-,10,144,82,10,,,,, +412,4,3,14295,32,1938.07,32,32,B2,p-,10,144,47,10,,,,, +412,4,3,14295,32,1938.204,,,,,,144,47,0,,,,, +412,5,3,14296,64,1938.204,32,32,F#2,pp+,9,144,42,9,,,,, +412,6,3,14297,64,1938.204,32,32,D3,pp+,9,144,50,9,,,,, +412,3,1,14294,32,1938.338,,,,,,144,82,0,,,,, +412,5,3,14296,64,1938.338,,,,,,144,42,0,,,,, +412,6,3,14297,64,1938.338,,,,,,144,50,0,,,,, +412,7,1,14298,96,1938.338,32,32,E6,pp+,9,144,88,9,,,,, +412,8,3,14299,96,1938.338,32,32,B2,pp+,9,144,47,9,,,,, +412,7,1,14298,96,1938.472,,,,,,144,88,0,,,,, +412,8,3,14299,96,1938.472,,,,,,144,47,0,,,,, +412,9,1,14300,128,1938.472,,,,,,176,102,0,,,,, +412,10,3,14301,128,1938.472,42,16,F#2,pp,8,144,42,8,,,,, +412,11,3,14302,128,1938.472,64,16,D3,pp,8,144,50,8,,,,, +412,10,3,14301,128,1938.648,,,,,,144,42,0,,,,, +412,12,1,14303,170,1938.648,86,8,A#5,pp,8,144,82,8,,,,, +412,13,1,14304,170,1938.648,128,8,E6,pp,8,144,88,8,,,,, +412,14,3,14305,170,1938.648,43,16,B2,pp,8,144,47,8,,,,, +412,11,3,14302,128,1938.74,,,,,,144,50,0,,,,, +412,14,3,14305,170,1938.828,,,,,,144,47,0,,,,, +412,15,3,14306,213,1938.828,43,16,F#2,pp,8,144,42,8,,,,, +412,16,3,14307,213,1938.828,64,16,B2,pp,8,144,47,8,,,,, +412,17,3,14308,213,1938.828,64,16,D3,pp,8,144,50,8,,,,, +412,12,1,14303,170,1939.008,,,,,,144,82,0,,,,, +412,15,3,14306,213,1939.008,,,,,,144,42,0,,,,, +412,18,1,14309,256,1939.008,,,,,,176,102,0,,,,, +412,19,3,14310,256,1939.008,,,,,,176,102,0,,,,, +412,16,3,14307,213,1939.096,,,,,,144,47,0,,,,, +412,17,3,14308,213,1939.096,,,,,,144,50,0,,,,, +412,13,1,14304,170,1939.184,,,,,,144,88,0,,,,, +412,20,1,14311,426,1939.719,86,8,A#5,pp,8,144,82,8,,,,, +412,21,1,14312,426,1939.719,128,8,E6,pp,8,144,88,8,,,,, +412,22,3,14313,426,1939.719,86,8,F#2,pp,8,144,42,8,,,,, +412,23,3,14314,426,1939.719,128,8,B2,pp,8,144,47,8,,,,, +412,24,3,14315,426,1939.719,128,8,D3,pp,8,144,50,8,,,,, +412,20,1,14311,426,1940.079,,,,,,144,82,0,,,,, +412,22,3,14313,426,1940.079,,,,,,144,42,0,,,,, +412,25,1,14316,512,1940.079,,,,,,176,102,0,,,,, +412,26,3,14317,512,1940.079,,,,,,176,102,0,,,,, +412,21,1,14312,426,1940.255,,,,,,144,88,0,,,,, +412,23,3,14314,426,1940.255,,,,,,144,47,0,,,,, +412,24,3,14315,426,1940.255,,,,,,144,50,0,,,,, +412,27,1,14318,597,1940.435,85,8,A#4,pp,8,144,70,8,,,,, +412,28,1,14319,597,1940.435,128,8,E5,pp,8,144,76,8,,,,, +412,29,3,14320,597,1940.435,85,8,F#2,pp,8,144,42,8,,,,, +412,30,3,14321,597,1940.435,128,8,B2,pp,8,144,47,8,,,,, +412,31,3,14322,597,1940.435,128,8,D3,pp,8,144,50,8,,,,, +412,27,1,14318,597,1940.791,,,,,,144,70,0,,,,, +412,29,3,14320,597,1940.791,,,,,,144,42,0,,,,, +412,32,0,14323,682,1940.791,,,,,,176,64,0,,,,,^ +412,33,1,14324,682,1940.791,86,8,B4,f,20,144,71,20,,,,, +412,34,3,14325,682,1940.791,86,8,D#3,f,20,144,51,20,,,,, +412,28,1,14319,597,1940.971,,,,,,144,76,0,,,,, +412,30,3,14321,597,1940.971,,,,,,144,47,0,,,,, +412,31,3,14322,597,1940.971,,,,,,144,50,0,,,,, +412,36,1,14326,768,1941.151,85,8,A#3,ff,22,144,58,22,,,,, +412,37,1,14327,768,1941.151,128,8,F4,ff,22,144,65,22,,,,, +412,38,1,14328,768,1941.151,128,8,G#4,ff,22,144,68,22,,,,, +412,39,1,14329,768,1941.151,128,8,B4,,,,,,,,,, +412,40,3,14330,768,1941.151,85,8,C2,ff,22,144,36,22,,,,, +412,41,3,14331,768,1941.151,128,8,D#3,,,,,,,,,, +412,35,0,14332,768,1941.151,,,,,,176,64,127,,,,,V +412,36,1,14326,768,1941.506,,,,,,144,58,0,,,,, +412,40,3,14330,768,1941.506,,,,,,144,36,0,,,,, +412,42,1,14333,853,1941.506,85,8,B4,f,20,144,71,20,,,,, +412,43,3,14334,853,1941.506,85,8,A0,f,20,144,21,20,,,,, +412,37,1,14327,768,1941.686,,,,,,144,65,0,,,,, +412,38,1,14328,768,1941.686,,,,,,144,68,0,,,,, +412,33,1,14324,682,1941.686,,,,,,144,71,0,,,,, +412,34,3,14325,682,1941.686,,,,,,144,51,0,,,,, +412,42,1,14333,853,1941.862,,,,,,144,71,0,,,,, +412,43,3,14334,853,1941.862,,,,,,144,21,0,,,,, +412,44,1,14335,938,1941.862,22,32,E6,f,20,144,88,20,,,,, +412,45,3,14336,938,1941.862,22,32,A0,f,20,144,21,20,,,,, +412,44,1,14335,938,1941.954,,,,,,144,88,0,,,,, +412,45,3,14336,938,1941.954,,,,,,144,21,0,,,,, +412,46,1,14337,960,1941.954,64,16,E6,f,20,144,88,20,,,,, +412,47,3,14338,960,1941.954,64,16,A0,f,20,144,21,20,,,,, +412,48,3,14339,960,1941.954,64,16,G1,f,20,144,31,20,,,,, +412,46,1,14337,960,1942.222,,,,,,144,88,0,,,,, +412,47,3,14338,960,1942.222,,,,,,144,21,0,,,,, +412,48,3,14339,960,1942.222,,,,,,144,31,0,,,,, +412,49,1,14340,1024,1942.222,85,8,A#3,ff,22,144,58,22,,,,, +412,50,1,14341,1024,1942.222,128,8,F4,ff,22,144,65,22,,,,, +412,51,1,14342,1024,1942.222,128,8,G#4,ff,22,144,68,22,,,,, +412,52,3,14343,1024,1942.222,85,8,C2,ff,22,144,36,22,,,,, +412,49,1,14340,1024,1942.578,,,,,,144,58,0,,,,, +412,52,3,14343,1024,1942.578,,,,,,144,36,0,,,,, +412,53,1,14344,1109,1942.578,128,8,E7,ff,22,144,100,22,,,,, +412,54,3,14345,1109,1942.578,,,,,,176,102,0,,,,, +412,50,1,14341,1024,1942.758,,,,,,144,65,0,,,,, +412,51,1,14342,1024,1942.758,,,,,,144,68,0,,,,, +412,53,1,14344,1109,1943.114,,,,,,144,100,0,,,,, +412,55,0,14346,1237,1943.114,,,,,,176,64,0,,,,,^ +412,56,1,14347,1237,1943.114,43,16,A#4,pp,8,144,70,8,,,,, +412,57,1,14348,1237,1943.114,64,16,E5,pp,8,144,76,8,,,,, +412,58,3,14349,1237,1943.114,43,16,F#2,pp,8,144,42,8,,,,, +412,59,3,14350,1237,1943.114,64,16,B2,pp,8,144,47,8,,,,, +412,60,3,14351,1237,1943.114,64,16,D3,pp,8,144,50,8,,,,, +412,56,1,14347,1237,1943.294,,,,,,144,70,0,,,,, +412,58,3,14349,1237,1943.294,,,,,,144,42,0,,,,, +413,0,0,14352,0,1943.294,,,,,,,,,413,,,, +413,1,1,14353,0,1943.294,128,8,B4,pp,8,144,71,8,,,,, +413,2,3,14354,0,1943.294,,,,,,176,102,0,,,,, +412,57,1,14348,1237,1943.381,,,,,,144,76,0,,,,, +412,59,3,14350,1237,1943.381,,,,,,144,47,0,,,,, +412,60,3,14351,1237,1943.381,,,,,,144,50,0,,,,, +413,1,1,14353,0,1943.829,,,,,,144,71,0,,,,, +413,3,1,14355,128,1943.829,128,8,B6,ff,22,144,95,22,,,,, +413,4,3,14356,128,1943.829,128,8,A2,ff,22,144,45,22,,,,, +413,5,3,14357,128,1943.829,128,8,F3,ff,22,144,53,22,,,,, +413,3,1,14355,128,1944.365,,,,,,144,95,0,,,,, +413,4,3,14356,128,1944.365,,,,,,144,45,0,,,,, +413,5,3,14357,128,1944.365,,,,,,144,53,0,,,,, +413,6,1,14358,256,1944.365,,,,,,176,102,0,,,,, +413,7,3,14359,,1944.365,,8,D#3,f,20,144,51,20,,,,g, +413,7,3,14359,,1944.415,,,,,,144,51,0,,,,, +413,8,3,14360,,1944.44,,8,E6,f-,19,144,88,19,,,,g, +413,8,3,14360,,1944.49,,,,,,144,88,0,,,,, +413,9,3,14361,256,1944.515,76,16,D#3,f-,19,144,51,19,,,,, +413,10,3,14362,256,1944.515,64,16,B3,f-,19,144,59,19,,,,, +413,10,3,14362,256,1944.783,,,,,,144,59,0,,,,, +413,9,3,14361,256,1944.833,,,,,,144,51,0,,,,, +413,12,3,14363,332,1944.833,52,16,D#3,mf,17,144,51,17,,,,, +413,11,0,14364,332,1944.833,,,,,,176,64,127,,,,,V +413,12,3,14363,332,1945.051,,,,,,144,51,0,,,,, +413,13,1,14365,384,1945.051,85,8,B4,mp+,15,144,71,15,,,,, +413,14,3,14366,384,1945.051,,,,,,176,102,0,,,,, +413,15,3,14367,426,1945.227,43,16,A1,mp,14,144,33,14,,,,, +413,13,1,14365,384,1945.406,,,,,,144,71,0,,,,, +413,15,3,14367,426,1945.406,,,,,,144,33,0,,,,, +413,16,1,14368,469,1945.406,43,16,E5,mp-,13,144,76,13,,,,, +413,17,3,14369,469,1945.406,43,16,A0,mp-,13,144,21,13,,,,, +413,16,1,14368,469,1945.586,,,,,,144,76,0,,,,, +413,17,3,14369,469,1945.586,,,,,,144,21,0,,,,, +413,18,1,14370,512,1945.586,85,8,B4,p+,12,144,71,12,,,,, +413,19,3,14371,512,1945.586,,,,,,176,102,0,,,,, +413,20,3,14372,554,1945.762,22,32,A1,p-,10,144,33,10,,,,, +413,20,3,14372,554,1945.854,,,,,,144,33,0,,,,, +413,21,3,14373,576,1945.854,21,32,G2,p-,10,144,43,10,,,,, +413,18,1,14370,512,1945.942,,,,,,144,71,0,,,,, +413,21,3,14373,576,1945.942,,,,,,144,43,0,,,,, +413,22,1,14374,597,1945.942,,,,,,176,102,0,,,,, +413,23,3,14375,597,1945.942,43,16,A1,pp+,9,144,33,9,,,,, +413,23,3,14375,597,1946.122,,,,,,144,33,0,,,,, +413,24,0,14376,640,1946.122,,,,,,176,64,0,,,,,^ +413,25,1,14377,640,1946.122,42,16,E5,pp,8,144,76,8,,,,, +413,26,3,14378,640,1946.122,42,16,A1,pp,8,144,33,8,,,,, +413,25,1,14377,640,1946.298,,,,,,144,76,0,,,,, +413,26,3,14378,640,1946.298,,,,,,144,33,0,,,,, +413,27,1,14379,682,1946.298,,,,,,176,102,0,,,,, +413,28,3,14380,682,1946.298,43,16,G2,pp,8,144,43,8,,,,, +413,28,3,14380,682,1946.478,,,,,,144,43,0,,,,, +413,29,3,14381,725,1946.478,,,,,,176,102,0,,,,, +413,30,1,14382,768,1946.658,,,,,,176,102,0,,,,, +413,31,3,14383,768,1946.658,,,,,,176,102,0,,,,, +413,32,0,14384,768,1946.658,,,,,,,,,,6063,,, +413,34,3,14385,881,1947.131,,,,,,176,102,0,,,,, +413,33,0,14386,881,1947.131,,,,,,176,64,127,,,,,V +413,35,3,14387,910,1947.252,28,32,F5,pp,8,144,77,8,,,,, +413,35,3,14387,910,1947.369,,,,,,144,77,0,,,,, +413,36,3,14388,938,1947.369,29,32,G#2,pp,8,144,44,8,,,,, +413,36,3,14388,938,1947.491,,,,,,144,44,0,,,,, +413,37,3,14389,967,1947.491,28,32,C3,pp,8,144,48,8,,,,, +413,37,3,14389,967,1947.608,,,,,,144,48,0,,,,, +413,38,3,14390,995,1947.608,29,32,F6,pp,8,144,89,8,,,,, +413,38,3,14390,995,1947.729,,,,,,144,89,0,,,,, +413,39,1,14391,1024,1947.729,,,,,,176,102,0,,,,, +413,40,3,14392,1024,1947.729,,,,,,176,102,0,,,,, +414,0,0,14393,0,1948.801,,,,,,,,,414,,,, +414,1,1,14394,0,1948.801,85,8,B4,pp,8,144,71,8,,,,, +414,2,3,14395,0,1948.801,170,4,D#4,f,20,144,63,20,,,,, +414,1,1,14394,0,1949.156,,,,,,144,71,0,,,,, +414,3,1,14396,85,1949.156,85,8,D6,pp,8,144,86,8,,,,, +414,2,3,14395,0,1949.512,,,,,,144,63,0,,,,, +414,3,1,14396,85,1949.512,,,,,,144,86,0,,,,, +414,4,1,14397,170,1949.512,86,8,D6,fff,24,144,86,23,,,,, +414,5,3,14398,170,1949.512,43,16,A#4,fff,24,144,70,23,,,,, +414,5,3,14398,170,1949.692,,,,,,144,70,0,,,,, +414,6,3,14399,213,1949.692,43,16,F#2,fff,24,144,42,23,,,,, +414,7,3,14400,213,1949.692,64,16,C3,fff,24,144,48,23,,,,, +414,8,3,14401,213,1949.692,64,16,G3,fff,24,144,55,23,,,,, +414,9,0,14402,255,1949.818,,,,,,176,64,0,,,,,^ +414,4,1,14397,170,1949.872,,,,,,144,86,0,,,,, +414,6,3,14399,213,1949.872,,,,,,144,42,0,,,,, +414,10,1,14403,256,1949.872,,,,,,176,102,0,,,,, +414,11,3,14404,256,1949.872,128,8,D#4,mf,17,144,63,17,,,,, +414,7,3,14400,213,1949.96,,,,,,144,48,0,,,,, +414,8,3,14401,213,1949.96,,,,,,144,55,0,,,,, +414,12,0,14405,303,1950.118,,,,,,176,64,127,,,,,V +414,11,3,14404,256,1950.408,,,,,,144,63,0,,,,, +414,13,3,14406,384,1950.408,42,16,D#4,mf,17,144,63,17,,,,, +414,13,3,14406,384,1950.584,,,,,,144,63,0,,,,, +414,14,3,14407,426,1950.584,64,16,B5,mf-,16,144,83,16,,,,, +414,14,3,14407,426,1950.852,,,,,,144,83,0,,,,, +414,15,3,14408,490,1950.852,22,32,E6,mp,14,144,88,14,,,,, +414,15,3,14408,490,1950.944,,,,,,144,88,0,,,,, +414,16,1,14409,512,1950.944,,,,,,176,102,0,,,,, +414,17,3,14410,512,1950.944,21,32,A2,mp-,13,144,45,13,,,,, +414,17,3,14410,512,1951.031,,,,,,144,45,0,,,,, +414,18,3,14411,533,1951.031,21,32,E6,mp-,13,144,88,13,,,,, +414,18,3,14411,533,1951.119,,,,,,144,88,0,,,,, +414,19,3,14412,554,1951.119,22,32,A2,p+,12,144,45,12,,,,, +414,19,3,14412,554,1951.211,,,,,,144,45,0,,,,, +414,20,3,14413,576,1951.211,21,32,E6,p+,12,144,88,12,,,,, +414,20,3,14413,576,1951.299,,,,,,144,88,0,,,,, +414,21,1,14414,597,1951.299,43,16,A2,p,11,144,45,11,,,,, +414,22,3,14415,597,1951.299,43,16,E6,p,11,144,88,11,,,,, +414,21,1,14414,597,1951.479,,,,,,144,45,0,,,,, +414,22,3,14415,597,1951.479,,,,,,144,88,0,,,,, +414,23,1,14416,640,1951.479,21,32,G5,f,20,144,79,20,,,,, +414,24,1,14417,640,1951.479,32,32,A6,mp,14,144,93,14,,,,, +414,25,3,14418,640,1951.479,64,16,G3,fff,24,144,55,23,,,,, +414,23,1,14416,640,1951.567,,,,,,144,79,0,,,,, +414,26,1,14419,661,1951.567,21,32,A#5,f,20,144,82,20,,,,, +414,24,1,14417,640,1951.613,,,,,,144,93,0,,,,, +414,26,1,14419,661,1951.655,,,,,,144,82,0,,,,, +414,27,1,14420,682,1951.655,22,32,F#3,f,20,144,54,20,,,,, +414,25,3,14418,640,1951.747,,,,,,144,55,0,,,,, +414,27,1,14420,682,1951.747,,,,,,144,54,0,,,,, +414,28,1,14421,704,1951.747,32,32,G5,f,20,144,79,20,,,,, +414,29,3,14422,704,1951.747,21,32,A#2,mp,14,144,46,14,,,,, +414,30,3,14423,725,1951.835,43,16,A2,p,11,144,45,11,,,,, +414,31,3,14424,725,1951.835,64,16,G3,p,11,144,55,11,,,,, +414,32,3,14425,725,1951.835,64,16,D#4,p,11,144,63,11,,,,, +414,33,3,14426,725,1951.835,64,16,A#4,p,11,144,70,11,,,,, +414,34,3,14427,725,1951.835,64,16,E5,p,11,144,76,11,,,,, +414,35,1,14428,736,1951.881,32,32,F#3,mf+,18,144,54,18,,,,, +414,29,3,14422,704,1951.985,,,,,,144,46,0,,,,, +414,30,3,14423,725,1952.015,,,,,,144,45,0,,,,, +414,35,1,14428,736,1952.015,,,,,,144,54,0,,,,, +414,36,1,14429,768,1952.015,21,32,A#5,mp+,15,144,82,15,,,,, +414,37,3,14430,768,1952.015,85,8,C#6,mf,17,144,85,17,,,,, +414,28,1,14421,704,1952.031,,,,,,144,79,0,,,,, +414,31,3,14424,725,1952.103,,,,,,144,55,0,,,,, +414,32,3,14425,725,1952.103,,,,,,144,63,0,,,,, +414,33,3,14426,725,1952.103,,,,,,144,70,0,,,,, +414,34,3,14427,725,1952.103,,,,,,144,76,0,,,,, +414,36,1,14429,768,1952.103,,,,,,144,82,0,,,,, +414,38,1,14431,789,1952.103,21,32,F#3,mp,14,144,54,14,,,,, +414,38,1,14431,789,1952.191,,,,,,144,54,0,,,,, +414,39,1,14432,810,1952.191,22,32,C4,mp-,13,144,60,13,,,,, +414,39,1,14432,810,1952.283,,,,,,144,60,0,,,,, +414,40,1,14433,832,1952.283,21,32,D6,p,11,144,86,11,,,,, +414,37,3,14430,768,1952.371,,,,,,144,85,0,,,,, +414,40,1,14433,832,1952.371,,,,,,144,86,0,,,,, +414,41,1,14434,853,1952.371,21,32,A#5,pp+,9,144,82,9,,,,, +414,42,3,14435,853,1952.371,43,16,F4,mf+,18,144,65,18,,,,, +414,41,1,14434,853,1952.459,,,,,,144,82,0,,,,, +414,43,1,14436,874,1952.459,22,32,F#3,pp,8,144,54,8,,,,, +414,42,3,14435,853,1952.551,,,,,,144,65,0,,,,, +414,43,1,14436,874,1952.551,,,,,,144,54,0,,,,, +414,44,1,14437,896,1952.551,32,32,G5,pp,8,144,79,8,,,,, +414,45,3,14438,896,1952.551,,,,,,176,102,0,,,,, +414,44,1,14437,896,1952.685,,,,,,144,79,0,,,,, +414,46,1,14439,928,1952.685,32,32,A#5,pp-,7,144,82,7,,,,, +414,46,1,14439,928,1952.819,,,,,,144,82,0,,,,, +414,47,1,14440,960,1952.819,32,32,C4,pp-,7,144,60,7,,,,, +414,47,1,14440,960,1952.953,,,,,,144,60,0,,,,, +414,48,1,14441,992,1952.953,,,,,,176,102,0,,,,, +414,49,0,14442,999,1952.982,,,,,,176,64,0,,,,,^ +414,51,1,14443,1024,1953.086,256,4,A#4,mf,17,144,70,17,,,,, +414,52,1,14444,1024,1953.086,256,4,E5,p,11,144,76,11,,,,, +414,53,3,14445,,1953.086,,8,F#1,mf,17,144,30,17,,,,g, +414,53,3,14445,,1953.136,,,,,,144,30,0,,,,, +414,54,3,14446,,1953.161,,8,G2,mf,17,144,43,17,,,,g, +414,54,3,14446,,1953.211,,,,,,144,43,0,,,,, +414,55,3,14447,,1953.236,,8,F#1,mf,17,144,30,17,,,,g, +414,55,3,14447,,1953.286,,,,,,144,30,0,,,,, +414,56,3,14448,1024,1953.311,256,4,F#1,mf,17,144,30,17,,,,, +414,57,3,14449,1024,1953.311,256,4,G#1,f,20,144,32,20,,,,, +414,58,3,14450,1024,1953.311,256,4,G2,mf,17,144,43,17,,,,, +414,50,0,14451,1024,1953.311,,,,,,176,64,127,,,,,V +415,0,0,14452,0,1954.383,,,,,,,,,415,,,, +415,1,1,14453,0,1954.383,128,8,A#4,,,,,,,,,, +415,2,1,14454,0,1954.383,128,8,E5,,,,,,,,,, +415,3,3,14455,0,1954.383,128,8,F#1,,,,,,,,,, +415,4,3,14456,0,1954.383,128,8,G#1,,,,,,,,,, +415,5,3,14457,0,1954.383,128,8,G2,,,,,,,,,, +414,51,1,14443,1024,1954.694,,,,,,144,70,0,,,,, +414,52,1,14444,1024,1954.694,,,,,,144,76,0,,,,, +414,56,3,14448,1024,1954.919,,,,,,144,30,0,,,,, +414,57,3,14449,1024,1954.919,,,,,,144,32,0,,,,, +414,58,3,14450,1024,1954.919,,,,,,144,43,0,,,,, +415,6,1,14458,128,1954.919,128,8,E5,p,11,144,76,11,,,,, +415,7,3,14459,128,1954.919,,,,,,176,102,0,,,,, +415,9,0,14460,234,1955.258,,,,,,176,64,0,,,,,^ +415,8,3,14461,213,1955.274,21,32,B2,p,11,144,47,11,,,,, +415,8,3,14461,213,1955.362,,,,,,144,47,0,,,,, +415,10,3,14462,234,1955.362,22,32,F#2,p,11,144,42,11,,,,, +415,11,0,14463,234,1955.362,,,,,,,,,,6064,,, +415,6,1,14458,128,1955.454,,,,,,144,76,0,,,,, +415,10,3,14462,234,1955.454,,,,,,144,42,0,,,,, +415,13,1,14464,256,1955.454,341,2,A#4,p,11,144,70,11,,,,, +415,14,1,14465,256,1955.454,512,2,E5,mp,14,144,76,14,,,,, +415,15,3,14466,256,1955.454,341,2,F#1,pp,8,144,30,8,,,,, +415,16,3,14467,256,1955.454,512,2,G2,pp,8,144,43,8,,,,, +415,12,0,14468,256,1955.558,,,,,,176,64,127,,,,,V +415,13,1,14464,256,1956.881,,,,,,144,70,0,,,,, +415,15,3,14466,256,1956.881,,,,,,144,30,0,,,,, +415,16,3,14467,256,1956.881,,,,,,144,43,0,,,,, +415,17,1,14469,597,1956.881,21,32,A#4,mp,14,144,70,14,,,,, +415,18,1,14470,597,1956.881,32,32,D5,mp,14,144,74,14,,,,, +415,19,3,14471,597,1956.881,21,32,F#1,mp,14,144,30,14,,,,, +415,20,3,14472,597,1956.881,32,32,G2,mp,14,144,43,14,,,,, +415,17,1,14469,597,1956.969,,,,,,144,70,0,,,,, +415,18,1,14470,597,1956.969,,,,,,144,74,0,,,,, +415,19,3,14471,597,1956.969,,,,,,144,30,0,,,,, +415,21,1,14473,618,1956.969,22,32,A#4,f,20,144,70,20,,,,, +415,22,1,14474,618,1956.969,32,32,D5,f,20,144,74,20,,,,, +415,23,3,14475,618,1956.969,22,32,C2,f,20,144,36,20,,,,, +415,14,1,14465,256,1957.061,,,,,,144,76,0,,,,, +415,21,1,14473,618,1957.061,,,,,,144,70,0,,,,, +415,23,3,14475,618,1957.061,,,,,,144,36,0,,,,, +415,24,1,14476,640,1957.061,85,8,A#4,mp,14,144,70,14,,,,, +415,25,1,14477,640,1957.061,128,8,E5,mp,14,144,76,14,,,,, +415,26,3,14478,640,1957.061,128,8,B2,mp,14,144,47,14,,,,, +415,22,1,14474,618,1957.103,,,,,,144,74,0,,,,, +415,24,1,14476,640,1957.417,,,,,,144,70,0,,,,, +415,27,0,14479,725,1957.417,,,,,,176,64,0,,,,,^ +415,28,1,14480,725,1957.417,43,16,G4,mp,14,144,67,14,,,,, +415,25,1,14477,640,1957.597,,,,,,144,76,0,,,,, +415,26,3,14478,640,1957.597,,,,,,144,47,0,,,,, +415,29,1,14481,768,1957.597,21,32,G4,,,,,,,,,, +415,30,1,14482,768,1957.597,32,32,A#4,p,11,144,70,11,,,,, +415,31,1,14483,768,1957.597,32,32,E5,p,11,144,76,11,,,,, +415,32,3,14484,768,1957.597,21,32,B2,p,11,144,47,11,,,,, +415,20,3,14472,597,1957.672,,,,,,144,43,0,,,,, +415,32,3,14484,768,1957.685,,,,,,144,47,0,,,,, +415,33,1,14485,789,1957.685,21,32,G4,,,,,,,,,, +415,34,3,14486,789,1957.685,21,32,F#2,p-,10,144,42,10,,,,, +415,30,1,14482,768,1957.731,,,,,,144,70,0,,,,, +415,31,1,14483,768,1957.731,,,,,,144,76,0,,,,, +415,34,3,14486,789,1957.773,,,,,,144,42,0,,,,, +415,35,1,14487,810,1957.773,22,32,G4,,,,,,,,,, +415,36,1,14488,810,1957.773,32,32,A#4,pp+,9,144,70,9,,,,, +415,37,1,14489,810,1957.773,32,32,E5,pp+,9,144,76,9,,,,, +415,38,3,14490,810,1957.773,22,32,B2,pp+,9,144,47,9,,,,, +415,38,3,14490,810,1957.865,,,,,,144,47,0,,,,, +415,39,1,14491,832,1957.865,21,32,G4,,,,,,,,,, +415,40,3,14492,832,1957.865,21,32,F#2,pp,8,144,42,8,,,,, +415,41,3,14493,832,1957.865,32,32,B2,pp,8,144,47,8,,,,, +415,42,3,14494,832,1957.865,32,32,D3,pp,8,144,50,8,,,,, +415,36,1,14488,810,1957.907,,,,,,144,70,0,,,,, +415,37,1,14489,810,1957.907,,,,,,144,76,0,,,,, +415,40,3,14492,832,1957.953,,,,,,144,42,0,,,,, +415,44,1,14495,853,1957.953,85,8,G4,,,,,,,,,, +415,45,3,14496,853,1957.953,128,8,C3,ff,22,144,48,22,,,,, +415,43,0,14497,853,1957.953,,,,,,176,64,127,,,,,V +415,41,3,14493,832,1957.999,,,,,,144,47,0,,,,, +415,42,3,14494,832,1957.999,,,,,,144,50,0,,,,, +415,28,1,14480,725,1958.309,,,,,,144,67,0,,,,, +415,46,1,14498,938,1958.309,86,8,F#3,mf,17,144,54,17,,,,, +415,47,1,14499,938,1958.309,128,8,G4,mf,17,144,67,17,,,,, +415,45,3,14496,853,1958.489,,,,,,144,48,0,,,,, +415,48,3,14500,981,1958.489,43,16,G#1,ff,22,144,32,22,,,,, +415,49,3,14501,981,1958.489,64,16,C3,ff,22,144,48,22,,,,, +415,46,1,14498,938,1958.669,,,,,,144,54,0,,,,, +415,48,3,14500,981,1958.669,,,,,,144,32,0,,,,, +415,50,1,14502,1024,1958.669,,,,,,176,102,0,,,,, +415,51,3,14503,1024,1958.669,,,,,,176,102,0,,,,, +415,49,3,14501,981,1958.756,,,,,,144,48,0,,,,, +415,47,1,14499,938,1958.844,,,,,,144,67,0,,,,, +415,52,1,14504,1109,1959.024,171,4,F6,ff,22,144,89,22,,,,, +415,53,3,14505,1109,1959.024,171,4,C3,ff,22,144,48,22,,,,, +415,52,1,14504,1109,1959.74,,,,,,144,89,0,,,,, +415,53,3,14505,1109,1959.74,,,,,,144,48,0,,,,, +416,0,0,14506,0,1959.74,,,,,,,,,416,,,, +416,1,1,14507,0,1959.74,,,,,,176,102,0,,,,, +416,2,3,14508,0,1959.74,,,,,,176,102,0,,,,, +416,3,1,14509,85,1960.096,171,4,A#5,ff,22,144,82,22,,,,, +416,4,1,14510,85,1960.096,256,4,F6,ff,22,144,89,22,,,,, +416,5,3,14511,85,1960.096,38,32,F3,f,20,144,53,20,,,,, +416,6,3,14512,85,1960.096,32,32,G4,f,20,144,67,20,,,,, +416,6,3,14512,85,1960.23,,,,,,144,67,0,,,,, +416,5,3,14511,85,1960.255,,,,,,144,53,0,,,,, +416,7,3,14513,123,1960.255,25,32,B5,mf+,18,144,83,18,,,,, +416,7,3,14513,123,1960.359,,,,,,144,83,0,,,,, +416,8,3,14514,148,1960.359,25,32,C4,mf,17,144,60,17,,,,, +416,8,3,14514,148,1960.464,,,,,,144,60,0,,,,, +416,9,3,14515,173,1960.464,39,32,D7,mp+,15,144,98,15,,,,, +416,9,3,14515,173,1960.627,,,,,,144,98,0,,,,, +416,10,3,14516,212,1960.627,26,32,C4,mp-,13,144,60,13,,,,, +416,10,3,14516,212,1960.736,,,,,,144,60,0,,,,, +416,11,3,14517,238,1960.736,39,32,B5,p+,12,144,83,12,,,,, +416,3,1,14509,85,1960.811,,,,,,144,82,0,,,,, +416,12,1,14518,256,1960.811,,,,,,176,102,0,,,,, +416,11,3,14517,238,1960.899,,,,,,144,83,0,,,,, +416,13,3,14519,277,1960.899,38,32,D7,p-,10,144,98,10,,,,, +416,13,3,14519,277,1961.058,,,,,,144,98,0,,,,, +416,14,3,14520,315,1961.058,26,32,C4,pp,8,144,60,8,,,,, +416,4,1,14510,85,1961.167,,,,,,144,89,0,,,,, +416,14,3,14520,315,1961.167,,,,,,144,60,0,,,,, +416,15,3,14521,341,1961.167,85,8,F6,ff,22,144,89,22,,,,, +416,16,3,14522,341,1961.167,128,8,E7,ff,22,144,100,22,,,,, +416,15,3,14521,341,1961.523,,,,,,144,89,0,,,,, +416,17,3,14523,426,1961.523,22,32,F#1,pp,8,144,30,8,,,,, +416,17,3,14523,426,1961.615,,,,,,144,30,0,,,,, +416,18,3,14524,448,1961.615,21,32,G2,pp,8,144,43,8,,,,, +416,16,3,14522,341,1961.703,,,,,,144,100,0,,,,, +416,18,3,14524,448,1961.703,,,,,,144,43,0,,,,, +416,19,3,14525,469,1961.703,21,32,F#1,pp,8,144,30,8,,,,, +416,19,3,14525,469,1961.791,,,,,,144,30,0,,,,, +416,20,3,14526,490,1961.791,22,32,C2,pp,8,144,36,8,,,,, +416,20,3,14526,490,1961.883,,,,,,144,36,0,,,,, +416,21,1,14527,512,1961.883,,,,,,176,102,0,,,,, +416,22,3,14528,512,1961.883,85,8,A#2,pp,8,144,46,8,,,,, +416,22,3,14528,512,1962.239,,,,,,144,46,0,,,,, +416,23,1,14529,597,1962.239,128,8,A#3,pp,8,144,58,8,,,,, +416,24,1,14530,597,1962.239,128,8,D4,pp,8,144,62,8,,,,, +416,25,3,14531,597,1962.239,171,4,F#1,pp,8,144,30,8,,,,, +416,26,3,14532,597,1962.239,256,4,C2,pp,8,144,36,8,,,,, +416,27,3,14533,597,1962.239,256,4,G2,pp,8,144,43,8,,,,, +416,28,1,14534,725,1962.774,21,32,A6,p,11,144,93,11,,,,, +416,23,1,14529,597,1962.849,,,,,,144,58,0,,,,, +416,24,1,14530,597,1962.849,,,,,,144,62,0,,,,, +416,28,1,14534,725,1962.862,,,,,,144,93,0,,,,, +416,29,0,14535,746,1962.862,,,,,,176,64,0,,,,,^ +416,30,1,14536,746,1962.862,22,32,A#2,p+,12,144,46,12,,,,, +416,30,1,14536,746,1962.954,,,,,,144,46,0,,,,, +416,31,1,14537,768,1962.954,42,16,C#6,mp-,13,144,85,13,,,,, +416,32,1,14538,768,1962.954,64,16,A6,mp-,13,144,93,13,,,,, +416,33,3,14539,768,1962.954,,,,,,176,102,0,,,,, +416,25,3,14531,597,1963.029,,,,,,144,30,0,,,,, +416,31,1,14537,768,1963.13,,,,,,144,85,0,,,,, +416,34,1,14540,810,1963.13,43,16,F4,mp,14,144,65,14,,,,, +416,32,1,14538,768,1963.222,,,,,,144,93,0,,,,, +416,34,1,14540,810,1963.31,,,,,,144,65,0,,,,, +416,35,1,14541,853,1963.31,43,16,A#2,mp+,15,144,46,15,,,,, +416,26,3,14532,597,1963.385,,,,,,144,36,0,,,,, +416,27,3,14533,597,1963.385,,,,,,144,43,0,,,,, +416,35,1,14541,853,1963.49,,,,,,144,46,0,,,,, +416,37,1,14542,896,1963.49,128,8,E2,mf,17,144,40,17,,,,, +416,38,3,14543,896,1963.49,128,8,F#2,pp,8,144,42,8,,,,, +416,39,3,14544,896,1963.49,128,8,B2,pp,8,144,47,8,,,,, +416,40,3,14545,896,1963.49,128,8,D3,pp,8,144,50,8,,,,, +416,41,3,14546,896,1963.49,128,8,A#4,pp,8,144,70,8,,,,, +416,42,3,14547,896,1963.49,128,8,E5,pp,8,144,76,8,,,,, +416,36,0,14548,896,1963.49,,,,,,176,64,127,,,,,V +416,37,1,14542,896,1964.026,,,,,,144,40,0,,,,, +416,43,1,14549,1024,1964.026,,,,,,176,102,0,,,,, +416,44,3,14550,1024,1964.026,128,8,F#2,,,,,,,,,, +416,45,3,14551,1024,1964.026,128,8,B2,,,,,,,,,, +416,46,3,14552,1024,1964.026,128,8,D3,,,,,,,,,, +416,47,3,14553,1024,1964.026,128,8,A#4,,,,,,,,,, +416,48,3,14554,1024,1964.026,128,8,E5,,,,,,,,,, +416,49,0,14555,1152,1964.561,,,,,,176,64,0,,,,,^ +416,50,1,14556,1152,1964.561,21,32,A#4,pp,8,144,70,8,,,,, +416,51,1,14557,1152,1964.561,32,32,E5,pp,8,144,76,8,,,,, +416,52,3,14558,1152,1964.561,21,32,F#2,pp,8,144,42,8,,,,, +416,53,3,14559,1152,1964.561,32,32,B2,pp,8,144,47,8,,,,, +416,54,3,14560,1152,1964.561,32,32,D3,pp,8,144,50,8,,,,, +416,38,3,14543,896,1964.561,,,,,,144,42,0,,,,, +416,39,3,14544,896,1964.561,,,,,,144,47,0,,,,, +416,40,3,14545,896,1964.561,,,,,,144,50,0,,,,, +416,41,3,14546,896,1964.561,,,,,,144,70,0,,,,, +416,42,3,14547,896,1964.561,,,,,,144,76,0,,,,, +416,50,1,14556,1152,1964.649,,,,,,144,70,0,,,,, +416,52,3,14558,1152,1964.649,,,,,,144,42,0,,,,, +416,55,1,14561,1173,1964.649,21,32,A4,pp,8,144,69,8,,,,, +416,56,3,14562,1173,1964.649,21,32,F2,pp,8,144,41,8,,,,, +416,57,3,14563,1173,1964.649,32,32,C#3,pp,8,144,49,8,,,,, +416,51,1,14557,1152,1964.695,,,,,,144,76,0,,,,, +416,53,3,14559,1152,1964.695,,,,,,144,47,0,,,,, +416,54,3,14560,1152,1964.695,,,,,,144,50,0,,,,, +416,55,1,14561,1173,1964.737,,,,,,144,69,0,,,,, +416,56,3,14562,1173,1964.737,,,,,,144,41,0,,,,, +416,57,3,14563,1173,1964.737,,,,,,144,49,0,,,,, +416,58,1,14564,1194,1964.737,43,16,G#3,pp,8,144,56,8,,,,, +416,59,3,14565,1194,1964.737,43,16,F2,pp,8,144,41,8,,,,, +416,60,3,14566,1194,1964.737,64,16,C#3,pp,8,144,49,8,,,,, +416,58,1,14564,1194,1964.917,,,,,,144,56,0,,,,, +416,59,3,14565,1194,1964.917,,,,,,144,41,0,,,,, +416,61,1,14567,1237,1964.917,,,,,,176,102,0,,,,, +416,62,3,14568,1237,1964.917,43,16,D2,pp,8,144,38,8,,,,, +416,60,3,14566,1194,1965.005,,,,,,144,49,0,,,,, +417,0,0,14569,0,1965.097,,,,,,,,,417,,,, +417,2,1,14570,0,1965.097,,,,,,176,102,0,,,,, +417,3,3,14571,0,1965.097,64,16,D2,,,,,,,,,, +417,1,0,14572,0,1965.097,,,,,,176,64,127,,,,,V +416,62,3,14568,1237,1965.365,,,,,,144,38,0,,,,, +417,4,3,14573,64,1965.365,21,32,G#1,mp,14,144,32,14,,,,, +417,4,3,14573,64,1965.453,,,,,,144,32,0,,,,, +417,5,3,14574,85,1965.453,21,32,F5,mp,14,144,77,14,,,,, +417,5,3,14574,85,1965.541,,,,,,144,77,0,,,,, +417,6,3,14575,106,1965.541,22,32,C3,mp-,13,144,48,13,,,,, +417,6,3,14575,106,1965.633,,,,,,144,48,0,,,,, +417,7,3,14576,128,1965.633,32,32,G#2,mp-,13,144,44,13,,,,, +417,7,3,14576,128,1965.767,,,,,,144,44,0,,,,, +417,8,3,14577,160,1965.767,32,32,C3,p+,12,144,48,12,,,,, +417,8,3,14577,160,1965.901,,,,,,144,48,0,,,,, +417,9,1,14578,192,1965.901,64,16,F5,p,11,144,77,11,,,,, +417,10,3,14579,192,1965.901,21,32,G#2,p,11,144,44,11,,,,, +417,10,3,14579,192,1965.989,,,,,,144,44,0,,,,, +417,11,3,14580,213,1965.989,21,32,C3,p,11,144,48,11,,,,, +417,11,3,14580,213,1966.077,,,,,,144,48,0,,,,, +417,12,3,14581,234,1966.077,22,32,E6,p-,10,144,88,10,,,,, +417,9,1,14578,192,1966.169,,,,,,144,77,0,,,,, +417,12,3,14581,234,1966.169,,,,,,144,88,0,,,,, +417,13,1,14582,256,1966.169,,,,,,176,102,0,,,,, +417,14,3,14583,256,1966.169,21,32,C3,p-,10,144,48,10,,,,, +417,15,3,14584,256,1966.169,32,32,A#3,p-,10,144,58,10,,,,, +417,14,3,14583,256,1966.256,,,,,,144,48,0,,,,, +417,16,3,14585,277,1966.256,32,32,F5,pp+,9,144,77,9,,,,, +417,17,3,14586,277,1966.256,32,32,E6,pp+,9,144,88,9,,,,, +417,15,3,14584,256,1966.303,,,,,,144,58,0,,,,, +417,16,3,14585,277,1966.39,,,,,,144,77,0,,,,, +417,17,3,14586,277,1966.39,,,,,,144,88,0,,,,, +417,18,3,14587,309,1966.39,32,32,C3,pp+,9,144,48,9,,,,, +417,19,3,14588,309,1966.39,32,32,A#3,pp+,9,144,58,9,,,,, +417,18,3,14587,309,1966.524,,,,,,144,48,0,,,,, +417,19,3,14588,309,1966.524,,,,,,144,58,0,,,,, +417,20,3,14589,341,1966.524,43,16,E6,pp,8,144,88,8,,,,, +417,20,3,14589,341,1966.704,,,,,,144,88,0,,,,, +417,21,1,14590,384,1966.704,,,,,,176,102,0,,,,, +417,22,3,14591,384,1966.704,,,,,,176,102,0,,,,, +417,23,3,14592,426,1966.88,43,16,F2,pp,8,144,41,8,,,,, +417,24,3,14593,426,1966.88,64,16,D3,pp,8,144,50,8,,,,, +417,23,3,14592,426,1967.06,,,,,,144,41,0,,,,, +417,25,1,14594,469,1967.06,43,16,G#3,pp,8,144,56,8,,,,, +417,26,1,14595,469,1967.06,64,16,A4,pp,8,144,69,8,,,,, +417,27,3,14596,469,1967.06,43,16,D2,pp,8,144,38,8,,,,, +417,24,3,14593,426,1967.148,,,,,,144,50,0,,,,, +417,25,1,14594,469,1967.24,,,,,,144,56,0,,,,, +417,27,3,14596,469,1967.24,,,,,,144,38,0,,,,, +417,30,0,14597,715,1967.24,,,,,,176,64,0,,,,,^ +417,28,1,14598,512,1967.24,,,,,,176,102,0,,,,, +417,29,3,14599,512,1967.24,,,,,,176,102,0,,,,, +417,31,0,14600,715,1967.24,,,,,,,,,,6065,,, +417,26,1,14595,469,1967.328,,,,,,144,69,0,,,,, +417,32,1,14601,768,1967.462,,,,,,176,102,0,,,,, +417,33,3,14602,768,1967.462,21,32,F2,mp,14,144,41,14,,,,, +417,34,3,14603,768,1967.462,32,32,C#3,mp,14,144,49,14,,,,, +417,33,3,14602,768,1967.55,,,,,,144,41,0,,,,, +417,35,3,14604,789,1967.55,21,32,D2,mf,17,144,38,17,,,,, +417,36,3,14605,789,1967.55,32,32,G#3,mf,17,144,56,17,,,,, +417,37,3,14606,789,1967.55,32,32,A4,mf,17,144,69,17,,,,, +417,34,3,14603,768,1967.596,,,,,,144,49,0,,,,, +417,35,3,14604,789,1967.638,,,,,,144,38,0,,,,, +417,39,3,14607,810,1967.638,,,,,,176,102,0,,,,, +417,38,0,14608,810,1967.638,,,,,,176,64,127,,,,,V +417,36,3,14605,789,1967.684,,,,,,144,56,0,,,,, +417,37,3,14606,789,1967.684,,,,,,144,69,0,,,,, +417,40,1,14609,832,1967.73,64,16,C4,p,11,144,60,11,,,,, +417,40,1,14609,832,1967.998,,,,,,144,60,0,,,,, +417,41,1,14610,896,1967.998,42,16,G5,p+,12,144,79,12,,,,, +417,42,3,14611,896,1967.998,,,,,,176,102,0,,,,, +417,41,1,14610,896,1968.173,,,,,,144,79,0,,,,, +417,43,1,14612,938,1968.173,86,8,F6,pp,8,144,89,8,,,,, +417,44,3,14613,992,1968.399,32,32,A#3,mf,17,144,58,17,,,,, +417,43,1,14612,938,1968.533,,,,,,144,89,0,,,,, +417,44,3,14613,992,1968.533,,,,,,144,58,0,,,,, +417,45,1,14614,1024,1968.533,256,4,F6,pp,8,144,89,8,,,,, +417,46,1,14615,1024,1968.533,256,4,A6,mf,17,144,93,17,,,,, +417,47,3,14616,1024,1968.533,64,16,G#2,pp,8,144,44,8,,,,, +417,48,3,14617,1024,1968.533,64,16,E3,pp,8,144,52,8,,,,, +417,49,3,14618,1024,1968.533,64,16,A#3,mf,17,144,58,17,,,,, +417,47,3,14616,1024,1968.801,,,,,,144,44,0,,,,, +417,48,3,14617,1024,1968.801,,,,,,144,52,0,,,,, +417,49,3,14618,1024,1968.801,,,,,,144,58,0,,,,, +417,50,3,14619,1088,1968.801,64,16,C#2,pp,8,144,37,8,,,,, +417,50,3,14619,1088,1969.069,,,,,,144,37,0,,,,, +417,51,3,14620,1152,1969.069,128,8,G#2,pp,8,144,44,8,,,,, +417,51,3,14620,1152,1969.605,,,,,,144,44,0,,,,, +418,0,0,14621,0,1969.605,,,,,,,,,418,,,, +418,1,1,14622,0,1969.605,73,16,A#3,mf,17,144,58,17,,,,, +418,2,3,14623,0,1969.605,,,,,,176,102,0,,,,, +417,45,1,14614,1024,1969.605,,,,,,144,89,0,,,,, +417,46,1,14615,1024,1969.605,,,,,,144,93,0,,,,, +418,1,1,14622,0,1969.91,,,,,,144,58,0,,,,, +418,3,1,14624,73,1969.91,109,16,A6,mf,17,144,93,17,,,,, +418,3,1,14624,73,1970.366,,,,,,144,93,0,,,,, +418,4,1,14625,182,1970.366,74,16,C#6,mf,17,144,85,17,,,,, +418,4,1,14625,182,1970.676,,,,,,144,85,0,,,,, +418,5,1,14626,256,1970.676,28,32,F6,pp,8,144,89,8,,,,, +418,6,1,14627,256,1970.676,32,32,G#6,pp,8,144,92,8,,,,, +418,7,3,14628,256,1970.676,73,16,G#2,mf,17,144,44,17,,,,, +418,8,3,14629,256,1970.676,64,16,E3,mf,17,144,52,17,,,,, +418,5,1,14626,256,1970.793,,,,,,144,89,0,,,,, +418,9,1,14630,284,1970.793,28,32,F3,pp,8,144,53,8,,,,, +418,6,1,14627,256,1970.81,,,,,,144,92,0,,,,, +418,9,1,14630,284,1970.911,,,,,,144,53,0,,,,, +418,10,1,14631,312,1970.911,29,32,D3,pp+,9,144,50,9,,,,, +418,8,3,14629,256,1970.944,,,,,,144,52,0,,,,, +418,7,3,14628,256,1970.982,,,,,,144,44,0,,,,, +418,11,3,14632,329,1970.982,109,16,A#3,mf,17,144,58,17,,,,, +418,10,1,14631,312,1971.032,,,,,,144,50,0,,,,, +418,12,1,14633,341,1971.032,28,32,C3,pp+,9,144,48,9,,,,, +418,13,1,14634,341,1971.032,32,32,C#4,pp+,9,144,61,9,,,,, +418,12,1,14633,341,1971.149,,,,,,144,48,0,,,,, +418,14,1,14635,369,1971.149,29,32,A7,pp+,9,144,105,9,,,,, +418,13,1,14634,341,1971.166,,,,,,144,61,0,,,,, +418,14,1,14635,369,1971.27,,,,,,144,105,0,,,,, +418,15,1,14636,398,1971.27,42,32,F3,p-,10,144,53,10,,,,, +418,11,3,14632,329,1971.438,,,,,,144,58,0,,,,, +418,16,3,14637,438,1971.438,74,16,E3,mf,17,144,52,17,,,,, +418,15,1,14636,398,1971.446,,,,,,144,53,0,,,,, +418,17,1,14638,440,1971.446,43,32,C#4,p-,10,144,61,10,,,,, +418,17,1,14638,440,1971.626,,,,,,144,61,0,,,,, +418,18,1,14639,483,1971.626,29,32,G#6,p,11,144,92,11,,,,, +418,18,1,14639,483,1971.748,,,,,,144,92,0,,,,, +418,19,1,14640,512,1971.748,28,32,F3,p,11,144,53,11,,,,, +418,20,1,14641,512,1971.748,32,32,C#4,p,11,144,61,11,,,,, +418,21,3,14642,512,1971.748,73,16,A#3,mf,17,144,58,17,,,,, +418,16,3,14637,438,1971.748,,,,,,144,52,0,,,,, +418,19,1,14640,512,1971.865,,,,,,144,53,0,,,,, +418,22,1,14643,540,1971.865,28,32,D3,p,11,144,50,11,,,,, +418,20,1,14641,512,1971.881,,,,,,144,61,0,,,,, +418,22,1,14643,540,1971.982,,,,,,144,50,0,,,,, +418,23,1,14644,568,1971.982,43,32,G#5,p+,12,144,80,12,,,,, +418,21,3,14642,512,1972.053,,,,,,144,58,0,,,,, +418,24,3,14645,585,1972.053,109,16,A6,mf,17,144,93,17,,,,, +418,23,1,14644,568,1972.162,,,,,,144,80,0,,,,, +418,25,1,14646,611,1972.162,29,32,D3,p+,12,144,50,12,,,,, +418,25,1,14646,611,1972.283,,,,,,144,50,0,,,,, +418,26,1,14647,640,1972.283,28,32,F3,p+,12,144,53,12,,,,, +418,27,1,14648,640,1972.283,32,32,C#4,p+,12,144,61,12,,,,, +418,24,3,14645,585,1972.4,,,,,,144,93,0,,,,, +418,26,1,14647,640,1972.4,,,,,,144,53,0,,,,, +418,28,1,14649,668,1972.4,28,32,A6,mp-,13,144,93,13,,,,, +418,27,1,14648,640,1972.417,,,,,,144,61,0,,,,, +418,29,3,14650,694,1972.509,74,16,C#6,mf,17,144,85,17,,,,, +418,28,1,14649,668,1972.518,,,,,,144,93,0,,,,, +418,30,1,14651,696,1972.518,43,32,D3,mp-,13,144,50,13,,,,, +418,30,1,14651,696,1972.698,,,,,,144,50,0,,,,, +418,31,1,14652,739,1972.698,29,32,G#5,mp,14,144,80,14,,,,, +418,32,1,14653,739,1972.698,32,32,A6,mp,14,144,93,14,,,,, +418,31,1,14652,739,1972.819,,,,,,144,80,0,,,,, +418,32,1,14653,739,1972.819,,,,,,144,93,0,,,,, +418,33,3,14654,768,1972.819,73,16,E2,mp,14,144,40,14,,,,, +418,34,3,14655,768,1972.819,64,16,G#2,mp,14,144,44,14,,,,, +418,35,3,14656,768,1972.819,64,16,A#2,mp,14,144,46,14,,,,, +418,36,3,14657,768,1972.819,64,16,C3,mp,14,144,48,14,,,,, +418,37,3,14658,768,1972.819,64,16,D3,mp,14,144,50,14,,,,, +418,38,1,14659,768,1972.819,512,2,G#5,mp,14,144,80,14,,,,, +418,39,1,14660,768,1972.819,512,2,F6,mp,14,144,89,14,,,,, +418,40,1,14661,768,1972.819,512,2,A6,mp,14,144,93,14,,,,, +418,29,3,14650,694,1972.819,,,,,,144,85,0,,,,, +418,34,3,14655,768,1973.087,,,,,,144,44,0,,,,, +418,35,3,14656,768,1973.087,,,,,,144,46,0,,,,, +418,36,3,14657,768,1973.087,,,,,,144,48,0,,,,, +418,37,3,14658,768,1973.087,,,,,,144,50,0,,,,, +418,33,3,14654,768,1973.125,,,,,,144,40,0,,,,, +418,41,3,14662,841,1973.125,73,16,F5,mf,17,144,77,17,,,,, +418,41,3,14662,841,1973.43,,,,,,144,77,0,,,,, +418,42,3,14663,914,1973.43,110,16,A7,mf,17,144,105,17,,,,, +418,42,3,14663,914,1973.89,,,,,,144,105,0,,,,, +418,43,3,14664,1024,1973.89,109,16,C#7,mf,17,144,97,17,,,,, +418,43,3,14664,1024,1974.347,,,,,,144,97,0,,,,, +418,44,3,14665,1133,1974.347,147,8,F5,mf,17,144,77,17,,,,, +418,45,0,14666,1279,1974.81,,,,,,176,64,0,,,,,^ +418,38,1,14659,768,1974.962,,,,,,144,80,0,,,,, +418,39,1,14660,768,1974.962,,,,,,144,89,0,,,,, +418,40,1,14661,768,1974.962,,,,,,144,93,0,,,,, +418,44,3,14665,1133,1974.962,,,,,,144,77,0,,,,, +419,0,0,14667,0,1974.962,,,,,,,,,419,,,, +419,2,1,14668,0,1974.962,170,8,G#5,mf,17,144,80,17,,,,, +419,3,1,14669,0,1974.962,128,8,A6,mf,17,144,93,17,,,,, +419,4,3,14670,0,1974.962,42,16,E2,mp,14,144,40,14,,,,, +419,5,3,14671,0,1974.962,64,16,G#2,mp,14,144,44,14,,,,, +419,6,3,14672,0,1974.962,64,16,A#2,mp,14,144,46,14,,,,, +419,7,3,14673,0,1974.962,64,16,D3,mp,14,144,50,14,,,,, +419,1,0,14674,0,1975.11,,,,,,176,64,127,,,,,V +419,4,3,14670,0,1975.138,,,,,,144,40,0,,,,, +419,8,3,14675,42,1975.138,43,16,C3,mp,14,144,48,14,,,,, +419,5,3,14671,0,1975.23,,,,,,144,44,0,,,,, +419,6,3,14672,0,1975.23,,,,,,144,46,0,,,,, +419,7,3,14673,0,1975.23,,,,,,144,50,0,,,,, +419,8,3,14675,42,1975.318,,,,,,144,48,0,,,,, +419,9,3,14676,85,1975.318,43,16,F5,mp,14,144,77,14,,,,, +419,3,1,14669,0,1975.498,,,,,,144,93,0,,,,, +419,9,3,14676,85,1975.498,,,,,,144,77,0,,,,, +419,10,3,14677,128,1975.498,,,,,,176,102,0,,,,, +419,2,1,14668,0,1975.673,,,,,,144,80,0,,,,, +419,11,1,14678,170,1975.673,,,,,,176,102,0,,,,, +419,12,1,14679,199,1975.795,57,16,C4,pp,8,144,60,8,,,,, +419,12,1,14679,199,1976.033,,,,,,144,60,0,,,,, +419,13,1,14680,256,1976.033,28,32,G#5,p,11,144,80,11,,,,, +419,14,3,14681,256,1976.033,85,16,G5,p,11,144,79,11,,,,, +419,13,1,14680,256,1976.15,,,,,,144,80,0,,,,, +419,15,1,14682,284,1976.15,28,32,F3,p,11,144,53,11,,,,, +419,15,1,14682,284,1976.268,,,,,,144,53,0,,,,, +419,16,1,14683,312,1976.268,29,32,D3,p+,12,144,50,12,,,,, +419,14,3,14681,256,1976.389,,,,,,144,79,0,,,,, +419,16,1,14683,312,1976.389,,,,,,144,50,0,,,,, +419,17,1,14684,341,1976.389,28,32,C#4,p+,12,144,61,12,,,,, +419,18,3,14685,341,1976.389,57,16,E3,p+,12,144,52,12,,,,, +419,17,1,14684,341,1976.506,,,,,,144,61,0,,,,, +419,19,1,14686,369,1976.506,29,32,A6,p+,12,144,93,12,,,,, +419,18,3,14685,341,1976.628,,,,,,144,52,0,,,,, +419,19,1,14686,369,1976.628,,,,,,144,93,0,,,,, +419,20,1,14687,398,1976.628,85,16,F2,mp-,13,144,41,13,,,,, +419,21,1,14688,398,1976.628,64,16,C#3,mp-,13,144,49,13,,,,, +419,22,3,14689,398,1976.628,28,32,C#2,mp-,13,144,37,13,,,,, +419,22,3,14689,398,1976.745,,,,,,144,37,0,,,,, +419,23,3,14690,426,1976.745,29,32,G#2,mp-,13,144,44,13,,,,, +419,23,3,14690,426,1976.866,,,,,,144,44,0,,,,, +419,24,3,14691,455,1976.866,28,32,C#2,mp-,13,144,37,13,,,,, +419,21,1,14688,398,1976.895,,,,,,144,49,0,,,,, +419,20,1,14687,398,1976.983,,,,,,144,41,0,,,,, +419,24,3,14691,455,1976.983,,,,,,144,37,0,,,,, +419,25,1,14692,483,1976.983,29,32,G#5,mp,14,144,80,14,,,,, +419,26,3,14693,483,1976.983,29,32,G#2,mp,14,144,44,14,,,,, +419,25,1,14692,483,1977.105,,,,,,144,80,0,,,,, +419,26,3,14693,483,1977.105,,,,,,144,44,0,,,,, +419,27,1,14694,512,1977.105,28,32,F2,mp,14,144,41,14,,,,, +419,28,1,14695,512,1977.105,32,32,C#3,mp,14,144,49,14,,,,, +419,29,3,14696,512,1977.105,28,32,C#2,mp,14,144,37,14,,,,, +419,27,1,14694,512,1977.222,,,,,,144,41,0,,,,, +419,29,3,14696,512,1977.222,,,,,,144,37,0,,,,, +419,30,1,14697,540,1977.222,28,32,D2,mp,14,144,38,14,,,,, +419,31,3,14698,540,1977.222,85,16,G#2,mp,14,144,44,14,,,,, +419,28,1,14695,512,1977.239,,,,,,144,49,0,,,,, +419,30,1,14697,540,1977.339,,,,,,144,38,0,,,,, +419,32,1,14699,568,1977.339,114,8,G#5,mp+,15,144,80,15,,,,, +419,31,3,14698,540,1977.578,,,,,,144,44,0,,,,, +419,33,3,14700,625,1977.578,57,16,C4,mp+,15,144,60,15,,,,, +419,32,1,14699,568,1977.816,,,,,,144,80,0,,,,, +419,33,3,14700,625,1977.816,,,,,,144,60,0,,,,, +419,34,1,14701,682,1977.816,57,16,A6,mf-,16,144,93,16,,,,, +419,35,3,14702,682,1977.816,86,16,G5,mf-,16,144,79,16,,,,, +419,,,14703,768,1978.026,,,,,,176,64,0,,,,,^ +419,34,1,14701,682,1978.055,,,,,,144,93,0,,,,, +419,36,1,14704,739,1978.055,29,32,G#5,mf,17,144,80,17,,,,, +419,37,1,14705,739,1978.055,32,32,A6,mf,17,144,93,17,,,,, +419,35,3,14702,682,1978.176,,,,,,144,79,0,,,,, +419,36,1,14704,739,1978.176,,,,,,144,80,0,,,,, +419,37,1,14705,739,1978.176,,,,,,144,93,0,,,,, +419,38,3,14706,768,1978.176,85,16,D2,mp,14,144,38,14,,,,, +419,39,3,14707,768,1978.176,64,16,F2,mp,14,144,41,14,,,,, +419,40,3,14708,768,1978.176,64,16,G#2,mp,14,144,44,14,,,,, +419,41,3,14709,768,1978.176,64,16,C3,mp,14,144,48,14,,,,, +419,42,3,14710,768,1978.176,64,16,E3,mp,14,144,52,14,,,,, +419,44,1,14711,768,1978.176,256,4,G#5,mf,17,144,80,17,,,,, +419,45,1,14712,768,1978.176,256,4,F6,mf,17,144,89,17,,,,, +419,46,1,14713,768,1978.176,256,4,A6,mf,17,144,93,17,,,,, +419,43,0,14714,768,1978.326,,,,,,176,64,127,,,,,V +419,39,3,14707,768,1978.444,,,,,,144,41,0,,,,, +419,40,3,14708,768,1978.444,,,,,,144,44,0,,,,, +419,41,3,14709,768,1978.444,,,,,,144,48,0,,,,, +419,42,3,14710,768,1978.444,,,,,,144,52,0,,,,, +419,38,3,14706,768,1978.532,,,,,,144,38,0,,,,, +419,47,3,14715,853,1978.532,85,16,G#2,p,11,144,44,11,,,,, +419,47,3,14715,853,1978.888,,,,,,144,44,0,,,,, +419,48,3,14716,938,1978.888,57,16,D2,p,11,144,38,11,,,,, +419,50,0,14717,1008,1979.064,,,,,,176,64,0,,,,,^ +419,48,3,14716,938,1979.126,,,,,,144,38,0,,,,, +419,49,3,14718,995,1979.126,29,32,G#2,p,11,144,44,11,,,,, +419,49,3,14718,995,1979.248,,,,,,144,44,0,,,,, +419,51,3,14719,1024,1979.248,56,16,D2,p,11,144,38,11,,,,, +419,52,3,14720,1024,1979.248,64,16,F2,p,11,144,41,11,,,,, +419,53,3,14721,1024,1979.248,64,16,G#2,p,11,144,44,11,,,,, +419,54,3,14722,1024,1979.248,64,16,C3,p,11,144,48,11,,,,, +419,56,1,14723,1024,1979.248,256,4,E7,p,11,144,100,11,,,,, +419,44,1,14711,768,1979.248,,,,,,144,80,0,,,,, +419,45,1,14712,768,1979.248,,,,,,144,89,0,,,,, +419,46,1,14713,768,1979.248,,,,,,144,93,0,,,,, +419,55,0,14724,1024,1979.364,,,,,,176,64,127,,,,,V +419,51,3,14719,1024,1979.482,,,,,,144,38,0,,,,, +419,57,3,14725,1080,1979.482,57,16,C4,p,11,144,60,11,,,,, +419,52,3,14720,1024,1979.515,,,,,,144,41,0,,,,, +419,53,3,14721,1024,1979.515,,,,,,144,44,0,,,,, +419,54,3,14722,1024,1979.515,,,,,,144,48,0,,,,, +419,58,3,14726,1137,1979.721,57,16,A#0,p,11,144,22,11,,,,, +419,57,3,14725,1080,1979.871,,,,,,144,60,0,,,,, +419,59,3,14727,1194,1979.959,86,16,A#0,,,,,,,,,, +419,60,0,14728,1279,1980.315,,,,,,176,64,0,,,,,^ +420,0,0,14729,0,1980.319,,,,,,,,,420,,,, +420,1,1,14730,0,1980.319,,,,,,176,102,0,,,,, +420,2,3,14731,0,1980.319,256,4,A#0,,,,,,,,,, +419,56,1,14723,1024,1980.469,,,,,,144,100,0,,,,, +420,3,3,14732,256,1981.39,96,16,A#0,,,,,,,,,, +420,4,0,14733,256,1981.39,,,,,,,,,,6066,,, +419,58,3,14726,1137,1981.792,,,,,,144,22,0,,,,, +420,6,3,14734,352,1981.792,21,32,F1,pp,8,144,29,8,,,,, +420,5,0,14735,352,1981.792,,,,,,176,64,127,,,,,V +420,6,3,14734,352,1981.88,,,,,,144,29,0,,,,, +420,7,3,14736,373,1981.88,21,32,G#3,pp,8,144,56,8,,,,, +420,7,3,14736,373,1981.968,,,,,,144,56,0,,,,, +420,8,3,14737,394,1981.968,32,32,C#2,pp,8,144,37,8,,,,, +420,8,3,14737,394,1982.102,,,,,,144,37,0,,,,, +420,9,3,14738,426,1982.102,22,32,G#3,pp,8,144,56,8,,,,, +420,9,3,14738,426,1982.194,,,,,,144,56,0,,,,, +420,10,3,14739,448,1982.194,32,32,F1,pp,8,144,29,8,,,,, +420,10,3,14739,448,1982.328,,,,,,144,29,0,,,,, +420,11,3,14740,480,1982.328,32,32,C#2,pp,8,144,37,8,,,,, +420,12,0,14741,501,1982.416,,,,,,176,64,0,,,,,^ +420,11,3,14740,480,1982.462,,,,,,144,37,0,,,,, +420,13,3,14742,512,1982.462,384,4,F1,pp,8,144,29,8,,,,, +420,14,3,14743,512,1982.462,256,4,C#2,pp,8,144,37,8,,,,, +420,15,3,14744,512,1982.462,256,4,D#2,pp,8,144,39,8,,,,, +420,16,3,14745,512,1982.462,256,4,G#3,pp,8,144,56,8,,,,, +420,14,3,14743,512,1983.533,,,,,,144,37,0,,,,, +420,15,3,14744,512,1983.533,,,,,,144,39,0,,,,, +420,16,3,14745,512,1983.533,,,,,,144,56,0,,,,, +420,17,1,14746,768,1983.533,,,,,,176,102,0,,,,, +420,18,1,14747,864,1983.935,32,32,B6,f,20,144,95,20,,,,, +420,19,0,14748,871,1983.964,,,,,,176,64,127,,,,,V +420,13,3,14742,512,1984.069,,,,,,144,29,0,,,,, +420,18,1,14747,864,1984.069,,,,,,144,95,0,,,,, +420,20,1,14749,896,1984.069,96,16,C#5,mp,14,144,73,14,,,,, +420,21,3,14750,896,1984.069,32,32,A2,pp,8,144,45,8,,,,, +420,22,3,14751,896,1984.069,32,32,F3,pp,8,144,53,8,,,,, +420,21,3,14750,896,1984.203,,,,,,144,45,0,,,,, +420,22,3,14751,896,1984.203,,,,,,144,53,0,,,,, +420,23,3,14752,928,1984.203,64,16,F#1,p,11,144,30,11,,,,, +420,26,0,14753,1002,1984.409,,,,,,176,64,0,,,,,^ +420,20,1,14749,896,1984.471,,,,,,144,73,0,,,,, +420,23,3,14752,928,1984.471,,,,,,144,30,0,,,,, +420,24,1,14754,992,1984.471,32,32,C#5,pp,8,144,73,8,,,,, +420,25,3,14755,992,1984.471,32,32,F#1,pp,8,144,30,8,,,,, +420,28,1,14756,1024,1984.605,256,4,F6,ppp,5,144,89,5,,,,, +420,29,3,14757,1024,1984.605,256,4,G#2,ppp,5,144,44,5,,,,, +420,30,3,14758,1024,1984.605,256,4,C3,ppp,5,144,48,5,,,,, +420,24,1,14754,992,1984.605,,,,,,144,73,0,,,,, +420,25,3,14755,992,1984.605,,,,,,144,30,0,,,,, +420,27,0,14759,1024,1984.709,,,,,,176,64,127,,,,,V +420,28,1,14756,1024,1985.676,,,,,,144,89,0,,,,, +420,29,3,14757,1024,1985.676,,,,,,144,44,0,,,,, +420,30,3,14758,1024,1985.676,,,,,,144,48,0,,,,, +421,0,0,14760,0,1985.676,,,,,,,,,421,,,, +421,1,1,14761,0,1985.676,,,,,,176,102,0,,,,, +421,2,3,14762,0,1985.676,,,,,,176,102,0,,,,, +421,3,3,14763,128,1986.212,,,,,,176,102,0,,,,, +421,4,3,14764,213,1986.568,,,,,,176,102,0,,,,, +421,8,0,14765,243,1986.57,,,,,,176,64,0,,,,,^ +421,5,3,14766,234,1986.655,22,32,F1,ppp,5,144,29,5,,,,, +421,6,3,14767,234,1986.655,32,32,C#2,ppp,5,144,37,5,,,,, +421,7,3,14768,234,1986.655,32,32,G#3,ppp,5,144,56,5,,,,, +421,5,3,14766,234,1986.748,,,,,,144,29,0,,,,, +421,10,1,14769,256,1986.748,21,32,D1,ppp,5,144,26,5,,,,, +421,11,3,14770,256,1986.748,,,,,,176,102,0,,,,, +421,6,3,14767,234,1986.789,,,,,,144,37,0,,,,, +421,7,3,14768,234,1986.789,,,,,,144,56,0,,,,, +421,10,1,14769,256,1986.835,,,,,,144,26,0,,,,, +421,12,1,14771,277,1986.835,21,32,A4,ppp,5,144,69,5,,,,, +421,9,0,14772,256,1986.87,,,,,,176,64,127,,,,,V +421,12,1,14771,277,1986.923,,,,,,144,69,0,,,,, +421,13,1,14773,298,1986.923,22,32,G#5,ppp+,6,144,80,6,,,,, +421,13,1,14773,298,1987.015,,,,,,144,80,0,,,,, +421,14,1,14774,320,1987.015,32,32,F3,ppp+,6,144,53,6,,,,, +421,14,1,14774,320,1987.149,,,,,,144,53,0,,,,, +421,15,1,14775,352,1987.149,32,32,C#4,pp-,7,144,61,7,,,,, +421,15,1,14775,352,1987.283,,,,,,144,61,0,,,,, +421,16,1,14776,384,1987.283,21,32,G#5,pp,8,144,80,8,,,,, +421,16,1,14776,384,1987.371,,,,,,144,80,0,,,,, +421,17,1,14777,405,1987.371,21,32,A6,pp,8,144,93,8,,,,, +421,17,1,14777,405,1987.459,,,,,,144,93,0,,,,, +421,18,1,14778,426,1987.459,32,32,D2,pp+,9,144,38,9,,,,, +421,18,1,14778,426,1987.593,,,,,,144,38,0,,,,, +421,19,1,14779,458,1987.593,22,32,A6,pp+,9,144,93,9,,,,, +421,19,1,14779,458,1987.685,,,,,,144,93,0,,,,, +421,20,1,14780,480,1987.685,32,32,G#5,p-,10,144,80,10,,,,, +421,20,1,14780,480,1987.819,,,,,,144,80,0,,,,, +421,21,1,14781,512,1987.819,76,16,D2,p,11,144,38,11,,,,, +421,22,1,14782,512,1987.819,64,16,E2,p,11,144,40,11,,,,, +421,23,1,14783,512,1987.819,64,16,A#2,p,11,144,46,11,,,,, +421,24,3,14784,512,1987.819,512,2,C#7,p,11,144,97,11,,,,, +421,25,3,14785,512,1987.819,512,2,A7,p,11,144,105,11,,,,, +421,22,1,14782,512,1988.087,,,,,,144,40,0,,,,, +421,23,1,14783,512,1988.087,,,,,,144,46,0,,,,, +421,21,1,14781,512,1988.137,,,,,,144,38,0,,,,, +421,26,1,14786,588,1988.137,52,16,A6,mp-,13,144,93,13,,,,, +421,27,1,14787,640,1988.355,76,16,F3,mp,14,144,53,14,,,,, +421,26,1,14786,588,1988.58,,,,,,144,93,0,,,,, +421,27,1,14787,640,1988.673,,,,,,144,53,0,,,,, +421,28,1,14788,716,1988.673,77,16,C#4,mf-,16,144,61,16,,,,, +421,28,1,14788,716,1988.995,,,,,,144,61,0,,,,, +421,29,1,14789,793,1988.995,51,16,G#5,mf+,18,144,80,18,,,,, +421,29,1,14789,793,1989.209,,,,,,144,80,0,,,,, +421,30,1,14790,844,1989.209,52,16,A6,f-,19,144,93,19,,,,, +421,30,1,14790,844,1989.426,,,,,,144,93,0,,,,, +421,31,1,14791,896,1989.426,76,16,D2,f,20,144,38,20,,,,, +421,31,1,14791,896,1989.744,,,,,,144,38,0,,,,, +421,32,0,14792,972,1989.744,,,,,,176,64,0,,,,,^ +421,33,1,14793,972,1989.744,52,16,A6,f,20,144,93,20,,,,, +421,33,1,14793,972,1989.962,,,,,,144,93,0,,,,, +421,34,1,14794,,1989.962,,8,G6,mp,14,144,91,14,,,,g, +421,34,1,14794,,1990.012,,,,,,144,91,0,,,,, +421,35,1,14795,,1990.037,,8,C6,mp,14,144,84,14,,,,g, +421,36,1,14796,,1990.037,,8,A6,mp,14,144,93,14,,,,g, +421,35,1,14795,,1990.087,,,,,,144,84,0,,,,, +421,36,1,14796,,1990.087,,,,,,144,93,0,,,,, +421,37,1,14797,1024,1990.187,128,8,E5,mp,14,144,76,14,,,,, +421,38,3,14798,1024,1990.187,32,32,D#2,mp,14,144,39,14,,,,, +421,39,3,14799,1024,1990.187,32,32,B2,mp,14,144,47,14,,,,, +421,24,3,14784,512,1990.187,,,,,,144,97,0,,,,, +421,25,3,14785,512,1990.187,,,,,,144,105,0,,,,, +421,38,3,14798,1024,1990.321,,,,,,144,39,0,,,,, +421,39,3,14799,1024,1990.321,,,,,,144,47,0,,,,, +421,40,3,14800,1056,1990.321,32,32,B2,mp,14,144,47,14,,,,, +421,40,3,14800,1056,1990.455,,,,,,144,47,0,,,,, +421,41,3,14801,1088,1990.455,128,8,A0,mp-,13,144,21,13,,,,, +421,37,1,14797,1024,1990.723,,,,,,144,76,0,,,,, +421,42,1,14802,1152,1990.723,,,,,,176,102,0,,,,, +421,41,3,14801,1088,1990.99,,,,,,144,21,0,,,,, +421,43,3,14803,1216,1990.99,32,32,A0,p-,10,144,21,10,,,,, +421,44,3,14804,1216,1990.99,32,32,D#2,p-,10,144,39,10,,,,, +421,45,3,14805,1216,1990.99,32,32,B2,p-,10,144,47,10,,,,, +421,43,3,14803,1216,1991.124,,,,,,144,21,0,,,,, +421,44,3,14804,1216,1991.124,,,,,,144,39,0,,,,, +421,45,3,14805,1216,1991.124,,,,,,144,47,0,,,,, +421,46,3,14806,1248,1991.124,32,32,G1,p-,10,144,31,10,,,,, +421,46,3,14806,1248,1991.258,,,,,,144,31,0,,,,, +422,0,0,14807,0,1991.258,,,,,,,,,422,,,, +422,2,1,14808,0,1991.258,192,8,F2,mp,14,144,41,14,,,,, +422,3,1,14809,0,1991.258,128,8,F3,mp,14,144,53,14,,,,, +422,4,3,14810,0,1991.258,32,32,A0,pp+,9,144,21,9,,,,, +422,5,3,14811,0,1991.258,32,32,E1,pp+,9,144,28,9,,,,, +422,1,0,14812,0,1991.258,,,,,,176,64,127,,,,,V +422,4,3,14810,0,1991.392,,,,,,144,21,0,,,,, +422,5,3,14811,0,1991.392,,,,,,144,28,0,,,,, +422,6,3,14813,32,1991.392,96,16,E3,pp,8,144,52,8,,,,, +422,3,1,14809,0,1991.794,,,,,,144,53,0,,,,, +422,6,3,14813,32,1991.794,,,,,,144,52,0,,,,, +422,7,3,14814,128,1991.794,128,8,A0,pp,8,144,21,8,,,,, +422,8,3,14815,128,1991.794,128,8,G1,pp,8,144,31,8,,,,, +422,9,3,14816,128,1991.794,128,8,D#2,pp,8,144,39,8,,,,, +422,10,3,14817,128,1991.794,128,8,B2,pp,8,144,47,8,,,,, +422,11,3,14818,128,1991.794,128,8,E3,pp,8,144,52,8,,,,, +422,2,1,14808,0,1992.062,,,,,,144,41,0,,,,, +422,12,1,14819,192,1992.062,64,16,F#4,pp,8,144,66,8,,,,, +422,13,1,14820,256,1992.33,64,16,F#4,,,,,,,,,, +422,14,3,14821,256,1992.33,256,4,A0,,,,,,,,,, +422,15,3,14822,256,1992.33,256,4,G1,,,,,,,,,, +422,16,3,14823,256,1992.33,256,4,D#2,,,,,,,,,, +422,17,3,14824,256,1992.33,256,4,B2,,,,,,,,,, +422,18,3,14825,256,1992.33,256,4,E3,,,,,,,,,, +422,12,1,14819,192,1992.598,,,,,,144,66,0,,,,, +422,19,1,14826,320,1992.598,64,16,B5,pp,8,144,83,8,,,,, +422,20,1,14827,384,1992.865,96,16,B5,,,,,,,,,, +422,19,1,14826,320,1993.267,,,,,,144,83,0,,,,, +422,21,1,14828,480,1993.267,32,32,B6,ppp,5,144,95,5,,,,, +422,7,3,14814,128,1993.401,,,,,,144,21,0,,,,, +422,8,3,14815,128,1993.401,,,,,,144,31,0,,,,, +422,9,3,14816,128,1993.401,,,,,,144,39,0,,,,, +422,10,3,14817,128,1993.401,,,,,,144,47,0,,,,, +422,11,3,14818,128,1993.401,,,,,,144,52,0,,,,, +422,21,1,14828,480,1993.401,,,,,,144,95,0,,,,, +422,22,1,14829,512,1993.401,96,16,C#5,ppp,5,144,73,5,,,,, +422,23,1,14830,512,1993.401,64,16,D5,ppp,5,144,74,5,,,,, +422,24,3,14831,512,1993.401,96,16,A2,ppp,5,144,45,5,,,,, +422,25,3,14832,512,1993.401,64,16,F3,ppp,5,144,53,5,,,,, +422,23,1,14830,512,1993.669,,,,,,144,74,0,,,,, +422,25,3,14832,512,1993.669,,,,,,144,53,0,,,,, +422,22,1,14829,512,1993.803,,,,,,144,73,0,,,,, +422,24,3,14831,512,1993.803,,,,,,144,45,0,,,,, +422,26,1,14833,608,1993.803,32,32,C#5,ppp,5,144,73,5,,,,, +422,27,3,14834,608,1993.803,32,32,F#1,ppp,5,144,30,5,,,,, +422,28,0,14835,640,1993.937,,,,,,176,64,0,,,,,^ +422,29,1,14836,640,1993.937,128,8,C#5,,,,,,,,,, +422,30,1,14837,640,1993.937,128,8,A#5,ppp,5,144,82,5,,,,, +422,31,3,14838,640,1993.937,128,8,F#1,,,,,,,,,, +422,32,0,14839,640,1993.937,,,,,,,,,,6067,,, +422,26,1,14833,608,1994.473,,,,,,144,73,0,,,,, +422,27,3,14834,608,1994.473,,,,,,144,30,0,,,,, +422,30,1,14837,640,1994.473,,,,,,144,82,0,,,,, +422,34,1,14840,768,1994.473,21,32,E5,p,11,144,76,11,,,,, +422,35,3,14841,768,1994.473,,,,,,176,102,0,,,,, +422,33,0,14842,768,1994.473,,,,,,176,64,127,,,,,V +422,34,1,14840,768,1994.56,,,,,,144,76,0,,,,, +422,36,1,14843,789,1994.56,21,32,G#3,p,11,144,56,11,,,,, +422,36,1,14843,789,1994.648,,,,,,144,56,0,,,,, +422,37,1,14844,810,1994.648,22,32,C#3,p,11,144,49,11,,,,, +422,37,1,14844,810,1994.74,,,,,,144,49,0,,,,, +422,38,1,14845,832,1994.74,,,,,,176,102,0,,,,, +422,39,1,14846,896,1995.008,,,,,,176,102,0,,,,, +422,40,1,14847,960,1995.276,21,32,E5,p,11,144,76,11,,,,, +422,40,1,14847,960,1995.364,,,,,,144,76,0,,,,, +422,41,1,14848,981,1995.364,21,32,G#3,p,11,144,56,11,,,,, +422,41,1,14848,981,1995.452,,,,,,144,56,0,,,,, +422,42,1,14849,1002,1995.452,22,32,C6,p,11,144,84,11,,,,, +422,42,1,14849,1002,1995.544,,,,,,144,84,0,,,,, +422,43,1,14850,1024,1995.544,21,32,G#3,p,11,144,56,11,,,,, +422,44,3,14851,1024,1995.544,128,8,A#2,p,11,144,46,11,,,,, +422,43,1,14850,1024,1995.632,,,,,,144,56,0,,,,, +422,45,1,14852,1045,1995.632,21,32,E5,p,11,144,76,11,,,,, +422,46,1,14853,1045,1995.632,32,32,B5,p,11,144,83,11,,,,, +422,47,1,14854,1045,1995.632,32,32,C6,p,11,144,84,11,,,,, +422,45,1,14852,1045,1995.72,,,,,,144,76,0,,,,, +422,48,1,14855,1066,1995.72,22,32,G#3,p,11,144,56,11,,,,, +422,46,1,14853,1045,1995.766,,,,,,144,83,0,,,,, +422,47,1,14854,1045,1995.766,,,,,,144,84,0,,,,, +422,48,1,14855,1066,1995.812,,,,,,144,56,0,,,,, +422,49,1,14856,1088,1995.812,21,32,C#3,p,11,144,49,11,,,,, +422,50,1,14857,1088,1995.812,32,32,E5,p,11,144,76,11,,,,, +422,51,1,14858,1088,1995.812,32,32,C6,p,11,144,84,11,,,,, +422,49,1,14856,1088,1995.9,,,,,,144,49,0,,,,, +422,52,1,14859,1109,1995.9,43,16,D5,p,11,144,74,11,,,,, +422,50,1,14857,1088,1995.946,,,,,,144,76,0,,,,, +422,51,1,14858,1088,1995.946,,,,,,144,84,0,,,,, +422,44,3,14851,1024,1996.08,,,,,,144,46,0,,,,, +422,52,1,14859,1109,1996.08,,,,,,144,74,0,,,,, +422,53,1,14860,1152,1996.08,64,16,F3,p,11,144,53,11,,,,, +422,54,3,14861,1152,1996.08,128,8,E2,p,11,144,40,11,,,,, +422,53,1,14860,1152,1996.348,,,,,,144,53,0,,,,, +422,55,1,14862,1216,1996.348,64,16,F#4,p,11,144,66,11,,,,, +422,54,3,14861,1152,1996.615,,,,,,144,40,0,,,,, +422,55,1,14862,1216,1996.615,,,,,,144,66,0,,,,, +423,0,0,14863,0,1996.615,,,,,,,,,423,,,, +423,1,1,14864,0,1996.615,42,16,A6,p+,12,144,93,12,,,,, +423,2,1,14865,0,1996.615,64,16,B6,p+,12,144,95,12,,,,, +423,3,3,14866,0,1996.615,,,,,,176,102,0,,,,, +423,1,1,14864,0,1996.791,,,,,,144,93,0,,,,, +423,4,1,14867,42,1996.791,43,16,D5,p+,12,144,74,12,,,,, +423,2,1,14865,0,1996.883,,,,,,144,95,0,,,,, +423,4,1,14867,42,1996.971,,,,,,144,74,0,,,,, +423,5,1,14868,85,1996.971,43,16,A#5,p+,12,144,82,12,,,,, +423,5,1,14868,85,1997.151,,,,,,144,82,0,,,,, +423,6,1,14869,128,1997.151,,,,,,176,102,0,,,,, +423,7,3,14870,128,1997.151,128,8,A#3,mp-,13,144,58,13,,,,, +423,7,3,14870,128,1997.687,,,,,,144,58,0,,,,, +423,8,1,14871,256,1997.687,,,,,,176,102,0,,,,, +423,9,3,14872,256,1997.687,128,8,E2,mp,14,144,40,14,,,,, +423,9,3,14872,256,1998.223,,,,,,144,40,0,,,,, +423,10,3,14873,384,1998.223,32,32,A5,mp+,15,144,81,15,,,,, +423,10,3,14873,384,1998.356,,,,,,144,81,0,,,,, +423,11,3,14874,416,1998.356,32,32,A#2,mp+,15,144,46,15,,,,, +423,11,3,14874,416,1998.49,,,,,,144,46,0,,,,, +423,12,3,14875,448,1998.49,32,32,E1,mp+,15,144,28,15,,,,, +423,12,3,14875,448,1998.624,,,,,,144,28,0,,,,, +423,13,3,14876,480,1998.624,32,32,A6,mp+,15,144,93,15,,,,, +423,13,3,14876,480,1998.758,,,,,,144,93,0,,,,, +423,14,1,14877,512,1998.758,42,16,D5,mp+,15,144,74,15,,,,, +423,15,1,14878,512,1998.758,64,16,B5,mp+,15,144,83,15,,,,, +423,16,3,14879,512,1998.758,,,,,,176,102,0,,,,, +423,14,1,14877,512,1998.934,,,,,,144,74,0,,,,, +423,17,1,14880,554,1998.934,43,16,F2,mp+,15,144,41,15,,,,, +423,15,1,14878,512,1999.026,,,,,,144,83,0,,,,, +423,17,1,14880,554,1999.114,,,,,,144,41,0,,,,, +423,18,1,14881,597,1999.114,43,16,F#4,mp+,15,144,66,15,,,,, +423,18,1,14881,597,1999.294,,,,,,144,66,0,,,,, +423,19,1,14882,640,1999.294,25,32,E6,ppp,5,144,88,5,,,,, +423,19,1,14882,640,1999.399,,,,,,144,88,0,,,,, +423,20,1,14883,665,1999.399,26,32,B6,ppp,5,144,95,5,,,,, +423,20,1,14883,665,1999.507,,,,,,144,95,0,,,,, +423,21,1,14884,691,1999.507,25,32,G5,ppp,5,144,79,5,,,,, +423,21,1,14884,691,1999.612,,,,,,144,79,0,,,,, +423,22,1,14885,716,1999.612,26,32,A#5,ppp,5,144,82,5,,,,, +423,22,1,14885,716,1999.721,,,,,,144,82,0,,,,, +423,23,1,14886,742,1999.721,26,32,D#7,ppp,5,144,99,5,,,,, +423,23,1,14886,742,1999.83,,,,,,144,99,0,,,,, +423,24,3,14887,768,1999.83,64,16,E1,ppp,5,144,28,5,,,,, +423,25,1,14888,768,1999.83,85,8,A7,ppp,5,144,105,5,,,,, +423,24,3,14887,768,2000.098,,,,,,144,28,0,,,,, +423,26,3,14889,832,2000.098,21,32,A#2,ppp,5,144,46,5,,,,, +423,25,1,14888,768,2000.185,,,,,,144,105,0,,,,, +423,26,3,14889,832,2000.185,,,,,,144,46,0,,,,, +423,27,3,14890,853,2000.185,43,16,E2,ppp,5,144,40,5,,,,, +423,28,3,14891,853,2000.185,64,16,A#2,ppp,5,144,46,5,,,,, +423,29,1,14892,853,2000.185,43,16,A6,ppp,5,144,93,5,,,,, +423,27,3,14890,853,2000.365,,,,,,144,40,0,,,,, +423,29,1,14892,853,2000.365,,,,,,144,93,0,,,,, +423,30,1,14893,896,2000.365,128,8,A#5,ppp,5,144,82,5,,,,, +423,31,3,14894,896,2000.365,,,,,,176,102,0,,,,, +423,28,3,14891,853,2000.453,,,,,,144,46,0,,,,, +423,32,1,14895,1024,2000.901,128,8,A#5,,,,,,,,,, +423,33,3,14896,1024,2000.901,,,,,,176,102,0,,,,, +423,34,1,14897,1152,2001.437,42,16,D5,mf,17,144,74,17,,,,, +423,35,1,14898,1152,2001.437,64,16,B5,mf,17,144,83,17,,,,, +423,30,1,14893,896,2001.437,,,,,,144,82,0,,,,, +423,34,1,14897,1152,2001.613,,,,,,144,74,0,,,,, +423,36,1,14899,1194,2001.613,86,8,A#5,pp,8,144,82,8,,,,, +423,37,3,14900,1194,2001.613,86,8,F2,mp,14,144,41,14,,,,, +423,38,3,14901,1194,2001.613,128,8,F#3,mp,14,144,54,14,,,,, +423,35,1,14898,1152,2001.705,,,,,,144,83,0,,,,, +423,36,1,14899,1194,2001.973,,,,,,144,82,0,,,,, +423,37,3,14900,1194,2001.973,,,,,,144,41,0,,,,, +424,0,0,14902,0,2001.973,,,,,,,,,424,,,, +424,1,1,14903,0,2001.973,,,,,,176,102,0,,,,, +424,2,3,14904,0,2001.973,,,,,,176,102,0,,,,, +423,38,3,14901,1194,2002.148,,,,,,144,54,0,,,,, +424,3,0,14905,256,2003.044,,,,,,176,64,0,,,,,^ +424,4,3,14906,256,2003.044,128,8,F2,mp,14,144,41,14,,,,, +424,5,1,14907,384,2003.58,384,4,B4,pp,8,144,71,8,,,,, +424,6,1,14908,384,2003.58,256,4,A5,pp,8,144,81,8,,,,, +424,7,3,14909,384,2003.58,128,8,E2,pp,8,144,40,8,,,,, +424,8,3,14910,384,2003.58,128,8,F2,,,,,,,,,, +424,9,3,14911,384,2003.58,128,8,A#2,pp,8,144,46,8,,,,, +424,11,3,14912,512,2004.115,128,8,E2,,,,,,,,,, +424,12,3,14913,512,2004.115,128,8,F2,,,,,,,,,, +424,13,3,14914,512,2004.115,128,8,A#2,,,,,,,,,, +424,10,0,14915,512,2004.115,,,,,,176,64,127,,,,,V +424,14,3,14916,640,2004.651,128,8,A#3,pp,8,144,58,8,,,,, +424,4,3,14906,256,2004.651,,,,,,144,41,0,,,,, +424,6,1,14908,384,2004.651,,,,,,144,81,0,,,,, +424,7,3,14909,384,2004.651,,,,,,144,40,0,,,,, +424,9,3,14911,384,2004.651,,,,,,144,46,0,,,,, +424,14,3,14916,640,2005.187,,,,,,144,58,0,,,,, +424,15,1,14917,768,2005.187,85,16,A6,pp,8,144,93,8,,,,, +424,16,3,14918,768,2005.187,56,16,E2,pp,8,144,40,8,,,,, +424,5,1,14907,384,2005.187,,,,,,144,71,0,,,,, +424,16,3,14918,768,2005.421,,,,,,144,40,0,,,,, +424,17,3,14919,824,2005.421,86,16,A#2,pp,8,144,46,8,,,,, +424,15,1,14917,768,2005.543,,,,,,144,93,0,,,,, +424,18,1,14920,853,2005.543,28,32,A5,pp,8,144,81,8,,,,, +424,18,1,14920,853,2005.66,,,,,,144,81,0,,,,, +424,19,1,14921,881,2005.66,29,32,A6,pp,8,144,93,8,,,,, +424,17,3,14919,824,2005.781,,,,,,144,46,0,,,,, +424,19,1,14921,881,2005.781,,,,,,144,93,0,,,,, +424,20,1,14922,910,2005.781,85,16,A5,pp,8,144,81,8,,,,, +424,21,3,14923,910,2005.781,57,16,E2,pp,8,144,40,8,,,,, +424,21,3,14923,910,2006.02,,,,,,144,40,0,,,,, +424,22,3,14924,967,2006.02,57,16,A#3,pp,8,144,58,8,,,,, +424,20,1,14922,910,2006.137,,,,,,144,81,0,,,,, +424,23,1,14925,995,2006.137,29,32,A7,pp,8,144,105,8,,,,, +424,23,1,14925,995,2006.258,,,,,,144,105,0,,,,, +424,24,1,14926,1024,2006.258,,,,,,176,102,0,,,,, +424,25,3,14927,1024,2006.258,28,32,A#3,,,,,,,,,, +424,22,3,14924,967,2006.375,,,,,,144,58,0,,,,, +424,26,1,14928,1052,2006.375,57,16,A6,pp,8,144,93,8,,,,, +424,27,3,14929,1052,2006.375,85,16,E2,pp,8,144,40,8,,,,, +424,26,1,14928,1052,2006.614,,,,,,144,93,0,,,,, +424,28,1,14930,1109,2006.614,28,32,A7,pp,8,144,105,8,,,,, +424,27,3,14929,1052,2006.731,,,,,,144,40,0,,,,, +424,28,1,14930,1109,2006.731,,,,,,144,105,0,,,,, +424,29,1,14931,1137,2006.731,,,,,,176,102,0,,,,, +424,30,3,14932,1137,2006.731,29,32,E2,pp,8,144,40,8,,,,, +424,30,3,14932,1137,2006.853,,,,,,144,40,0,,,,, +424,31,3,14933,1166,2006.853,28,32,E1,pp,8,144,28,8,,,,, +424,31,3,14933,1166,2006.97,,,,,,144,28,0,,,,, +424,32,1,14934,1194,2006.97,86,16,A5,pp,8,144,81,8,,,,, +424,33,3,14935,1194,2006.97,29,32,E2,pp,8,144,40,8,,,,, +424,33,3,14935,1194,2007.091,,,,,,144,40,0,,,,, +424,34,3,14936,1223,2007.091,28,32,E1,pp,8,144,28,8,,,,, +424,34,3,14936,1223,2007.208,,,,,,144,28,0,,,,, +424,35,3,14937,1251,2007.208,29,32,E2,pp,8,144,40,8,,,,, +424,32,1,14934,1194,2007.33,,,,,,144,81,0,,,,, +424,35,3,14937,1251,2007.33,,,,,,144,40,0,,,,, +425,0,0,14938,0,2007.33,,,,,,,,,425,,,, +425,1,1,14939,0,2007.33,113,8,A7,pp+,9,144,105,9,,,,, +425,2,3,14940,0,2007.33,85,16,A#2,pp+,9,144,46,9,,,,, +425,2,3,14940,0,2007.685,,,,,,144,46,0,,,,, +425,3,3,14941,85,2007.685,28,32,A#3,pp+,9,144,58,9,,,,, +425,1,1,14939,0,2007.803,,,,,,144,105,0,,,,, +425,3,3,14941,85,2007.803,,,,,,144,58,0,,,,, +425,4,1,14942,113,2007.803,57,16,A6,pp+,9,144,93,9,,,,, +425,5,3,14943,113,2007.803,29,32,A#2,pp+,9,144,46,9,,,,, +425,5,3,14943,113,2007.924,,,,,,144,46,0,,,,, +425,6,3,14944,142,2007.924,85,16,A#3,pp+,9,144,58,9,,,,, +425,4,1,14942,113,2008.041,,,,,,144,93,0,,,,, +425,7,1,14945,170,2008.041,86,16,A7,pp+,9,144,105,9,,,,, +425,6,3,14944,142,2008.28,,,,,,144,58,0,,,,, +425,8,3,14946,227,2008.28,29,32,E2,p-,10,144,40,10,,,,, +425,7,1,14945,170,2008.401,,,,,,144,105,0,,,,, +425,8,3,14946,227,2008.401,,,,,,144,40,0,,,,, +425,9,3,14947,256,2008.401,,,,,,176,102,0,,,,, +425,10,1,14948,256,2008.401,,,,,,176,102,0,,,,, +425,11,3,14949,341,2008.757,57,16,E2,p-,10,144,40,10,,,,, +425,12,3,14950,341,2008.757,64,16,A#2,p-,10,144,46,10,,,,, +425,11,3,14949,341,2008.995,,,,,,144,40,0,,,,, +425,13,3,14951,398,2008.995,114,8,E1,p-,10,144,28,10,,,,, +425,12,3,14950,341,2009.025,,,,,,144,46,0,,,,, +425,13,3,14951,398,2009.473,,,,,,144,28,0,,,,, +425,14,3,14952,512,2009.473,85,8,E1,p,11,144,28,11,,,,, +425,15,1,14953,512,2009.473,,,,,,176,102,0,,,,, +425,14,3,14952,512,2009.828,,,,,,144,28,0,,,,, +425,16,3,14954,597,2009.828,,,,,,176,102,0,,,,, +425,17,1,14955,597,2009.828,43,16,B4,f,20,144,71,20,,,,, +425,17,1,14955,597,2010.008,,,,,,144,71,0,,,,, +425,18,1,14956,640,2010.008,42,16,D3,f,20,144,50,20,,,,, +425,19,1,14957,640,2010.008,64,16,B4,f,20,144,71,20,,,,, +425,18,1,14956,640,2010.184,,,,,,144,50,0,,,,, +425,20,3,14958,682,2010.184,43,16,F1,p,11,144,29,11,,,,, +425,21,1,14959,682,2010.184,,,,,,176,102,0,,,,, +425,19,1,14957,640,2010.276,,,,,,144,71,0,,,,, +425,22,1,14960,704,2010.276,21,32,A#3,f+,21,144,58,21,,,,, +425,20,3,14958,682,2010.364,,,,,,144,29,0,,,,, +425,22,1,14960,704,2010.364,,,,,,144,58,0,,,,, +425,23,3,14961,725,2010.364,43,16,F1,f,20,144,29,20,,,,, +425,24,1,14962,725,2010.364,21,32,F#2,f+,21,144,42,21,,,,, +425,24,1,14962,725,2010.452,,,,,,144,42,0,,,,, +425,25,1,14963,746,2010.452,22,32,A#3,f+,21,144,58,21,,,,, +425,23,3,14961,725,2010.544,,,,,,144,29,0,,,,, +425,25,1,14963,746,2010.544,,,,,,144,58,0,,,,, +425,26,3,14964,768,2010.544,,,,,,176,102,0,,,,, +425,27,1,14965,768,2010.544,,,,,,176,102,0,,,,, +425,29,0,14966,832,2010.706,,,,,,176,64,0,,,,,^ +425,28,3,14967,832,2010.812,,,,,,176,102,0,,,,, +425,30,1,14968,832,2010.812,21,32,F6,ff,22,144,89,22,,,,, +425,30,1,14968,832,2010.9,,,,,,144,89,0,,,,, +425,32,3,14969,853,2010.9,171,4,G#2,f+,21,144,44,21,,,,, +425,33,3,14970,853,2010.9,256,4,C3,f+,21,144,48,21,,,,, +425,34,1,14971,853,2010.9,171,4,A#5,f+,21,144,82,21,,,,, +425,35,1,14972,853,2010.9,256,4,F6,f+,21,144,89,21,,,,, +425,31,0,14973,853,2011.006,,,,,,176,64,127,,,,,V +425,36,3,14974,1024,2011.615,128,8,G#2,,,,,,,,,, +425,37,3,14975,1024,2011.615,128,8,C3,,,,,,,,,, +425,38,1,14976,1024,2011.615,128,8,A#5,,,,,,,,,, +425,39,1,14977,1024,2011.615,128,8,F6,,,,,,,,,, +425,40,3,14978,1152,2012.151,64,16,G#2,,,,,,,,,, +425,41,3,14979,1152,2012.151,64,16,C3,,,,,,,,,, +425,42,1,14980,1152,2012.151,64,16,A#5,,,,,,,,,, +425,43,1,14981,1152,2012.151,64,16,F6,,,,,,,,,, +425,46,0,14982,1216,2012.401,,,,,,176,64,0,,,,,^ +425,44,3,14983,1216,2012.419,21,32,G#2,p,11,144,44,11,,,,, +425,45,3,14984,1216,2012.419,32,32,C3,p,11,144,48,11,,,,, +425,47,1,14985,1216,2012.419,21,32,A#5,p,11,144,82,11,,,,, +425,48,1,14986,1216,2012.419,32,32,F6,p,11,144,89,11,,,,, +425,32,3,14969,853,2012.419,,,,,,144,44,0,,,,, +425,34,1,14971,853,2012.419,,,,,,144,82,0,,,,, +425,44,3,14983,1216,2012.507,,,,,,144,44,0,,,,, +425,45,3,14984,1216,2012.507,,,,,,144,48,0,,,,, +425,47,1,14985,1216,2012.507,,,,,,144,82,0,,,,, +425,49,3,14987,1237,2012.507,43,16,G#2,p,11,144,44,11,,,,, +425,50,3,14988,1237,2012.507,64,16,C3,p,11,144,48,11,,,,, +425,51,1,14989,1237,2012.507,43,16,E7,p,11,144,100,11,,,,, +425,48,1,14986,1216,2012.553,,,,,,144,89,0,,,,, +425,49,3,14987,1237,2012.687,,,,,,144,44,0,,,,, +425,51,1,14989,1237,2012.687,,,,,,144,100,0,,,,, +426,0,0,14990,0,2012.687,,,,,,,,,426,,,, +426,1,1,14991,0,2012.687,,,,,,176,102,0,,,,, +426,2,3,14992,0,2012.687,,,,,,176,102,0,,,,, +425,52,0,14993,1279,2012.701,,,,,,176,64,127,,,,,V +425,50,3,14988,1237,2012.775,,,,,,144,48,0,,,,, +425,33,3,14970,853,2012.775,,,,,,144,48,0,,,,, +425,35,1,14972,853,2012.775,,,,,,144,89,0,,,,, +426,3,3,14994,512,2014.83,,,,,,176,102,0,,,,, +426,4,3,14995,597,2015.185,,,,,,176,102,0,,,,, +426,5,3,14996,725,2015.721,43,16,B1,ppp,5,144,35,5,,,,, +426,6,3,14997,768,2015.901,512,2,B1,,,,,,,,,, +426,7,0,14998,1167,2017.571,,,,,,176,64,0,,,,,^ +427,0,0,14999,0,2018.044,,,,,,,,,427,,,, +427,1,1,15000,0,2018.044,,,,,,176,102,0,,,,, +427,2,3,15001,0,2018.044,256,4,B1,,,,,,,,,, +427,4,3,15002,256,2019.115,256,4,B1,,,,,,,,,, +427,3,0,15003,256,2019.115,,,,,,176,64,127,,,,,V +427,5,1,15004,384,2019.651,25,32,E6,ppp,5,144,88,5,,,,, +427,5,1,15004,384,2019.756,,,,,,144,88,0,,,,, +427,6,1,15005,409,2019.756,26,32,B6,ppp,5,144,95,5,,,,, +427,6,1,15005,409,2019.865,,,,,,144,95,0,,,,, +427,7,1,15006,435,2019.865,25,32,G5,ppp,5,144,79,5,,,,, +427,7,1,15006,435,2019.969,,,,,,144,79,0,,,,, +427,8,1,15007,460,2019.969,26,32,A#5,ppp,5,144,82,5,,,,, +427,8,1,15007,460,2020.078,,,,,,144,82,0,,,,, +427,9,1,15008,486,2020.078,26,32,D#7,ppp,5,144,99,5,,,,, +427,12,0,15009,612,2020.095,,,,,,176,64,0,,,,,^ +426,5,3,14996,725,2020.187,,,,,,144,35,0,,,,, +427,9,1,15008,486,2020.187,,,,,,144,99,0,,,,, +427,10,1,15010,512,2020.187,,,,,,176,102,0,,,,, +427,11,3,15011,512,2020.187,,,,,,176,102,0,,,,, +427,13,0,15012,612,2020.187,,,,,,,,,,6068,,, +427,15,1,15013,,2020.229,,8,B5,mf,17,144,83,17,,,,g, +427,15,1,15013,,2020.279,,,,,,144,83,0,,,,, +427,16,1,15014,640,2020.304,42,16,F3,mf,17,144,53,17,,,,, +427,17,1,15015,640,2020.304,64,16,C#5,fff,24,144,73,23,,,,, +427,18,1,15016,640,2020.304,64,16,A5,fff,24,144,81,23,,,,, +427,19,1,15017,640,2020.304,64,16,C#6,mf,17,144,85,17,,,,, +427,20,3,15018,640,2020.304,128,8,E2,fff,24,144,40,23,,,,, +427,21,3,15019,640,2020.304,128,8,F2,fff,24,144,41,23,,,,, +427,22,3,15020,640,2020.304,128,8,A#2,fff,24,144,46,23,,,,, +427,14,0,15021,640,2020.395,,,,,,176,64,127,,,,,V +427,16,1,15014,640,2020.48,,,,,,144,53,0,,,,, +427,23,1,15022,682,2020.48,22,32,B5,mf,17,144,83,17,,,,, +427,24,1,15023,682,2020.48,32,32,C#6,,,,,,,,,, +427,17,1,15015,640,2020.572,,,,,,144,73,0,,,,, +427,18,1,15016,640,2020.572,,,,,,144,81,0,,,,, +427,23,1,15022,682,2020.572,,,,,,144,83,0,,,,, +427,25,1,15024,704,2020.572,21,32,F3,mf,17,144,53,17,,,,, +427,26,1,15025,704,2020.572,32,32,C#6,,,,,,,,,, +427,27,1,15026,725,2020.66,43,16,F3,,,,,,,,,, +427,28,1,15027,725,2020.66,64,16,F4,fff,24,144,65,23,,,,, +427,29,1,15028,725,2020.66,64,16,C#6,,,,,,,,,, +427,30,0,15029,749,2020.694,,,,,,176,64,0,,,,,^ +427,20,3,15018,640,2020.84,,,,,,144,40,0,,,,, +427,21,3,15019,640,2020.84,,,,,,144,41,0,,,,, +427,22,3,15020,640,2020.84,,,,,,144,46,0,,,,, +427,25,1,15024,704,2020.84,,,,,,144,53,0,,,,, +427,31,1,15030,768,2020.84,21,32,F#4,mf,17,144,66,17,,,,, +427,32,1,15031,768,2020.84,32,32,C#6,,,,,,,,,, +427,33,3,15032,768,2020.84,,,,,,176,102,0,,,,, +427,28,1,15027,725,2020.928,,,,,,144,65,0,,,,, +427,31,1,15030,768,2020.928,,,,,,144,66,0,,,,, +427,35,1,15033,789,2020.928,21,32,D5,mf,17,144,74,17,,,,, +427,36,1,15034,789,2020.928,32,32,C#6,,,,,,,,,, +427,34,0,15035,789,2020.994,,,,,,176,64,127,,,,,V +427,35,1,15033,789,2021.016,,,,,,144,74,0,,,,, +427,37,1,15036,810,2021.016,32,32,B5,mf,17,144,83,17,,,,, +427,38,1,15037,810,2021.016,32,32,C#6,,,,,,,,,, +427,37,1,15036,810,2021.149,,,,,,144,83,0,,,,, +427,39,1,15038,842,2021.149,32,32,D5,p,11,144,74,11,,,,, +427,39,1,15038,842,2021.283,,,,,,144,74,0,,,,, +427,40,1,15039,874,2021.283,22,32,F3,p,11,144,53,11,,,,, +427,40,1,15039,874,2021.375,,,,,,144,53,0,,,,, +427,41,1,15040,896,2021.375,21,32,F#4,p,11,144,66,11,,,,, +427,41,1,15040,896,2021.463,,,,,,144,66,0,,,,, +427,42,1,15041,917,2021.463,21,32,D5,p,11,144,74,11,,,,, +427,19,1,15017,640,2021.509,,,,,,144,85,0,,,,, +427,42,1,15041,917,2021.551,,,,,,144,74,0,,,,, +427,43,1,15042,938,2021.551,22,32,A#5,p,11,144,82,11,,,,, +427,43,1,15042,938,2021.643,,,,,,144,82,0,,,,, +427,44,1,15043,,2021.643,,8,F2,pp,8,144,41,8,,,,g, +427,44,1,15043,,2021.693,,,,,,144,41,0,,,,, +427,45,1,15044,960,2021.718,64,16,B4,pp,8,144,71,8,,,,, +427,45,1,15044,960,2021.986,,,,,,144,71,0,,,,, +427,46,1,15045,1024,2021.986,,,,,,176,102,0,,,,, +427,47,3,15046,1024,2021.986,64,16,D4,pp,8,144,62,8,,,,, +427,47,3,15046,1024,2022.254,,,,,,144,62,0,,,,, +427,48,3,15047,1088,2022.254,42,16,F2,p-,10,144,41,10,,,,, +427,48,3,15047,1088,2022.43,,,,,,144,41,0,,,,, +427,49,3,15048,1130,2022.43,64,16,B4,p+,12,144,71,12,,,,, +427,49,3,15048,1130,2022.698,,,,,,144,71,0,,,,, +427,50,3,15049,1194,2022.698,64,16,F2,mp+,15,144,41,15,,,,, +427,51,3,15050,1194,2022.698,64,16,D4,mp+,15,144,62,15,,,,, +427,50,3,15049,1194,2022.966,,,,,,144,41,0,,,,, +427,51,3,15050,1194,2022.966,,,,,,144,62,0,,,,, +427,52,3,15051,1258,2022.966,22,32,F1,mf,17,144,29,17,,,,, +427,52,3,15051,1258,2023.058,,,,,,144,29,0,,,,, +428,0,0,15052,0,2023.058,,,,,,,,,428,,,, +428,1,1,15053,0,2023.058,,,,,,176,102,0,,,,, +428,2,3,15054,0,2023.058,,,,,,176,102,0,,,,, +428,3,1,15055,128,2023.593,42,16,C#5,fff,24,144,73,23,,,,, +428,4,1,15056,128,2023.593,64,16,A5,fff,24,144,81,23,,,,, +428,5,1,15057,128,2023.593,64,16,C#6,fff,24,144,85,23,,,,, +428,6,3,15058,128,2023.593,128,8,E2,fff,24,144,40,23,,,,, +428,7,3,15059,128,2023.593,128,8,F2,fff,24,144,41,23,,,,, +428,8,3,15060,128,2023.593,128,8,A#2,fff,24,144,46,23,,,,, +428,3,1,15055,128,2023.769,,,,,,144,73,0,,,,, +428,9,1,15061,170,2023.769,43,16,F4,fff,24,144,65,23,,,,, +428,4,1,15056,128,2023.861,,,,,,144,81,0,,,,, +428,5,1,15057,128,2023.861,,,,,,144,85,0,,,,, +428,9,1,15061,170,2023.949,,,,,,144,65,0,,,,, +428,10,1,15062,213,2023.949,21,32,C#4,pp,8,144,61,8,,,,, +428,10,1,15062,213,2024.037,,,,,,144,61,0,,,,, +428,11,1,15063,234,2024.037,22,32,A1,pp+,9,144,33,9,,,,, +428,6,3,15058,128,2024.129,,,,,,144,40,0,,,,, +428,7,3,15059,128,2024.129,,,,,,144,41,0,,,,, +428,8,3,15060,128,2024.129,,,,,,144,46,0,,,,, +428,11,1,15063,234,2024.129,,,,,,144,33,0,,,,, +428,12,0,15064,256,2024.129,,,,,,176,64,0,,,,,^ +428,13,1,15065,256,2024.129,,,,,,176,102,0,,,,, +428,14,3,15066,256,2024.129,32,32,D5,p-,10,144,74,10,,,,, +428,14,3,15066,256,2024.263,,,,,,144,74,0,,,,, +428,15,3,15067,288,2024.263,32,32,G#4,p,11,144,68,11,,,,, +428,15,3,15067,288,2024.397,,,,,,144,68,0,,,,, +428,16,3,15068,320,2024.397,32,32,C#4,p+,12,144,61,12,,,,, +428,16,3,15068,320,2024.531,,,,,,144,61,0,,,,, +428,17,3,15069,352,2024.531,32,32,D5,mp-,13,144,74,13,,,,, +428,17,3,15069,352,2024.665,,,,,,144,74,0,,,,, +428,19,1,15070,384,2024.665,128,8,F2,fff,24,144,41,23,,,,, +428,20,1,15071,384,2024.665,128,8,F#2,fff,24,144,42,23,,,,, +428,21,3,15072,384,2024.665,32,32,C#4,mp,14,144,61,14,,,,, +428,22,3,15073,384,2024.665,32,32,G#4,mp,14,144,68,14,,,,, +428,18,0,15074,384,2024.665,,,,,,176,64,127,,,,,V +428,21,3,15072,384,2024.799,,,,,,144,61,0,,,,, +428,22,3,15073,384,2024.799,,,,,,144,68,0,,,,, +428,23,3,15075,416,2024.799,21,32,A2,mp,14,144,45,14,,,,, +428,23,3,15075,416,2024.887,,,,,,144,45,0,,,,, +428,24,3,15076,437,2024.887,21,32,C#4,mp,14,144,61,14,,,,, +428,25,3,15077,437,2024.887,32,32,G#4,mp,14,144,68,14,,,,, +428,26,3,15078,437,2024.887,32,32,D5,mp,14,144,74,14,,,,, +428,24,3,15076,437,2024.974,,,,,,144,61,0,,,,, +428,27,3,15079,458,2024.974,22,32,A1,mp,14,144,33,14,,,,, +428,25,3,15077,437,2025.021,,,,,,144,68,0,,,,, +428,26,3,15078,437,2025.021,,,,,,144,74,0,,,,, +428,28,0,15080,480,2025.067,,,,,,176,64,0,,,,,^ +428,29,3,15081,480,2025.067,32,32,A1,,,,,,,,,, +428,19,1,15070,384,2025.2,,,,,,144,41,0,,,,, +428,20,1,15071,384,2025.2,,,,,,144,42,0,,,,, +428,27,3,15079,458,2025.2,,,,,,144,33,0,,,,, +428,30,1,15082,512,2025.2,,,,,,176,102,0,,,,, +428,31,3,15083,512,2025.2,128,8,F2,p,11,144,41,11,,,,, +428,32,0,15084,512,2025.2,,,,,,,,,,6069,,, +428,34,1,15085,640,2025.736,42,16,C#5,mf,17,144,73,17,,,,, +428,35,1,15086,640,2025.736,64,16,A5,mf,17,144,81,17,,,,, +428,36,1,15087,640,2025.736,64,16,C#6,mf,17,144,85,17,,,,, +428,37,3,15088,640,2025.736,128,8,E2,mf,17,144,40,17,,,,, +428,38,3,15089,640,2025.736,128,8,A#2,mf,17,144,46,17,,,,, +428,33,0,15090,640,2025.736,,,,,,176,64,127,,,,,V +428,34,1,15085,640,2025.912,,,,,,144,73,0,,,,, +428,39,1,15091,682,2025.912,86,8,F4,mf,17,144,65,17,,,,, +428,31,3,15083,512,2025.961,,,,,,144,41,0,,,,, +428,35,1,15086,640,2026.004,,,,,,144,81,0,,,,, +428,36,1,15087,640,2026.004,,,,,,144,85,0,,,,, +428,37,3,15088,640,2026.272,,,,,,144,40,0,,,,, +428,38,3,15089,640,2026.272,,,,,,144,46,0,,,,, +428,39,1,15091,682,2026.272,,,,,,144,65,0,,,,, +428,40,1,15092,768,2026.272,,,,,,176,102,0,,,,, +428,41,3,15093,768,2026.272,32,32,C#5,mp,14,144,73,14,,,,, +428,41,3,15093,768,2026.406,,,,,,144,73,0,,,,, +428,42,3,15094,800,2026.406,32,32,A3,mp-,13,144,57,13,,,,, +428,42,3,15094,800,2026.54,,,,,,144,57,0,,,,, +428,43,3,15095,832,2026.54,21,32,F3,p+,12,144,53,12,,,,, +428,43,3,15095,832,2026.628,,,,,,144,53,0,,,,, +428,44,3,15096,853,2026.628,21,32,E4,p,11,144,64,11,,,,, +428,44,3,15096,853,2026.716,,,,,,144,64,0,,,,, +428,45,3,15097,874,2026.716,22,32,F3,p-,10,144,53,10,,,,, +428,45,3,15097,874,2026.808,,,,,,144,53,0,,,,, +428,46,3,15098,896,2026.808,,,,,,176,102,0,,,,, +428,47,1,15099,938,2026.983,22,32,C#6,p,11,144,85,11,,,,, +428,47,1,15099,938,2027.075,,,,,,144,85,0,,,,, +428,48,1,15100,,2027.075,,8,D7,p+,12,144,98,12,,,,g, +428,48,1,15100,,2027.125,,,,,,144,98,0,,,,, +428,49,1,15101,960,2027.15,21,32,A4,mp-,13,144,69,13,,,,, +428,49,1,15101,960,2027.238,,,,,,144,69,0,,,,, +428,50,1,15102,,2027.238,,8,F5,mp-,13,144,77,13,,,,g, +428,50,1,15102,,2027.288,,,,,,144,77,0,,,,, +428,51,1,15103,,2027.313,,8,G#6,mp,14,144,92,14,,,,g, +428,51,1,15103,,2027.363,,,,,,144,92,0,,,,, +428,52,1,15104,981,2027.388,,,,,,176,102,0,,,,, +428,53,1,15105,1024,2027.568,21,32,C#5,mf,17,144,73,17,,,,, +428,54,3,15106,1024,2027.568,,,,,,176,102,0,,,,, +428,53,1,15105,1024,2027.656,,,,,,144,73,0,,,,, +428,55,1,15107,1045,2027.656,21,32,D7,mf,17,144,98,17,,,,, +428,55,1,15107,1045,2027.744,,,,,,144,98,0,,,,, +428,56,1,15108,1066,2027.744,22,32,G#6,mf+,18,144,92,18,,,,, +428,56,1,15108,1066,2027.836,,,,,,144,92,0,,,,, +428,57,1,15109,1088,2027.836,21,32,A2,f-,19,144,45,19,,,,, +428,57,1,15109,1088,2027.924,,,,,,144,45,0,,,,, +428,58,1,15110,1109,2027.924,21,32,F3,f,20,144,53,20,,,,, +428,58,1,15110,1109,2028.012,,,,,,144,53,0,,,,, +428,59,1,15111,1130,2028.012,22,32,G#6,f,20,144,92,20,,,,, +428,59,1,15111,1130,2028.104,,,,,,144,92,0,,,,, +428,60,1,15112,1152,2028.104,,,,,,176,102,0,,,,, +428,61,0,15113,1279,2028.636,,,,,,176,64,0,,,,,^ +429,0,0,15114,0,2028.64,,,,,,,,,429,,,, +429,1,1,15115,,2028.64,,8,D3,ff,22,144,50,22,,,,g, +429,1,1,15115,,2028.69,,,,,,144,50,0,,,,, +429,2,1,15116,,2028.715,,8,C#2,ff,22,144,37,22,,,,g, +429,2,1,15116,,2028.765,,,,,,144,37,0,,,,, +429,3,1,15117,,2028.79,,8,A0,ff+,23,144,21,23,,,,g, +429,3,1,15117,,2028.84,,,,,,144,21,0,,,,, +429,4,1,15118,,2028.865,,8,C#2,fff,24,144,37,23,,,,g, +429,5,1,15119,,2028.865,,8,G#2,fff,24,144,44,23,,,,g, +429,6,1,15120,,2028.865,,8,D3,fff,24,144,50,23,,,,g, +429,4,1,15118,,2028.915,,,,,,144,37,0,,,,, +429,5,1,15119,,2028.915,,,,,,144,44,0,,,,, +429,6,1,15120,,2028.915,,,,,,144,50,0,,,,, +429,7,1,15121,,2028.94,,8,A0,fff,24,144,21,23,,,,g, +429,8,1,15122,,2028.94,,8,F1,fff,24,144,29,23,,,,g, +429,7,1,15121,,2028.99,,,,,,144,21,0,,,,, +429,8,1,15122,,2028.99,,,,,,144,29,0,,,,, +429,9,1,15123,0,2029.24,192,8,C#4,fff,24,144,61,23,,,,, +429,10,3,15124,0,2029.24,,,,,,176,102,0,,,,, +429,11,0,15125,50,2029.449,,,,,,176,64,127,,,,,V +429,12,0,15126,192,2030.043,,,,,,176,64,0,,,,,^ +429,13,1,15127,192,2030.043,64,16,C#4,,,,,,,,,, +429,14,3,15128,192,2030.043,,,,,,176,102,0,,,,, +429,15,1,15129,,2030.311,,8,G3,p,11,144,55,11,,,,g, +429,15,1,15129,,2030.361,,,,,,144,55,0,,,,, +429,16,1,15130,256,2030.386,32,32,A#3,p,11,144,58,11,,,,, +429,17,1,15131,256,2030.386,32,32,C#4,,,,,,,,,, +429,18,1,15132,256,2030.386,32,32,G5,p,11,144,79,11,,,,, +429,19,3,15133,256,2030.386,,,,,,176,102,0,,,,, +429,16,1,15130,256,2030.52,,,,,,144,58,0,,,,, +429,20,1,15134,288,2030.52,32,32,C#4,,,,,,,,,, +429,21,1,15135,288,2030.52,32,32,D4,p,11,144,62,11,,,,, +429,22,1,15136,288,2030.52,32,32,G5,,,,,,,,,, +429,9,1,15123,0,2030.579,,,,,,144,61,0,,,,, +429,21,1,15135,288,2030.654,,,,,,144,62,0,,,,, +429,23,1,15137,320,2030.654,192,8,C#4,fff,24,144,61,23,,,,, +429,24,1,15138,320,2030.654,128,8,G5,,,,,,,,,, +429,25,1,15139,320,2030.654,128,8,D6,fff,24,144,86,23,,,,, +429,26,3,15140,426,2031.098,86,8,B1,p,11,144,35,11,,,,, +429,27,3,15141,426,2031.098,128,8,A#2,p,11,144,46,11,,,,, +429,18,1,15132,256,2031.19,,,,,,144,79,0,,,,, +429,25,1,15139,320,2031.19,,,,,,144,86,0,,,,, +429,23,1,15137,320,2031.458,,,,,,144,61,0,,,,, +429,29,1,15142,512,2031.458,,,,,,176,102,0,,,,, +429,30,3,15143,512,2031.458,256,4,B1,,,,,,,,,, +429,31,3,15144,512,2031.458,256,4,D2,p,11,144,38,11,,,,, +429,32,3,15145,512,2031.458,256,4,A#2,,,,,,,,,, +429,28,0,15146,512,2031.458,,,,,,176,64,127,,,,,V +429,33,1,15147,576,2031.725,21,32,C#6,mp,14,144,85,14,,,,, +429,33,1,15147,576,2031.813,,,,,,144,85,0,,,,, +429,34,1,15148,597,2031.813,21,32,A3,mp,14,144,57,14,,,,, +429,34,1,15148,597,2031.901,,,,,,144,57,0,,,,, +429,35,1,15149,618,2031.901,22,32,F3,mp,14,144,53,14,,,,, +429,35,1,15149,618,2031.993,,,,,,144,53,0,,,,, +429,36,1,15150,640,2031.993,21,32,E4,mp,14,144,64,14,,,,, +429,36,1,15150,640,2032.081,,,,,,144,64,0,,,,, +429,37,1,15151,661,2032.081,21,32,F3,mp,14,144,53,14,,,,, +429,37,1,15151,661,2032.169,,,,,,144,53,0,,,,, +429,38,1,15152,682,2032.169,22,32,E4,mp,14,144,64,14,,,,, +429,38,1,15152,682,2032.261,,,,,,144,64,0,,,,, +429,39,1,15153,704,2032.261,64,16,A#4,mp,14,144,70,14,,,,, +429,31,3,15144,512,2032.529,,,,,,144,38,0,,,,, +429,39,1,15153,704,2032.529,,,,,,144,70,0,,,,, +429,40,1,15154,768,2032.529,32,32,F#2,pp,8,144,42,8,,,,, +429,41,1,15155,768,2032.529,32,32,G3,pp,8,144,55,8,,,,, +429,42,3,15156,768,2032.529,85,8,B1,pp,8,144,35,8,,,,, +429,43,3,15157,768,2032.529,128,8,D2,pp,8,144,38,8,,,,, +429,44,3,15158,768,2032.529,128,8,A#2,pp,8,144,46,8,,,,, +429,26,3,15140,426,2032.529,,,,,,144,35,0,,,,, +429,40,1,15154,768,2032.663,,,,,,144,42,0,,,,, +429,41,1,15155,768,2032.663,,,,,,144,55,0,,,,, +429,45,1,15159,800,2032.663,32,32,C3,pp,8,144,48,8,,,,, +429,27,3,15141,426,2032.705,,,,,,144,46,0,,,,, +429,45,1,15159,800,2032.797,,,,,,144,48,0,,,,, +429,46,1,15160,832,2032.797,,,,,,176,102,0,,,,, +429,42,3,15156,768,2032.885,,,,,,144,35,0,,,,, +429,47,3,15161,853,2032.885,85,8,E4,ppp+,6,144,64,6,,,,, +429,43,3,15157,768,2033.065,,,,,,144,38,0,,,,, +429,44,3,15158,768,2033.065,,,,,,144,46,0,,,,, +429,47,3,15161,853,2033.241,,,,,,144,64,0,,,,, +429,48,3,15162,938,2033.241,86,8,F#1,ppp,5,144,30,5,,,,, +429,49,3,15163,938,2033.241,128,8,B1,ppp,5,144,35,5,,,,, +429,50,3,15164,938,2033.241,128,8,D2,ppp,5,144,38,5,,,,, +429,51,3,15165,938,2033.241,128,8,A#2,ppp,5,144,46,5,,,,, +429,52,0,15166,960,2033.333,,,,,,176,64,0,,,,,^ +429,53,1,15167,960,2033.333,32,32,F#3,p,11,144,54,11,,,,, +429,53,1,15167,960,2033.467,,,,,,144,54,0,,,,, +429,54,1,15168,992,2033.467,32,32,A#4,p,11,144,70,11,,,,, +429,48,3,15162,938,2033.6,,,,,,144,30,0,,,,, +429,54,1,15168,992,2033.6,,,,,,144,70,0,,,,, +429,55,1,15169,1024,2033.6,256,4,G5,p,11,144,79,11,,,,, +429,56,3,15170,1024,2033.6,,,,,,176,102,0,,,,, +429,49,3,15163,938,2033.776,,,,,,144,35,0,,,,, +429,50,3,15164,938,2033.776,,,,,,144,38,0,,,,, +429,51,3,15165,938,2033.776,,,,,,144,46,0,,,,, +429,57,3,15171,1120,2034.002,32,32,B5,p,11,144,83,11,,,,, +429,57,3,15171,1120,2034.136,,,,,,144,83,0,,,,, +429,58,3,15172,1152,2034.136,32,32,D4,p,11,144,62,11,,,,, +429,58,3,15172,1152,2034.27,,,,,,144,62,0,,,,, +429,59,3,15173,1184,2034.27,32,32,F2,p,11,144,41,11,,,,, +429,59,3,15173,1184,2034.404,,,,,,144,41,0,,,,, +429,60,3,15174,1216,2034.404,32,32,F2,p,11,144,41,11,,,,, +429,61,3,15175,1216,2034.404,32,32,F#3,p,11,144,54,11,,,,, +429,62,3,15176,1216,2034.404,32,32,D4,p,11,144,62,11,,,,, +429,63,3,15177,1216,2034.404,32,32,B4,p,11,144,71,11,,,,, +429,60,3,15174,1216,2034.538,,,,,,144,41,0,,,,, +429,61,3,15175,1216,2034.538,,,,,,144,54,0,,,,, +429,62,3,15176,1216,2034.538,,,,,,144,62,0,,,,, +429,63,3,15177,1216,2034.538,,,,,,144,71,0,,,,, +429,64,3,15178,1248,2034.538,32,32,A#4,p,11,144,70,11,,,,, +429,64,3,15178,1248,2034.672,,,,,,144,70,0,,,,, +430,0,0,15179,0,2034.672,,,,,,,,,430,,,, +430,1,1,15180,0,2034.672,128,8,G5,,,,,,,,,, +430,2,3,15181,0,2034.672,32,32,F#2,ppp,5,144,42,5,,,,, +430,3,3,15182,0,2034.672,32,32,G3,ppp,5,144,55,5,,,,, +430,2,3,15181,0,2034.806,,,,,,144,42,0,,,,, +430,3,3,15182,0,2034.806,,,,,,144,55,0,,,,, +430,4,3,15183,32,2034.806,32,32,A#3,ppp,5,144,58,5,,,,, +430,4,3,15183,32,2034.94,,,,,,144,58,0,,,,, +430,5,3,15184,64,2034.94,32,32,D4,ppp,5,144,62,5,,,,, +430,5,3,15184,64,2035.074,,,,,,144,62,0,,,,, +430,6,3,15185,96,2035.074,32,32,F#2,ppp,5,144,42,5,,,,, +430,7,3,15186,96,2035.074,32,32,C3,ppp,5,144,48,5,,,,, +430,8,3,15187,96,2035.074,32,32,G3,ppp,5,144,55,5,,,,, +429,55,1,15169,1024,2035.208,,,,,,144,79,0,,,,, +430,6,3,15185,96,2035.208,,,,,,144,42,0,,,,, +430,7,3,15186,96,2035.208,,,,,,144,48,0,,,,, +430,8,3,15187,96,2035.208,,,,,,144,55,0,,,,, +430,10,1,15188,128,2035.208,96,16,E4,ppp,5,144,64,5,,,,, +430,11,3,15189,128,2035.208,,,,,,176,102,0,,,,, +430,9,0,15190,128,2035.208,,,,,,176,64,127,,,,,V +430,12,3,15191,170,2035.383,86,8,F#1,ppp,5,144,30,5,,,,, +430,13,3,15192,170,2035.383,128,8,B1,ppp,5,144,35,5,,,,, +430,14,3,15193,170,2035.383,128,8,D2,ppp,5,144,38,5,,,,, +430,15,3,15194,170,2035.383,128,8,A#2,ppp,5,144,46,5,,,,, +430,16,3,15195,170,2035.383,128,8,E3,ppp,5,144,52,5,,,,, +430,18,0,15196,239,2035.495,,,,,,176,64,0,,,,,^ +430,10,1,15188,128,2035.609,,,,,,144,64,0,,,,, +430,17,1,15197,224,2035.609,32,32,F2,mp,14,144,41,14,,,,, +430,19,0,15198,239,2035.609,,,,,,,,,,6070,,, +430,17,1,15197,224,2035.681,,,,,,144,41,0,,,,, +430,21,1,15199,256,2035.681,128,8,F2,mf,17,144,41,17,,,,, +430,22,1,15200,256,2035.681,128,8,C#3,mf,17,144,49,17,,,,, +430,23,3,15201,256,2035.681,170,8,B5,p,11,144,83,11,,,,, +430,12,3,15191,170,2035.743,,,,,,144,30,0,,,,, +430,20,0,15202,256,2035.795,,,,,,176,64,127,,,,,V +430,13,3,15192,170,2035.919,,,,,,144,35,0,,,,, +430,14,3,15193,170,2035.919,,,,,,144,38,0,,,,, +430,15,3,15194,170,2035.919,,,,,,144,46,0,,,,, +430,16,3,15195,170,2035.919,,,,,,144,52,0,,,,, +430,21,1,15199,256,2036.216,,,,,,144,41,0,,,,, +430,22,1,15200,256,2036.216,,,,,,144,49,0,,,,, +430,24,1,15203,384,2036.216,384,4,G5,p,11,144,79,11,,,,, +430,23,3,15201,256,2036.392,,,,,,144,83,0,,,,, +430,25,3,15204,426,2036.392,29,32,F#2,p,11,144,42,11,,,,, +430,25,3,15204,426,2036.513,,,,,,144,42,0,,,,, +430,26,3,15205,455,2036.513,28,32,D3,p+,12,144,50,12,,,,, +430,26,3,15205,455,2036.631,,,,,,144,50,0,,,,, +430,27,3,15206,483,2036.631,29,32,F#2,mp-,13,144,42,13,,,,, +430,27,3,15206,483,2036.752,,,,,,144,42,0,,,,, +430,28,3,15207,512,2036.752,28,32,B5,mp,14,144,83,14,,,,, +430,28,3,15207,512,2036.869,,,,,,144,83,0,,,,, +430,29,3,15208,540,2036.869,28,32,D3,mp,14,144,50,14,,,,, +430,29,3,15208,540,2036.986,,,,,,144,50,0,,,,, +430,30,3,15209,568,2036.986,29,32,F#2,mp,14,144,42,14,,,,, +430,30,3,15209,568,2037.108,,,,,,144,42,0,,,,, +430,31,3,15210,597,2037.108,,,,,,176,102,0,,,,, +430,32,3,15211,682,2037.463,86,16,F#1,ppp,5,144,30,5,,,,, +430,33,3,15212,682,2037.463,64,16,B1,ppp,5,144,35,5,,,,, +430,34,3,15213,682,2037.463,64,16,D2,ppp,5,144,38,5,,,,, +430,35,3,15214,682,2037.463,64,16,A#2,ppp,5,144,46,5,,,,, +430,36,3,15215,682,2037.463,64,16,E3,ppp,5,144,52,5,,,,, +430,33,3,15212,682,2037.731,,,,,,144,35,0,,,,, +430,34,3,15213,682,2037.731,,,,,,144,38,0,,,,, +430,35,3,15214,682,2037.731,,,,,,144,46,0,,,,, +430,36,3,15215,682,2037.731,,,,,,144,52,0,,,,, +430,32,3,15211,682,2037.823,,,,,,144,30,0,,,,, +430,37,1,15216,768,2037.823,153,8,A5,p,11,144,81,11,,,,, +430,38,3,15217,768,2037.823,,,,,,176,102,0,,,,, +430,24,1,15203,384,2037.823,,,,,,144,79,0,,,,, +430,39,3,15218,896,2038.359,128,8,F2,mf,17,144,41,17,,,,, +430,40,3,15219,896,2038.359,128,8,C#3,mf,17,144,49,17,,,,, +430,41,3,15220,896,2038.359,128,8,G#4,mf,17,144,68,17,,,,, +430,37,1,15216,768,2038.464,,,,,,144,81,0,,,,, +430,42,1,15221,921,2038.464,103,8,C#5,p+,12,144,73,12,,,,, +430,39,3,15218,896,2038.895,,,,,,144,41,0,,,,, +430,40,3,15219,896,2038.895,,,,,,144,49,0,,,,, +430,41,3,15220,896,2038.895,,,,,,144,68,0,,,,, +430,42,1,15221,921,2038.895,,,,,,144,73,0,,,,, +430,43,1,15222,1024,2038.895,38,32,A5,mp-,13,144,81,13,,,,, +430,44,3,15223,1024,2038.895,,,,,,176,102,0,,,,, +430,43,1,15222,1024,2039.054,,,,,,144,81,0,,,,, +430,45,1,15224,1062,2039.054,26,32,C#5,mp-,13,144,73,13,,,,, +430,45,1,15224,1062,2039.163,,,,,,144,73,0,,,,, +430,46,1,15225,1088,2039.163,25,32,A#3,mp,14,144,58,14,,,,, +430,46,1,15225,1088,2039.267,,,,,,144,58,0,,,,, +430,47,1,15226,1113,2039.267,39,32,A6,mp,14,144,93,14,,,,, +430,47,1,15226,1113,2039.431,,,,,,144,93,0,,,,, +430,48,1,15227,1152,2039.431,42,32,C#6,mp,14,144,85,14,,,,, +430,48,1,15227,1152,2039.606,,,,,,144,85,0,,,,, +430,49,1,15228,1194,2039.606,29,32,F4,mp,14,144,65,14,,,,, +430,49,1,15228,1194,2039.728,,,,,,144,65,0,,,,, +430,50,1,15229,1223,2039.728,28,32,C#6,mp+,15,144,85,15,,,,, +430,50,1,15229,1223,2039.845,,,,,,144,85,0,,,,, +430,51,1,15230,1251,2039.845,29,32,A#3,mp+,15,144,58,15,,,,, +430,51,1,15230,1251,2039.966,,,,,,144,58,0,,,,, +431,0,0,15231,0,2039.966,,,,,,,,,431,,,, +431,1,1,15232,0,2039.966,28,32,F4,mp+,15,144,65,15,,,,, +431,2,3,15233,0,2039.966,,,,,,176,102,0,,,,, +431,1,1,15232,0,2040.083,,,,,,144,65,0,,,,, +431,3,1,15234,28,2040.083,28,32,E3,mp+,15,144,52,15,,,,, +431,3,1,15234,28,2040.201,,,,,,144,52,0,,,,, +431,4,1,15235,56,2040.201,43,32,A#3,mf-,16,144,58,16,,,,, +431,4,1,15235,56,2040.381,,,,,,144,58,0,,,,, +431,5,1,15236,99,2040.381,29,32,E2,mf-,16,144,40,16,,,,, +431,5,1,15236,99,2040.502,,,,,,144,40,0,,,,, +431,6,1,15237,128,2040.502,42,32,A6,mf-,16,144,93,16,,,,, +431,6,1,15237,128,2040.678,,,,,,144,93,0,,,,, +431,7,1,15238,170,2040.678,29,32,C#6,mf,17,144,85,17,,,,, +431,7,1,15238,170,2040.799,,,,,,144,85,0,,,,, +431,8,1,15239,199,2040.799,28,32,A#4,mf,17,144,70,17,,,,, +431,8,1,15239,199,2040.916,,,,,,144,70,0,,,,, +431,9,0,15240,227,2040.916,,,,,,176,64,0,,,,,^ +431,10,1,15241,227,2040.916,29,32,F5,mf,17,144,77,17,,,,, +431,10,1,15241,227,2041.038,,,,,,144,77,0,,,,, +431,11,1,15242,256,2041.038,512,2,A#3,f,20,144,58,20,,,,, +431,12,3,15243,256,2041.038,,,,,,176,102,0,,,,, +431,14,3,15244,341,2041.393,28,32,A#4,p,11,144,70,11,,,,, +431,13,0,15245,341,2041.393,,,,,,176,64,127,,,,,V +431,14,3,15244,341,2041.511,,,,,,144,70,0,,,,, +431,15,3,15246,369,2041.511,29,32,G2,p,11,144,43,11,,,,, +431,15,3,15246,369,2041.632,,,,,,144,43,0,,,,, +431,16,3,15247,398,2041.632,28,32,A#4,p+,12,144,70,12,,,,, +431,16,3,15247,398,2041.749,,,,,,144,70,0,,,,, +431,17,3,15248,426,2041.749,43,32,F#2,p+,12,144,42,12,,,,, +431,17,3,15248,426,2041.929,,,,,,144,42,0,,,,, +431,18,3,15249,469,2041.929,43,32,A#4,p+,12,144,70,12,,,,, +431,18,3,15249,469,2042.109,,,,,,144,70,0,,,,, +431,19,3,15250,512,2042.109,42,16,B5,mp-,13,144,83,13,,,,, +431,19,3,15250,512,2042.285,,,,,,144,83,0,,,,, +431,20,3,15251,554,2042.285,43,16,D3,mp-,13,144,50,13,,,,, +431,20,3,15251,554,2042.465,,,,,,144,50,0,,,,, +431,21,3,15252,597,2042.465,43,16,F2,mp,14,144,41,14,,,,, +431,21,3,15252,597,2042.645,,,,,,144,41,0,,,,, +431,22,3,15253,640,2042.645,25,32,F#2,mp,14,144,42,14,,,,, +431,23,3,15254,640,2042.645,32,32,E3,pp,8,144,52,8,,,,, +431,22,3,15253,640,2042.749,,,,,,144,42,0,,,,, +431,24,3,15255,665,2042.749,26,32,C#6,pp,8,144,85,8,,,,, +431,23,3,15254,640,2042.779,,,,,,144,52,0,,,,, +431,24,3,15255,665,2042.858,,,,,,144,85,0,,,,, +431,25,3,15256,691,2042.858,25,32,A#4,pp,8,144,70,8,,,,, +431,25,3,15256,691,2042.963,,,,,,144,70,0,,,,, +431,26,3,15257,716,2042.963,26,32,A2,pp,8,144,45,8,,,,, +431,26,3,15257,716,2043.072,,,,,,144,45,0,,,,, +431,27,3,15258,742,2043.072,26,32,F2,pp,8,144,41,8,,,,, +431,11,1,15242,256,2043.181,,,,,,144,58,0,,,,, +431,27,3,15258,742,2043.181,,,,,,144,41,0,,,,, +431,28,1,15259,768,2043.181,,,,,,176,102,0,,,,, +431,29,3,15260,768,2043.181,,,,,,176,102,0,,,,, +431,30,1,15261,896,2043.716,42,32,C#6,pp,8,144,85,8,,,,, +431,30,1,15261,896,2043.892,,,,,,144,85,0,,,,, +431,31,1,15262,938,2043.892,29,32,A2,pp,8,144,45,8,,,,, +431,32,3,15263,938,2043.892,86,8,F#1,ppp,5,144,30,5,,,,, +431,33,3,15264,938,2043.892,128,8,B1,ppp,5,144,35,5,,,,, +431,34,3,15265,938,2043.892,128,8,D2,ppp,5,144,38,5,,,,, +431,35,3,15266,938,2043.892,128,8,A#2,ppp,5,144,46,5,,,,, +431,36,3,15267,938,2043.892,128,8,E3,ppp,5,144,52,5,,,,, +431,31,1,15262,938,2044.013,,,,,,144,45,0,,,,, +431,37,1,15268,967,2044.013,28,32,F2,pp,8,144,41,8,,,,, +431,36,3,15267,938,2044.131,,,,,,144,52,0,,,,, +431,37,1,15268,967,2044.131,,,,,,144,41,0,,,,, +431,38,1,15269,995,2044.131,29,32,E3,pp,8,144,52,8,,,,, +431,32,3,15263,938,2044.252,,,,,,144,30,0,,,,, +431,39,1,15270,1024,2044.252,,,,,,176,102,0,,,,, +431,40,3,15271,1024,2044.252,,,,,,176,102,0,,,,, +431,33,3,15264,938,2044.428,,,,,,144,35,0,,,,, +431,34,3,15265,938,2044.428,,,,,,144,38,0,,,,, +431,35,3,15266,938,2044.428,,,,,,144,46,0,,,,, +431,38,1,15269,995,2044.428,,,,,,144,52,0,,,,, +431,41,1,15272,1152,2044.788,42,16,C#7,pp,8,144,97,8,,,,, +431,41,1,15272,1152,2044.963,,,,,,144,97,0,,,,, +431,42,1,15273,1194,2044.963,43,16,A2,pp,8,144,45,8,,,,, +431,42,1,15273,1194,2045.143,,,,,,144,45,0,,,,, +431,43,1,15274,1237,2045.143,43,16,E3,pp,8,144,52,8,,,,, +431,43,1,15274,1237,2045.323,,,,,,144,52,0,,,,, +432,0,0,15275,0,2045.323,,,,,,,,,432,,,, +432,1,1,15276,0,2045.323,28,32,F2,pp,8,144,41,8,,,,, +432,2,1,15277,0,2045.323,32,32,A2,pp,8,144,45,8,,,,, +432,3,3,15278,0,2045.323,,,,,,176,102,0,,,,, +432,1,1,15276,0,2045.441,,,,,,144,41,0,,,,, +432,4,1,15279,28,2045.441,28,32,C#7,pp,8,144,97,8,,,,, +432,2,1,15277,0,2045.457,,,,,,144,45,0,,,,, +432,4,1,15279,28,2045.558,,,,,,144,97,0,,,,, +432,5,1,15280,56,2045.558,29,32,A#5,pp,8,144,82,8,,,,, +432,5,1,15280,56,2045.679,,,,,,144,82,0,,,,, +432,6,1,15281,85,2045.679,43,32,F2,pp,8,144,41,8,,,,, +432,7,1,15282,85,2045.679,32,32,A2,pp,8,144,45,8,,,,, +432,8,1,15283,85,2045.679,32,32,E3,pp,8,144,52,8,,,,, +432,7,1,15282,85,2045.813,,,,,,144,45,0,,,,, +432,8,1,15283,85,2045.813,,,,,,144,52,0,,,,, +432,6,1,15281,85,2045.859,,,,,,144,41,0,,,,, +432,9,1,15284,128,2045.859,128,8,A#5,pp,8,144,82,8,,,,, +432,9,1,15284,128,2046.395,,,,,,144,82,0,,,,, +432,10,1,15285,256,2046.395,,,,,,176,102,0,,,,, +432,11,3,15286,256,2046.395,,,,,,176,102,0,,,,, +432,12,1,15287,384,2046.931,25,32,E5,ppp,5,144,76,5,,,,, +432,12,1,15287,384,2047.035,,,,,,144,76,0,,,,, +432,13,1,15288,409,2047.035,26,32,B5,ppp,5,144,83,5,,,,, +432,13,1,15288,409,2047.144,,,,,,144,83,0,,,,, +432,14,1,15289,435,2047.144,25,32,G4,ppp,5,144,67,5,,,,, +432,14,1,15289,435,2047.249,,,,,,144,67,0,,,,, +432,15,1,15290,460,2047.249,26,32,A#4,ppp,5,144,70,5,,,,, +432,16,1,15291,460,2047.249,32,32,E5,ppp,5,144,76,5,,,,, +432,15,1,15290,460,2047.357,,,,,,144,70,0,,,,, +432,17,1,15292,486,2047.357,26,32,D#7,ppp,5,144,99,5,,,,, +432,16,1,15291,460,2047.383,,,,,,144,76,0,,,,, +432,17,1,15292,486,2047.466,,,,,,144,99,0,,,,, +432,18,1,15293,512,2047.466,,,,,,176,102,0,,,,, +432,19,3,15294,512,2047.466,,,,,,176,102,0,,,,, +432,20,1,15295,576,2047.734,96,16,E1,mp,14,144,28,14,,,,, +432,21,1,15296,576,2047.734,64,16,A#3,mp,14,144,58,14,,,,, +432,22,3,15297,597,2047.822,171,4,F#1,pp,8,144,30,8,,,,, +432,23,3,15298,597,2047.822,256,4,B1,pp,8,144,35,8,,,,, +432,24,3,15299,597,2047.822,256,4,D2,pp,8,144,38,8,,,,, +432,25,3,15300,597,2047.822,256,4,A#2,pp,8,144,46,8,,,,, +432,26,3,15301,597,2047.822,256,4,E3,pp,8,144,52,8,,,,, +432,21,1,15296,576,2048.002,,,,,,144,58,0,,,,, +432,20,1,15295,576,2048.136,,,,,,144,28,0,,,,, +432,27,1,15302,672,2048.136,96,16,E1,mf,17,144,28,17,,,,, +432,22,3,15297,597,2048.538,,,,,,144,30,0,,,,, +432,27,1,15302,672,2048.538,,,,,,144,28,0,,,,, +433,0,0,15303,0,2048.538,,,,,,,,,433,,,, +433,1,1,15304,0,2048.538,42,16,C#7,pp,8,144,97,8,,,,, +433,2,1,15305,0,2048.538,64,16,A7,f,20,144,105,20,,,,, +433,3,3,15306,0,2048.538,256,4,E1,f,20,144,28,20,,,,, +433,1,1,15304,0,2048.713,,,,,,144,97,0,,,,, +433,4,1,15307,42,2048.713,43,16,A1,pp,8,144,33,8,,,,, +433,2,1,15305,0,2048.806,,,,,,144,105,0,,,,, +433,5,1,15308,85,2048.893,43,16,E2,pp,8,144,40,8,,,,, +432,23,3,15298,597,2048.893,,,,,,144,35,0,,,,, +432,24,3,15299,597,2048.893,,,,,,144,38,0,,,,, +432,25,3,15300,597,2048.893,,,,,,144,46,0,,,,, +432,26,3,15301,597,2048.893,,,,,,144,52,0,,,,, +433,4,1,15307,42,2048.893,,,,,,144,33,0,,,,, +433,6,1,15309,128,2049.073,28,32,F1,pp,8,144,29,8,,,,, +433,7,1,15310,128,2049.073,32,32,A1,pp,8,144,33,8,,,,, +433,5,1,15308,85,2049.073,,,,,,144,40,0,,,,, +433,6,1,15309,128,2049.191,,,,,,144,29,0,,,,, +433,8,1,15311,156,2049.191,28,32,C#7,pp,8,144,97,8,,,,, +433,7,1,15310,128,2049.207,,,,,,144,33,0,,,,, +433,8,1,15311,156,2049.308,,,,,,144,97,0,,,,, +433,9,1,15312,184,2049.308,29,32,A#5,pp,8,144,82,8,,,,, +433,10,1,15313,213,2049.429,43,32,F1,pp,8,144,29,8,,,,, +433,11,1,15314,213,2049.429,32,32,A1,pp,8,144,33,8,,,,, +433,12,1,15315,213,2049.429,32,32,E2,pp,8,144,40,8,,,,, +433,9,1,15312,184,2049.429,,,,,,144,82,0,,,,, +433,11,1,15314,213,2049.563,,,,,,144,33,0,,,,, +433,12,1,15315,213,2049.563,,,,,,144,40,0,,,,, +433,10,1,15313,213,2049.609,,,,,,144,29,0,,,,, +433,13,1,15316,256,2049.609,28,32,B6,p,11,144,95,11,,,,, +433,14,3,15317,256,2049.609,,,,,,176,102,0,,,,, +433,3,3,15306,0,2049.609,,,,,,144,28,0,,,,, +433,15,1,15318,284,2049.726,28,32,F2,p,11,144,41,11,,,,, +433,13,1,15316,256,2049.726,,,,,,144,95,0,,,,, +433,15,1,15318,284,2049.843,,,,,,144,41,0,,,,, +433,16,1,15319,312,2049.843,29,32,D5,p,11,144,74,11,,,,, +433,17,1,15320,341,2049.965,43,32,B5,p,11,144,83,11,,,,, +433,16,1,15319,312,2049.965,,,,,,144,74,0,,,,, +433,18,1,15321,384,2050.145,42,32,D5,p,11,144,74,11,,,,, +433,17,1,15320,341,2050.145,,,,,,144,83,0,,,,, +433,19,1,15322,426,2050.321,29,32,F1,p,11,144,29,11,,,,, +433,18,1,15321,384,2050.321,,,,,,144,74,0,,,,, +433,19,1,15322,426,2050.442,,,,,,144,29,0,,,,, +433,20,1,15323,455,2050.442,28,32,A#5,p,11,144,82,11,,,,, +433,21,1,15324,483,2050.559,43,32,F#2,p,11,144,42,11,,,,, +433,20,1,15323,455,2050.559,,,,,,144,82,0,,,,, +433,22,3,15325,512,2050.681,,,,,,176,102,0,,,,, +433,23,1,15326,526,2050.739,28,32,A#5,p,11,144,82,11,,,,, +433,21,1,15324,483,2050.739,,,,,,144,42,0,,,,, +433,23,1,15326,526,2050.856,,,,,,144,82,0,,,,, +433,24,1,15327,554,2050.856,43,32,F1,p,11,144,29,11,,,,, +433,24,1,15327,554,2051.036,,,,,,144,29,0,,,,, +433,25,1,15328,597,2051.036,43,32,F#2,p,11,144,42,11,,,,, +433,26,1,15329,640,2051.216,28,32,F1,p,11,144,29,11,,,,, +433,27,1,15330,640,2051.216,32,32,A1,p,11,144,33,11,,,,, +433,25,1,15328,597,2051.216,,,,,,144,42,0,,,,, +433,26,1,15329,640,2051.333,,,,,,144,29,0,,,,, +433,28,1,15331,668,2051.333,28,32,C#7,p,11,144,97,11,,,,, +433,27,1,15330,640,2051.35,,,,,,144,33,0,,,,, +433,28,1,15331,668,2051.451,,,,,,144,97,0,,,,, +433,29,1,15332,696,2051.451,29,32,A#5,p,11,144,82,11,,,,, +433,30,1,15333,725,2051.572,43,32,F1,p,11,144,29,11,,,,, +433,31,1,15334,725,2051.572,32,32,A1,p,11,144,33,11,,,,, +433,32,1,15335,725,2051.572,32,32,E2,p,11,144,40,11,,,,, +433,29,1,15332,696,2051.572,,,,,,144,82,0,,,,, +433,31,1,15334,725,2051.706,,,,,,144,33,0,,,,, +433,32,1,15335,725,2051.706,,,,,,144,40,0,,,,, +433,30,1,15333,725,2051.752,,,,,,144,29,0,,,,, +433,33,1,15336,768,2051.752,96,16,C#7,mp,14,144,97,14,,,,, +433,34,1,15337,768,2051.752,64,16,A7,mp,14,144,105,14,,,,, +433,35,3,15338,768,2051.752,85,8,E1,mp,14,144,28,14,,,,, +433,34,1,15337,768,2052.02,,,,,,144,105,0,,,,, +433,35,3,15338,768,2052.108,,,,,,144,28,0,,,,, +433,36,3,15339,853,2052.108,171,4,F#1,pp,8,144,30,8,,,,, +433,37,3,15340,853,2052.108,256,4,B1,pp,8,144,35,8,,,,, +433,38,3,15341,853,2052.108,256,4,D2,pp,8,144,38,8,,,,, +433,33,1,15336,768,2052.154,,,,,,144,97,0,,,,, +433,39,1,15342,864,2052.154,32,32,F5,mp,14,144,77,14,,,,, +433,39,1,15342,864,2052.288,,,,,,144,77,0,,,,, +433,40,1,15343,896,2052.288,48,32,C5,p,11,144,72,11,,,,, +433,40,1,15343,896,2052.489,,,,,,144,72,0,,,,, +433,41,1,15344,944,2052.489,32,32,C#2,p+,12,144,37,12,,,,, +433,41,1,15344,944,2052.623,,,,,,144,37,0,,,,, +433,42,1,15345,976,2052.623,48,32,G#2,mp-,13,144,44,13,,,,, +433,42,1,15345,976,2052.823,,,,,,144,44,0,,,,, +433,43,1,15346,1024,2052.823,48,32,C5,mp-,13,144,72,13,,,,, +433,44,3,15347,1024,2052.823,,,,,,176,102,0,,,,, +433,36,3,15339,853,2052.823,,,,,,144,30,0,,,,, +433,43,1,15346,1024,2053.024,,,,,,144,72,0,,,,, +433,45,1,15348,1072,2053.024,48,32,C#2,mp,14,144,37,14,,,,, +433,37,3,15340,853,2053.179,,,,,,144,35,0,,,,, +433,38,3,15341,853,2053.179,,,,,,144,38,0,,,,, +433,45,1,15348,1072,2053.225,,,,,,144,37,0,,,,, +433,46,1,15349,1120,2053.225,96,16,G6,mp+,15,144,91,15,,,,, +433,46,1,15349,1120,2053.627,,,,,,144,91,0,,,,, +433,47,1,15350,1216,2053.627,64,16,E3,mf,17,144,52,17,,,,, +433,47,1,15350,1216,2053.895,,,,,,144,52,0,,,,, +433,48,1,15351,1280,2053.895,256,4,F5,pp,8,144,77,8,,,,, +433,49,1,15352,1280,2053.895,256,4,C#7,pp,8,144,97,8,,,,, +433,50,1,15353,1280,2053.895,256,4,A7,pp,8,144,105,8,,,,, +433,51,3,15354,1280,2053.895,,,,,,176,102,0,,,,, +433,52,0,15355,1496,2054.77,,,,,,176,64,0,,,,,^ +434,0,0,15356,0,2054.966,,,,,,,,,434,,,, +434,1,0,15357,0,2054.966,,,,,,,,,,6071,,, +434,3,1,15358,0,2054.966,256,4,B6,f,20,144,95,20,,,,, +434,4,3,15359,,2054.966,,8,C4,mp,14,144,60,14,,,,g, +433,48,1,15351,1280,2054.966,,,,,,144,77,0,,,,, +433,49,1,15352,1280,2054.966,,,,,,144,97,0,,,,, +433,50,1,15353,1280,2054.966,,,,,,144,105,0,,,,, +434,4,3,15359,,2055.016,,,,,,144,60,0,,,,, +434,5,3,15360,0,2055.041,256,4,G4,mp,14,144,67,14,,,,, +434,2,0,15361,0,2055.07,,,,,,176,64,127,,,,,V +434,3,1,15358,0,2056.038,,,,,,144,95,0,,,,, +434,6,1,15362,256,2056.113,256,4,D4,f,20,144,62,20,,,,, +434,7,1,15363,256,2056.113,256,4,B6,f,20,144,95,20,,,,, +434,8,3,15364,256,2056.113,85,8,G4,,,,,,,,,, +434,9,3,15365,341,2056.468,85,8,E3,mp+,15,144,52,15,,,,, +434,5,3,15360,0,2056.468,,,,,,144,67,0,,,,, +434,10,3,15366,426,2056.824,,,,,,176,102,0,,,,, +434,9,3,15365,341,2056.824,,,,,,144,52,0,,,,, +434,6,1,15362,256,2057.184,,,,,,144,62,0,,,,, +434,11,1,15367,512,2057.184,32,32,F1,mp+,15,144,29,15,,,,, +434,12,1,15368,512,2057.184,32,32,D4,mp+,15,144,62,15,,,,, +434,13,3,15369,512,2057.184,,,,,,176,102,0,,,,, +434,7,1,15363,256,2057.184,,,,,,144,95,0,,,,, +434,11,1,15367,512,2057.318,,,,,,144,29,0,,,,, +434,12,1,15368,512,2057.318,,,,,,144,62,0,,,,, +434,14,1,15370,544,2057.318,32,32,F1,mp+,15,144,29,15,,,,, +434,15,1,15371,544,2057.318,32,32,F#3,mp+,15,144,54,15,,,,, +434,16,1,15372,544,2057.318,32,32,D4,mp+,15,144,62,15,,,,, +434,14,1,15370,544,2057.452,,,,,,144,29,0,,,,, +434,15,1,15371,544,2057.452,,,,,,144,54,0,,,,, +434,16,1,15372,544,2057.452,,,,,,144,62,0,,,,, +434,17,1,15373,576,2057.452,192,8,A#5,mp+,15,144,82,15,,,,, +434,18,1,15374,576,2057.452,128,8,B6,mp+,15,144,95,15,,,,, +434,19,3,15375,640,2057.72,21,32,G#1,mp,14,144,32,14,,,,, +434,19,3,15375,640,2057.808,,,,,,144,32,0,,,,, +434,20,3,15376,661,2057.808,21,32,C#1,mp+,15,144,25,15,,,,, +434,20,3,15376,661,2057.896,,,,,,144,25,0,,,,, +434,21,3,15377,682,2057.896,32,32,G#1,mf-,16,144,32,16,,,,, +434,18,1,15374,576,2057.988,,,,,,144,95,0,,,,, +434,21,3,15377,682,2058.03,,,,,,144,32,0,,,,, +434,22,3,15378,714,2058.03,32,32,C4,mf,17,144,60,17,,,,, +434,22,3,15378,714,2058.163,,,,,,144,60,0,,,,, +434,23,3,15379,746,2058.163,22,32,C#1,mf+,18,144,25,18,,,,, +434,24,3,15380,746,2058.163,32,32,G#1,mf+,18,144,32,18,,,,, +434,25,3,15381,746,2058.163,32,32,C4,mf+,18,144,60,18,,,,, +434,26,0,15382,768,2058.173,,,,,,176,64,0,,,,,^ +434,27,1,15383,768,2058.256,,,,,,176,102,0,,,,, +434,28,3,15384,768,2058.256,,,,,,176,102,0,,,,, +434,17,1,15373,576,2058.331,,,,,,144,82,0,,,,, +434,23,3,15379,746,2058.331,,,,,,144,25,0,,,,, +434,24,3,15380,746,2058.372,,,,,,144,32,0,,,,, +434,25,3,15381,746,2058.372,,,,,,144,60,0,,,,, +434,30,3,15385,800,2058.389,32,32,C#1,f,20,144,25,20,,,,, +434,31,3,15386,800,2058.389,32,32,G#1,f,20,144,32,20,,,,, +434,32,3,15387,800,2058.389,32,32,C4,f,20,144,60,20,,,,, +434,29,0,15388,800,2058.473,,,,,,176,64,127,,,,,V +434,30,3,15385,800,2058.523,,,,,,144,25,0,,,,, +434,31,3,15386,800,2058.523,,,,,,144,32,0,,,,, +434,32,3,15387,800,2058.523,,,,,,144,60,0,,,,, +434,33,3,15389,832,2058.523,,,,,,176,102,0,,,,, +434,34,1,15390,853,2058.611,21,32,A#5,p,11,144,82,11,,,,, +434,35,1,15391,853,2058.611,32,32,B6,p,11,144,95,11,,,,, +434,36,3,15392,853,2058.611,43,16,F#3,p,11,144,54,11,,,,, +434,37,3,15393,853,2058.611,64,16,D4,p,11,144,62,11,,,,, +434,34,1,15390,853,2058.699,,,,,,144,82,0,,,,, +434,38,1,15394,874,2058.699,22,32,G6,mp,14,144,91,14,,,,, +434,35,1,15391,853,2058.745,,,,,,144,95,0,,,,, +434,39,1,15395,896,2058.791,21,32,C6,mp+,15,144,84,15,,,,, +434,40,3,15396,896,2058.791,,,,,,176,102,0,,,,, +434,36,3,15392,853,2058.791,,,,,,144,54,0,,,,, +434,38,1,15394,874,2058.791,,,,,,144,91,0,,,,, +434,39,1,15395,896,2058.879,,,,,,144,84,0,,,,, +434,41,1,15397,917,2058.879,21,32,E5,mf-,16,144,76,16,,,,, +434,37,3,15393,853,2058.879,,,,,,144,62,0,,,,, +434,41,1,15397,917,2058.967,,,,,,144,76,0,,,,, +434,42,1,15398,938,2058.967,22,32,C#3,mf,17,144,49,17,,,,, +434,42,1,15398,938,2059.059,,,,,,144,49,0,,,,, +434,43,1,15399,960,2059.059,21,32,G#3,mf+,18,144,56,18,,,,, +434,43,1,15399,960,2059.147,,,,,,144,56,0,,,,, +434,44,1,15400,981,2059.147,21,32,C6,f-,19,144,84,19,,,,, +434,44,1,15400,981,2059.235,,,,,,144,84,0,,,,, +434,45,1,15401,1002,2059.235,22,32,C#3,f,20,144,49,20,,,,, +434,46,0,15402,1008,2059.26,,,,,,176,64,0,,,,,^ +434,51,1,15403,1024,2059.327,42,16,E4,p,11,144,64,11,,,,, +434,48,1,15404,,2059.327,,8,C5,mp,14,144,72,14,,,,g, +434,45,1,15401,1002,2059.327,,,,,,144,49,0,,,,, +434,48,1,15404,,2059.377,,,,,,144,72,0,,,,, +434,49,1,15405,,2059.402,,8,G5,mp,14,144,79,14,,,,g, +434,49,1,15405,,2059.452,,,,,,144,79,0,,,,, +434,50,1,15406,,2059.477,,8,C#2,mp+,15,144,37,15,,,,g, +434,52,3,15407,,2059.477,,8,F1,mp+,15,144,29,15,,,,g, +434,51,1,15403,1024,2059.503,,,,,,144,64,0,,,,, +434,50,1,15406,,2059.527,,,,,,144,37,0,,,,, +434,52,3,15407,,2059.527,,,,,,144,29,0,,,,, +434,53,3,15408,1024,2059.627,64,16,B4,p,11,144,71,11,,,,, +434,47,0,15409,1024,2059.627,,,,,,176,64,127,,,,,V +434,54,1,15410,1066,2059.803,86,8,G#2,p-,10,144,44,10,,,,, +434,55,1,15411,1066,2059.803,128,8,E4,p-,10,144,64,10,,,,, +434,53,3,15408,1024,2059.895,,,,,,144,71,0,,,,, +434,56,3,15412,1088,2059.895,64,16,D3,p-,10,144,50,10,,,,, +434,54,1,15410,1066,2060.163,,,,,,144,44,0,,,,, +434,57,1,15413,1152,2060.163,,,,,,176,102,0,,,,, +434,58,3,15414,1152,2060.163,128,8,F1,pp+,9,144,29,9,,,,, +434,56,3,15412,1088,2060.163,,,,,,144,50,0,,,,, +434,55,1,15411,1066,2060.338,,,,,,144,64,0,,,,, +434,59,1,15415,1280,2060.698,,,,,,176,102,0,,,,, +434,60,3,15416,1280,2060.698,128,8,F1,,,,,,,,,, +434,61,0,15417,1408,2061.234,,,,,,176,64,0,,,,,^ +434,62,3,15418,1408,2061.234,32,32,F1,ppp+,6,144,29,6,,,,, +434,63,3,15419,1408,2061.234,32,32,D2,ppp+,6,144,38,6,,,,, +434,64,3,15420,1408,2061.234,32,32,B4,ppp+,6,144,71,6,,,,, +434,58,3,15414,1152,2061.234,,,,,,144,29,0,,,,, +434,62,3,15418,1408,2061.368,,,,,,144,29,0,,,,, +434,63,3,15419,1408,2061.368,,,,,,144,38,0,,,,, +434,64,3,15420,1408,2061.368,,,,,,144,71,0,,,,, +434,65,3,15421,1440,2061.368,32,32,A#3,ppp+,6,144,58,6,,,,, +434,65,3,15421,1440,2061.502,,,,,,144,58,0,,,,, +434,66,3,15422,1472,2061.502,32,32,F#1,ppp,5,144,30,5,,,,, +434,66,3,15422,1472,2061.636,,,,,,144,30,0,,,,, +434,67,3,15423,1504,2061.636,32,32,A#3,ppp,5,144,58,5,,,,, +434,67,3,15423,1504,2061.77,,,,,,144,58,0,,,,, +435,0,0,15424,0,2061.77,,,,,,,,,435,,,, +435,2,1,15425,0,2061.77,85,8,B4,mp,14,144,71,14,,,,, +435,3,3,15426,0,2061.77,42,16,F1,mp,14,144,29,14,,,,, +435,4,3,15427,0,2061.77,64,16,D2,mp,14,144,38,14,,,,, +435,1,0,15428,0,2061.77,,,,,,176,64,127,,,,,V +435,3,3,15426,0,2061.946,,,,,,144,29,0,,,,, +435,5,3,15429,42,2061.946,86,8,F#1,pp,8,144,30,8,,,,, +435,4,3,15427,0,2062.038,,,,,,144,38,0,,,,, +435,2,1,15425,0,2062.126,,,,,,144,71,0,,,,, +435,6,1,15430,85,2062.126,43,16,A#3,ppp,5,144,58,5,,,,, +435,5,3,15429,42,2062.306,,,,,,144,30,0,,,,, +435,7,1,15431,128,2062.306,,,,,,176,102,0,,,,, +435,8,3,15432,128,2062.306,51,16,E2,pp,8,144,40,8,,,,, +435,6,1,15430,85,2062.306,,,,,,144,58,0,,,,, +435,9,1,15433,153,2062.41,77,16,B3,pp,8,144,59,8,,,,, +435,8,3,15432,128,2062.519,,,,,,144,40,0,,,,, +435,10,3,15434,179,2062.519,25,32,G1,pp,8,144,31,8,,,,, +435,10,3,15434,179,2062.624,,,,,,144,31,0,,,,, +435,11,3,15435,204,2062.624,52,16,A#1,pp,8,144,34,8,,,,, +435,12,3,15436,204,2062.624,64,16,E2,pp,8,144,40,8,,,,, +435,9,1,15433,153,2062.732,,,,,,144,59,0,,,,, +435,13,1,15437,230,2062.732,26,32,D#5,pp,8,144,75,8,,,,, +435,14,1,15438,256,2062.841,,,,,,176,102,0,,,,, +435,15,3,15439,256,2062.841,,,,,,176,102,0,,,,, +435,11,3,15435,204,2062.841,,,,,,144,34,0,,,,, +435,13,1,15437,230,2062.841,,,,,,144,75,0,,,,, +435,12,3,15436,204,2062.891,,,,,,144,40,0,,,,, +435,16,0,15440,512,2063.913,,,,,,176,64,0,,,,,^ +435,17,1,15441,512,2063.913,32,32,A#3,f,20,144,58,20,,,,, +435,18,1,15442,512,2063.913,32,32,B4,f,20,144,71,20,,,,, +435,19,3,15443,512,2063.913,32,32,F1,f,20,144,29,20,,,,, +435,20,3,15444,512,2063.913,32,32,F#1,f,20,144,30,20,,,,, +435,21,3,15445,512,2063.913,32,32,D2,f,20,144,38,20,,,,, +435,17,1,15441,512,2064.047,,,,,,144,58,0,,,,, +435,18,1,15442,512,2064.047,,,,,,144,71,0,,,,, +435,19,3,15443,512,2064.047,,,,,,144,29,0,,,,, +435,20,3,15444,512,2064.047,,,,,,144,30,0,,,,, +435,21,3,15445,512,2064.047,,,,,,144,38,0,,,,, +435,22,1,15446,544,2064.047,96,16,A#3,f,20,144,58,20,,,,, +435,23,1,15447,544,2064.047,64,16,B4,f,20,144,71,20,,,,, +435,24,3,15448,544,2064.047,96,16,F1,f,20,144,29,20,,,,, +435,25,3,15449,544,2064.047,64,16,F#1,f,20,144,30,20,,,,, +435,26,3,15450,544,2064.047,64,16,D2,f,20,144,38,20,,,,, +435,27,1,15451,640,2064.448,,,,,,176,102,0,,,,, +435,28,3,15452,640,2064.448,,,,,,176,102,0,,,,, +435,23,1,15447,544,2064.464,,,,,,144,71,0,,,,, +435,25,3,15449,544,2064.464,,,,,,144,30,0,,,,, +435,26,3,15450,544,2064.464,,,,,,144,38,0,,,,, +435,22,1,15446,544,2064.582,,,,,,144,58,0,,,,, +435,24,3,15448,544,2064.582,,,,,,144,29,0,,,,, +435,29,1,15453,672,2064.582,96,16,A#3,mp,14,144,58,14,,,,, +435,30,1,15454,672,2064.582,64,16,B4,mp,14,144,71,14,,,,, +435,31,3,15455,672,2064.582,96,16,F1,mp,14,144,29,14,,,,, +435,32,3,15456,672,2064.582,64,16,F#1,mp,14,144,30,14,,,,, +435,33,3,15457,672,2064.582,64,16,D2,mp,14,144,38,14,,,,, +435,34,1,15458,768,2064.984,64,16,A#3,,,,,,,,,, +435,35,1,15459,768,2064.984,64,16,B4,,,,,,,,,, +435,36,3,15460,768,2064.984,64,16,F1,,,,,,,,,, +435,37,3,15461,768,2064.984,64,16,F#1,,,,,,,,,, +435,38,3,15462,768,2064.984,64,16,D2,,,,,,,,,, +435,30,1,15454,672,2065.118,,,,,,144,71,0,,,,, +435,32,3,15456,672,2065.118,,,,,,144,30,0,,,,, +435,33,3,15457,672,2065.118,,,,,,144,38,0,,,,, +435,29,1,15453,672,2065.252,,,,,,144,58,0,,,,, +435,31,3,15455,672,2065.252,,,,,,144,29,0,,,,, +435,39,1,15463,832,2065.252,,,,,,176,102,0,,,,, +435,40,3,15464,832,2065.252,,,,,,176,102,0,,,,, +435,41,1,15465,864,2065.386,128,8,A#3,pp,8,144,58,8,,,,, +435,42,1,15466,864,2065.386,128,8,B4,pp,8,144,71,8,,,,, +435,43,3,15467,864,2065.386,128,8,F1,pp,8,144,29,8,,,,, +435,44,3,15468,864,2065.386,128,8,F#1,pp,8,144,30,8,,,,, +435,45,3,15469,864,2065.386,128,8,D2,pp,8,144,38,8,,,,, +435,46,1,15470,992,2065.922,,,,,,176,102,0,,,,, +435,47,3,15471,992,2065.922,32,32,A#2,pp,8,144,46,8,,,,, +435,48,0,15472,992,2065.922,,,,,,,,,,6072,,, +435,50,1,15473,1024,2066.056,,,,,,176,102,0,,,,, +435,51,3,15474,1024,2066.056,512,2,A#2,,,,,,,,,, +435,49,0,15475,1024,2066.056,,,,,,176,64,127,,,,,V +435,41,1,15465,864,2066.522,,,,,,144,58,0,,,,, +435,42,1,15466,864,2066.522,,,,,,144,71,0,,,,, +435,43,3,15467,864,2066.522,,,,,,144,29,0,,,,, +435,44,3,15468,864,2066.522,,,,,,144,30,0,,,,, +435,45,3,15469,864,2066.522,,,,,,144,38,0,,,,, +436,0,0,15476,0,2068.198,,,,,,,,,436,,,, +436,1,1,15477,0,2068.198,153,8,B5,pp,8,144,83,8,,,,, +436,2,3,15478,0,2068.198,,,,,,176,102,0,,,,, +435,47,3,15471,992,2068.273,,,,,,144,46,0,,,,, +436,1,1,15477,0,2068.839,,,,,,144,83,0,,,,, +436,3,1,15479,153,2068.839,103,8,F1,pp,8,144,29,8,,,,, +436,3,1,15479,153,2069.27,,,,,,144,29,0,,,,, +436,4,1,15480,256,2069.27,153,8,D4,pp,8,144,62,8,,,,, +436,5,1,15481,256,2069.27,128,8,B5,pp,8,144,83,8,,,,, +436,5,1,15481,256,2069.806,,,,,,144,83,0,,,,, +436,4,1,15480,256,2069.91,,,,,,144,62,0,,,,, +436,6,1,15482,409,2069.91,103,8,F1,pp,8,144,29,8,,,,, +436,6,1,15482,409,2070.341,,,,,,144,29,0,,,,, +436,7,1,15483,512,2070.341,,,,,,176,102,0,,,,, +436,8,3,15484,512,2070.341,153,8,F2,pp,8,144,41,8,,,,, +436,9,3,15485,512,2070.341,128,8,D4,pp,8,144,62,8,,,,, +436,9,3,15485,512,2070.877,,,,,,144,62,0,,,,, +436,8,3,15484,512,2070.982,,,,,,144,41,0,,,,, +436,10,3,15486,665,2070.982,,,,,,176,102,0,,,,, +436,11,3,15487,716,2071.195,26,32,G2,pp,8,144,43,8,,,,, +436,11,3,15487,716,2071.304,,,,,,144,43,0,,,,, +436,12,3,15488,742,2071.304,26,32,A#2,pp,8,144,46,8,,,,, +436,12,3,15488,742,2071.413,,,,,,144,46,0,,,,, +436,13,1,15489,768,2071.413,256,4,D#6,pp,8,144,87,8,,,,, +436,14,3,15490,768,2071.413,,,,,,176,102,0,,,,, +436,15,3,15491,853,2071.768,,,,,,176,102,0,,,,, +436,16,3,15492,,2072.304,,8,C5,pp,8,144,72,8,,,,g, +436,16,3,15492,,2072.354,,,,,,144,72,0,,,,, +436,17,3,15493,,2072.379,,8,G5,pp,8,144,79,8,,,,g, +436,17,3,15493,,2072.429,,,,,,144,79,0,,,,, +436,18,3,15494,,2072.454,,8,C#2,pp+,9,144,37,9,,,,g, +436,13,1,15489,768,2072.484,,,,,,144,87,0,,,,, +436,18,3,15494,,2072.504,,,,,,144,37,0,,,,, +436,19,3,15495,981,2072.529,43,16,E4,p,11,144,64,11,,,,, +436,19,3,15495,981,2072.709,,,,,,144,64,0,,,,, +436,20,1,15496,1024,2072.709,,,,,,176,102,0,,,,, +436,21,3,15497,1024,2072.709,128,8,G#2,p+,12,144,44,12,,,,, +436,22,3,15498,1024,2072.709,128,8,E4,p+,12,144,64,12,,,,, +436,23,1,15499,1152,2073.245,25,32,G6,pp,8,144,91,8,,,,, +436,24,3,15500,1152,2073.245,,,,,,176,102,0,,,,, +436,21,3,15497,1024,2073.245,,,,,,144,44,0,,,,, +436,22,3,15498,1024,2073.245,,,,,,144,64,0,,,,, +436,23,1,15499,1152,2073.349,,,,,,144,91,0,,,,, +436,25,1,15501,1177,2073.349,26,32,C#2,pp+,9,144,37,9,,,,, +436,25,1,15501,1177,2073.458,,,,,,144,37,0,,,,, +436,26,1,15502,1203,2073.458,25,32,E5,p-,10,144,76,10,,,,, +436,26,1,15502,1203,2073.563,,,,,,144,76,0,,,,, +436,27,1,15503,1228,2073.563,39,32,G6,p-,10,144,91,10,,,,, +436,28,1,15504,1267,2073.726,38,32,E3,p+,12,144,52,12,,,,, +436,27,1,15503,1228,2073.726,,,,,,144,91,0,,,,, +436,28,1,15504,1267,2073.885,,,,,,144,52,0,,,,, +436,29,1,15505,1305,2073.885,39,32,G#2,mp-,13,144,44,13,,,,, +436,29,1,15505,1305,2074.048,,,,,,144,44,0,,,,, +436,30,1,15506,1344,2074.048,25,32,C6,mp,14,144,84,14,,,,, +436,30,1,15506,1344,2074.153,,,,,,144,84,0,,,,, +436,31,1,15507,1369,2074.153,39,32,G7,mp+,15,144,103,15,,,,, +436,31,1,15507,1369,2074.316,,,,,,144,103,0,,,,, +436,32,1,15508,1408,2074.316,38,32,E3,mf-,16,144,52,16,,,,, +436,33,3,15509,1408,2074.316,76,16,G6,mf-,16,144,91,16,,,,, +436,34,1,15510,1446,2074.475,77,16,G#2,mf+,18,144,44,18,,,,, +436,32,1,15508,1408,2074.475,,,,,,144,52,0,,,,, +436,35,3,15511,1484,2074.634,39,32,C6,f-,19,144,84,19,,,,, +436,33,3,15509,1408,2074.634,,,,,,144,91,0,,,,, +436,39,0,15512,1535,2074.767,,,,,,176,64,0,,,,,^ +436,34,1,15510,1446,2074.798,,,,,,144,44,0,,,,, +436,35,3,15511,1484,2074.798,,,,,,144,84,0,,,,, +436,36,1,15513,1523,2074.798,13,64,C#2,f,20,144,37,20,,,,, +436,37,1,15514,1523,2074.798,16,64,G#2,f,20,144,44,20,,,,, +436,38,3,15515,1523,2074.798,13,64,C6,f,20,144,84,20,,,,, +436,36,1,15513,1523,2074.852,,,,,,144,37,0,,,,, +436,38,3,15515,1523,2074.852,,,,,,144,84,0,,,,, +437,0,0,15516,0,2074.852,,,,,,,,,437,,,, +437,1,1,15517,0,2074.852,,,,,,176,102,0,,,,, +437,2,3,15518,0,2074.852,,,,,,176,102,0,,,,, +436,37,1,15514,1523,2074.865,,,,,,144,44,0,,,,, +437,4,1,15519,32,2074.986,32,32,C#4,fff,24,144,61,23,,,,, +437,5,1,15520,32,2074.986,32,32,D6,fff,24,144,86,23,,,,, +437,3,0,15521,32,2075.067,,,,,,176,64,127,,,,,V +437,4,1,15519,32,2075.12,,,,,,144,61,0,,,,, +437,5,1,15520,32,2075.12,,,,,,144,86,0,,,,, +437,6,1,15522,64,2075.12,192,8,C#4,fff,24,144,61,23,,,,, +437,7,1,15523,64,2075.12,128,8,G#5,fff,24,144,80,23,,,,, +437,8,1,15524,64,2075.12,128,8,D6,fff,24,144,86,23,,,,, +437,9,1,15525,256,2075.923,128,8,C#4,,,,,,,,,, +437,10,1,15526,256,2075.923,128,8,G#5,,,,,,,,,, +437,11,1,15527,256,2075.923,128,8,D6,,,,,,,,,, +437,7,1,15523,64,2076.191,,,,,,144,80,0,,,,, +437,8,1,15524,64,2076.191,,,,,,144,86,0,,,,, +437,12,1,15528,384,2076.459,128,8,G#5,fff,24,144,80,23,,,,, +437,13,1,15529,384,2076.459,128,8,D6,fff,24,144,86,23,,,,, +437,14,3,15530,384,2076.459,32,32,A1,ff,22,144,33,22,,,,, +437,6,1,15522,64,2076.459,,,,,,144,61,0,,,,, +437,14,3,15530,384,2076.593,,,,,,144,33,0,,,,, +437,15,0,15531,416,2076.593,,,,,,176,64,0,,,,,^ +437,16,3,15532,416,2076.593,32,32,A1,ff,22,144,33,22,,,,, +437,17,3,15533,416,2076.593,32,32,F2,ff,22,144,41,22,,,,, +437,16,3,15532,416,2076.727,,,,,,144,33,0,,,,, +437,17,3,15533,416,2076.727,,,,,,144,41,0,,,,, +437,18,3,15534,448,2076.727,,,,,,176,102,0,,,,, +437,19,1,15535,512,2076.995,256,4,G#5,,,,,,,,,, +437,20,1,15536,512,2076.995,256,4,D6,,,,,,,,,, +437,21,3,15537,512,2076.995,,,,,,176,102,0,,,,, +437,22,0,15538,545,2077.133,,,,,,176,64,127,,,,,V +437,23,3,15539,640,2077.531,25,32,G5,f,20,144,79,20,,,,, +437,23,3,15539,640,2077.635,,,,,,144,79,0,,,,, +437,24,3,15540,665,2077.635,26,32,C#1,f-,19,144,25,19,,,,, +437,24,3,15540,665,2077.744,,,,,,144,25,0,,,,, +437,25,3,15541,691,2077.744,25,32,E4,mf+,18,144,64,18,,,,, +437,25,3,15541,691,2077.849,,,,,,144,64,0,,,,, +437,26,3,15542,716,2077.849,39,32,G5,mf,17,144,79,17,,,,, +437,27,3,15543,755,2078.012,38,32,E2,mf-,16,144,40,16,,,,, +437,26,3,15542,716,2078.012,,,,,,144,79,0,,,,, +437,12,1,15528,384,2078.066,,,,,,144,80,0,,,,, +437,13,1,15529,384,2078.066,,,,,,144,86,0,,,,, +437,28,1,15544,768,2078.066,,,,,,176,102,0,,,,, +437,27,3,15543,755,2078.171,,,,,,144,40,0,,,,, +437,29,3,15545,793,2078.171,39,32,G#1,mp+,15,144,32,15,,,,, +437,29,3,15545,793,2078.334,,,,,,144,32,0,,,,, +437,30,3,15546,832,2078.334,25,32,C5,mp-,13,144,72,13,,,,, +437,30,3,15546,832,2078.439,,,,,,144,72,0,,,,, +437,31,3,15547,857,2078.439,39,32,G6,p+,12,144,91,12,,,,, +437,31,3,15547,857,2078.602,,,,,,144,91,0,,,,, +437,32,1,15548,896,2078.602,128,8,G5,p,11,144,79,11,,,,, +437,33,3,15549,896,2078.602,38,32,E2,p,11,144,40,11,,,,, +437,34,3,15550,934,2078.761,38,32,G#1,p,11,144,32,11,,,,, +437,33,3,15549,896,2078.761,,,,,,144,40,0,,,,, +437,35,3,15551,972,2078.92,39,32,C5,p,11,144,72,11,,,,, +437,34,3,15550,934,2078.92,,,,,,144,32,0,,,,, +437,35,3,15551,972,2079.083,,,,,,144,72,0,,,,, +437,36,3,15552,1011,2079.083,13,64,C#1,p,11,144,25,11,,,,, +437,37,3,15553,1011,2079.083,16,64,G#1,p,11,144,32,11,,,,, +437,38,3,15554,1011,2079.083,16,64,C5,p,11,144,72,11,,,,, +437,36,3,15552,1011,2079.138,,,,,,144,25,0,,,,, +437,39,1,15555,1024,2079.138,,,,,,176,102,0,,,,, +437,40,3,15556,1024,2079.138,,,,,,176,102,0,,,,, +437,32,1,15548,896,2079.138,,,,,,144,79,0,,,,, +437,37,3,15553,1011,2079.15,,,,,,144,32,0,,,,, +437,38,3,15554,1011,2079.15,,,,,,144,72,0,,,,, +437,41,1,15557,1280,2080.209,76,16,D4,p,11,144,62,11,,,,, +437,42,1,15558,1280,2080.209,64,16,B4,p,11,144,71,11,,,,, +437,43,3,15559,1280,2080.209,76,16,F1,p,11,144,29,11,,,,, +437,42,1,15558,1280,2080.477,,,,,,144,71,0,,,,, +437,41,1,15557,1280,2080.527,,,,,,144,62,0,,,,, +437,43,3,15559,1280,2080.527,,,,,,144,29,0,,,,, +437,44,1,15560,1356,2080.527,52,16,D4,p-,10,144,62,10,,,,, +437,45,1,15561,1356,2080.527,64,16,B4,p-,10,144,71,10,,,,, +437,46,3,15562,1356,2080.527,52,16,F1,p-,10,144,29,10,,,,, +437,44,1,15560,1356,2080.745,,,,,,144,62,0,,,,, +437,45,1,15561,1356,2080.745,,,,,,144,71,0,,,,, +437,46,3,15562,1356,2080.745,,,,,,144,29,0,,,,, +437,47,1,15563,1408,2080.745,51,16,D4,pp+,9,144,62,9,,,,, +437,48,1,15564,1408,2080.745,64,16,B4,pp+,9,144,71,9,,,,, +437,49,3,15565,1408,2080.745,102,8,F1,pp+,9,144,29,9,,,,, +437,50,3,15566,1408,2080.745,128,8,F#2,pp+,9,144,42,9,,,,, +437,47,1,15563,1408,2080.958,,,,,,144,62,0,,,,, +437,48,1,15564,1408,2080.958,,,,,,144,71,0,,,,, +437,51,1,15567,1459,2080.958,51,16,D4,pp,8,144,62,8,,,,, +437,52,1,15568,1459,2080.958,64,16,A#4,pp,8,144,70,8,,,,, +437,53,1,15569,1459,2080.958,64,16,B4,pp,8,144,71,8,,,,, +437,49,3,15565,1408,2081.172,,,,,,144,29,0,,,,, +437,50,3,15566,1408,2081.172,,,,,,144,42,0,,,,, +437,51,1,15567,1459,2081.172,,,,,,144,62,0,,,,, +437,52,1,15568,1459,2081.172,,,,,,144,70,0,,,,, +437,53,1,15569,1459,2081.172,,,,,,144,71,0,,,,, +437,54,3,15570,1510,2081.172,26,32,F1,pp-,7,144,29,7,,,,, +437,55,3,15571,1510,2081.172,32,32,F#2,pp-,7,144,42,7,,,,, +437,56,1,15572,1510,2081.172,26,32,D4,pp-,7,144,62,7,,,,, +437,57,1,15573,1510,2081.172,32,32,A#4,pp-,7,144,70,7,,,,, +437,58,1,15574,1510,2081.172,32,32,B4,pp-,7,144,71,7,,,,, +438,0,0,15575,0,2081.281,,,,,,,,,438,,,, +438,1,1,15576,0,2081.281,,,,,,176,102,0,,,,, +438,2,3,15577,0,2081.281,,,,,,176,102,0,,,,, +437,54,3,15570,1510,2081.281,,,,,,144,29,0,,,,, +437,56,1,15572,1510,2081.281,,,,,,144,62,0,,,,, +437,55,3,15571,1510,2081.306,,,,,,144,42,0,,,,, +437,57,1,15573,1510,2081.306,,,,,,144,70,0,,,,, +437,58,1,15574,1510,2081.306,,,,,,144,71,0,,,,, +438,3,1,15578,153,2081.921,103,8,C5,mp,14,144,72,14,,,,, +438,4,1,15579,153,2081.921,128,8,G5,mp,14,144,79,14,,,,, +438,5,3,15580,153,2081.921,103,8,C#1,mp,14,144,25,14,,,,, +438,6,3,15581,153,2081.921,128,8,G#1,mp,14,144,32,14,,,,, +438,7,3,15582,153,2081.921,128,8,E2,mp,14,144,40,14,,,,, +438,3,1,15578,153,2082.352,,,,,,144,72,0,,,,, +438,5,3,15580,153,2082.352,,,,,,144,25,0,,,,, +438,8,1,15583,256,2082.352,25,32,C#4,pp,8,144,61,8,,,,, +438,9,3,15584,256,2082.352,,,,,,176,102,0,,,,, +438,4,1,15579,153,2082.457,,,,,,144,79,0,,,,, +438,6,3,15581,153,2082.457,,,,,,144,32,0,,,,, +438,7,3,15582,153,2082.457,,,,,,144,40,0,,,,, +438,8,1,15583,256,2082.457,,,,,,144,61,0,,,,, +438,10,1,15585,281,2082.457,26,32,A1,pp,8,144,33,8,,,,, +438,10,1,15585,281,2082.565,,,,,,144,33,0,,,,, +438,11,1,15586,307,2082.565,25,32,D5,pp,8,144,74,8,,,,, +438,11,1,15586,307,2082.67,,,,,,144,74,0,,,,, +438,12,1,15587,332,2082.67,26,32,F2,pp,8,144,41,8,,,,, +438,12,1,15587,332,2082.779,,,,,,144,41,0,,,,, +438,13,1,15588,358,2082.779,26,32,G#4,pp,8,144,68,8,,,,, +438,13,1,15588,358,2082.888,,,,,,144,68,0,,,,, +438,14,1,15589,384,2082.888,,,,,,176,102,0,,,,, +438,15,3,15590,384,2082.888,28,32,C#4,pp,8,144,61,8,,,,, +438,16,3,15591,384,2082.888,32,32,D5,pp,8,144,74,8,,,,, +438,15,3,15590,384,2083.005,,,,,,144,61,0,,,,, +438,17,3,15592,412,2083.005,28,32,A1,pp,8,144,33,8,,,,, +438,16,3,15591,384,2083.022,,,,,,144,74,0,,,,, +438,17,3,15592,412,2083.122,,,,,,144,33,0,,,,, +438,18,3,15593,440,2083.122,43,32,C#4,pp,8,144,61,8,,,,, +438,19,3,15594,483,2083.302,29,32,G#4,pp,8,144,68,8,,,,, +438,20,3,15595,483,2083.302,32,32,D5,pp,8,144,74,8,,,,, +438,18,3,15593,440,2083.302,,,,,,144,61,0,,,,, +438,21,3,15596,512,2083.423,28,32,F2,pp,8,144,41,8,,,,, +438,22,1,15597,512,2083.423,,,,,,176,102,0,,,,, +438,19,3,15594,483,2083.423,,,,,,144,68,0,,,,, +438,20,3,15595,483,2083.436,,,,,,144,74,0,,,,, +438,21,3,15596,512,2083.541,,,,,,144,41,0,,,,, +438,23,3,15598,540,2083.541,28,32,G#4,pp,8,144,68,8,,,,, +438,23,3,15598,540,2083.658,,,,,,144,68,0,,,,, +438,24,3,15599,568,2083.658,43,32,D5,pp,8,144,74,8,,,,, +438,25,3,15600,611,2083.838,29,32,G#4,pp,8,144,68,8,,,,, +438,24,3,15599,568,2083.838,,,,,,144,74,0,,,,, +438,26,3,15601,640,2083.959,28,32,A1,pp,8,144,33,8,,,,, +438,25,3,15600,611,2083.959,,,,,,144,68,0,,,,, +438,26,3,15601,640,2084.076,,,,,,144,33,0,,,,, +438,27,3,15602,668,2084.076,28,32,C#4,pp,8,144,61,8,,,,, +438,28,3,15603,668,2084.076,32,32,G#4,pp,8,144,68,8,,,,, +438,29,3,15604,668,2084.076,32,32,D5,pp,8,144,74,8,,,,, +438,27,3,15602,668,2084.193,,,,,,144,61,0,,,,, +438,30,3,15605,696,2084.193,43,32,A0,pp,8,144,21,8,,,,, +438,28,3,15603,668,2084.21,,,,,,144,68,0,,,,, +438,29,3,15604,668,2084.21,,,,,,144,74,0,,,,, +438,30,3,15605,696,2084.373,,,,,,144,21,0,,,,, +438,31,3,15606,739,2084.373,29,32,F1,pp,8,144,29,8,,,,, +438,32,3,15607,768,2084.495,,,,,,176,102,0,,,,, +438,33,1,15608,768,2084.495,48,32,G#3,pp,8,144,56,8,,,,, +438,34,1,15609,768,2084.495,32,32,D4,pp,8,144,62,8,,,,, +438,31,3,15606,739,2084.495,,,,,,144,29,0,,,,, +438,34,1,15609,768,2084.629,,,,,,144,62,0,,,,, +438,33,1,15608,768,2084.696,,,,,,144,56,0,,,,, +438,35,1,15610,816,2084.696,48,32,A0,pp,8,144,21,8,,,,, +438,36,3,15611,853,2084.851,,,,,,176,102,0,,,,, +438,35,1,15610,816,2084.897,,,,,,144,21,0,,,,, +438,37,1,15612,864,2084.897,32,32,F1,pp,8,144,29,8,,,,, +438,37,1,15612,864,2085.031,,,,,,144,29,0,,,,, +438,38,1,15613,896,2085.031,42,16,C#3,pp,8,144,49,8,,,,, +438,39,3,15614,896,2085.031,,,,,,176,102,0,,,,, +438,38,1,15613,896,2085.206,,,,,,144,49,0,,,,, +438,40,1,15615,938,2085.206,43,16,D4,pp,8,144,62,8,,,,, +438,40,1,15615,938,2085.386,,,,,,144,62,0,,,,, +438,41,1,15616,981,2085.386,43,16,G#3,pp,8,144,56,8,,,,, +438,41,1,15616,981,2085.566,,,,,,144,56,0,,,,, +438,42,0,15617,1024,2085.566,,,,,,176,64,0,,,,,^ +438,43,1,15618,1024,2085.566,64,16,C#3,fff,24,144,49,23,,,,, +438,44,1,15619,1024,2085.566,64,16,G#3,fff,24,144,56,23,,,,, +438,45,1,15620,1024,2085.566,64,16,D4,fff,24,144,62,23,,,,, +438,46,3,15621,1024,2085.566,42,16,A0,fff,24,144,21,23,,,,, +438,46,3,15621,1024,2085.742,,,,,,144,21,0,,,,, +438,47,3,15622,1066,2085.742,43,16,A0,fff,24,144,21,23,,,,, +438,48,3,15623,1066,2085.742,64,16,F1,fff,24,144,29,23,,,,, +438,43,1,15618,1024,2085.834,,,,,,144,49,0,,,,, +438,44,1,15619,1024,2085.834,,,,,,144,56,0,,,,, +438,45,1,15620,1024,2085.834,,,,,,144,62,0,,,,, +438,49,1,15624,1088,2085.834,,,,,,176,102,0,,,,, +438,47,3,15622,1066,2085.922,,,,,,144,21,0,,,,, +438,50,3,15625,1109,2085.922,,,,,,176,102,0,,,,, +438,48,3,15623,1066,2086.01,,,,,,144,29,0,,,,, +438,52,1,15626,1152,2086.102,,,,,,176,102,0,,,,, +438,53,3,15627,1152,2086.102,28,32,C#6,pp,8,144,85,8,,,,, +438,51,0,15628,1152,2086.102,,,,,,176,64,127,,,,,V +438,53,3,15627,1152,2086.219,,,,,,144,85,0,,,,, +438,54,3,15629,1180,2086.219,28,32,E3,pp,8,144,52,8,,,,, +438,54,3,15629,1180,2086.336,,,,,,144,52,0,,,,, +438,55,3,15630,1208,2086.336,43,32,A2,pp+,9,144,45,9,,,,, +438,55,3,15630,1208,2086.516,,,,,,144,45,0,,,,, +438,56,3,15631,1251,2086.516,29,32,E3,p-,10,144,52,10,,,,, +438,56,3,15631,1251,2086.638,,,,,,144,52,0,,,,, +438,57,3,15632,1280,2086.638,28,32,A2,p-,10,144,45,10,,,,, +438,58,1,15633,1280,2086.638,,,,,,176,102,0,,,,, +438,57,3,15632,1280,2086.755,,,,,,144,45,0,,,,, +438,59,3,15634,1308,2086.755,28,32,A#4,p,11,144,70,11,,,,, +438,59,3,15634,1308,2086.872,,,,,,144,70,0,,,,, +438,60,3,15635,1336,2086.872,43,32,F2,p,11,144,41,11,,,,, +438,60,3,15635,1336,2087.052,,,,,,144,41,0,,,,, +438,61,3,15636,1379,2087.052,29,32,A#5,p+,12,144,82,12,,,,, +438,61,3,15636,1379,2087.173,,,,,,144,82,0,,,,, +438,62,3,15637,1408,2087.173,32,32,A2,p+,12,144,45,12,,,,, +438,62,3,15637,1408,2087.307,,,,,,144,45,0,,,,, +438,63,3,15638,1440,2087.307,21,32,E3,mp-,13,144,52,13,,,,, +438,63,3,15638,1440,2087.395,,,,,,144,52,0,,,,, +438,64,3,15639,1461,2087.395,32,32,F2,mp-,13,144,41,13,,,,, +438,64,3,15639,1461,2087.529,,,,,,144,41,0,,,,, +438,65,3,15640,1493,2087.529,21,32,A#3,mp,14,144,58,14,,,,, +438,67,0,15641,1535,2087.595,,,,,,176,64,0,,,,,^ +438,65,3,15640,1493,2087.617,,,,,,144,58,0,,,,, +438,66,3,15642,1514,2087.617,22,32,F2,mp,14,144,41,14,,,,, +438,66,3,15642,1514,2087.709,,,,,,144,41,0,,,,, +439,0,0,15643,0,2087.709,,,,,,,,,439,,,, +439,2,1,15644,0,2087.709,64,16,C#5,p,11,144,73,11,,,,, +439,3,3,15645,,2087.709,,8,E2,mp,14,144,40,14,,,,g, +439,3,3,15645,,2087.759,,,,,,144,40,0,,,,, +439,4,3,15646,0,2087.784,,,,,,176,102,0,,,,, +439,1,0,15647,0,2087.895,,,,,,176,64,127,,,,,V +439,2,1,15644,0,2087.977,,,,,,144,73,0,,,,, +439,5,1,15648,64,2088.052,64,16,A1,p,11,144,33,11,,,,, +439,5,1,15648,64,2088.32,,,,,,144,33,0,,,,, +439,6,1,15649,128,2088.32,64,16,E2,p,11,144,40,11,,,,, +439,6,1,15649,128,2088.588,,,,,,144,40,0,,,,, +439,7,1,15650,192,2088.588,64,16,C#6,p,11,144,85,11,,,,, +439,7,1,15650,192,2088.856,,,,,,144,85,0,,,,, +439,8,1,15651,256,2088.856,,,,,,176,102,0,,,,, +439,9,3,15652,256,2088.856,51,16,A1,pp,8,144,33,8,,,,, +439,10,3,15653,256,2088.856,64,16,F2,pp,8,144,41,8,,,,, +439,9,3,15652,256,2089.069,,,,,,144,33,0,,,,, +439,11,1,15654,307,2089.069,51,16,B6,pp,8,144,95,8,,,,, +439,12,3,15655,307,2089.069,51,16,F1,pp,8,144,29,8,,,,, +439,10,3,15653,256,2089.123,,,,,,144,41,0,,,,, +439,11,1,15654,307,2089.282,,,,,,144,95,0,,,,, +439,12,3,15655,307,2089.282,,,,,,144,29,0,,,,, +439,13,1,15656,358,2089.282,51,16,B6,pp,8,144,95,8,,,,, +439,14,3,15657,358,2089.282,51,16,F1,pp,8,144,29,8,,,,, +439,15,3,15658,358,2089.282,64,16,F#2,pp,8,144,42,8,,,,, +439,13,1,15656,358,2089.496,,,,,,144,95,0,,,,, +439,14,3,15657,358,2089.496,,,,,,144,29,0,,,,, +439,15,3,15658,358,2089.496,,,,,,144,42,0,,,,, +439,16,1,15659,409,2089.496,51,16,B6,pp,8,144,95,8,,,,, +439,17,3,15660,409,2089.496,51,16,F#2,pp,8,144,42,8,,,,, +439,18,3,15661,409,2089.496,64,16,D3,pp,8,144,50,8,,,,, +439,16,1,15659,409,2089.709,,,,,,144,95,0,,,,, +439,17,3,15660,409,2089.709,,,,,,144,42,0,,,,, +439,18,3,15661,409,2089.709,,,,,,144,50,0,,,,, +439,19,1,15662,460,2089.709,52,16,A#5,pp,8,144,82,8,,,,, +439,20,1,15663,460,2089.709,64,16,B6,pp,8,144,95,8,,,,, +439,21,3,15664,460,2089.709,52,16,F2,pp,8,144,41,8,,,,, +439,22,3,15665,460,2089.709,64,16,F#2,pp,8,144,42,8,,,,, +439,23,3,15666,460,2089.709,64,16,D3,pp,8,144,50,8,,,,, +439,19,1,15662,460,2089.927,,,,,,144,82,0,,,,, +439,21,3,15664,460,2089.927,,,,,,144,41,0,,,,, +439,24,1,15667,512,2089.927,,,,,,176,102,0,,,,, +439,25,3,15668,512,2089.927,,,,,,176,102,0,,,,, +439,20,1,15663,460,2089.977,,,,,,144,95,0,,,,, +439,22,3,15665,460,2089.977,,,,,,144,42,0,,,,, +439,23,3,15666,460,2089.977,,,,,,144,50,0,,,,, +439,26,1,15669,704,2090.731,85,8,C#5,p,11,144,73,11,,,,, +439,27,3,15670,704,2090.731,42,16,A1,p,11,144,33,11,,,,, +439,27,3,15670,704,2090.906,,,,,,144,33,0,,,,, +439,28,3,15671,746,2090.906,43,16,A1,p+,12,144,33,12,,,,, +439,29,3,15672,746,2090.906,64,16,E2,p+,12,144,40,12,,,,, +439,26,1,15669,704,2091.086,,,,,,144,73,0,,,,, +439,28,3,15671,746,2091.086,,,,,,144,33,0,,,,, +439,29,3,15672,746,2091.086,,,,,,144,40,0,,,,, +439,30,1,15673,789,2091.086,43,16,C#6,mp,14,144,85,14,,,,, +439,31,3,15674,789,2091.086,43,16,A1,mp,14,144,33,14,,,,, +439,32,3,15675,789,2091.086,64,16,E2,mp,14,144,40,14,,,,, +439,30,1,15673,789,2091.266,,,,,,144,85,0,,,,, +439,31,3,15674,789,2091.266,,,,,,144,33,0,,,,, +439,33,1,15676,832,2091.266,,,,,,176,102,0,,,,, +439,34,3,15677,832,2091.266,42,16,F1,mp+,15,144,29,15,,,,, +439,32,3,15675,789,2091.354,,,,,,144,40,0,,,,, +439,34,3,15677,832,2091.442,,,,,,144,29,0,,,,, +439,35,3,15678,874,2091.442,22,32,A#3,mf-,16,144,58,16,,,,, +439,35,3,15678,874,2091.534,,,,,,144,58,0,,,,, +439,36,3,15679,896,2091.534,128,8,F1,mf,17,144,29,17,,,,, +439,37,3,15680,896,2091.534,128,8,A1,mf,17,144,33,17,,,,, +439,38,3,15681,896,2091.534,128,8,E2,mf,17,144,40,17,,,,, +439,39,3,15682,896,2091.534,128,8,A#3,mf,17,144,58,17,,,,, +439,40,0,15683,896,2091.534,,,,,,,,,,6073,,, +439,41,0,15684,1024,2092.027,,,,,,176,64,0,,,,,^ +439,36,3,15679,896,2092.07,,,,,,144,29,0,,,,, +439,37,3,15680,896,2092.07,,,,,,144,33,0,,,,, +439,38,3,15681,896,2092.07,,,,,,144,40,0,,,,, +439,39,3,15682,896,2092.07,,,,,,144,58,0,,,,, +439,42,1,15685,1024,2092.07,192,8,C#7,f,20,144,97,20,,,,, +439,43,3,15686,1024,2092.07,,,,,,176,102,0,,,,, +439,44,0,15687,1075,2092.327,,,,,,176,64,127,,,,,V +439,45,1,15688,1216,2092.873,51,16,B5,pp,8,144,83,8,,,,, +439,46,3,15689,1216,2092.873,51,16,F2,pp,8,144,41,8,,,,, +439,42,1,15685,1024,2092.948,,,,,,144,97,0,,,,, +439,45,1,15688,1216,2093.087,,,,,,144,83,0,,,,, +439,46,3,15689,1216,2093.087,,,,,,144,41,0,,,,, +439,47,1,15690,1267,2093.087,51,16,B5,pp,8,144,83,8,,,,, +439,48,3,15691,1267,2093.087,51,16,F#2,pp,8,144,42,8,,,,, +439,49,3,15692,1267,2093.087,64,16,D3,pp,8,144,50,8,,,,, +439,47,1,15690,1267,2093.3,,,,,,144,83,0,,,,, +439,48,3,15691,1267,2093.3,,,,,,144,42,0,,,,, +439,50,1,15693,1318,2093.3,51,16,B5,pp,8,144,83,8,,,,, +439,51,3,15694,1318,2093.3,51,16,F2,pp,8,144,41,8,,,,, +439,52,3,15695,1318,2093.3,64,16,F#2,pp,8,144,42,8,,,,, +439,49,3,15692,1267,2093.355,,,,,,144,50,0,,,,, +439,50,1,15693,1318,2093.514,,,,,,144,83,0,,,,, +439,51,3,15694,1318,2093.514,,,,,,144,41,0,,,,, +439,52,3,15695,1318,2093.514,,,,,,144,42,0,,,,, +439,53,1,15696,1369,2093.514,51,16,B5,pp,8,144,83,8,,,,, +439,54,3,15697,1369,2093.514,51,16,F1,pp,8,144,29,8,,,,, +439,55,3,15698,1369,2093.514,64,16,F#2,pp,8,144,42,8,,,,, +439,53,1,15696,1369,2093.727,,,,,,144,83,0,,,,, +439,54,3,15697,1369,2093.727,,,,,,144,29,0,,,,, +439,55,3,15698,1369,2093.727,,,,,,144,42,0,,,,, +439,56,1,15699,1420,2093.727,52,16,D4,pp,8,144,62,8,,,,, +439,57,1,15700,1420,2093.727,64,16,A#4,pp,8,144,70,8,,,,, +439,58,1,15701,1420,2093.727,64,16,B4,pp,8,144,71,8,,,,, +439,59,3,15702,1420,2093.727,52,16,F1,pp,8,144,29,8,,,,, +439,60,3,15703,1420,2093.727,64,16,F#2,pp,8,144,42,8,,,,, +439,63,0,15704,1493,2093.883,,,,,,176,64,0,,,,,^ +439,56,1,15699,1420,2093.945,,,,,,144,62,0,,,,, +439,59,3,15702,1420,2093.945,,,,,,144,29,0,,,,, +439,61,1,15705,1472,2093.945,,,,,,176,102,0,,,,, +439,62,3,15706,1472,2093.945,,,,,,176,102,0,,,,, +439,57,1,15700,1420,2093.995,,,,,,144,70,0,,,,, +439,58,1,15701,1420,2093.995,,,,,,144,71,0,,,,, +439,60,3,15703,1420,2093.995,,,,,,144,42,0,,,,, +439,65,3,15707,1493,2094.033,43,16,G#1,pp,8,144,32,8,,,,, +439,64,0,15708,1493,2094.183,,,,,,176,64,127,,,,,V +439,65,3,15707,1493,2094.213,,,,,,144,32,0,,,,, +440,0,0,15709,0,2094.213,,,,,,,,,440,,,, +440,1,1,15710,0,2094.213,64,16,F5,pp,8,144,77,8,,,,, +440,2,3,15711,0,2094.213,,,,,,176,102,0,,,,, +440,1,1,15710,0,2094.481,,,,,,144,77,0,,,,, +440,3,1,15712,64,2094.481,42,16,A#4,pp,8,144,70,8,,,,, +440,4,3,15713,64,2094.481,,,,,,176,102,0,,,,, +440,3,1,15712,64,2094.656,,,,,,144,70,0,,,,, +440,5,1,15714,106,2094.656,43,16,F5,pp,8,144,77,8,,,,, +440,6,3,15715,106,2094.656,43,16,C2,pp,8,144,36,8,,,,, +440,7,3,15716,106,2094.656,64,16,A#2,pp,8,144,46,8,,,,, +440,5,1,15714,106,2094.836,,,,,,144,77,0,,,,, +440,6,3,15715,106,2094.836,,,,,,144,36,0,,,,, +440,8,1,15717,149,2094.836,64,16,F5,pp,8,144,77,8,,,,, +440,9,3,15718,149,2094.836,,,,,,176,102,0,,,,, +440,7,3,15716,106,2094.924,,,,,,144,46,0,,,,, +440,10,3,15719,170,2094.924,,,,,,176,102,0,,,,, +440,8,1,15717,149,2095.104,,,,,,144,77,0,,,,, +440,11,1,15720,213,2095.104,43,16,A#4,pp,8,144,70,8,,,,, +440,11,1,15720,213,2095.284,,,,,,144,70,0,,,,, +440,12,1,15721,256,2095.284,16,64,A4,mp,14,144,69,14,,,,, +440,13,3,15722,256,2095.284,,,,,,176,102,0,,,,, +440,16,0,15723,304,2095.35,,,,,,176,64,0,,,,,^ +440,12,1,15721,256,2095.351,,,,,,144,69,0,,,,, +440,14,1,15724,272,2095.351,16,64,E5,mp+,15,144,76,15,,,,, +440,14,1,15724,272,2095.418,,,,,,144,76,0,,,,, +440,15,1,15725,288,2095.418,16,64,A#5,mf-,16,144,82,16,,,,, +440,15,1,15725,288,2095.485,,,,,,144,82,0,,,,, +440,17,1,15726,304,2095.485,16,64,F4,mf-,16,144,65,16,,,,, +440,17,1,15726,304,2095.552,,,,,,144,65,0,,,,, +440,19,1,15727,320,2095.552,32,32,C#7,mf,17,,,,,,,, +440,20,3,15728,,2095.552,,8,C#7,mf,17,144,97,17,,,,g, +440,21,3,15729,,2095.627,,8,E4,mf+,18,144,64,18,,,,g, +440,18,0,15730,311,2095.65,,,,,,176,64,127,,,,,V +440,21,3,15729,,2095.677,,,,,,144,64,0,,,,, +440,20,3,15728,,2095.686,,,,,,144,97,0,,,,, +440,22,3,15731,,2095.702,,8,A3,f-,19,144,57,19,,,,g, +440,22,3,15731,,2095.752,,,,,,144,57,0,,,,, +440,23,3,15732,320,2095.777,32,32,F3,f,20,144,53,20,,,,, +440,24,3,15733,320,2095.777,32,32,A3,f,20,144,57,20,,,,, +440,25,3,15734,320,2095.777,32,32,E4,f,20,144,64,20,,,,, +440,23,3,15732,320,2095.911,,,,,,144,53,0,,,,, +440,24,3,15733,320,2095.911,,,,,,144,57,0,,,,, +440,25,3,15734,320,2095.911,,,,,,144,64,0,,,,, +440,26,1,15735,352,2095.911,32,32,A#6,f,20,144,94,20,,,,, +440,27,1,15736,352,2095.911,32,32,C#7,f,20,144,97,20,,,,, +440,28,3,15737,352,2095.911,32,32,F3,f,20,144,53,20,,,,, +440,29,3,15738,352,2095.911,32,32,A3,f,20,144,57,20,,,,, +440,30,3,15739,352,2095.911,32,32,E4,f,20,144,64,20,,,,, +440,26,1,15735,352,2096.045,,,,,,144,94,0,,,,, +440,27,1,15736,352,2096.045,,,,,,144,97,0,,,,, +440,28,3,15737,352,2096.045,,,,,,144,53,0,,,,, +440,29,3,15738,352,2096.045,,,,,,144,57,0,,,,, +440,30,3,15739,352,2096.045,,,,,,144,64,0,,,,, +440,31,1,15740,384,2096.045,,,,,,176,102,0,,,,, +440,32,3,15741,384,2096.045,,,,,,176,102,0,,,,, +440,33,1,15742,,2096.506,,8,E3,f,20,144,52,20,,,,g, +440,33,1,15742,,2096.556,,,,,,144,52,0,,,,, +440,34,1,15743,512,2096.581,32,32,B3,f,20,144,59,20,,,,, +440,35,1,15744,512,2096.581,32,32,C#6,f,20,144,85,20,,,,, +440,36,3,15745,512,2096.581,48,32,D4,p,11,144,62,11,,,,, +440,37,1,15746,544,2096.714,32,32,A2,f,20,144,45,20,,,,, +440,38,3,15747,560,2096.781,32,32,G#2,p,11,144,44,11,,,,, +440,37,1,15746,544,2096.848,,,,,,144,45,0,,,,, +440,39,1,15748,576,2096.848,64,16,E3,f,20,144,52,20,,,,, +440,38,3,15747,560,2096.915,,,,,,144,44,0,,,,, +440,40,3,15749,592,2096.915,48,32,C#2,p,11,144,37,11,,,,, +440,34,1,15743,512,2097.014,,,,,,144,59,0,,,,, +440,35,1,15744,512,2097.014,,,,,,144,85,0,,,,, +440,36,3,15745,512,2097.081,,,,,,144,62,0,,,,, +440,40,3,15749,592,2097.116,,,,,,144,37,0,,,,, +440,41,1,15750,640,2097.116,,,,,,176,102,0,,,,, +440,42,3,15751,640,2097.116,48,32,D3,p,11,144,50,11,,,,, +440,39,1,15748,576,2097.116,,,,,,144,52,0,,,,, +440,42,3,15751,640,2097.317,,,,,,144,50,0,,,,, +440,43,3,15752,688,2097.317,32,32,G#2,p,11,144,44,11,,,,, +440,43,3,15752,688,2097.451,,,,,,144,44,0,,,,, +440,44,3,15753,720,2097.451,48,32,C#2,p,11,144,37,11,,,,, +440,44,3,15753,720,2097.652,,,,,,144,37,0,,,,, +440,45,0,15754,768,2097.652,,,,,,176,64,0,,,,,^ +440,46,1,15755,768,2097.652,128,8,B3,f,20,144,59,20,,,,, +440,47,3,15756,768,2097.652,128,8,D3,p,11,144,50,11,,,,, +440,46,1,15755,768,2098.188,,,,,,144,59,0,,,,, +440,47,3,15756,768,2098.188,,,,,,144,50,0,,,,, +440,49,1,15757,896,2098.188,25,32,E2,pp,8,144,40,8,,,,, +440,50,3,15758,896,2098.188,,,,,,176,102,0,,,,, +440,48,0,15759,896,2098.188,,,,,,176,64,127,,,,,V +440,49,1,15757,896,2098.292,,,,,,144,40,0,,,,, +440,51,1,15760,921,2098.292,26,32,B4,pp,8,144,71,8,,,,, +440,51,1,15760,921,2098.401,,,,,,144,71,0,,,,, +440,52,1,15761,947,2098.401,25,32,G1,pp,8,144,31,8,,,,, +440,52,1,15761,947,2098.506,,,,,,144,31,0,,,,, +440,53,1,15762,972,2098.506,26,32,A#1,pp,8,144,34,8,,,,, +440,54,1,15763,972,2098.506,32,32,E2,pp,8,144,40,8,,,,, +440,53,1,15762,972,2098.615,,,,,,144,34,0,,,,, +440,55,1,15764,998,2098.615,26,32,D#6,pp,8,144,87,8,,,,, +440,54,1,15763,972,2098.64,,,,,,144,40,0,,,,, +440,55,1,15764,998,2098.723,,,,,,144,87,0,,,,, +440,56,1,15765,1024,2098.723,,,,,,176,102,0,,,,, +440,57,3,15766,1024,2098.723,,,,,,176,102,0,,,,, +440,58,3,15767,1152,2099.259,128,8,G#1,p,11,144,32,11,,,,, +440,58,3,15767,1152,2099.795,,,,,,144,32,0,,,,, +440,59,1,15768,1280,2099.795,128,8,F6,pp,8,144,89,8,,,,, +440,60,1,15769,1280,2099.795,128,8,C#7,pp,8,144,97,8,,,,, +440,61,3,15770,1280,2099.795,,,,,,176,102,0,,,,, +440,62,3,15771,1318,2099.954,26,32,A1,pp,8,144,33,8,,,,, +440,62,3,15771,1318,2100.063,,,,,,144,33,0,,,,, +440,63,3,15772,1344,2100.063,25,32,A#5,p-,10,144,82,10,,,,, +440,63,3,15772,1344,2100.167,,,,,,144,82,0,,,,, +440,64,3,15773,1369,2100.167,39,32,F1,p+,12,144,29,12,,,,, +440,59,1,15768,1280,2100.331,,,,,,144,89,0,,,,, +440,60,1,15769,1280,2100.331,,,,,,144,97,0,,,,, +440,64,3,15773,1369,2100.331,,,,,,144,29,0,,,,, +440,65,1,15774,1408,2100.331,128,8,C2,pp,8,144,36,8,,,,, +440,66,1,15775,1408,2100.331,128,8,A#2,pp,8,144,46,8,,,,, +440,67,3,15776,1408,2100.331,25,32,A#5,mp+,15,144,82,15,,,,, +440,68,3,15777,1408,2100.331,32,32,F6,mp+,15,144,89,15,,,,, +440,67,3,15776,1408,2100.435,,,,,,144,82,0,,,,, +440,69,3,15778,1433,2100.435,26,32,A2,mf-,16,144,45,16,,,,, +440,70,3,15779,1433,2100.435,32,32,E3,mf-,16,144,52,16,,,,, +440,68,3,15777,1408,2100.464,,,,,,144,89,0,,,,, +440,69,3,15778,1433,2100.544,,,,,,144,45,0,,,,, +440,71,3,15780,1459,2100.544,38,32,C#6,mf+,18,144,85,18,,,,, +440,70,3,15779,1433,2100.569,,,,,,144,52,0,,,,, +440,71,3,15780,1459,2100.703,,,,,,144,85,0,,,,, +440,72,3,15781,1497,2100.703,39,32,A2,f+,21,144,45,21,,,,, +440,73,3,15782,1497,2100.703,32,32,E3,f+,21,144,52,21,,,,, +440,73,3,15782,1497,2100.837,,,,,,144,52,0,,,,, +440,65,1,15774,1408,2100.866,,,,,,144,36,0,,,,, +440,66,1,15775,1408,2100.866,,,,,,144,46,0,,,,, +440,72,3,15781,1497,2100.866,,,,,,144,45,0,,,,, +441,0,0,15783,0,2100.866,,,,,,,,,441,,,, +441,1,1,15784,0,2100.866,,,,,,176,102,0,,,,, +441,2,3,15785,0,2100.866,38,32,F1,fff,24,144,29,23,,,,, +441,3,3,15786,0,2100.866,32,32,A1,fff,24,144,33,23,,,,, +441,4,3,15787,0,2100.866,32,32,E2,fff,24,144,40,23,,,,, +441,3,3,15786,0,2101,,,,,,144,33,0,,,,, +441,4,3,15787,0,2101,,,,,,144,40,0,,,,, +441,2,3,15785,0,2101.025,,,,,,144,29,0,,,,, +441,5,3,15788,38,2101.025,26,32,A#5,fff,24,144,82,23,,,,, +441,5,3,15788,38,2101.134,,,,,,144,82,0,,,,, +441,6,3,15789,64,2101.134,38,32,F1,mp,14,144,29,14,,,,, +441,7,3,15790,64,2101.134,32,32,E2,mp,14,144,40,14,,,,, +441,7,3,15790,64,2101.268,,,,,,144,40,0,,,,, +441,6,3,15789,64,2101.293,,,,,,144,29,0,,,,, +441,8,0,15791,102,2101.293,,,,,,176,64,0,,,,,^ +441,9,3,15792,102,2101.293,26,32,A#4,mp,14,144,70,14,,,,, +441,9,3,15792,102,2101.402,,,,,,144,70,0,,,,, +441,10,3,15793,128,2101.402,,,,,,176,102,0,,,,, +441,12,3,15794,213,2101.758,43,16,G#1,pp,8,144,32,8,,,,, +441,11,0,15795,213,2101.758,,,,,,176,64,127,,,,,V +441,12,3,15794,213,2101.938,,,,,,144,32,0,,,,, +441,13,1,15796,256,2101.938,64,16,F6,pp,8,144,89,8,,,,, +441,14,3,15797,256,2101.938,,,,,,176,102,0,,,,, +441,13,1,15796,256,2102.206,,,,,,144,89,0,,,,, +441,15,1,15798,320,2102.206,42,16,F6,pp,8,144,89,8,,,,, +441,16,3,15799,320,2102.206,42,16,C2,pp,8,144,36,8,,,,, +441,17,3,15800,320,2102.206,64,16,A#2,pp,8,144,46,8,,,,, +441,15,1,15798,320,2102.381,,,,,,144,89,0,,,,, +441,16,3,15799,320,2102.381,,,,,,144,36,0,,,,, +441,17,3,15800,320,2102.381,,,,,,144,46,0,,,,, +441,18,1,15801,362,2102.381,43,16,F6,pp,8,144,89,8,,,,, +441,19,3,15802,362,2102.381,64,16,C2,pp,8,144,36,8,,,,, +441,20,3,15803,362,2102.381,64,16,A#2,pp,8,144,46,8,,,,, +441,18,1,15801,362,2102.561,,,,,,144,89,0,,,,, +441,21,1,15804,405,2102.561,64,16,E7,pp,8,144,100,8,,,,, +441,19,3,15802,362,2102.649,,,,,,144,36,0,,,,, +441,20,3,15803,362,2102.649,,,,,,144,46,0,,,,, +441,22,3,15805,426,2102.649,,,,,,176,102,0,,,,, +441,21,1,15804,405,2102.829,,,,,,144,100,0,,,,, +441,23,1,15806,469,2102.829,43,16,A#5,pp,8,144,82,8,,,,, +441,23,1,15806,469,2103.009,,,,,,144,82,0,,,,, +441,24,1,15807,512,2103.009,256,4,E7,pp,8,144,100,8,,,,, +441,25,3,15808,512,2103.009,,,,,,176,102,0,,,,, +441,26,1,15809,768,2104.081,85,8,E7,,,,,,,,,, +441,24,1,15807,512,2104.436,,,,,,144,100,0,,,,, +441,27,1,15810,853,2104.436,43,16,A#5,pp,8,144,82,8,,,,, +441,27,1,15810,853,2104.616,,,,,,144,82,0,,,,, +441,28,1,15811,896,2104.616,25,32,F6,mp,14,144,89,14,,,,, +441,29,1,15812,896,2104.616,32,32,C#7,mp,14,144,97,14,,,,, +441,30,1,15813,896,2104.616,32,32,E7,mp,14,144,100,14,,,,, +441,31,3,15814,896,2104.616,128,8,G#1,pp,8,144,32,8,,,,, +441,32,3,15815,896,2104.616,128,8,C2,pp,8,144,36,8,,,,, +441,33,3,15816,896,2104.616,128,8,A#2,pp,8,144,46,8,,,,, +441,28,1,15811,896,2104.721,,,,,,144,89,0,,,,, +441,34,1,15817,921,2104.721,26,32,E2,mp,14,144,40,14,,,,, +441,29,1,15812,896,2104.75,,,,,,144,97,0,,,,, +441,30,1,15813,896,2104.75,,,,,,144,100,0,,,,, +441,34,1,15817,921,2104.83,,,,,,144,40,0,,,,, +441,35,1,15818,947,2104.83,25,32,A#6,mp,14,144,94,14,,,,, +441,35,1,15818,947,2104.934,,,,,,144,94,0,,,,, +441,36,1,15819,972,2104.934,26,32,A1,mp,14,144,33,14,,,,, +441,36,1,15819,972,2105.043,,,,,,144,33,0,,,,, +441,37,1,15820,998,2105.043,26,32,F1,mp,14,144,29,14,,,,, +441,31,3,15814,896,2105.152,,,,,,144,32,0,,,,, +441,32,3,15815,896,2105.152,,,,,,144,36,0,,,,, +441,33,3,15816,896,2105.152,,,,,,144,46,0,,,,, +441,37,1,15820,998,2105.152,,,,,,144,29,0,,,,, +441,38,3,15821,1024,2105.152,384,4,G#2,pp,8,144,44,8,,,,, +441,39,1,15822,1024,2105.152,,,,,,176,102,0,,,,, +441,40,1,15823,1075,2105.365,25,32,C#7,ppp,5,144,97,5,,,,, +441,40,1,15823,1075,2105.47,,,,,,144,97,0,,,,, +441,41,1,15824,1100,2105.47,26,32,E2,ppp,5,144,40,5,,,,, +441,41,1,15824,1100,2105.579,,,,,,144,40,0,,,,, +441,42,1,15825,1126,2105.579,26,32,A#5,ppp+,6,144,82,6,,,,, +441,42,1,15825,1126,2105.688,,,,,,144,82,0,,,,, +441,43,1,15826,1152,2105.688,25,32,A1,ppp+,6,144,33,6,,,,, +441,43,1,15826,1152,2105.792,,,,,,144,33,0,,,,, +441,44,1,15827,1177,2105.792,39,32,C#7,ppp+,6,144,97,6,,,,, +441,44,1,15827,1177,2105.956,,,,,,144,97,0,,,,, +441,45,1,15828,1216,2105.956,25,32,E2,ppp+,6,144,40,6,,,,, +441,45,1,15828,1216,2106.06,,,,,,144,40,0,,,,, +441,46,1,15829,1241,2106.06,39,32,A1,pp-,7,144,33,7,,,,, +441,46,1,15829,1241,2106.223,,,,,,144,33,0,,,,, +441,47,1,15830,1280,2106.223,28,32,E2,pp-,7,144,40,7,,,,, +441,47,1,15830,1280,2106.341,,,,,,144,40,0,,,,, +441,48,1,15831,1308,2106.341,28,32,C#6,pp-,7,144,85,7,,,,, +441,48,1,15831,1308,2106.458,,,,,,144,85,0,,,,, +441,49,1,15832,1336,2106.458,43,32,A1,pp,8,144,33,8,,,,, +441,49,1,15832,1336,2106.638,,,,,,144,33,0,,,,, +441,50,1,15833,1379,2106.638,29,32,E2,pp,8,144,40,8,,,,, +441,38,3,15821,1024,2106.759,,,,,,144,44,0,,,,, +441,50,1,15833,1379,2106.759,,,,,,144,40,0,,,,, +441,51,3,15834,1408,2106.759,128,8,C#2,pp,8,144,37,8,,,,, +441,52,1,15835,1408,2106.759,28,32,A#4,pp,8,144,70,8,,,,, +441,52,1,15835,1408,2106.876,,,,,,144,70,0,,,,, +441,53,1,15836,1436,2106.876,28,32,A1,pp+,9,144,33,9,,,,, +441,53,1,15836,1436,2106.993,,,,,,144,33,0,,,,, +441,54,1,15837,1464,2106.993,43,32,F1,pp+,9,144,29,9,,,,, +441,54,1,15837,1464,2107.173,,,,,,144,29,0,,,,, +441,55,1,15838,1507,2107.173,29,32,A#3,pp+,9,144,58,9,,,,, +441,51,3,15834,1408,2107.295,,,,,,144,37,0,,,,, +441,55,1,15838,1507,2107.295,,,,,,144,58,0,,,,, +442,0,0,15839,0,2107.295,,,,,,,,,442,,,, +442,1,1,15840,0,2107.295,128,8,D3,pp,8,144,50,8,,,,, +442,2,1,15841,0,2107.295,128,8,B3,p,11,144,59,11,,,,, +442,3,3,15842,0,2107.295,42,32,A1,p-,10,144,33,10,,,,, +442,3,3,15842,0,2107.471,,,,,,144,33,0,,,,, +442,4,3,15843,42,2107.471,29,32,E2,p-,10,144,40,10,,,,, +442,4,3,15843,42,2107.592,,,,,,144,40,0,,,,, +442,5,3,15844,71,2107.592,28,32,A1,p,11,144,33,11,,,,, +442,5,3,15844,71,2107.709,,,,,,144,33,0,,,,, +442,6,3,15845,99,2107.709,29,32,F1,p,11,144,29,11,,,,, +442,1,1,15840,0,2107.831,,,,,,144,50,0,,,,, +442,2,1,15841,0,2107.831,,,,,,144,59,0,,,,, +442,6,3,15845,99,2107.831,,,,,,144,29,0,,,,, +442,7,3,15846,128,2107.831,42,32,A1,p,11,144,33,11,,,,, +442,8,1,15847,128,2107.831,128,8,G#2,pp,8,144,44,8,,,,, +442,7,3,15846,128,2108.006,,,,,,144,33,0,,,,, +442,9,3,15848,170,2108.006,43,32,E2,p+,12,144,40,12,,,,, +442,9,3,15848,170,2108.186,,,,,,144,40,0,,,,, +442,10,3,15849,213,2108.186,43,32,F1,p+,12,144,29,12,,,,, +442,8,1,15847,128,2108.366,,,,,,144,44,0,,,,, +442,10,3,15849,213,2108.366,,,,,,144,29,0,,,,, +442,11,1,15850,256,2108.366,,,,,,176,102,0,,,,, +442,12,3,15851,256,2108.366,,,,,,176,102,0,,,,, +442,13,1,15852,768,2110.509,256,4,B3,mp,14,144,59,14,,,,, +442,14,3,15853,768,2110.509,,,,,,176,102,0,,,,, +442,15,3,15854,832,2110.777,48,32,C#2,mp+,15,144,37,15,,,,, +442,15,3,15854,832,2110.978,,,,,,144,37,0,,,,, +442,16,3,15855,880,2110.978,48,32,D3,mf-,16,144,50,16,,,,, +442,16,3,15855,880,2111.179,,,,,,144,50,0,,,,, +442,17,3,15856,928,2111.179,32,32,G#2,mf-,16,144,44,16,,,,, +442,17,3,15856,928,2111.313,,,,,,144,44,0,,,,, +442,18,0,15857,960,2111.313,,,,,,176,64,0,,,,,^ +442,19,3,15858,960,2111.313,64,16,C#2,mf,17,144,37,17,,,,, +442,20,3,15859,960,2111.313,64,16,G#2,mf,17,144,44,17,,,,, +442,21,3,15860,960,2111.313,64,16,D3,mf,17,144,50,17,,,,, +442,13,1,15852,768,2111.581,,,,,,144,59,0,,,,, +442,19,3,15858,960,2111.581,,,,,,144,37,0,,,,, +442,20,3,15859,960,2111.581,,,,,,144,44,0,,,,, +442,21,3,15860,960,2111.581,,,,,,144,50,0,,,,, +442,22,1,15861,1024,2111.581,,,,,,176,102,0,,,,, +442,23,3,15862,1024,2111.581,,,,,,176,102,0,,,,, +442,24,0,15863,1024,2111.581,,,,,,,,,,6074,,, +442,26,1,15864,1088,2111.848,25,32,E4,pp,8,144,64,8,,,,, +442,25,0,15865,1088,2111.848,,,,,,176,64,127,,,,,V +442,26,1,15864,1088,2111.953,,,,,,144,64,0,,,,, +442,27,1,15866,1113,2111.953,26,32,B6,pp,8,144,95,8,,,,, +442,27,1,15866,1113,2112.062,,,,,,144,95,0,,,,, +442,28,1,15867,1139,2112.062,25,32,G3,pp,8,144,55,8,,,,, +442,28,1,15867,1139,2112.166,,,,,,144,55,0,,,,, +442,29,1,15868,1164,2112.166,26,32,A#3,pp,8,144,58,8,,,,, +442,30,1,15869,1164,2112.166,32,32,E4,pp,8,144,64,8,,,,, +442,31,1,15870,1164,2112.166,32,32,B6,pp,8,144,95,8,,,,, +442,29,1,15868,1164,2112.275,,,,,,144,58,0,,,,, +442,32,1,15871,1190,2112.275,26,32,D#7,pp,8,144,99,8,,,,, +442,30,1,15869,1164,2112.3,,,,,,144,64,0,,,,, +442,31,1,15870,1164,2112.3,,,,,,144,95,0,,,,, +442,32,1,15871,1190,2112.384,,,,,,144,99,0,,,,, +442,33,1,15872,1216,2112.384,,,,,,176,102,0,,,,, +442,34,1,15873,1248,2112.518,51,16,D4,pp,8,144,62,8,,,,, +442,35,1,15874,1248,2112.518,64,16,B4,pp,8,144,71,8,,,,, +442,36,3,15875,1248,2112.518,51,16,F2,pp,8,144,41,8,,,,, +442,34,1,15873,1248,2112.731,,,,,,144,62,0,,,,, +442,36,3,15875,1248,2112.731,,,,,,144,41,0,,,,, +442,37,1,15876,1299,2112.731,51,16,B5,pp,8,144,83,8,,,,, +442,38,3,15877,1299,2112.731,51,16,F#2,pp,8,144,42,8,,,,, +442,39,3,15878,1299,2112.731,64,16,D3,pp,8,144,50,8,,,,, +442,35,1,15874,1248,2112.786,,,,,,144,71,0,,,,, +442,37,1,15876,1299,2112.945,,,,,,144,83,0,,,,, +442,38,3,15877,1299,2112.945,,,,,,144,42,0,,,,, +442,40,1,15879,1350,2112.945,51,16,B4,pp,8,144,71,8,,,,, +442,41,3,15880,1350,2112.945,51,16,F2,pp,8,144,41,8,,,,, +442,42,3,15881,1350,2112.945,64,16,F#2,pp,8,144,42,8,,,,, +442,39,3,15878,1299,2112.999,,,,,,144,50,0,,,,, +442,40,1,15879,1350,2113.158,,,,,,144,71,0,,,,, +442,41,3,15880,1350,2113.158,,,,,,144,41,0,,,,, +442,42,3,15881,1350,2113.158,,,,,,144,42,0,,,,, +442,43,1,15882,1401,2113.158,51,16,B5,pp,8,144,83,8,,,,, +442,44,3,15883,1401,2113.158,51,16,F1,pp,8,144,29,8,,,,, +442,45,3,15884,1401,2113.158,64,16,F#2,pp,8,144,42,8,,,,, +442,43,1,15882,1401,2113.372,,,,,,144,83,0,,,,, +442,44,3,15883,1401,2113.372,,,,,,144,29,0,,,,, +442,45,3,15884,1401,2113.372,,,,,,144,42,0,,,,, +442,46,1,15885,1452,2113.372,52,16,D4,pp,8,144,62,8,,,,, +442,47,1,15886,1452,2113.372,64,16,A#4,pp,8,144,70,8,,,,, +442,48,1,15887,1452,2113.372,64,16,B4,pp,8,144,71,8,,,,, +442,49,3,15888,1452,2113.372,52,16,F1,pp,8,144,29,8,,,,, +442,50,3,15889,1452,2113.372,64,16,F#2,pp,8,144,42,8,,,,, +442,51,0,15890,1504,2113.506,,,,,,176,64,0,,,,,^ +442,46,1,15885,1452,2113.589,,,,,,144,62,0,,,,, +442,49,3,15888,1452,2113.589,,,,,,144,29,0,,,,, +442,52,1,15891,1504,2113.589,,,,,,176,102,0,,,,, +442,53,3,15892,1504,2113.589,,,,,,176,102,0,,,,, +442,47,1,15886,1452,2113.64,,,,,,144,70,0,,,,, +442,48,1,15887,1452,2113.64,,,,,,144,71,0,,,,, +442,50,3,15889,1452,2113.64,,,,,,144,42,0,,,,, +443,0,0,15893,0,2113.723,,,,,,,,,443,,,, +443,2,1,15894,0,2113.723,256,4,C#7,fff,24,144,97,23,,,,, +443,3,3,15895,0,2113.723,,,,,,176,102,0,,,,, +443,1,0,15896,0,2113.806,,,,,,176,64,127,,,,,V +443,2,1,15894,0,2114.795,,,,,,144,97,0,,,,, +443,4,1,15897,256,2114.795,,,,,,176,102,0,,,,, +443,5,3,15898,256,2114.795,,,,,,176,102,0,,,,, +443,6,1,15899,341,2115.151,,,,,,176,102,0,,,,, +443,7,0,15900,426,2115.506,,,,,,176,64,0,,,,,^ +443,8,1,15901,426,2115.506,,,,,,176,102,0,,,,, +443,9,3,15902,426,2115.506,22,32,A1,fff,24,144,33,23,,,,, +443,9,3,15902,426,2115.598,,,,,,144,33,0,,,,, +443,10,3,15903,448,2115.598,21,32,E2,fff,24,144,40,23,,,,, +443,10,3,15903,448,2115.686,,,,,,144,40,0,,,,, +443,11,3,15904,469,2115.686,21,32,F1,fff,24,144,29,23,,,,, +443,12,3,15905,469,2115.686,32,32,A1,fff,24,144,33,23,,,,, +443,13,3,15906,469,2115.686,32,32,E2,fff,24,144,40,23,,,,, +443,11,3,15904,469,2115.774,,,,,,144,29,0,,,,, +443,12,3,15905,469,2115.774,,,,,,144,33,0,,,,, +443,13,3,15906,469,2115.774,,,,,,144,40,0,,,,, +443,14,1,15907,490,2115.774,22,32,A#4,fff,24,144,70,23,,,,, +443,15,3,15908,490,2115.774,22,32,F1,fff,24,144,29,23,,,,, +443,16,3,15909,490,2115.774,32,32,A1,fff,24,144,33,23,,,,, +443,17,3,15910,490,2115.774,32,32,E2,fff,24,144,40,23,,,,, +443,14,1,15907,490,2115.866,,,,,,144,70,0,,,,, +443,15,3,15908,490,2115.866,,,,,,144,29,0,,,,, +443,18,1,15911,512,2115.866,64,16,E3,ff,22,144,52,22,,,,, +443,19,1,15912,512,2115.866,64,16,B3,ff,22,144,59,22,,,,, +443,20,3,15913,512,2115.866,,,,,,176,102,0,,,,, +443,16,3,15909,490,2115.908,,,,,,144,33,0,,,,, +443,17,3,15910,490,2115.908,,,,,,144,40,0,,,,, +443,18,1,15911,512,2115.954,,,,,,144,52,0,,,,, +443,21,3,15914,533,2115.954,21,32,E3,mp,14,144,52,14,,,,, +443,22,3,15915,554,2116.042,22,32,A#3,mp-,13,144,58,13,,,,, +443,19,1,15912,512,2116.134,,,,,,144,59,0,,,,, +443,21,3,15914,533,2116.134,,,,,,144,52,0,,,,, +443,22,3,15915,554,2116.134,,,,,,144,58,0,,,,, +443,23,1,15916,576,2116.134,,,,,,176,102,0,,,,, +443,24,3,15917,576,2116.134,21,32,C#4,p+,12,144,61,12,,,,, +443,24,3,15917,576,2116.222,,,,,,144,61,0,,,,, +443,25,3,15918,597,2116.222,21,32,A2,p,11,144,45,11,,,,, +443,25,3,15918,597,2116.31,,,,,,144,45,0,,,,, +443,26,3,15919,618,2116.31,22,32,F2,p-,10,144,41,10,,,,, +443,26,3,15919,618,2116.402,,,,,,144,41,0,,,,, +443,27,1,15920,640,2116.402,,,,,,176,102,0,,,,, +443,28,3,15921,640,2116.402,32,32,A2,pp,8,144,45,8,,,,, +443,29,0,15922,652,2116.452,,,,,,176,64,127,,,,,V +443,28,3,15921,640,2116.536,,,,,,144,45,0,,,,, +443,30,3,15923,672,2116.536,32,32,E3,pp-,7,144,52,7,,,,, +443,30,3,15923,672,2116.67,,,,,,144,52,0,,,,, +443,31,3,15924,704,2116.67,64,16,F1,ppp,5,144,29,5,,,,, +443,31,3,15924,704,2116.938,,,,,,144,29,0,,,,, +443,32,1,15925,768,2116.938,,,,,,176,102,0,,,,, +443,33,3,15926,768,2116.938,,,,,,176,102,0,,,,, +443,34,0,15927,1024,2117.966,,,,,,176,64,0,,,,,^ +443,35,1,15928,1024,2118.009,102,8,A#5,pp,8,144,82,8,,,,, +443,36,1,15929,1024,2118.009,128,8,B6,pp,8,144,95,8,,,,, +443,37,3,15930,1024,2118.009,102,8,F2,pp,8,144,41,8,,,,, +443,38,3,15931,1024,2118.009,128,8,F#2,pp,8,144,42,8,,,,, +443,39,3,15932,1024,2118.009,128,8,D3,pp,8,144,50,8,,,,, +443,40,0,15933,1075,2118.266,,,,,,176,64,127,,,,,V +443,35,1,15928,1024,2118.436,,,,,,144,82,0,,,,, +443,37,3,15930,1024,2118.436,,,,,,144,41,0,,,,, +443,38,3,15931,1024,2118.436,,,,,,144,42,0,,,,, +443,41,1,15934,1126,2118.436,154,8,D4,pp,8,144,62,8,,,,, +443,42,1,15935,1126,2118.436,128,8,A#4,pp,8,144,70,8,,,,, +443,43,1,15936,1126,2118.436,128,8,B4,pp,8,144,71,8,,,,, +443,44,3,15937,1126,2118.436,154,8,F1,pp,8,144,29,8,,,,, +443,45,3,15938,1126,2118.436,128,8,F#2,pp,8,144,42,8,,,,, +443,36,1,15929,1024,2118.545,,,,,,144,95,0,,,,, +443,39,3,15932,1024,2118.545,,,,,,144,50,0,,,,, +443,42,1,15935,1126,2118.972,,,,,,144,70,0,,,,, +443,43,1,15936,1126,2118.972,,,,,,144,71,0,,,,, +443,45,3,15938,1126,2118.972,,,,,,144,42,0,,,,, +443,41,1,15934,1126,2119.081,,,,,,144,62,0,,,,, +443,44,3,15937,1126,2119.081,,,,,,144,29,0,,,,, +443,46,1,15939,1280,2119.081,256,4,E3,p,11,144,52,11,,,,, +443,47,1,15940,1280,2119.081,256,4,B3,p,11,144,59,11,,,,, +443,48,3,15941,1280,2119.081,256,4,C#2,pp,8,144,37,8,,,,, +443,49,3,15942,1280,2119.081,256,4,G#2,pp,8,144,44,8,,,,, +443,50,3,15943,1280,2119.081,256,4,D3,pp,8,144,50,8,,,,, +443,48,3,15941,1280,2120.152,,,,,,144,37,0,,,,, +443,49,3,15942,1280,2120.152,,,,,,144,44,0,,,,, +443,50,3,15943,1280,2120.152,,,,,,144,50,0,,,,, +444,0,0,15944,0,2120.152,,,,,,,,,444,,,, +444,1,1,15945,0,2120.152,256,4,E3,,,,,,,,,, +444,2,1,15946,0,2120.152,256,4,B3,,,,,,,,,, +444,3,3,15947,0,2120.152,,,,,,176,102,0,,,,, +444,4,3,15948,64,2120.42,192,8,G#2,p,11,144,44,11,,,,, +443,46,1,15939,1280,2121.223,,,,,,144,52,0,,,,, +443,47,1,15940,1280,2121.223,,,,,,144,59,0,,,,, +444,5,1,15949,256,2121.223,256,4,E3,p,11,144,52,11,,,,, +444,6,1,15950,256,2121.223,256,4,B3,p,11,144,59,11,,,,, +444,7,3,15951,256,2121.223,128,8,G#2,,,,,,,,,, +444,4,3,15948,64,2121.759,,,,,,144,44,0,,,,, +444,8,3,15952,384,2121.759,128,8,C#2,pp,8,144,37,8,,,,, +444,9,3,15953,384,2121.759,128,8,G#2,pp,8,144,44,8,,,,, +444,10,3,15954,384,2121.759,128,8,D3,pp,8,144,50,8,,,,, +444,5,1,15949,256,2122.295,,,,,,144,52,0,,,,, +444,6,1,15950,256,2122.295,,,,,,144,59,0,,,,, +444,8,3,15952,384,2122.295,,,,,,144,37,0,,,,, +444,9,3,15953,384,2122.295,,,,,,144,44,0,,,,, +444,10,3,15954,384,2122.295,,,,,,144,50,0,,,,, +444,11,1,15955,512,2122.295,,,,,,176,102,0,,,,, +444,12,3,15956,512,2122.295,25,32,E2,pp,8,144,40,8,,,,, +444,12,3,15956,512,2122.399,,,,,,144,40,0,,,,, +444,13,3,15957,537,2122.399,26,32,B4,pp,8,144,71,8,,,,, +444,13,3,15957,537,2122.508,,,,,,144,71,0,,,,, +444,14,3,15958,563,2122.508,25,32,G1,pp,8,144,31,8,,,,, +444,14,3,15958,563,2122.613,,,,,,144,31,0,,,,, +444,15,3,15959,588,2122.613,26,32,A#1,pp,8,144,34,8,,,,, +444,16,3,15960,588,2122.613,32,32,E2,pp,8,144,40,8,,,,, +444,15,3,15959,588,2122.722,,,,,,144,34,0,,,,, +444,17,3,15961,614,2122.722,26,32,D#6,pp,8,144,87,8,,,,, +444,16,3,15960,588,2122.747,,,,,,144,40,0,,,,, +444,17,3,15961,614,2122.831,,,,,,144,87,0,,,,, +444,18,3,15962,640,2122.831,,,,,,176,102,0,,,,, +444,19,1,15963,704,2123.098,76,16,D4,p,11,144,62,11,,,,, +444,20,1,15964,704,2123.098,64,16,B4,p,11,144,71,11,,,,, +444,21,3,15965,704,2123.098,76,16,F1,p,11,144,29,11,,,,, +444,20,1,15964,704,2123.366,,,,,,144,71,0,,,,, +444,19,1,15963,704,2123.416,,,,,,144,62,0,,,,, +444,21,3,15965,704,2123.416,,,,,,144,29,0,,,,, +444,22,1,15966,780,2123.416,52,16,D4,p-,10,144,62,10,,,,, +444,23,1,15967,780,2123.416,64,16,B4,p-,10,144,71,10,,,,, +444,24,3,15968,780,2123.416,52,16,F1,p-,10,144,29,10,,,,, +444,22,1,15966,780,2123.634,,,,,,144,62,0,,,,, +444,23,1,15967,780,2123.634,,,,,,144,71,0,,,,, +444,24,3,15968,780,2123.634,,,,,,144,29,0,,,,, +444,25,1,15969,832,2123.634,51,16,D4,pp+,9,144,62,9,,,,, +444,26,1,15970,832,2123.634,64,16,B4,pp+,9,144,71,9,,,,, +444,27,3,15971,832,2123.634,102,8,F1,pp+,9,144,29,9,,,,, +444,28,3,15972,832,2123.634,128,8,F#2,pp+,9,144,42,9,,,,, +444,25,1,15969,832,2123.848,,,,,,144,62,0,,,,, +444,26,1,15970,832,2123.848,,,,,,144,71,0,,,,, +444,29,1,15973,883,2123.848,51,16,D4,pp,8,144,62,8,,,,, +444,30,1,15974,883,2123.848,64,16,A#4,pp,8,144,70,8,,,,, +444,31,1,15975,883,2123.848,64,16,B4,pp,8,144,71,8,,,,, +444,27,3,15971,832,2124.061,,,,,,144,29,0,,,,, +444,28,3,15972,832,2124.061,,,,,,144,42,0,,,,, +444,29,1,15973,883,2124.061,,,,,,144,62,0,,,,, +444,30,1,15974,883,2124.061,,,,,,144,70,0,,,,, +444,31,1,15975,883,2124.061,,,,,,144,71,0,,,,, +444,32,0,15976,934,2124.061,,,,,,176,64,0,,,,,^ +444,33,3,15977,934,2124.061,26,32,F1,pp-,7,144,29,7,,,,, +444,34,3,15978,934,2124.061,32,32,F#2,pp-,7,144,42,7,,,,, +444,35,1,15979,934,2124.061,26,32,D4,pp-,7,144,62,7,,,,, +444,36,1,15980,934,2124.061,32,32,A#4,pp-,7,144,70,7,,,,, +444,37,1,15981,934,2124.061,32,32,B4,pp-,7,144,71,7,,,,, +444,33,3,15977,934,2124.17,,,,,,144,29,0,,,,, +444,35,1,15979,934,2124.17,,,,,,144,62,0,,,,, +444,38,1,15982,960,2124.17,,,,,,176,102,0,,,,, +444,39,3,15983,960,2124.17,,,,,,176,102,0,,,,, +444,40,0,15984,960,2124.17,,,,,,,,,,6075,,, +444,34,3,15978,934,2124.195,,,,,,144,42,0,,,,, +444,36,1,15980,934,2124.195,,,,,,144,70,0,,,,, +444,37,1,15981,934,2124.195,,,,,,144,71,0,,,,, +444,42,1,15985,1024,2124.438,,,,,,176,102,0,,,,, +444,43,3,15986,1024,2124.438,,,,,,176,102,0,,,,, +444,41,0,15987,1024,2124.438,,,,,,176,64,127,,,,,V +444,44,1,15988,1088,2124.706,64,16,G#4,fff,24,144,68,23,,,,, +444,45,3,15989,1088,2124.706,64,16,F2,fff,24,144,41,23,,,,, +444,46,3,15990,1088,2124.706,64,16,C#3,fff,24,144,49,23,,,,, +444,44,1,15988,1088,2124.973,,,,,,144,68,0,,,,, +444,45,3,15989,1088,2124.973,,,,,,144,41,0,,,,, +444,46,3,15990,1088,2124.973,,,,,,144,49,0,,,,, +444,47,1,15991,1152,2124.973,96,16,G#4,fff,24,144,68,23,,,,, +444,48,3,15992,1152,2124.973,96,16,D1,fff,24,144,26,23,,,,, +444,47,1,15991,1152,2125.375,,,,,,144,68,0,,,,, +444,49,1,15993,1248,2125.375,32,32,G#4,fff,24,144,68,23,,,,, +444,50,1,15994,1248,2125.375,32,32,A5,fff,24,144,81,23,,,,, +444,51,3,15995,1248,2125.375,32,32,F2,fff,24,144,41,23,,,,, +444,52,3,15996,1248,2125.375,32,32,C#3,fff,24,144,49,23,,,,, +444,48,3,15992,1152,2125.45,,,,,,144,26,0,,,,, +444,49,1,15993,1248,2125.509,,,,,,144,68,0,,,,, +444,50,1,15994,1248,2125.509,,,,,,144,81,0,,,,, +444,51,3,15995,1248,2125.509,,,,,,144,41,0,,,,, +444,52,3,15996,1248,2125.509,,,,,,144,49,0,,,,, +445,0,0,15997,0,2125.509,,,,,,,,,445,,,, +445,1,0,15998,0,2125.509,,,,,,176,64,0,,,,,^ +445,2,1,15999,0,2125.509,,,,,,176,102,0,,,,, +445,3,3,16000,0,2125.509,,,,,,176,102,0,,,,, +445,4,3,16001,32,2125.643,21,32,F1,ff,22,144,29,22,,,,, +445,4,3,16001,32,2125.731,,,,,,144,29,0,,,,, +445,5,3,16002,53,2125.731,21,32,G#2,f+,21,144,44,21,,,,, +445,5,3,16002,53,2125.819,,,,,,144,44,0,,,,, +445,6,3,16003,74,2125.819,32,32,C#2,f+,21,144,37,21,,,,, +445,6,3,16003,74,2125.953,,,,,,144,37,0,,,,, +445,7,3,16004,106,2125.953,22,32,G#2,f,20,144,44,20,,,,, +445,7,3,16004,106,2126.045,,,,,,144,44,0,,,,, +445,8,3,16005,128,2126.045,32,32,F1,f-,19,144,29,19,,,,, +445,8,3,16005,128,2126.179,,,,,,144,29,0,,,,, +445,10,3,16006,160,2126.179,21,32,C#2,mf+,18,144,37,18,,,,, +445,9,0,16007,160,2126.179,,,,,,176,64,127,,,,,V +445,10,3,16006,160,2126.267,,,,,,144,37,0,,,,, +445,11,3,16008,181,2126.267,21,32,F1,mf,17,144,29,17,,,,, +445,11,3,16008,181,2126.355,,,,,,144,29,0,,,,, +445,12,3,16009,202,2126.355,22,32,G#2,mf,17,144,44,17,,,,, +445,12,3,16009,202,2126.447,,,,,,144,44,0,,,,, +445,13,3,16010,224,2126.447,21,32,C#2,mf-,16,144,37,16,,,,, +445,13,3,16010,224,2126.535,,,,,,144,37,0,,,,, +445,14,3,16011,245,2126.535,21,32,G#2,mp+,15,144,44,15,,,,, +445,15,3,16012,245,2126.535,32,32,A3,mp+,15,144,57,15,,,,, +445,14,3,16011,245,2126.622,,,,,,144,44,0,,,,, +445,16,3,16013,266,2126.622,22,32,D1,mp+,15,144,26,15,,,,, +445,15,3,16012,245,2126.668,,,,,,144,57,0,,,,, +445,16,3,16013,266,2126.714,,,,,,144,26,0,,,,, +445,17,3,16014,288,2126.714,32,32,F1,mp,14,144,29,14,,,,, +445,17,3,16014,288,2126.848,,,,,,144,29,0,,,,, +445,18,3,16015,320,2126.848,32,32,C#2,mp,14,144,37,14,,,,, +445,18,3,16015,320,2126.982,,,,,,144,37,0,,,,, +445,19,3,16016,352,2126.982,32,32,G#2,mp,14,144,44,14,,,,, +445,19,3,16016,352,2127.116,,,,,,144,44,0,,,,, +445,20,0,16017,384,2127.116,,,,,,176,64,0,,,,,^ +445,21,1,16018,384,2127.116,128,8,B3,p,11,144,59,11,,,,, +445,22,3,16019,384,2127.116,32,32,D1,f,20,144,26,20,,,,, +445,23,3,16020,384,2127.116,32,32,F1,f,20,144,29,20,,,,, +445,24,3,16021,384,2127.116,32,32,C#2,f,20,144,37,20,,,,, +445,25,3,16022,384,2127.116,32,32,G#2,f,20,144,44,20,,,,, +445,22,3,16019,384,2127.25,,,,,,144,26,0,,,,, +445,23,3,16020,384,2127.25,,,,,,144,29,0,,,,, +445,24,3,16021,384,2127.25,,,,,,144,37,0,,,,, +445,25,3,16022,384,2127.25,,,,,,144,44,0,,,,, +445,26,3,16023,416,2127.25,32,32,A3,f,20,144,57,20,,,,, +445,26,3,16023,416,2127.384,,,,,,144,57,0,,,,, +445,28,3,16024,,2127.384,,8,G#3,p,11,144,56,11,,,,g, +445,28,3,16024,,2127.434,,,,,,144,56,0,,,,, +445,29,3,16025,448,2127.459,85,8,F2,p,11,144,41,11,,,,, +445,27,0,16026,448,2127.459,,,,,,176,64,127,,,,,V +445,21,1,16018,384,2127.652,,,,,,144,59,0,,,,, +445,30,1,16027,512,2127.727,,,,,,176,102,0,,,,, +445,29,3,16025,448,2127.815,,,,,,144,41,0,,,,, +445,31,3,16028,533,2127.815,21,32,G#3,p,11,144,56,11,,,,, +445,31,3,16028,533,2127.903,,,,,,144,56,0,,,,, +445,32,3,16029,554,2127.903,22,32,F2,p,11,144,41,11,,,,, +445,32,3,16029,554,2127.995,,,,,,144,41,0,,,,, +445,33,3,16030,576,2127.995,21,32,C#3,p,11,144,49,11,,,,, +445,33,3,16030,576,2128.083,,,,,,144,49,0,,,,, +445,34,3,16031,597,2128.083,21,32,G#3,p,11,144,56,11,,,,, +445,34,3,16031,597,2128.171,,,,,,144,56,0,,,,, +445,35,3,16032,618,2128.171,,,,,,176,102,0,,,,, +445,36,3,16033,704,2128.531,,,,,,176,102,0,,,,, +445,37,1,16034,768,2128.798,128,8,B5,p,11,144,83,11,,,,, +445,39,0,16035,800,2128.878,,,,,,176,64,0,,,,,^ +445,38,3,16036,789,2128.886,21,32,D2,p,11,144,38,11,,,,, +445,38,3,16036,789,2128.974,,,,,,144,38,0,,,,, +445,41,3,16037,,2128.974,,8,A6,pp,8,144,93,8,,,,g, +445,41,3,16037,,2129.024,,,,,,144,93,0,,,,, +445,42,3,16038,,2129.049,,8,F2,pp,8,144,41,8,,,,g, +445,42,3,16038,,2129.099,,,,,,144,41,0,,,,, +445,43,3,16039,810,2129.124,22,32,G#3,p,11,144,56,11,,,,, +445,40,0,16040,810,2129.178,,,,,,176,64,127,,,,,V +445,43,3,16039,810,2129.216,,,,,,144,56,0,,,,, +445,44,3,16041,832,2129.216,64,16,D3,p,11,144,50,11,,,,, +445,37,1,16034,768,2129.334,,,,,,144,83,0,,,,, +445,44,3,16041,832,2129.484,,,,,,144,50,0,,,,, +445,45,1,16042,896,2129.484,,,,,,176,102,0,,,,, +445,46,3,16043,896,2129.484,25,32,F1,p,11,144,29,11,,,,, +445,46,3,16043,896,2129.589,,,,,,144,29,0,,,,, +445,47,3,16044,921,2129.589,39,32,G#4,p,11,144,68,11,,,,, +445,47,3,16044,921,2129.752,,,,,,144,68,0,,,,, +445,48,3,16045,960,2129.752,25,32,D1,p-,10,144,26,10,,,,, +445,48,3,16045,960,2129.857,,,,,,144,26,0,,,,, +445,49,3,16046,985,2129.857,39,32,C#2,p-,10,144,37,10,,,,, +445,49,3,16046,985,2130.02,,,,,,144,37,0,,,,, +445,50,1,16047,1024,2130.02,,,,,,176,102,0,,,,, +445,51,3,16048,1024,2130.02,38,32,G#4,p-,10,144,68,10,,,,, +445,51,3,16048,1024,2130.179,,,,,,144,68,0,,,,, +445,52,3,16049,1062,2130.179,26,32,D1,pp+,9,144,26,9,,,,, +445,52,3,16049,1062,2130.288,,,,,,144,26,0,,,,, +445,53,3,16050,1088,2130.288,28,32,C#2,pp+,9,144,37,9,,,,, +445,53,3,16050,1088,2130.405,,,,,,144,37,0,,,,, +445,54,3,16051,1116,2130.405,28,32,G#4,pp+,9,144,68,9,,,,, +445,55,3,16052,1116,2130.405,32,32,A5,pp+,9,144,81,9,,,,, +445,54,3,16051,1116,2130.522,,,,,,144,68,0,,,,, +445,56,3,16053,1144,2130.522,43,32,D1,pp,8,144,26,8,,,,, +445,55,3,16052,1116,2130.539,,,,,,144,81,0,,,,, +445,56,3,16053,1144,2130.702,,,,,,144,26,0,,,,, +445,57,3,16054,1187,2130.702,29,32,G#4,pp,8,144,68,8,,,,, +445,58,3,16055,1187,2130.702,32,32,A5,pp,8,144,81,8,,,,, +445,57,3,16054,1187,2130.823,,,,,,144,68,0,,,,, +445,59,3,16056,1216,2130.823,25,32,F1,pp,8,144,29,8,,,,, +445,58,3,16055,1187,2130.836,,,,,,144,81,0,,,,, +445,59,3,16056,1216,2130.928,,,,,,144,29,0,,,,, +445,60,3,16057,1241,2130.928,26,32,D1,pp-,7,144,26,7,,,,, +445,61,3,16058,1241,2130.928,32,32,C#2,pp-,7,144,37,7,,,,, +445,60,3,16057,1241,2131.037,,,,,,144,26,0,,,,, +445,62,3,16059,1267,2131.037,25,32,G#4,pp-,7,144,68,7,,,,, +445,61,3,16058,1241,2131.062,,,,,,144,37,0,,,,, +445,63,1,16060,1280,2131.091,,,,,,176,102,0,,,,, +445,62,3,16059,1267,2131.141,,,,,,144,68,0,,,,, +445,64,3,16061,1292,2131.141,26,32,D1,pp-,7,144,26,7,,,,, +445,65,3,16062,1292,2131.141,32,32,F1,pp-,7,144,29,7,,,,, +445,66,3,16063,1292,2131.141,32,32,C#2,pp-,7,144,37,7,,,,, +445,69,0,16064,1344,2131.209,,,,,,176,64,0,,,,,^ +445,64,3,16061,1292,2131.25,,,,,,144,26,0,,,,, +445,67,3,16065,1318,2131.25,26,32,G#4,pp-,7,144,68,7,,,,, +445,68,3,16066,1318,2131.25,32,32,A5,pp-,7,144,81,7,,,,, +445,65,3,16062,1292,2131.275,,,,,,144,29,0,,,,, +445,66,3,16063,1292,2131.275,,,,,,144,37,0,,,,, +445,67,3,16065,1318,2131.359,,,,,,144,68,0,,,,, +445,71,3,16067,1344,2131.359,,,,,,176,102,0,,,,, +445,68,3,16066,1318,2131.384,,,,,,144,81,0,,,,, +445,72,1,16068,1356,2131.409,52,16,D3,pp,8,144,50,8,,,,, +445,73,1,16069,1356,2131.409,64,16,A#3,pp,8,144,58,8,,,,, +445,74,1,16070,1356,2131.409,64,16,B3,pp,8,144,59,8,,,,, +445,70,0,16071,1344,2131.509,,,,,,176,64,127,,,,,V +445,72,1,16068,1356,2131.627,,,,,,144,50,0,,,,, +445,73,1,16069,1356,2131.627,,,,,,144,58,0,,,,, +445,74,1,16070,1356,2131.627,,,,,,144,59,0,,,,, +445,75,1,16072,1408,2131.627,51,16,F1,ppp+,6,144,29,6,,,,, +445,76,1,16073,1408,2131.627,64,16,D3,ppp+,6,144,50,6,,,,, +445,77,1,16074,1408,2131.627,64,16,A#3,ppp+,6,144,58,6,,,,, +445,78,1,16075,1408,2131.627,64,16,B3,ppp+,6,144,59,6,,,,, +445,75,1,16072,1408,2131.84,,,,,,144,29,0,,,,, +445,76,1,16073,1408,2131.84,,,,,,144,50,0,,,,, +445,77,1,16074,1408,2131.84,,,,,,144,58,0,,,,, +445,78,1,16075,1408,2131.84,,,,,,144,59,0,,,,, +445,79,1,16076,1459,2131.84,77,16,F1,ppp,5,144,29,5,,,,, +445,80,1,16077,1459,2131.84,64,16,F2,ppp,5,144,41,5,,,,, +445,81,1,16078,1459,2131.84,64,16,D3,ppp,5,144,50,5,,,,, +445,82,1,16079,1459,2131.84,64,16,A#3,ppp,5,144,58,5,,,,, +445,83,1,16080,1459,2131.84,64,16,B3,ppp,5,144,59,5,,,,, +445,84,0,16081,1496,2131.995,,,,,,176,64,0,,,,,^ +445,80,1,16077,1459,2132.108,,,,,,144,41,0,,,,, +445,81,1,16078,1459,2132.108,,,,,,144,50,0,,,,, +445,82,1,16079,1459,2132.108,,,,,,144,58,0,,,,, +445,83,1,16080,1459,2132.108,,,,,,144,59,0,,,,, +445,79,1,16076,1459,2132.163,,,,,,144,29,0,,,,, +446,0,0,16082,0,2132.163,,,,,,,,,446,,,, +446,1,1,16083,0,2132.163,,,,,,176,102,0,,,,, +446,2,3,16084,0,2132.163,256,4,F2,pp,8,144,41,8,,,,, +446,3,0,16085,54,2132.389,,,,,,176,64,127,,,,,V +446,4,1,16086,128,2132.698,128,8,G#2,pp,8,144,44,8,,,,, +446,5,1,16087,128,2132.698,128,8,C4,pp,8,144,60,8,,,,, +446,6,1,16088,256,2133.234,25,32,E3,pp,8,144,52,8,,,,, +446,7,3,16089,256,2133.234,768,2,F2,,,,,,,,,, +446,6,1,16088,256,2133.339,,,,,,144,52,0,,,,, +446,8,1,16090,281,2133.339,26,32,B4,pp,8,144,71,8,,,,, +446,8,1,16090,281,2133.448,,,,,,144,71,0,,,,, +446,9,1,16091,307,2133.448,25,32,G1,pp,8,144,31,8,,,,, +446,4,1,16086,128,2133.459,,,,,,144,44,0,,,,, +446,5,1,16087,128,2133.459,,,,,,144,60,0,,,,, +446,9,1,16091,307,2133.552,,,,,,144,31,0,,,,, +446,10,1,16092,332,2133.552,26,32,A#1,pp,8,144,34,8,,,,, +446,11,1,16093,332,2133.552,32,32,E2,pp,8,144,40,8,,,,, +446,10,1,16092,332,2133.661,,,,,,144,34,0,,,,, +446,12,1,16094,358,2133.661,26,32,D#6,pp,8,144,87,8,,,,, +446,11,1,16093,332,2133.686,,,,,,144,40,0,,,,, +446,12,1,16094,358,2133.77,,,,,,144,87,0,,,,, +446,13,1,16095,384,2133.77,,,,,,176,102,0,,,,, +446,14,1,16096,512,2134.306,,,,,,176,102,0,,,,, +446,15,0,16097,896,2135.913,,,,,,176,64,0,,,,,^ +446,17,1,16098,1024,2136.448,,,,,,176,102,0,,,,, +446,18,3,16099,1024,2136.448,64,16,F2,fff,24,144,41,23,,,,, +446,19,3,16100,1024,2136.448,64,16,C#3,fff,24,144,49,23,,,,, +446,16,0,16101,1024,2136.448,,,,,,176,64,127,,,,,V +446,20,1,16102,1040,2136.515,16,64,G#3,fff,24,144,56,23,,,,, +446,20,1,16102,1040,2136.582,,,,,,144,56,0,,,,, +446,21,1,16103,1056,2136.582,16,64,A4,fff,24,144,69,23,,,,, +446,22,0,16104,1072,2136.633,,,,,,176,64,0,,,,,^ +446,18,3,16099,1024,2136.649,,,,,,144,41,0,,,,, +446,19,3,16100,1024,2136.649,,,,,,144,49,0,,,,, +446,21,1,16103,1056,2136.649,,,,,,144,69,0,,,,, +446,23,1,16105,1072,2136.649,16,64,D2,fff,24,144,38,23,,,,, +446,24,1,16106,1072,2136.649,16,64,F2,fff,24,144,41,23,,,,, +446,25,1,16107,1072,2136.649,16,64,C#3,fff,24,144,49,23,,,,, +446,26,1,16108,1072,2136.649,16,64,G#3,fff,24,144,56,23,,,,, +446,2,3,16084,0,2136.673,,,,,,144,41,0,,,,, +446,23,1,16105,1072,2136.716,,,,,,144,38,0,,,,, +446,26,1,16108,1072,2136.716,,,,,,144,56,0,,,,, +446,27,1,16109,1088,2136.716,192,8,G#4,pp,8,144,68,8,,,,, +446,28,3,16110,1088,2136.716,,,,,,176,102,0,,,,, +446,24,1,16106,1072,2136.716,,,,,,144,41,0,,,,, +446,25,1,16107,1072,2136.716,,,,,,144,49,0,,,,, +446,29,0,16111,1136,2136.933,,,,,,176,64,127,,,,,V +447,0,0,16112,0,2137.52,,,,,,,,,447,,,, +447,1,1,16113,0,2137.52,,,,,,176,102,0,,,,, +447,2,3,16114,0,2137.52,,,,,,176,102,0,,,,, +446,27,1,16109,1088,2137.52,,,,,,144,68,0,,,,, +447,3,1,16115,256,2138.591,,,,,,176,102,0,,,,, +447,4,1,16116,288,2138.725,,,,,,176,102,0,,,,, +447,5,1,16117,320,2138.859,21,32,F6,ppp,5,144,89,5,,,,, +447,5,1,16117,320,2138.947,,,,,,144,89,0,,,,, +447,6,1,16118,341,2138.947,21,32,E7,ppp,5,144,100,5,,,,, +447,6,1,16118,341,2139.035,,,,,,144,100,0,,,,, +447,7,1,16119,362,2139.035,32,32,A#5,ppp,5,144,82,5,,,,, +447,7,1,16119,362,2139.169,,,,,,144,82,0,,,,, +447,8,1,16120,394,2139.169,22,32,E7,ppp,5,144,100,5,,,,, +447,8,1,16120,394,2139.261,,,,,,144,100,0,,,,, +447,9,1,16121,416,2139.261,32,32,F6,ppp,5,144,89,5,,,,, +447,9,1,16121,416,2139.395,,,,,,144,89,0,,,,, +447,10,1,16122,448,2139.395,32,32,A#5,ppp,5,144,82,5,,,,, +447,10,1,16122,448,2139.529,,,,,,144,82,0,,,,, +447,11,1,16123,480,2139.529,64,16,E7,ppp,5,144,100,5,,,,, +447,12,3,16124,512,2139.663,64,16,D1,pp,8,144,26,8,,,,, +447,13,3,16125,512,2139.663,64,16,F4,pp,8,144,65,8,,,,, +447,14,3,16126,512,2139.663,64,16,G#4,pp,8,144,68,8,,,,, +447,15,1,16127,544,2139.797,,,,,,176,102,0,,,,, +447,11,1,16123,480,2139.797,,,,,,144,100,0,,,,, +447,13,3,16125,512,2139.931,,,,,,144,65,0,,,,, +447,16,3,16128,576,2139.931,192,8,A#3,pp,8,144,58,8,,,,, +447,17,3,16129,576,2139.931,128,8,F4,pp,8,144,65,8,,,,, +447,12,3,16124,512,2139.931,,,,,,144,26,0,,,,, +447,14,3,16126,512,2139.931,,,,,,144,68,0,,,,, +447,18,1,16130,768,2140.734,,,,,,176,102,0,,,,, +447,19,3,16131,768,2140.734,256,4,A#3,,,,,,,,,, +447,20,3,16132,768,2140.734,256,4,F4,,,,,,,,,, +447,17,3,16129,576,2141.538,,,,,,144,65,0,,,,, +447,16,3,16128,576,2141.806,,,,,,144,58,0,,,,, +447,21,3,16133,1024,2141.806,,,,,,176,102,0,,,,, +447,22,3,16134,1109,2142.161,28,32,C#2,pp,8,144,37,8,,,,, +447,22,3,16134,1109,2142.278,,,,,,144,37,0,,,,, +447,23,3,16135,1137,2142.278,29,32,D3,mp-,13,144,50,13,,,,, +447,23,3,16135,1137,2142.4,,,,,,144,50,0,,,,, +447,24,3,16136,1166,2142.4,28,32,G#2,mf,17,144,44,17,,,,, +447,24,3,16136,1166,2142.517,,,,,,144,44,0,,,,, +447,25,3,16137,1194,2142.517,29,32,A0,ff,22,144,21,22,,,,, +447,26,3,16138,1194,2142.517,32,32,C#2,ff,22,144,37,22,,,,, +447,27,3,16139,1194,2142.517,32,32,G#2,ff,22,144,44,22,,,,, +447,28,3,16140,1194,2142.517,32,32,D3,ff,22,144,50,22,,,,, +447,25,3,16137,1194,2142.638,,,,,,144,21,0,,,,, +447,30,0,16141,1223,2142.638,,,,,,176,64,0,,,,,^ +447,29,3,16142,1223,2142.638,28,32,F1,ff,22,144,29,22,,,,, +447,26,3,16138,1194,2142.651,,,,,,144,37,0,,,,, +447,27,3,16139,1194,2142.651,,,,,,144,44,0,,,,, +447,28,3,16140,1194,2142.651,,,,,,144,50,0,,,,, +447,29,3,16142,1223,2142.756,,,,,,144,29,0,,,,, +447,31,3,16143,1251,2142.756,,,,,,176,102,0,,,,, +448,0,0,16144,0,2142.877,,,,,,,,,448,,,, +448,1,1,16145,0,2142.877,85,8,G#2,mp,14,144,44,14,,,,, +448,2,1,16146,0,2142.877,128,8,D3,mp,14,144,50,14,,,,, +448,3,3,16147,0,2142.877,85,8,A0,mp,14,144,21,14,,,,, +448,4,3,16148,0,2142.877,128,8,F1,mp,14,144,29,14,,,,, +448,1,1,16145,0,2143.233,,,,,,144,44,0,,,,, +448,2,1,16146,0,2143.233,,,,,,144,50,0,,,,, +448,3,3,16147,0,2143.233,,,,,,144,21,0,,,,, +448,4,3,16148,0,2143.233,,,,,,144,29,0,,,,, +448,6,1,16149,85,2143.233,128,8,G#2,pp,8,144,44,8,,,,, +448,7,1,16150,85,2143.233,128,8,D3,pp,8,144,50,8,,,,, +448,8,3,16151,85,2143.233,128,8,A0,pp,8,144,21,8,,,,, +448,9,3,16152,85,2143.233,128,8,F1,pp,8,144,29,8,,,,, +448,5,0,16153,85,2143.233,,,,,,176,64,127,,,,,V +448,6,1,16149,85,2143.768,,,,,,144,44,0,,,,, +448,7,1,16150,85,2143.768,,,,,,144,50,0,,,,, +448,8,3,16151,85,2143.768,,,,,,144,21,0,,,,, +448,9,3,16152,85,2143.768,,,,,,144,29,0,,,,, +448,10,1,16154,213,2143.768,43,16,G#2,pp,8,144,44,8,,,,, +448,11,1,16155,213,2143.768,64,16,D3,pp,8,144,50,8,,,,, +448,12,3,16156,213,2143.768,43,16,A0,pp,8,144,21,8,,,,, +448,13,3,16157,213,2143.768,64,16,F1,pp,8,144,29,8,,,,, +448,14,1,16158,256,2143.948,256,4,G#2,,,,,,,,,, +448,15,1,16159,256,2143.948,256,4,D3,,,,,,,,,, +448,16,3,16160,256,2143.948,256,4,A0,,,,,,,,,, +448,17,3,16161,256,2143.948,256,4,F1,,,,,,,,,, +448,10,1,16154,213,2145.02,,,,,,144,44,0,,,,, +448,12,3,16156,213,2145.02,,,,,,144,21,0,,,,, +448,18,1,16162,512,2145.02,256,4,G#4,pp,8,144,68,8,,,,, +448,19,3,16163,512,2145.02,256,4,D1,pp,8,144,26,8,,,,, +448,20,3,16164,512,2145.02,256,4,F2,pp,8,144,41,8,,,,, +448,11,1,16155,213,2145.108,,,,,,144,50,0,,,,, +448,13,3,16157,213,2145.108,,,,,,144,29,0,,,,, +448,18,1,16162,512,2146.091,,,,,,144,68,0,,,,, +448,19,3,16163,512,2146.091,,,,,,144,26,0,,,,, +448,20,3,16164,512,2146.091,,,,,,144,41,0,,,,, +448,21,0,16165,768,2146.091,,,,,,176,64,0,,,,,^ +448,22,1,16166,768,2146.091,,,,,,176,102,0,,,,, +448,23,3,16167,768,2146.091,,,,,,176,102,0,,,,, +448,25,1,16168,896,2146.627,128,8,A#3,p,11,144,58,11,,,,, +448,26,1,16169,896,2146.627,128,8,F4,p,11,144,65,11,,,,, +448,27,3,16170,896,2146.627,42,16,G#1,p,11,144,32,11,,,,, +448,24,0,16171,896,2146.627,,,,,,176,64,127,,,,,V +448,27,3,16170,896,2146.803,,,,,,144,32,0,,,,, +448,28,3,16172,938,2146.803,86,8,C2,p,11,144,36,11,,,,, +448,25,1,16168,896,2147.163,,,,,,144,58,0,,,,, +448,26,1,16169,896,2147.163,,,,,,144,65,0,,,,, +448,28,3,16172,938,2147.163,,,,,,144,36,0,,,,, +448,29,1,16173,1024,2147.163,,,,,,176,102,0,,,,, +448,30,3,16174,1024,2147.163,,,,,,176,102,0,,,,, +448,31,1,16175,1152,2147.698,96,16,G#4,p,11,144,68,11,,,,, +448,32,3,16176,1152,2147.698,32,32,D1,p,11,144,26,11,,,,, +448,33,3,16177,1152,2147.698,32,32,F2,p,11,144,41,11,,,,, +448,32,3,16176,1152,2147.832,,,,,,144,26,0,,,,, +448,33,3,16177,1152,2147.832,,,,,,144,41,0,,,,, +448,34,3,16178,1184,2147.832,32,32,C#3,p,11,144,49,11,,,,, +448,34,3,16178,1184,2147.966,,,,,,144,49,0,,,,, +448,35,3,16179,1216,2147.966,64,16,D1,p,11,144,26,11,,,,, +448,36,1,16180,1248,2148.1,32,32,A4,p,11,144,69,11,,,,, +448,31,1,16175,1152,2148.1,,,,,,144,68,0,,,,, +448,36,1,16180,1248,2148.234,,,,,,144,69,0,,,,, +449,0,0,16181,0,2148.234,,,,,,,,,449,,,, +449,3,0,16182,613,2148.234,,,,,,176,64,0,,,,,^ +449,1,1,16183,0,2148.234,,,,,,176,102,0,,,,, +449,2,3,16184,0,2148.234,,,,,,176,102,0,,,,, +449,4,0,16185,613,2148.234,,,,,,,,,,6076,,, +448,35,3,16179,1216,2148.234,,,,,,144,26,0,,,,, +449,6,1,16186,768,2148.883,512,2,A#3,pp,8,144,58,8,,,,, +449,7,1,16187,768,2148.883,512,2,F4,pp,8,144,65,8,,,,, +449,8,3,16188,768,2148.883,512,2,G#1,pp,8,144,32,8,,,,, +449,9,3,16189,768,2148.883,512,2,C2,pp,8,144,36,8,,,,, +449,5,0,16190,768,2148.883,,,,,,176,64,127,,,,,V +449,6,1,16186,768,2151.026,,,,,,144,58,0,,,,, +449,7,1,16187,768,2151.026,,,,,,144,65,0,,,,, +449,8,3,16188,768,2151.026,,,,,,144,32,0,,,,, +449,9,3,16189,768,2151.026,,,,,,144,36,0,,,,, +450,0,0,16191,0,2151.026,,,,,,,,,450,,,, +450,1,1,16192,0,2151.026,42,16,A#3,pp,8,144,58,8,,,,, +450,2,1,16193,0,2151.026,64,16,F4,pp,8,144,65,8,,,,, +450,3,3,16194,0,2151.026,64,16,C3,pp,8,144,48,8,,,,, +450,1,1,16192,0,2151.201,,,,,,144,58,0,,,,, +450,4,1,16195,42,2151.201,86,8,E5,pp,8,144,76,8,,,,, +450,2,1,16193,0,2151.294,,,,,,144,65,0,,,,, +450,3,3,16194,0,2151.294,,,,,,144,48,0,,,,, +450,5,3,16196,64,2151.294,64,16,E3,p,11,144,52,11,,,,, +450,6,3,16197,64,2151.294,64,16,B3,p,11,144,59,11,,,,, +450,4,1,16195,42,2151.561,,,,,,144,76,0,,,,, +450,5,3,16196,64,2151.561,,,,,,144,52,0,,,,, +450,6,3,16197,64,2151.561,,,,,,144,59,0,,,,, +450,7,1,16198,128,2151.561,,,,,,176,102,0,,,,, +450,8,3,16199,128,2151.561,25,32,E3,p,11,144,52,11,,,,, +450,8,3,16199,128,2151.666,,,,,,144,52,0,,,,, +450,9,3,16200,153,2151.666,26,32,B4,p,11,144,71,11,,,,, +450,9,3,16200,153,2151.775,,,,,,144,71,0,,,,, +450,10,3,16201,179,2151.775,25,32,G2,p,11,144,43,11,,,,, +450,10,3,16201,179,2151.879,,,,,,144,43,0,,,,, +450,11,3,16202,204,2151.879,26,32,A#2,p,11,144,46,11,,,,, +450,12,3,16203,204,2151.879,32,32,E3,p,11,144,52,11,,,,, +450,11,3,16202,204,2151.988,,,,,,144,46,0,,,,, +450,13,3,16204,230,2151.988,26,32,D#6,p,11,144,87,11,,,,, +450,12,3,16203,204,2152.013,,,,,,144,52,0,,,,, +450,13,3,16204,230,2152.097,,,,,,144,87,0,,,,, +450,14,0,16205,256,2152.097,,,,,,176,64,0,,,,,^ +450,15,1,16206,256,2152.097,896,2,E3,mp,14,144,52,14,,,,, +450,16,1,16207,256,2152.097,512,2,B3,mp,14,144,59,14,,,,, +450,17,3,16208,256,2152.097,896,2,G#1,mp,14,144,32,14,,,,, +450,18,0,16209,491,2153.081,,,,,,176,64,127,,,,,V +450,16,1,16207,256,2154.24,,,,,,144,59,0,,,,, +450,15,1,16206,256,2155.847,,,,,,144,52,0,,,,, +450,17,3,16208,256,2155.847,,,,,,144,32,0,,,,, +450,19,1,16210,1152,2155.847,64,16,A#3,pp,8,144,58,8,,,,, +450,20,1,16211,1152,2155.847,64,16,F4,pp,8,144,65,8,,,,, +450,21,3,16212,1152,2155.847,128,8,G#1,pp,8,144,32,8,,,,, +450,22,3,16213,1152,2155.847,128,8,C2,pp,8,144,36,8,,,,, +450,19,1,16210,1152,2156.115,,,,,,144,58,0,,,,, +450,20,1,16211,1152,2156.115,,,,,,144,65,0,,,,, +450,23,1,16214,1216,2156.115,64,16,E5,pp,8,144,76,8,,,,, +450,21,3,16212,1152,2156.383,,,,,,144,32,0,,,,, +450,22,3,16213,1152,2156.383,,,,,,144,36,0,,,,, +450,23,1,16214,1216,2156.383,,,,,,144,76,0,,,,, +451,0,0,16215,0,2156.383,,,,,,,,,451,,,, +451,1,1,16216,0,2156.383,,,,,,176,102,0,,,,, +451,2,3,16217,0,2156.383,,,,,,176,102,0,,,,, +451,3,1,16218,256,2157.454,256,4,F4,pp,8,144,65,8,,,,, +451,4,1,16219,256,2157.454,256,4,E5,pp,8,144,76,8,,,,, +451,5,3,16220,256,2157.454,192,8,G#1,pp,8,144,32,8,,,,, +451,6,3,16221,256,2157.454,128,8,C2,pp,8,144,36,8,,,,, +451,7,3,16222,256,2157.454,128,8,A#2,pp,8,144,46,8,,,,, +451,6,3,16221,256,2157.99,,,,,,144,36,0,,,,, +451,7,3,16222,256,2157.99,,,,,,144,46,0,,,,, +451,5,3,16220,256,2158.258,,,,,,144,32,0,,,,, +451,8,3,16223,448,2158.258,64,16,F2,p,11,144,41,11,,,,, +451,9,3,16224,448,2158.258,64,16,F#2,p,11,144,42,11,,,,, +451,3,1,16218,256,2158.526,,,,,,144,65,0,,,,, +451,4,1,16219,256,2158.526,,,,,,144,76,0,,,,, +451,8,3,16223,448,2158.526,,,,,,144,41,0,,,,, +451,9,3,16224,448,2158.526,,,,,,144,42,0,,,,, +451,10,1,16225,512,2158.526,768,2,C6,p,11,144,84,11,,,,, +451,11,3,16226,512,2158.526,768,2,F2,p,11,144,41,11,,,,, +451,12,3,16227,512,2158.526,512,2,F#2,p,11,144,42,11,,,,, +451,12,3,16227,512,2160.669,,,,,,144,42,0,,,,, +451,10,1,16225,512,2161.74,,,,,,144,84,0,,,,, +451,11,3,16226,512,2161.74,,,,,,144,41,0,,,,, +452,0,0,16228,0,2161.74,,,,,,,,,452,,,, +452,1,1,16229,0,2161.74,512,2,F4,p,11,144,65,11,,,,, +452,2,1,16230,0,2161.74,512,2,E5,p,11,144,76,11,,,,, +452,3,3,16231,0,2161.74,512,2,G#1,p,11,144,32,11,,,,, +452,4,3,16232,0,2161.74,512,2,C2,p,11,144,36,11,,,,, +452,5,3,16233,0,2161.74,512,2,A#2,p,11,144,46,11,,,,, +452,1,1,16229,0,2163.883,,,,,,144,65,0,,,,, +452,2,1,16230,0,2163.883,,,,,,144,76,0,,,,, +452,3,3,16231,0,2163.883,,,,,,144,32,0,,,,, +452,4,3,16232,0,2163.883,,,,,,144,36,0,,,,, +452,5,3,16233,0,2163.883,,,,,,144,46,0,,,,, +452,6,1,16234,512,2163.883,,,,,,176,102,0,,,,, +452,7,3,16235,512,2163.883,,,,,,176,102,0,,,,, +452,8,1,16236,736,2164.82,32,32,F4,p,11,144,65,11,,,,, +452,9,1,16237,736,2164.82,32,32,E5,p,11,144,76,11,,,,, +452,10,3,16238,736,2164.82,32,32,G#1,p,11,144,32,11,,,,, +452,11,3,16239,736,2164.82,32,32,C2,p,11,144,36,11,,,,, +452,12,3,16240,736,2164.82,32,32,A#2,p,11,144,46,11,,,,, +452,8,1,16236,736,2164.954,,,,,,144,65,0,,,,, +452,9,1,16237,736,2164.954,,,,,,144,76,0,,,,, +452,10,3,16238,736,2164.954,,,,,,144,32,0,,,,, +452,11,3,16239,736,2164.954,,,,,,144,36,0,,,,, +452,12,3,16240,736,2164.954,,,,,,144,46,0,,,,, +452,13,1,16241,768,2164.954,128,8,C6,pp,8,144,84,8,,,,, +452,14,3,16242,768,2164.954,128,8,F2,pp,8,144,41,8,,,,, +452,15,3,16243,768,2164.954,128,8,F#2,pp,8,144,42,8,,,,, +452,16,1,16244,896,2165.49,128,8,E3,p,11,144,52,11,,,,, +452,17,1,16245,896,2165.49,128,8,B3,p,11,144,59,11,,,,, +452,18,3,16246,896,2165.49,128,8,G#1,p,11,144,32,11,,,,, +452,13,1,16241,768,2165.565,,,,,,144,84,0,,,,, +452,14,3,16242,768,2165.565,,,,,,144,41,0,,,,, +452,15,3,16243,768,2165.565,,,,,,144,42,0,,,,, +452,19,1,16247,1024,2166.026,192,8,E3,,,,,,,,,, +452,20,1,16248,1024,2166.026,128,8,B3,,,,,,,,,, +452,21,3,16249,1024,2166.026,192,8,G#1,,,,,,,,,, +452,17,1,16245,896,2166.711,,,,,,144,59,0,,,,, +452,22,1,16250,1216,2166.829,64,16,C6,pp,8,144,84,8,,,,, +452,23,3,16251,1216,2166.829,64,16,F2,pp,8,144,41,8,,,,, +452,24,3,16252,1216,2166.829,64,16,F#2,pp,8,144,42,8,,,,, +452,16,1,16244,896,2166.979,,,,,,144,52,0,,,,, +452,18,3,16246,896,2166.979,,,,,,144,32,0,,,,, +453,0,0,16253,0,2167.097,,,,,,,,,453,,,, +453,1,1,16254,0,2167.097,768,2,C6,,,,,,,,,, +453,2,3,16255,0,2167.097,768,2,F2,,,,,,,,,, +453,3,3,16256,0,2167.097,512,2,F#2,,,,,,,,,, +452,24,3,16252,1216,2169.24,,,,,,144,42,0,,,,, +452,22,1,16250,1216,2170.311,,,,,,144,84,0,,,,, +452,23,3,16251,1216,2170.311,,,,,,144,41,0,,,,, +453,4,1,16257,768,2170.311,512,2,F4,pp,8,144,65,8,,,,, +453,5,1,16258,768,2170.311,512,2,E5,pp,8,144,76,8,,,,, +453,6,3,16259,768,2170.311,512,2,G#1,pp,8,144,32,8,,,,, +453,7,3,16260,768,2170.311,512,2,C2,pp,8,144,36,8,,,,, +453,8,3,16261,768,2170.311,512,2,A#2,pp,8,144,46,8,,,,, +454,0,0,16262,0,2172.454,,,,,,,,,454,,,, +454,1,1,16263,0,2172.454,256,4,F4,,,,,,,,,, +454,2,1,16264,0,2172.454,256,4,E5,,,,,,,,,, +454,3,3,16265,0,2172.454,256,4,G#1,,,,,,,,,, +454,4,3,16266,0,2172.454,256,4,C2,,,,,,,,,, +454,5,3,16267,0,2172.454,256,4,A#2,,,,,,,,,, +453,4,1,16257,768,2173.526,,,,,,144,65,0,,,,, +453,5,1,16258,768,2173.526,,,,,,144,76,0,,,,, +453,6,3,16259,768,2173.526,,,,,,144,32,0,,,,, +453,7,3,16260,768,2173.526,,,,,,144,36,0,,,,, +453,8,3,16261,768,2173.526,,,,,,144,46,0,,,,, +454,6,1,16268,256,2173.526,256,4,E3,pp,8,144,52,8,,,,, +454,7,1,16269,256,2173.526,256,4,B3,pp,8,144,59,8,,,,, +454,8,3,16270,256,2173.526,256,4,G#1,pp,8,144,32,8,,,,, +454,6,1,16268,256,2174.597,,,,,,144,52,0,,,,, +454,7,1,16269,256,2174.597,,,,,,144,59,0,,,,, +454,8,3,16270,256,2174.597,,,,,,144,32,0,,,,, +454,9,1,16271,512,2174.597,768,2,F4,ppp,5,144,65,5,,,,, +454,10,1,16272,512,2174.597,512,2,E5,ppp,5,144,76,5,,,,, +454,11,3,16273,512,2174.597,768,2,G#1,ppp,5,144,32,5,,,,, +454,12,3,16274,512,2174.597,512,2,C2,ppp,5,144,36,5,,,,, +454,13,3,16275,512,2174.597,512,2,A#2,ppp,5,144,46,5,,,,, +454,10,1,16272,512,2176.74,,,,,,144,76,0,,,,, +454,12,3,16274,512,2176.74,,,,,,144,36,0,,,,, +454,13,3,16275,512,2176.74,,,,,,144,46,0,,,,, +454,9,1,16271,512,2177.811,,,,,,144,65,0,,,,, +454,11,3,16273,512,2177.811,,,,,,144,32,0,,,,, +455,0,0,16276,0,2177.811,,,,,,,,,455,,,, +455,1,1,16277,0,2177.811,512,2,E3,pp,8,144,52,8,,,,, +455,2,1,16278,0,2177.811,512,2,B3,pp,8,144,59,8,,,,, +455,3,3,16279,0,2177.811,512,2,G#1,pp,8,144,32,8,,,,, +455,1,1,16277,0,2179.954,,,,,,144,52,0,,,,, +455,2,1,16278,0,2179.954,,,,,,144,59,0,,,,, +455,3,3,16279,0,2179.954,,,,,,144,32,0,,,,, +455,4,1,16280,512,2179.954,512,2,C6,ppp,5,144,84,5,,,,, +455,5,3,16281,512,2179.954,512,2,F2,ppp,5,144,41,5,,,,, +455,6,3,16282,512,2179.954,512,2,F#2,ppp,5,144,42,5,,,,, +455,4,1,16280,512,2182.097,,,,,,144,84,0,,,,, +455,5,3,16281,512,2182.097,,,,,,144,41,0,,,,, +455,6,3,16282,512,2182.097,,,,,,144,42,0,,,,, +455,7,1,16283,1024,2182.097,1024,1,E3,ppp,5,144,52,5,,,,, +455,8,1,16284,1024,2182.097,1024,1,B3,ppp,5,144,59,5,,,,, +455,9,3,16285,1024,2182.097,1024,1,G#1,ppp,5,144,32,5,,,,, +455,10,0,16286,2047,2186.231,,,,,,176,64,0,,,,,^ +455,7,1,16283,1024,2186.383,,,,,,144,52,0,,,,, +455,8,1,16284,1024,2186.383,,,,,,144,59,0,,,,, +455,9,3,16285,1024,2186.383,,,,,,144,32,0,,,,, +456,0,0,16287,0,2186.383,,,,,,,,,456,,,, +456,1,0,16288,0,2186.383,,,,,,,,,,6077,,, +456,3,1,16289,0,2186.383,768,2,E3,ppp,5,144,52,5,,,,, +456,4,1,16290,0,2186.383,512,2,B3,ppp,5,144,59,5,,,,, +456,5,3,16291,0,2186.383,768,2,G#1,ppp,5,144,32,5,,,,, +456,2,0,16292,0,2186.531,,,,,,176,64,127,,,,,V +456,4,1,16290,0,2188.526,,,,,,144,59,0,,,,, +456,3,1,16289,0,2189.597,,,,,,144,52,0,,,,, +456,5,3,16291,0,2189.597,,,,,,144,32,0,,,,, +456,6,1,16293,768,2189.597,,,,,,176,102,0,,,,, +456,7,3,16294,768,2189.597,,,,,,176,102,0,,,,, +456,8,1,16295,992,2190.535,32,32,E3,p,11,144,52,11,,,,, +456,9,1,16296,992,2190.535,32,32,B3,p,11,144,59,11,,,,, +456,10,3,16297,992,2190.535,32,32,G#1,p,11,144,32,11,,,,, +456,8,1,16295,992,2190.669,,,,,,144,52,0,,,,, +456,9,1,16296,992,2190.669,,,,,,144,59,0,,,,, +456,10,3,16297,992,2190.669,,,,,,144,32,0,,,,, +456,11,1,16298,1024,2190.669,192,8,E3,mf,17,144,52,17,,,,, +456,12,1,16299,1024,2190.669,128,8,B3,mf,17,144,59,17,,,,, +456,13,1,16300,1024,2190.669,128,8,C4,mf,17,144,60,17,,,,, +456,14,3,16301,1024,2190.669,192,8,G#1,mf,17,144,32,17,,,,, +456,12,1,16299,1024,2191.204,,,,,,144,59,0,,,,, +456,13,1,16300,1024,2191.204,,,,,,144,60,0,,,,, +456,11,1,16298,1024,2191.472,,,,,,144,52,0,,,,, +456,14,3,16301,1024,2191.472,,,,,,144,32,0,,,,, +456,15,0,16302,1216,2191.472,,,,,,176,64,0,,,,,^ +456,16,1,16303,1216,2191.472,,,,,,176,102,0,,,,, +456,17,3,16304,1216,2191.472,,,,,,176,102,0,,,,, +456,18,1,16305,1280,2191.74,32,32,E3,mf,17,144,52,17,,,,, +456,19,1,16306,1280,2191.74,32,32,B3,mf,17,144,59,17,,,,, +456,20,1,16307,1280,2191.74,32,32,C4,mf,17,144,60,17,,,,, +456,21,3,16308,1280,2191.74,32,32,C#1,mf,17,144,25,17,,,,, +456,22,3,16309,1280,2191.74,32,32,G#1,mf,17,144,32,17,,,,, +456,18,1,16305,1280,2191.874,,,,,,144,52,0,,,,, +456,19,1,16306,1280,2191.874,,,,,,144,59,0,,,,, +456,20,1,16307,1280,2191.874,,,,,,144,60,0,,,,, +456,21,3,16308,1280,2191.874,,,,,,144,25,0,,,,, +456,22,3,16309,1280,2191.874,,,,,,144,32,0,,,,, +456,24,1,16310,1312,2191.874,224,8,E3,ppp,5,144,52,5,,,,, +456,25,1,16311,1312,2191.874,128,8,B3,ppp,5,144,59,5,,,,, +456,26,1,16312,1312,2191.874,128,8,C4,ppp,5,144,60,5,,,,, +456,27,3,16313,1312,2191.874,224,8,C#1,ppp,5,144,25,5,,,,, +456,28,3,16314,1312,2191.874,128,8,G#1,ppp,5,144,32,5,,,,, +456,23,0,16315,1312,2191.874,,,,,,176,64,127,,,,,V +456,25,1,16311,1312,2192.41,,,,,,144,59,0,,,,, +456,26,1,16312,1312,2192.41,,,,,,144,60,0,,,,, +456,28,3,16314,1312,2192.41,,,,,,144,32,0,,,,, +456,24,1,16310,1312,2192.811,,,,,,144,52,0,,,,, +456,27,3,16313,1312,2192.811,,,,,,144,25,0,,,,, +456,29,1,16316,1536,2192.811,512,2,A4,pp,8,144,69,8,,,,, +456,30,1,16317,1536,2192.811,512,2,C6,pp,8,144,84,8,,,,, +456,31,3,16318,1536,2192.811,512,2,F1,pp,8,144,29,8,,,,, +456,32,3,16319,1536,2192.811,512,2,F#2,pp,8,144,42,8,,,,, +456,29,1,16316,1536,2194.954,,,,,,144,69,0,,,,, +456,30,1,16317,1536,2194.954,,,,,,144,84,0,,,,, +456,31,3,16318,1536,2194.954,,,,,,144,29,0,,,,, +456,32,3,16319,1536,2194.954,,,,,,144,42,0,,,,, +457,0,0,16320,0,2194.954,,,,,,,,,457,,,, +457,1,1,16321,0,2194.954,,,,,,176,102,0,,,,, +457,2,3,16322,0,2194.954,,,,,,176,102,0,,,,, +457,3,3,16323,42,2195.13,43,16,E4,ff,22,144,64,22,,,,, +457,3,3,16323,42,2195.31,,,,,,144,64,0,,,,, +457,4,3,16324,85,2195.31,43,16,B5,ff,22,144,83,22,,,,, +457,4,3,16324,85,2195.49,,,,,,144,83,0,,,,, +457,5,3,16325,128,2195.49,42,16,G2,ff,22,144,43,22,,,,, +457,5,3,16325,128,2195.666,,,,,,144,43,0,,,,, +457,6,1,16326,170,2195.666,43,16,B5,ff,22,144,83,22,,,,, +457,7,3,16327,170,2195.666,43,16,G2,ff,22,144,43,22,,,,, +457,8,3,16328,170,2195.666,64,16,A#2,ff,22,144,46,22,,,,, +457,9,3,16329,170,2195.666,64,16,E3,ff,22,144,52,22,,,,, +457,6,1,16326,170,2195.846,,,,,,144,83,0,,,,, +457,7,3,16327,170,2195.846,,,,,,144,43,0,,,,, +457,10,1,16330,213,2195.846,43,16,D#7,ff,22,144,99,22,,,,, +457,11,3,16331,213,2195.846,,,,,,176,102,0,,,,, +457,8,3,16328,170,2195.934,,,,,,144,46,0,,,,, +457,9,3,16329,170,2195.934,,,,,,144,52,0,,,,, +457,10,1,16330,213,2196.026,,,,,,144,99,0,,,,, +457,12,1,16332,256,2196.026,,,,,,176,102,0,,,,, +457,13,3,16333,256,2196.026,,,,,,176,102,0,,,,, +457,14,1,16334,1280,2200.311,256,4,A4,pp,8,144,69,8,,,,, +457,15,1,16335,1280,2200.311,256,4,C6,pp,8,144,84,8,,,,, +457,16,3,16336,1280,2200.311,256,4,F2,pp,8,144,41,8,,,,, +457,17,3,16337,1280,2200.311,256,4,F#2,pp,8,144,42,8,,,,, +457,14,1,16334,1280,2201.383,,,,,,144,69,0,,,,, +457,15,1,16335,1280,2201.383,,,,,,144,84,0,,,,, +457,16,3,16336,1280,2201.383,,,,,,144,41,0,,,,, +457,17,3,16337,1280,2201.383,,,,,,144,42,0,,,,, +457,18,0,16338,1536,2201.383,,,,,,176,64,0,,,,,^ +457,19,1,16339,1536,2201.383,512,2,C#4,ppp,5,144,61,5,,,,, +457,20,1,16340,1536,2201.383,512,2,A4,ppp,5,144,69,5,,,,, +457,21,3,16341,1536,2201.383,512,2,F1,ppp,5,144,29,5,,,,, +457,22,3,16342,1536,2201.383,512,2,F#2,ppp,5,144,42,5,,,,, +457,23,0,16343,1707,2202.099,,,,,,176,64,127,,,,,V +458,0,0,16344,0,2203.526,,,,,,,,,458,,,, +458,1,1,16345,0,2203.526,1024,1,C#4,,,,,,,,,, +458,2,1,16346,0,2203.526,1024,1,A4,,,,,,,,,, +458,3,3,16347,0,2203.526,1024,1,F1,,,,,,,,,, +458,4,3,16348,0,2203.526,1024,1,F#2,,,,,,,,,, +458,5,0,16349,1024,2207.661,,,,,,176,64,0,,,,,^ +457,21,3,16341,1536,2207.811,,,,,,144,29,0,,,,, +458,7,1,16350,1024,2207.811,1024,1,C#4,,,,,,,,,, +458,8,1,16351,1024,2207.811,1024,1,A4,,,,,,,,,, +458,9,3,16352,1024,2207.811,1024,1,F#2,,,,,,,,,, +458,6,0,16353,1024,2207.961,,,,,,176,64,127,,,,,V +458,10,0,16354,2038,2212.055,,,,,,176,64,0,,,,,^ +457,19,1,16339,1536,2212.097,,,,,,144,61,0,,,,, +457,20,1,16340,1536,2212.097,,,,,,144,69,0,,,,, +457,22,3,16342,1536,2212.097,,,,,,144,42,0,,,,, diff --git a/src/cwtest/cfg/audio_midi_record.cfg b/src/cwtest/cfg/video/audio_midi_record.cfg similarity index 91% rename from src/cwtest/cfg/audio_midi_record.cfg rename to src/cwtest/cfg/video/audio_midi_record.cfg index 514c044..6258536 100644 --- a/src/cwtest/cfg/audio_midi_record.cfg +++ b/src/cwtest/cfg/video/audio_midi_record.cfg @@ -2,7 +2,7 @@ test: { audio_midi: { - record_dir: "/home/kevin/temp/audio_midi_app", + record_dir: "/home/kevin/temp/video_trailer", record_folder: "record", record_fn_ext: "am", max_midi_msg_count: 32768, @@ -24,17 +24,17 @@ // piano { enableFl: true, - //midi_out_device: "MIDIFACE 2x2", - //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", //midi_out_device: "Scarlett 18i20 USB", //midi_out_port: "Scarlett 18i20 USB MIDI 1", - midi_out_device: "iRig MIDI 2", - midi_out_port: "iRig MIDI 2 MIDI 1", + //midi_out_device: "iRig MIDI 2", + //midi_out_port: "iRig MIDI 2 MIDI 1", - midi_out_device: "Fastlane", - midi_out_port: "Fastlane MIDI A", + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", force_damper_down_fl: false, force_damper_down_threshold: 35, @@ -120,8 +120,8 @@ deviceL: [ { // System device name - //device: "Scarlett 18i20 USB USB Audio", - device: "USB Audio CODEC USB Audio", + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", //device: "HDA Intel PCH CS4208 Analog", //device: "ICUSBAUDIO7D USB Audio", diff --git a/src/cwtest/cfg/empty_play_score.csv b/src/cwtest/cfg/video/empty_play_score.csv similarity index 100% rename from src/cwtest/cfg/empty_play_score.csv rename to src/cwtest/cfg/video/empty_play_score.csv diff --git a/src/cwtest/cfg/latency.cfg b/src/cwtest/cfg/video/latency.cfg similarity index 100% rename from src/cwtest/cfg/latency.cfg rename to src/cwtest/cfg/video/latency.cfg diff --git a/src/cwtest/cfg/live_preset_m307.cfg b/src/cwtest/cfg/video/live_preset_m307.cfg similarity index 100% rename from src/cwtest/cfg/live_preset_m307.cfg rename to src/cwtest/cfg/video/live_preset_m307.cfg diff --git a/src/cwtest/cfg/video/m1-7.cfg b/src/cwtest/cfg/video/m1-7.cfg new file mode 100644 index 0000000..8154e5b --- /dev/null +++ b/src/cwtest/cfg/video/m1-7.cfg @@ -0,0 +1,306 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + //record_fn: "preset_sel_20220423", + //record_fn: "preset_sel_20220507", + record_fn: "m1-7", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 0, + end_play_loc: 59, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[1,1, 0,0, 0,0, 0,0]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m1-7_temp.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/m197-203.cfg b/src/cwtest/cfg/video/m197-203.cfg new file mode 100644 index 0000000..f6cfab9 --- /dev/null +++ b/src/cwtest/cfg/video/m197-203.cfg @@ -0,0 +1,304 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp_m197_half_pedal.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + record_fn: "m197-203", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 4085, + end_play_loc: 4729, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:20000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[1,1, 0,0, 0,0, 0,0]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m197-203_temp.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/m302-325.cfg b/src/cwtest/cfg/video/m302-325.cfg new file mode 100644 index 0000000..a797ae7 --- /dev/null +++ b/src/cwtest/cfg/video/m302-325.cfg @@ -0,0 +1,305 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + //score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + score_fn: "~/src/currawong/audio/workshop/beck2/record_2/play_score.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + record_fn: "m302-325", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 9187, + end_play_loc: 10109, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + // vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + //vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels: ivory-sampler, b2, cascade, vsl-piano + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[1,1, 0,0, 0,0, 0,0]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m302-325_card3ft_omni_0ft_0.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/m359-420.cfg b/src/cwtest/cfg/video/m359-420.cfg new file mode 100644 index 0000000..cd4c101 --- /dev/null +++ b/src/cwtest/cfg/video/m359-420.cfg @@ -0,0 +1,307 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + //score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + score_fn: "~/src/currawong/audio/workshop/beck2/record_2/play_score.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + //record_fn: "preset_sel_20220423", + //record_fn: "preset_sel_20220507", + record_fn: "m359-420", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 11499, + end_play_loc: 14732, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + // vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + //vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[0,0, 0,0, 0,0, 1,1]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m302-325_xy_6ft_spkrs_moved_back.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/temp.cfg b/src/cwtest/cfg/video/temp.cfg new file mode 100644 index 0000000..b2fcab9 --- /dev/null +++ b/src/cwtest/cfg/video/temp.cfg @@ -0,0 +1,304 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + record_fn: "preset_sel_20220507", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + beg_play_loc: 12431, + end_play_loc: 14730, + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels: ivory-sampler, b2, cascade, vsl-piano + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[1,1, 0,0, 0,0, 0,0]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + //af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + //af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m378-408_card3ft_omni_0ft_0.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/video_music.cfg b/src/cwtest/cfg/video/video_music.cfg new file mode 100644 index 0000000..80c353d --- /dev/null +++ b/src/cwtest/cfg/video/video_music.cfg @@ -0,0 +1,307 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + //score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + score_fn: "~/src/currawong/audio/workshop/beck2/record_2/play_score.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + //record_fn: "preset_sel_20220423", + //record_fn: "preset_sel_20220507", + record_fn: "workshop_presets", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 9187, + end_play_loc: 0, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + // vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: true, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + //vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first six channels + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[0,0, 0,0, 0,0, 1,1]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out, in2:mstr_dry_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m302-325_xy_6ft_spkrs_moved_back.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +} diff --git a/src/cwtest/cfg/video/video_music_sampler.cfg b/src/cwtest/cfg/video/video_music_sampler.cfg new file mode 100644 index 0000000..0558743 --- /dev/null +++ b/src/cwtest/cfg/video/video_music_sampler.cfg @@ -0,0 +1,307 @@ +{ + test: { + + preset_sel: { + + params: { + //score_fn: "~/src/currawong/projects/score_proc/data/play_file.csv", + //score_fn: "~/src/cwtest/src/cwtest/cfg/preset_sel/score/20220423/temp.csv", + score_fn: "~/src/currawong/audio/workshop/beck2/record_2/play_score.csv", + + record_dir: "~/src/cwtest/src/cwtest/cfg/preset_sel/preset_sel_fragments", + //record_fn: "preset_sel_20220423", + //record_fn: "preset_sel_20220507", + record_fn: "workshop_presets", + record_fn_ext: "txt", + + flow_proc_dict_fn: "~/src/cwtest/src/cwtest/cfg/flow_proc_dict.cfg", + + crossFadeSrate: 48000.0, // TODO: move to flow cfg. and set via 'system default sample rate' + crossFadeCount: 3, + + beg_play_loc: 9187, + end_play_loc: 0, + + presets: { + preset_labelL: [ "dry", "a", "b", "c", "d", "f1", "f2", "f3", "f4", "g", "ga", "g1a", "g1d" ], + default_gain: 1.0, + default_wet_dry_gain: 0.5, + default_fade_ms: 500.0, + default_preset: "dry", + + default_master_wet_in_gain: 1.0, + default_master_wet_out_gain: 1.0, + default_master_dry_gain: 1.0, + default_master_sync_delay_ms: 400, // spirio 400 + + }, + + midi_play_record: { + max_midi_msg_count: 32768, + midi_timer_period_micro_sec: 15000, + all_off_delay_ms: 2500, // delay after stop time to turn off all notes + log_in_flag: false, + log_out_flag: false, + half_pedal_flag: false, + + midi_device_list: [ + // piano + { + enableFl: true, + //midi_out_device: "MIDIFACE 2x2", + //midi_out_port: "MIDIFACE 2x2 Midi Out 1", + + midi_out_device: "Scarlett 18i20 USB", + midi_out_port: "Scarlett 18i20 USB MIDI 1", + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + //midi_out_device: "PipeWire-RT-Event", + //midi_out_port: "input", + + // pedal down velocity input/output mapping + /* + pedal: { + down_id: 127, + down_vel: 75, + half_down_id: 64, + half_down_vel: 43, + half_up_id: 63, + half_up_vel: 43 + + }, + */ + + // 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 + // spirio vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + // vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + }, + { + + enableFl: false, + //midi_out_device: "Fastlane", + //midi_out_port: "Fastlane MIDI A", + midi_out_device: "MIDIFACE 2x2", + midi_out_port: "MIDIFACE 2x2 Midi Out 2", + + //midi_out_device: "PC-300", + //midi_out_port: "PC-300 MIDI 1", + + // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 34 + //vel_table: [ 1, 4, 10, 12, 12, 18, 24, 24, 30, 36, 36, 44, 48, 52, 58, 64, 64, 70, 76, 82, 88, 94,100,106,112 ] + //vel_table: [ 1, 5 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96,101,106,112,117,122,127 ] , + + force_damper_down_fl: true, + force_damper_down_threshold: 35, + force_damper_down_velocity: 80, + + }, + + //{ midi_out_device: "PipeWire-RT-Event", midi_out_port: "input" }, + ], + } + + frag_panel: { + + panel: { + + name: fragPanelId + addClassName: fragPanel + + row: { + name: fragPanelRowId + addClassName: fragPanelRow + + col: { + numb_disp: { name: fragBegLocId, title:"Beg Loc", value: 0 }, + numb_disp: { name: fragEndLocId, title:"End Loc", value: 0 }, + number: { name: fragInGainId, title:"In Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + number: { name: fragOutGainId, title:"Out Gain", min:0.0, max:100.0, step:0.1, decpl:1 }, + }, + col: { + row: { + name: fragPresetRowId, + addClassName: fragPresetRow, + }, + + row: { + string: { name: fragNoteId, addClassName: fragNote, title:"Note" }, + } + }, + col: { + number:{ name: fragWetDryGainId, title:"Wet/Dry", min:0.0, max:1.0, step:0.1, decpl:2 }, + number:{ name: fragFadeOutMsId, title:"Fade Ms", min:0.0, max:5000, step:1, decpl:0 }, + row: { + button:{ name: fragPlaySeqBtnId, title:"Play Seq" }, + button:{ name: fragPlayAllBtnId, title:"Play All" }, + } + }, + col: { + number: { name: fragBegPlayLocId, title:"Begin", min:0, max:1000000, step:1, decpl:0 }, + number: { name: fragEndPlayLocId, title:"End", min:0, max:1000000, step:1, decpl:0 }, + button: { name: fragPlayBtnId, title:"Play" } + } + + } + } + }, + + }, + + ui: { + physRootDir: "~/src/cwtest/src/libcw/html/preset_sel", + dfltPageFn: "index.html", + port: 5687, + rcvBufByteN: 2048, + xmtBufByteN: 2048, + fmtBufByteN: 4096, + websockTimeOutMs: 50, // max time out while blocking for a websock event + uiCfgFn: "ui.cfg" // default UI resource description + }, + + serial: { + pollPeriodMs: 50, + recvBufByteN: 512, + + array: [ + { + enable_flag: false, + label: "port1", // User label + device: "/dev/ttyUSB0", // Serial device name + baud: 115200, + bits: 8, + stop: 1, + parity: "no", + } + ] + + }, + + + midi: { + parserBufByteN: 1024, + }, + + audio: { + meterMs: 50, // audio meter filter length and meter callback period + threadTimeOutMs: 50, // audio thread cond var time out + + groupL: [ + { + enableFl: true, // (req) + label: "main", // (req) User label + id: 0, // (req) User id (can also be set at runtime) + srate: 48000, // (req) Sample rate used by all devices in this group + dspFrameCnt: 64 // (req) Size of DSP processing buffers + } + ], + + deviceL: [ + { + // System device name + device: "Scarlett 18i20 USB USB Audio", + //device: "USB Audio CODEC USB Audio", + //device: "HDA Intel PCH CS4208 Analog", + + enableFl: true, // (req) + label: "main", // (req) User label + userId: 0, // (opt) User id (can also be set at runtime) + framesPerCycle: 512, // (req) Samples per audio device cycle + cycleCnt: 3, // (req) Count of device cycle buffers. + inGroup: "main", // (opt) All devices in a group must be 'ready' to source + outGroup: "main", // (opt) or sink data before an audio callback is made for that group + } + ] + }, + + socket: { + + maxSocketCnt: 10, + recvBufByteCnt: 4096, + threadTimeOutMs: 50, + socketL: [], + + } + + + + flow: { + framesPerCycle: 64, // time-domain audio cycles frame per cycle + maxCycleCount: 15000, // 0 disables maxCycleCount + printNetworkFl: false, // print the network instance + printClassDictFl: false, // print the class description dictionary + + + + network: { + aud_in: { class: audio_in, args:{ default:{dev_label:"main"} } }, + + // select the first eight channels + split_in: { class: audio_split, in:{ in:aud_in.out } args:{ default:{select[1,1, 1,1, 1,1, 1,1 ]}} } + + // delay the incoming audio signal to sync it with the piano + sync_delay { class: audio_delay, in: { in:split_in.out }, args:{ default:{ delayMs:400 } }} + + // select the first two channels to feed into the transform + sync_split: { class: audio_split, in:{ in:sync_delay.out } args:{ default:{select[0,0, 0,0, 0,0, 1,1]}} } + + mstr_wet_in_gain: { class: audio_gain, in:{ in:sync_split.out }, args:{}} + + // wet signal processing chain + wet_in_gain: { class: audio_gain, in:{ in:mstr_wet_in_gain.out }, args:{}}, + pva: { class: pv_analysis, in:{ in:wet_in_gain.out }, args:{ default:{ wndSmpN:512, hopSmpN:128, hzFl:false } } }, + sd: { class: spec_dist, in:{ in:pva.out }, preset:kc }, + pvs: { class: pv_synthesis, in:{ in:sd.out }, }, + cmp: { class: compressor, in:{ in:pvs.out }, preset:kc }, + + wet_out_gain: { class: audio_gain, in:{ in:cmp.out }, args:{}}, + + mute_wet: { class: audio_gain, in:{ in:wet_out_gain.out }, args:{}}, + + + // apply the wet/dry gain balance + wd_bal: { class: balance, args{}}, + wet_bal_gain: { class: audio_gain, in:{ in:mute_wet.out, gain:wd_bal.out }, args:{}}, + dry_bal_gain: { class: audio_gain, in:{ in:sync_split.out, gain:wd_bal.inv_out }, args:{}}, + + mstr_wet_out_gain: { class: audio_gain, in:{ in:wet_bal_gain.out }, args:{}} + mstr_dry_out_gain: { class: audio_gain, in:{ in:dry_bal_gain.out }, args:{}}, + + // merge the wet/dry signals into a single 4 channel signal + merge: { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:mstr_wet_out_gain.out }, args:{} }, + + aout: { class: audio_out, in:{ in:merge.out }, args:{ default:{dev_label:"main"} } }, + + af_merge { class: audio_merge, in:{ in0:mstr_wet_out_gain.out, in1:sync_delay.out } args:{} }, + + af_out: { class: audioFileOut, in:{ in:af_merge.out }, args:{ default:{fname:"/home/kevin/temp/m302-325_temp.wav"}}}, + + } + + presets: { + dry: { + mute_wet: { gain:0 }, + }, + a: { sd:a, cmp:a, mute_wet:{ gain:1 } }, + b: { sd:b, cmp:b, mute_wet:{ gain:1 } }, + c: { sd:c, cmp:c, mute_wet:{ gain:1 } }, + d: { sd:d, cmp:d, mute_wet:{ gain:1 } }, + f1: { sd:f_1, cmp:f_1, mute_wet:{ gain:1 } }, + f2: { sd:f_2, cmp:f_2, mute_wet:{ gain:1 } }, + f3: { sd:f_3, cmp:f_3, mute_wet:{ gain:1 } }, + f4: { sd:f_4, cmp:f_4, mute_wet:{ gain:1 } }, + g: { sd:g, cmp:g, mute_wet:{ gain:1 } }, + ga: { sd:g_a, cmp:g_a, mute_wet:{ gain:1 } }, + g1a: { sd:g_1_a, cmp:g_1_a, mute_wet:{ gain:1 } }, + g1d: { sd:g_1_d, cmp:g_1_d, mute_wet:{ gain:1 } } + + } + } + + + } + +}