diff --git a/arduino/multistepper/multistepper.ino b/arduino/multistepper/multistepper.ino index 4c76300..3abf5b2 100644 --- a/arduino/multistepper/multistepper.ino +++ b/arduino/multistepper/multistepper.ino @@ -1,171 +1,216 @@ + // Include the AccelStepper library: #include // Define stepper motor connections and motor interface type. Motor interface type must be set to 1 when using a driver: // Set stepper 1 pins -#define m1LimitNegPin 2 -#define m1LimitPosPin 3 -#define m1DirPin 4 -#define m1StepPin 5 -#define m1PowerPin 6 +#define xLimitSwitchPosPin 2 +#define xLimitSwitchNegPin 3 +#define xDirPin 4 +#define xStepPin 5 +#define xPowerPin 6 // Set stepper 2 pins -#define m2LimitNegPin 9 -#define m2LimitPosPin 10 -#define m2DirPin 11 -#define m2StepPin 12 -#define m2PowerPin 13 +#define yLimitSwitchPosPin 9 +#define yLimitSwitchNegPin 10 +#define yDirPin 11 +#define yStepPin 12 +#define yPowerPin 13 #define motorInterfaceType 1 -// Create a new instance of the AccelStepper class: -AccelStepper m1Stepper = AccelStepper(motorInterfaceType, m1StepPin, m1DirPin); -AccelStepper m2Stepper = AccelStepper(motorInterfaceType, m2StepPin, m2DirPin); +// Create new instances of the AccelStepper class: +AccelStepper xStepper = AccelStepper(motorInterfaceType, xStepPin, xDirPin); +AccelStepper yStepper = AccelStepper(motorInterfaceType, yStepPin, yDirPin); -unsigned long previousMillis = 0; -unsigned long currentMillis = 0; +unsigned long previousMillis = 0; +unsigned long currentMillis = 0; +bool printMode = false; -void setup() { +// safeMode means that the limit has been hit +bool xSafeMode = false; +long xLimitPos = 0; - pinMode(m1PowerPin, OUTPUT); - pinMode(m1LimitNegPin, INPUT); - pinMode(m1LimitPosPin, INPUT); +bool ySafeMode = false; +long yLimitPos = 0; - pinMode(m2PowerPin, OUTPUT); - pinMode(m2LimitNegPin, INPUT); - pinMode(m2LimitPosPin, INPUT); +int microsteps = 1; +float maxSpeedConstant = 350 * microsteps; +float accelerationConstant = 100 * microsteps; - Serial.begin(115200); +void setup() { - // Set the maximum speed in steps per second: - m1Stepper.setMaxSpeed(200); - m1Stepper.setAcceleration(100); - m1Stepper.setCurrentPosition(0); - - m2Stepper.setMaxSpeed(200); - m2Stepper.setAcceleration(100); - m2Stepper.setCurrentPosition(0); -} + pinMode(xPowerPin, OUTPUT); + pinMode(xLimitSwitchNegPin, INPUT); + pinMode(xLimitSwitchPosPin, INPUT); + pinMode(yPowerPin, OUTPUT); + pinMode(yLimitSwitchNegPin, INPUT); + pinMode(yLimitSwitchPosPin, INPUT); -int integerValue=0; -bool negativeNumber = false; // track if number is negative -char incomingByte; - -void loop() { - - currentMillis = millis(); - - int m1EorNeg = digitalRead(m1LimitNegPin); - int m1EorPos = digitalRead(m1LimitPosPin); - - int m2EorNeg = digitalRead(m2LimitNegPin); - int m2EorPos = digitalRead(m2LimitPosPin); - - if (currentMillis - previousMillis >= 1000 == true ) { - Serial.println("------Stepper 1------"); - Serial.print("m1EorPos:"); - Serial.println(m1EorNeg); - Serial.print("m1EorNeg: "); - Serial.println(m1EorPos); - Serial.print("m1CurPos: "); - Serial.println(m1Stepper.currentPosition() * -1); - Serial.print("m1TarPos: "); - Serial.println(m1Stepper.targetPosition() * -1); - Serial.println(""); + Serial.begin(115200); - Serial.println("------Stepper 2------"); - Serial.print("m2EorPos: "); - Serial.println(m2EorNeg); - Serial.print("m2EorNeg: "); - Serial.println(m2EorPos); - Serial.print("m2CurPos: "); - Serial.println(m2Stepper.currentPosition() * -1); - Serial.print("m2TarPos: "); - Serial.println(m2Stepper.targetPosition() * -1); - Serial.println(""); + xStepper.setMaxSpeed(maxSpeedConstant); + xStepper.setAcceleration(accelerationConstant); + //xStepper.setCurrentPosition(0); - previousMillis = currentMillis; - } + yStepper.setMaxSpeed(maxSpeedConstant); + yStepper.setAcceleration(accelerationConstant); + //yStepper.setCurrentPosition(0); +} - // limit switch logic for stepper 1 - if ((m1EorNeg < m1EorPos) && (m1Stepper.targetPosition() > m1Stepper.currentPosition())) { - m1Stepper.setSpeed(0); - m1Stepper.moveTo(m1Stepper.currentPosition()); - digitalWrite(m1PowerPin, HIGH); - } else if ((m1EorNeg > m1EorPos) && (m1Stepper.targetPosition() < m1Stepper.currentPosition())) { - m1Stepper.setSpeed(0); - m1Stepper.moveTo(m1Stepper.currentPosition()); - digitalWrite(m1PowerPin, HIGH); - } else if (m1Stepper.targetPosition() == m1Stepper.currentPosition()) { - digitalWrite(m1PowerPin, HIGH); +void stepperLogic(int stepperIndex, bool printMode){ + + // init vars + AccelStepper *stepper; + int powerPin; + int limitSwitchNeg; + int limitSwitchPos; + bool *safeMode; + long *limitPos; + + // set vars based on stepper index + if(stepperIndex == 1){ + stepper = &xStepper; + powerPin = xPowerPin; + limitSwitchNeg = digitalRead(xLimitSwitchNegPin); + limitSwitchPos = digitalRead(xLimitSwitchPosPin); + safeMode = &xSafeMode; + limitPos = &xLimitPos; } else { - digitalWrite(m1PowerPin, LOW); - m1Stepper.run(); + stepper = &yStepper; + powerPin = yPowerPin; + limitSwitchNeg = digitalRead(yLimitSwitchNegPin); + limitSwitchPos = digitalRead(yLimitSwitchPosPin); + safeMode = &ySafeMode; + limitPos = &yLimitPos; } - // limit switch logic for stepper 2 - if ((m2EorNeg < m2EorPos) && (m2Stepper.targetPosition() > m2Stepper.currentPosition())) { - m2Stepper.setSpeed(0); - m2Stepper.moveTo(m2Stepper.currentPosition()); - digitalWrite(m2PowerPin, HIGH); - } else if ((m2EorNeg > m2EorPos) && (m2Stepper.targetPosition() < m2Stepper.currentPosition())) { - m2Stepper.setSpeed(0); - m2Stepper.moveTo(m1Stepper.currentPosition()); - digitalWrite(m2PowerPin, HIGH); - } else if (m2Stepper.targetPosition() == m2Stepper.currentPosition()) { - digitalWrite(m2PowerPin, HIGH); + // stepper logic + if (!*safeMode && (limitSwitchNeg == limitSwitchPos)){ + // just keep swimming + digitalWrite(powerPin, LOW); + stepper->run(); + //runLogic(stepperIndex, stepperFlip, stepper, last, distance, dir); + + } else if (!*safeMode && (limitSwitchNeg != limitSwitchPos)) { + // limit hit; go into safeMode; power down + *safeMode = true; + *limitPos = stepper->currentPosition(); + stepper->setSpeed(0); + stepper->moveTo(stepper->currentPosition()); + digitalWrite(powerPin, HIGH); + Serial.println("!! limit hit, move the other direction"); + + } else if (*safeMode && (abs(*limitPos - stepper->currentPosition()) < (1000 * microsteps))) { + // just keep swimming for a while (only in the other direction), hoping to get out of safeMode within 1000 steps + if((limitSwitchNeg == 0 && (stepper->currentPosition() > stepper->targetPosition())) || + (limitSwitchPos == 0 && (stepper->currentPosition() < stepper->targetPosition()))) { + *safeMode = (limitSwitchNeg != limitSwitchPos); + digitalWrite(powerPin, LOW); + stepper->run(); + } + + } else if (stepper->distanceToGo() == 0) { + // destination reached; power down + digitalWrite(powerPin, HIGH); + } else { - digitalWrite(m2PowerPin, LOW); - m2Stepper.run(); - } - - if (Serial.available() > 0) { // something came across serial - integerValue = 0; // throw away previous integerValue - negativeNumber = false; // reset for negative + // houston we have a problem; safeMode is still on after 10 steps from limitPos + stepper->setSpeed(0); + stepper->moveTo(stepper->currentPosition()); + digitalWrite(powerPin, HIGH); + Serial.println("!!! limit switch still on after 1000 steps, this should NEVER happen"); + }; + + if (printMode) { + //Serial.println("[" + String(stepperIndex) + ", " + String(stepper->currentPosition()) + ", " + String(stepper->targetPosition()) + ", " + + //String(limitSwitchNeg) + ", " + String(limitSwitchPos) + ", " + String(*safeMode) + ", " + String(*limitPos) + "]"); + + Serial.println("[" + String(xStepper.currentPosition()) + ", " + String(yStepper.currentPosition()) + ", " + + String(limitSwitchNeg) + ", " + String(limitSwitchPos) + "]"); + + /* + if (stepperIndex == 1){ + Serial.println("------Stepper 1------"); + } else { + Serial.println("------Stepper 2------"); + }; + Serial.print("curPos: "); + Serial.println(stepper->currentPosition()); + Serial.print("tarPos: "); + Serial.println(stepper->targetPosition()); + Serial.print("limitSwitchNeg: "); + Serial.println(limitSwitchNeg); + Serial.print("limitSwitchPos: "); + Serial.println(limitSwitchPos); + Serial.print("safeMode: "); + Serial.println(*safeMode); + Serial.print("limitPos: "); + Serial.println(*limitPos); + Serial.print("speed: "); + Serial.println(stepper->speed()); + Serial.println(""); + */ - while(1) { // force into a loop until 'n' is received - incomingByte = Serial.read(); - if (incomingByte == ' ') break; // exit the while(1), we're done receiving - if (incomingByte == -1) continue; // if no characters are in the buffer read() returns -1 - if (incomingByte == '-') { - negativeNumber = true; - continue; - } - integerValue *= 10; // shift left 1 decimal place - integerValue = ((incomingByte - 48) + integerValue); // convert ASCII to integer, add, and shift left 1 decimal place - } - if (negativeNumber) - integerValue = -integerValue; + } - integerValue = -integerValue; // this makes up for the fact that things are backwards - m1Stepper.moveTo(integerValue); +} - integerValue = 0; // throw away previous integerValue - negativeNumber = false; // reset for negative - - while(1) { // force into a loop until 'n' is received - incomingByte = Serial.read(); - if (incomingByte == '\n') break; // exit the while(1), we're done receiving - if (incomingByte == -1) continue; // if no characters are in the buffer read() returns -1 - if (incomingByte == '-') { - negativeNumber = true; - continue; - } - integerValue *= 10; // shift left 1 decimal place - integerValue = ((incomingByte - 48) + integerValue); // convert ASCII to integer, add, and shift left 1 decimal place +long parseDest(char delimiter){ + long integerValue = 0; // throw away previous integerValue + bool negativeNumber = false; // reset for negative + char incomingByte; + + while(1) { // force into a loop until delimiter is received + incomingByte = Serial.read(); + /* + if (incomingByte == 'c') { + xStepper.setCurrentPosition(0); + yStepper.setCurrentPosition(0); + continue; } - - if (negativeNumber) - integerValue = -integerValue; + */ + if (incomingByte == delimiter) break; // exit the while(1), we're done receiving + if (incomingByte == -1) continue; // if no characters are in the buffer read() returns -1 + if (incomingByte == '-') { + negativeNumber = true; + continue; + } + integerValue *= 10; // shift left 1 decimal place + integerValue = ((incomingByte - 48) + integerValue); // convert ASCII to integer, add, and shift left 1 decimal place + } + + if (negativeNumber) + integerValue = -integerValue; + + //integerValue = -integerValue; // this makes up for the fact that things are backwards + return integerValue; +} - integerValue = -integerValue; // this makes up for the fact that things are backwards - m2Stepper.moveTo(integerValue); +void loop() { + + currentMillis = millis(); + printMode = false; + + if (currentMillis - previousMillis >= 100 == true ) { + printMode = true; + previousMillis = currentMillis; } - + + stepperLogic(1, printMode); + stepperLogic(2, printMode); + + if (Serial.available() > 0) { // something came across serial + + xStepper.moveTo(parseDest(' ')); + yStepper.moveTo(parseDest('\n')); + + }; + //delay(100); } diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.aux b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.aux index ed691d8..c164f61 100644 --- a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.aux +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.aux @@ -9,3 +9,4 @@ \bibcite{Grunbaum:1986:TP:19304}{4} \bibcite{Kari:1996:SAS:245761.245817}{5} \bibcite{DBLP:journals/corr/JeandelR15}{6} +\gdef \@abspage@last{240} diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.log b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.log index f80acf0..0ad1c89 100644 --- a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.log +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.log @@ -1,214 +1,239 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 9 DEC 2019 11:11 +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 20 JUL 2023 18:37 entering extended mode - restricted \write18 enabled. + \write18 enabled. %&-line parsing enabled. **a_history_of_the_domino_problem_score.tex (./a_history_of_the_domino_problem_score.tex -LaTeX2e <2018-12-01> +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> (/usr/share/texmf-dist/tex/latex/base/letter.cls -Document Class: letter 2014/09/29 v1.2z Standard LaTeX document class +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class (/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) ) -\longindentation=\dimen102 -\indentedwidth=\dimen103 -\labelcount=\count80 +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 ) (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2018/04/16 v5.8 Page Geometry +Package: geometry 2020/01/02 v5.9 Page Geometry (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 ) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty -Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifvtex.sty -Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) -Package ifvtex Info: VTeX not detected. -) -(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty -Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional -) -\Gm@cnth=\count81 -\Gm@cntv=\count82 -\c@Gm@tempcnt=\count83 -\Gm@bindingoffset=\dimen104 -\Gm@wd@mp=\dimen105 -\Gm@odd@mp=\dimen106 -\Gm@even@mp=\dimen107 -\Gm@layoutwidth=\dimen108 -\Gm@layoutheight=\dimen109 -\Gm@layouthoffset=\dimen110 -\Gm@layoutvoffset=\dimen111 -\Gm@dimlist=\toks15 +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 ) (/usr/share/texmf-dist/tex/latex/mathtools/mathtools.sty -Package: mathtools 2018/01/08 v1.21 mathematical typesetting tools +Package: mathtools 2022/06/29 v1.29 mathematical typesetting tools (/usr/share/texmf-dist/tex/latex/tools/calc.sty Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) -\calc@Acount=\count84 -\calc@Bcount=\count85 -\calc@Adimen=\dimen112 -\calc@Bdimen=\dimen113 -\calc@Askip=\skip41 -\calc@Bskip=\skip42 +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 LaTeX Info: Redefining \setlength on input line 80. LaTeX Info: Redefining \addtolength on input line 81. -\calc@Ccount=\count86 -\calc@Cskip=\skip43 +\calc@Ccount=\count191 +\calc@Cskip=\skip50 ) (/usr/share/texmf-dist/tex/latex/mathtools/mhsetup.sty -Package: mhsetup 2017/03/31 v1.3 programming setup (MH) +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) ) (/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2018/12/01 v2.17b AMS math features -\@mathmargin=\skip44 +Package: amsmath 2022/04/08 v2.17n AMS math features +\@mathmargin=\skip51 For additional information on amsmath, use the `?' option. (/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty -Package: amstext 2000/06/29 v2.01 AMS text +Package: amstext 2021/08/26 v2.01 AMS text (/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks16 -\ex@=\dimen114 +\@emptytoks=\toks18 +\ex@=\dimen152 )) (/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen115 +\pmbraise@=\dimen153 ) (/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2016/03/08 v2.02 operator names +Package: amsopn 2022/04/08 v2.04 operator names ) -\inf@bad=\count87 -LaTeX Info: Redefining \frac on input line 223. -\uproot@=\count88 -\leftroot@=\count89 -LaTeX Info: Redefining \overline on input line 385. -\classnum@=\count90 -\DOTSCASE@=\count91 -LaTeX Info: Redefining \ldots on input line 482. -LaTeX Info: Redefining \dots on input line 485. -LaTeX Info: Redefining \cdots on input line 606. -\Mathstrutbox@=\box27 -\strutbox@=\box28 -\big@size=\dimen116 -LaTeX Font Info: Redeclaring font encoding OML on input line 729. -LaTeX Font Info: Redeclaring font encoding OMS on input line 730. -\macc@depth=\count92 -\c@MaxMatrixCols=\count93 -\dotsspace@=\muskip10 -\c@parentequation=\count94 -\dspbrk@lvl=\count95 -\tag@help=\toks17 -\row@=\count96 -\column@=\count97 -\maxfields@=\count98 -\andhelp@=\toks18 -\eqnshift@=\dimen117 -\alignsep@=\dimen118 -\tagshift@=\dimen119 -\tagwidth@=\dimen120 -\totwidth@=\dimen121 -\lineht@=\dimen122 -\@envbody=\toks19 -\multlinegap=\skip45 -\multlinetaggap=\skip46 -\mathdisplay@stack=\toks20 -LaTeX Info: Redefining \[ on input line 2844. -LaTeX Info: Redefining \] on input line 2845. +\inf@bad=\count192 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count193 +\leftroot@=\count194 +LaTeX Info: Redefining \overline on input line 399. +LaTeX Info: Redefining \colon on input line 410. +\classnum@=\count195 +\DOTSCASE@=\count196 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box51 +\strutbox@=\box52 +LaTeX Info: Redefining \big on input line 722. +LaTeX Info: Redefining \Big on input line 723. +LaTeX Info: Redefining \bigg on input line 724. +LaTeX Info: Redefining \Bigg on input line 725. +\big@size=\dimen154 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count197 +LaTeX Info: Redefining \bmod on input line 905. +LaTeX Info: Redefining \pmod on input line 910. +LaTeX Info: Redefining \smash on input line 940. +LaTeX Info: Redefining \relbar on input line 970. +LaTeX Info: Redefining \Relbar on input line 971. +\c@MaxMatrixCols=\count198 +\dotsspace@=\muskip16 +\c@parentequation=\count199 +\dspbrk@lvl=\count266 +\tag@help=\toks19 +\row@=\count267 +\column@=\count268 +\maxfields@=\count269 +\andhelp@=\toks20 +\eqnshift@=\dimen155 +\alignsep@=\dimen156 +\tagshift@=\dimen157 +\tagwidth@=\dimen158 +\totwidth@=\dimen159 +\lineht@=\dimen160 +\@envbody=\toks21 +\multlinegap=\skip52 +\multlinetaggap=\skip53 +\mathdisplay@stack=\toks22 +LaTeX Info: Redefining \[ on input line 2953. +LaTeX Info: Redefining \] on input line 2954. ) -LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 129. -LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 129. -LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 129. -LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 129. -\g_MT_multlinerow_int=\count99 -\l_MT_multwidth_dim=\dimen123 -\origjot=\skip47 -\l_MT_shortvdotswithinadjustabove_dim=\dimen124 -\l_MT_shortvdotswithinadjustbelow_dim=\dimen125 -\l_MT_above_intertext_sep=\dimen126 -\l_MT_below_intertext_sep=\dimen127 -\l_MT_above_shortintertext_sep=\dimen128 -\l_MT_below_shortintertext_sep=\dimen129 +\g_MT_multlinerow_int=\count270 +\l_MT_multwidth_dim=\dimen161 +\origjot=\skip54 +\l_MT_shortvdotswithinadjustabove_dim=\dimen162 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen163 +\l_MT_above_intertext_sep=\dimen164 +\l_MT_below_intertext_sep=\dimen165 +\l_MT_above_shortintertext_sep=\dimen166 +\l_MT_below_shortintertext_sep=\dimen167 +\xmathstrut@box=\box53 +\xmathstrut@dim=\dimen168 ) (/usr/share/texmf-dist/tex/latex/wasysym/wasysym.sty -Package: wasysym 2003/10/30 v2.0 Wasy-2 symbol support package +Package: wasysym 2020/01/19 v2.4 Wasy-2 symbol support package \symwasy=\mathgroup4 LaTeX Font Info: Overwriting symbol font `wasy' in version `bold' -(Font) U/wasy/m/n --> U/wasy/b/n on input line 90. +(Font) U/wasy/m/n --> U/wasy/b/n on input line 93. ) (/usr/share/texmf-dist/tex/latex/tools/multicol.sty -Package: multicol 2018/12/27 v1.8v multicolumn formatting (FMi) -\c@tracingmulticols=\count100 -\mult@box=\box29 -\multicol@leftmargin=\dimen130 -\c@unbalance=\count101 -\c@collectmore=\count102 -\doublecol@number=\count103 -\multicoltolerance=\count104 -\multicolpretolerance=\count105 -\full@width=\dimen131 -\page@free=\dimen132 -\premulticols=\dimen133 -\postmulticols=\dimen134 -\multicolsep=\skip48 -\multicolbaselineskip=\skip49 -\partial@page=\box30 -\last@line=\box31 -\maxbalancingoverflow=\dimen135 -\mult@rightbox=\box32 -\mult@grightbox=\box33 -\mult@gfirstbox=\box34 -\mult@firstbox=\box35 -\@tempa=\box36 -\@tempa=\box37 -\@tempa=\box38 -\@tempa=\box39 -\@tempa=\box40 -\@tempa=\box41 -\@tempa=\box42 -\@tempa=\box43 -\@tempa=\box44 -\@tempa=\box45 -\@tempa=\box46 -\@tempa=\box47 -\@tempa=\box48 -\@tempa=\box49 -\@tempa=\box50 -\@tempa=\box51 -\@tempa=\box52 -\c@columnbadness=\count106 -\c@finalcolumnbadness=\count107 -\last@try=\dimen136 -\multicolovershoot=\dimen137 -\multicolundershoot=\dimen138 -\mult@nat@firstbox=\box53 -\colbreak@box=\box54 -\mc@col@check@num=\count108 +Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi) +\c@tracingmulticols=\count271 +\mult@box=\box54 +\multicol@leftmargin=\dimen169 +\c@unbalance=\count272 +\c@collectmore=\count273 +\doublecol@number=\count274 +\multicoltolerance=\count275 +\multicolpretolerance=\count276 +\full@width=\dimen170 +\page@free=\dimen171 +\premulticols=\dimen172 +\postmulticols=\dimen173 +\multicolsep=\skip55 +\multicolbaselineskip=\skip56 +\partial@page=\box55 +\last@line=\box56 +\maxbalancingoverflow=\dimen174 +\mult@rightbox=\box57 +\mult@grightbox=\box58 +\mult@firstbox=\box59 +\mult@gfirstbox=\box60 +\@tempa=\box61 +\@tempa=\box62 +\@tempa=\box63 +\@tempa=\box64 +\@tempa=\box65 +\@tempa=\box66 +\@tempa=\box67 +\@tempa=\box68 +\@tempa=\box69 +\@tempa=\box70 +\@tempa=\box71 +\@tempa=\box72 +\@tempa=\box73 +\@tempa=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\c@minrows=\count277 +\c@columnbadness=\count278 +\c@finalcolumnbadness=\count279 +\last@try=\dimen175 +\multicolovershoot=\dimen176 +\multicolundershoot=\dimen177 +\mult@nat@firstbox=\box97 +\colbreak@box=\box98 +\mc@col@check@num=\count280 ) (/usr/share/texmf-dist/tex/generic/dirtree/dirtree.sty Package: dirtree 2012/12/11 v0.32 package wrapper for dirtree (/usr/share/texmf-dist/tex/generic/dirtree/dirtree.tex `dirtree' v0.32, 2012/12/11 (jcc) -\DT@offset=\dimen139 -\DT@width=\dimen140 -\DT@sep=\dimen141 -\DT@all=\dimen142 -\DT@rulewidth=\dimen143 -\DT@dotwidth=\dimen144 -\DTbaselineskip=\dimen145 -\DT@counti=\count109 -\DT@countii=\count110 -\DT@countiii=\count111 -\DT@countiv=\count112 -\DT@indent=\dimen146 -\DT@parskip=\dimen147 -\DT@baselineskip=\dimen148 +\DT@offset=\dimen178 +\DT@width=\dimen179 +\DT@sep=\dimen180 +\DT@all=\dimen181 +\DT@rulewidth=\dimen182 +\DT@dotwidth=\dimen183 +\DTbaselineskip=\dimen184 +\DT@counti=\count281 +\DT@countii=\count282 +\DT@countiii=\count283 +\DT@countiv=\count284 +\DT@indent=\dimen185 +\DT@parskip=\dimen186 +\DT@baselineskip=\dimen187 ) File: dirtree.tex 2012/12/11 v0.32 `dirtree' (jcc) ) @@ -217,320 +242,164 @@ Package: underscore 2006/09/13 LaTeX Info: Redefining \_ on input line 42. ) (/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty -Package: pdfpages 2017/10/31 v0.5l Insert pages of external PDF documents (AM) +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) (/usr/share/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) ) (/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty -Package: eso-pic 2018/04/12 v2.0h eso-pic (RN) +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen188 +\ESO@tempdimb=\dimen189 -(/usr/share/texmf-dist/tex/generic/oberdiek/atbegshi.sty -Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty -Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty -Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) -)) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) (/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg File: color.cfg 2016/01/02 v1.6 sample color configuration ) -Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Driver file: pdftex.def on input line 227. (/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex ) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. )) (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) ) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) -Package graphics Info: Driver file: pdftex.def on input line 99. +Package graphics Info: Driver file: pdftex.def on input line 107. ) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 +\Gin@req@height=\dimen190 +\Gin@req@width=\dimen191 ) -\AM@pagewidth=\dimen151 -\AM@pageheight=\dimen152 +\AM@pagewidth=\dimen192 +\AM@pageheight=\dimen193 +\AM@fboxrule=\dimen194 (/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def -File: pppdftex.def 2017/10/31 v0.5l Pdfpages driver for pdfTeX (AM) +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) ) -\AM@pagebox=\box55 -\AM@global@opts=\toks21 -\AM@toc@title=\toks22 -\c@AM@survey=\count113 -\AM@templatesizebox=\box56 +\pdfpages@includegraphics@status=\count285 +\AM@pagebox=\box99 +\AM@global@opts=\toks23 +\AM@pagecnt=\count286 +\AM@toc@title=\toks24 +\AM@lof@heading=\toks25 +\c@AM@survey=\count287 +\AM@templatesizebox=\box100 ) (/usr/share/texmf-dist/tex/latex/sclang-prettifier/sclang-prettifier.sty Package: sclang-prettifier 2014/06/14 v0.1 A package for prettyprinting SuperCo llider source code (/usr/share/texmf-dist/tex/latex/base/textcomp.sty -Package: textcomp 2018/08/11 v2.0j Standard LaTeX package -Package textcomp Info: Sub-encoding information: -(textcomp) 5 = only ISO-Adobe without \textcurrency -(textcomp) 4 = 5 + \texteuro -(textcomp) 3 = 4 + \textohm -(textcomp) 2 = 3 + \textestimated + \textcurrency -(textcomp) 1 = TS1 - \textcircled - \t -(textcomp) 0 = TS1 (full) -(textcomp) Font families with sub-encoding setting implement -(textcomp) only a restricted character set as indicated. -(textcomp) Family '?' is the default used for unknown fonts. -(textcomp) See the documentation for details. -Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79. - -(/usr/share/texmf-dist/tex/latex/base/ts1enc.def -File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file -Now handling font encoding TS1 ... -... processing UTF-8 mapping file for font encoding TS1 - -(/usr/share/texmf-dist/tex/latex/base/ts1enc.dfu -File: ts1enc.dfu 2018/10/05 v1.2f UTF-8 support for inputenc - defining Unicode char U+00A2 (decimal 162) - defining Unicode char U+00A3 (decimal 163) - defining Unicode char U+00A4 (decimal 164) - defining Unicode char U+00A5 (decimal 165) - defining Unicode char U+00A6 (decimal 166) - defining Unicode char U+00A7 (decimal 167) - defining Unicode char U+00A8 (decimal 168) - defining Unicode char U+00A9 (decimal 169) - defining Unicode char U+00AA (decimal 170) - defining Unicode char U+00AC (decimal 172) - defining Unicode char U+00AE (decimal 174) - defining Unicode char U+00AF (decimal 175) - defining Unicode char U+00B0 (decimal 176) - defining Unicode char U+00B1 (decimal 177) - defining Unicode char U+00B2 (decimal 178) - defining Unicode char U+00B3 (decimal 179) - defining Unicode char U+00B4 (decimal 180) - defining Unicode char U+00B5 (decimal 181) - defining Unicode char U+00B6 (decimal 182) - defining Unicode char U+00B7 (decimal 183) - defining Unicode char U+00B9 (decimal 185) - defining Unicode char U+00BA (decimal 186) - defining Unicode char U+00BC (decimal 188) - defining Unicode char U+00BD (decimal 189) - defining Unicode char U+00BE (decimal 190) - defining Unicode char U+00D7 (decimal 215) - defining Unicode char U+00F7 (decimal 247) - defining Unicode char U+0192 (decimal 402) - defining Unicode char U+02C7 (decimal 711) - defining Unicode char U+02D8 (decimal 728) - defining Unicode char U+02DD (decimal 733) - defining Unicode char U+0E3F (decimal 3647) - defining Unicode char U+2016 (decimal 8214) - defining Unicode char U+2020 (decimal 8224) - defining Unicode char U+2021 (decimal 8225) - defining Unicode char U+2022 (decimal 8226) - defining Unicode char U+2030 (decimal 8240) - defining Unicode char U+2031 (decimal 8241) - defining Unicode char U+203B (decimal 8251) - defining Unicode char U+203D (decimal 8253) - defining Unicode char U+2044 (decimal 8260) - defining Unicode char U+204E (decimal 8270) - defining Unicode char U+2052 (decimal 8274) - defining Unicode char U+20A1 (decimal 8353) - defining Unicode char U+20A4 (decimal 8356) - defining Unicode char U+20A6 (decimal 8358) - defining Unicode char U+20A9 (decimal 8361) - defining Unicode char U+20AB (decimal 8363) - defining Unicode char U+20AC (decimal 8364) - defining Unicode char U+20B1 (decimal 8369) - defining Unicode char U+2103 (decimal 8451) - defining Unicode char U+2116 (decimal 8470) - defining Unicode char U+2117 (decimal 8471) - defining Unicode char U+211E (decimal 8478) - defining Unicode char U+2120 (decimal 8480) - defining Unicode char U+2122 (decimal 8482) - defining Unicode char U+2126 (decimal 8486) - defining Unicode char U+2127 (decimal 8487) - defining Unicode char U+212E (decimal 8494) - defining Unicode char U+2190 (decimal 8592) - defining Unicode char U+2191 (decimal 8593) - defining Unicode char U+2192 (decimal 8594) - defining Unicode char U+2193 (decimal 8595) - defining Unicode char U+2329 (decimal 9001) - defining Unicode char U+232A (decimal 9002) - defining Unicode char U+2422 (decimal 9250) - defining Unicode char U+25E6 (decimal 9702) - defining Unicode char U+25EF (decimal 9711) - defining Unicode char U+266A (decimal 9834) - defining Unicode char U+FEFF (decimal 65279) -)) -LaTeX Info: Redefining \oldstylenums on input line 334. -Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349. -Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350. -Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351. -Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352. -Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353. -Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354. -Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355. -Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356. -Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357. -Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358. -Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359. -Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360. -Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361. -Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362. -Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363. -Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364. -Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365. -Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366. -Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367. -Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368. -Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369. -Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370. -Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371. -Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372. - -Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373. -Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374. -Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375. -Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376. -Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377. -Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378. -Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379. -Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380. -Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381. -Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382. -Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383. -Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384. -Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385. -Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386. -Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387. -Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388. -Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389. -Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390. -Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391. -Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392. -Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393. -Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394. -Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395. -Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396. -Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397. -Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398. -Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399. -Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400. -Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401. -Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402. -Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403. -Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404. -Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405. -Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406. -Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407. -Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408. -Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409. +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package ) (/usr/share/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count114 -\lst@gtempboxa=\box57 -\lst@token=\toks23 -\lst@length=\count115 -\lst@currlwidth=\dimen153 -\lst@column=\count116 -\lst@pos=\count117 -\lst@lostspace=\dimen154 -\lst@width=\dimen155 -\lst@newlines=\count118 -\lst@lineno=\count119 -\abovecaptionskip=\skip50 -\belowcaptionskip=\skip51 -\lst@maxwidth=\dimen156 +\lst@mode=\count288 +\lst@gtempboxa=\box101 +\lst@token=\toks26 +\lst@length=\count289 +\lst@currlwidth=\dimen195 +\lst@column=\count290 +\lst@pos=\count291 +\lst@lostspace=\dimen196 +\lst@width=\dimen197 +\lst@newlines=\count292 +\lst@lineno=\count293 +\abovecaptionskip=\skip57 +\belowcaptionskip=\skip58 +\lst@maxwidth=\dimen198 (/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty -File: lstmisc.sty 2019/02/27 1.8b (Carsten Heinz) -\c@lstnumber=\count120 -\lst@skipnumbers=\count121 -\lst@framebox=\box58 +File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz) +\c@lstnumber=\count294 +\lst@skipnumbers=\count295 +\lst@framebox=\box102 ) (/usr/share/texmf-dist/tex/latex/listings/listings.cfg -File: listings.cfg 2019/02/27 1.8b listings configuration +File: listings.cfg 2023/02/27 1.9 listings configuration )) -Package: listings 2019/02/27 1.8b (Carsten Heinz) -\currentchar@scpr=\count122 -\toks@scpr=\toks24 +Package: listings 2023/02/27 1.9 (Carsten Heinz) +\currentchar@scpr=\count296 +\toks@scpr=\toks27 ) (/usr/share/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip11 +\Urlmuskip=\muskip17 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) (/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty -Package: datetime2 2018/07/20 v1.5.3 (NLCT) date and time formats +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats (/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty -Package: tracklang 2018/05/13 v1.3.6 (NLCT) Track Languages +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages (/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count123 +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count297 ) (/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) (/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks25 -\XKV@tempa@toks=\toks26 +\XKV@toks=\toks28 +\XKV@tempa@toks=\toks29 ) -\XKV@depth=\count124 +\XKV@depth=\count298 File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) ))) (/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty -Package: enumitem 2019/02/04 v3.8 Customized lists -\labelindent=\skip52 -\enit@outerparindent=\dimen157 -\enit@toks=\toks27 -\enit@inbox=\box59 -\enit@count@id=\count125 -\enitdp@description=\count126 +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip59 +\enit@outerparindent=\dimen199 +\enit@toks=\toks30 +\enit@inbox=\box103 +\enit@count@id=\count299 +\enitdp@description=\count300 +) +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count301 +\l__pdf_internal_box=\box104 ) (./a_history_of_the_domino_problem_score.aux) \openout1 = `a_history_of_the_domino_problem_score.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72. LaTeX Font Info: ... okay on input line 72. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72. LaTeX Font Info: ... okay on input line 72. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72. LaTeX Font Info: ... okay on input line 72. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72. LaTeX Font Info: ... okay on input line 72. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72. LaTeX Font Info: ... okay on input line 72. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72. LaTeX Font Info: ... okay on input line 72. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72. -LaTeX Font Info: Try loading font information for TS1+cmr on input line 72. - -(/usr/share/texmf-dist/tex/latex/base/ts1cmr.fd -File: ts1cmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions -) -LaTeX Font Info: ... okay on input line 72. *geometry* driver: auto-detecting *geometry* detected driver: pdftex @@ -566,74 +435,46 @@ LaTeX Font Info: ... okay on input line 72. * \@reversemarginfalse * (1in=72.27pt=25.4mm, 1cm=28.453pt) -\AtBeginShipoutBox=\box60 (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count127 -\scratchdimen=\dimen158 -\scratchbox=\box61 -\nofMPsegments=\count128 -\nofMParguments=\count129 -\everyMPshowfont=\toks28 -\MPscratchCnt=\count130 -\MPscratchDim=\dimen159 -\MPnumerator=\count131 -\makeMPintoPDFobject=\count132 -\everyMPtoPDFconversion=\toks29 -) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty -Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf - -(/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty -Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty -Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) -)) -(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty -Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty -Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty -Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty -Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) -Package ifluatex Info: LuaTeX not detected. -)))) -(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty -Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO -) -Package pdftexcmds Info: LuaTeX not detected. -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -) +\scratchcounter=\count302 +\scratchdimen=\dimen256 +\scratchbox=\box105 +\nofMPsegments=\count303 +\nofMParguments=\count304 +\everyMPshowfont=\toks31 +\MPscratchCnt=\count305 +\MPscratchDim=\dimen257 +\MPnumerator=\count306 +\makeMPintoPDFobject=\count307 +\everyMPtoPDFconversion=\toks32 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -38. -Package grfext Info: Graphics extension search list: -(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE -G,.JBIG2,.JB2,.eps] -(grfext) \AppendGraphicsExtensions on input line 456. +85. (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv e )) -(/usr/share/texmf-dist/tex/latex/oberdiek/pdflscape.sty -Package: pdflscape 2016/05/14 v0.11 Display of landscape pages in PDF (HO) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) (/usr/share/texmf-dist/tex/latex/graphics/lscape.sty -Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) ) Package pdflscape Info: Auto-detected driver: pdftex on input line 81. -) -\c@lstlisting=\count133 -LaTeX Font Info: Try loading font information for U+wasy on input line 84. +)) +\c@lstlisting=\count308 +LaTeX Font Info: Trying to load font information for U+wasy on input line 84 +. (/usr/share/texmf-dist/tex/latex/wasysym/uwasy.fd -File: uwasy.fd 2003/10/30 v2.0 Wasy-2 symbol font definitions +File: uwasy.fd 2020/01/19 v2.4 Wasy-2 symbol font definitions ) File: selects/maquina.png Graphic file (type png) @@ -646,7 +487,7 @@ File: selects/discos.png Graphic file (type png) Package pdftex.def Info: selects/discos.png used on input line 90. (pdftex.def) Requested size: 243.20457pt x 182.39043pt. -Overfull \hbox (5.41216pt too wide) in paragraph at lines 84--92 +Overfull \hbox (5.41217pt too wide) in paragraph at lines 84--92 [] [] @@ -665,7 +506,9 @@ File: selects/maquinalit.jpg Graphic file (type jpg) Package pdftex.def Info: selects/maquinalit.jpg used on input line 141. (pdftex.def) Requested size: 347.4297pt x 231.61348pt. - [3 <./selects/maquinalit.jpg>] (./a_history_of_the_domino_problem_score.bbl) + [3{/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc} <./selects +/maquinalit.jpg>] +(./a_history_of_the_domino_problem_score.bbl) Underfull \hbox (badness 10000) in paragraph at lines 216--220 [] @@ -1493,7 +1336,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [52 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=426, page=2, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=431, page=2, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page2 used on input lin @@ -1511,7 +1354,7 @@ e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [53 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=457, page=3, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=462, page=3, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page3 used on input lin @@ -1528,7 +1371,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page3 used on input lin e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [54 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=462, page=4, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=467, page=4, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page4 used on input lin @@ -1546,7 +1389,7 @@ e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [55 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=468, page=5, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=473, page=5, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page5 used on input lin @@ -1563,7 +1406,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page5 used on input lin e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [56 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=473, page=6, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=478, page=6, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page6 used on input lin @@ -1581,7 +1424,7 @@ e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [57 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=478, page=7, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=483, page=7, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page7 used on input lin @@ -1598,7 +1441,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page7 used on input lin e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [58 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=483, page=8, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=488, page=8, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page8 used on input lin @@ -1616,7 +1459,7 @@ e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [59 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=488, page=9, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=493, page=9, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page9 used on input lin @@ -1633,7 +1476,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page9 used on input lin e 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [60 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=493, page=10, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=498, page=10, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page10 used on input li @@ -1651,7 +1494,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [61 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=499, page=11, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=504, page=11, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page11 used on input li @@ -1668,7 +1511,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page11 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [62 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=504, page=12, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=509, page=12, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page12 used on input li @@ -1686,7 +1529,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [63 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=509, page=13, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=514, page=13, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page13 used on input li @@ -1703,7 +1546,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page13 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [64 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=514, page=14, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=519, page=14, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page14 used on input li @@ -1721,7 +1564,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [65 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=519, page=15, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=524, page=15, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page15 used on input li @@ -1738,7 +1581,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page15 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [66 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=524, page=16, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=529, page=16, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page16 used on input li @@ -1756,7 +1599,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [67 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=530, page=17, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=535, page=17, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page17 used on input li @@ -1773,7 +1616,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page17 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [68 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=535, page=18, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=540, page=18, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page18 used on input li @@ -1791,7 +1634,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [69 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=540, page=19, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=545, page=19, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page19 used on input li @@ -1808,7 +1651,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page19 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [70 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=545, page=20, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=550, page=20, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page20 used on input li @@ -1826,7 +1669,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [71 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=550, page=21, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=555, page=21, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page21 used on input li @@ -1843,7 +1686,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page21 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [72 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=555, page=22, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=560, page=22, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page22 used on input li @@ -1861,7 +1704,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [73 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=561, page=23, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=566, page=23, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page23 used on input li @@ -1878,7 +1721,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page23 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [74 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=566, page=24, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=571, page=24, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page24 used on input li @@ -1896,7 +1739,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [75 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=571, page=25, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=576, page=25, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page25 used on input li @@ -1913,7 +1756,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page25 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [76 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=576, page=26, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=581, page=26, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page26 used on input li @@ -1931,7 +1774,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [77 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=581, page=27, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=586, page=27, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page27 used on input li @@ -1948,7 +1791,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page27 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [78 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=586, page=28, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=591, page=28, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page28 used on input li @@ -1966,7 +1809,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [79 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=592, page=29, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=597, page=29, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page29 used on input li @@ -1983,7 +1826,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page29 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [80 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=597, page=30, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=602, page=30, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page30 used on input li @@ -2001,7 +1844,7 @@ ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [81 <../penrose/penrose_score.pdf>] -<../penrose/penrose_score.pdf, id=602, page=31, 597.50829pt x 845.0471pt> +<../penrose/penrose_score.pdf, id=607, page=31, 597.50829pt x 845.0471pt> File: ../penrose/penrose_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../penrose/penrose_score.pdf , page31 used on input li @@ -2018,7 +1861,7 @@ Package pdftex.def Info: ../penrose/penrose_score.pdf , page31 used on input li ne 274. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [82 <../penrose/penrose_score.pdf>] -<../ammann/ammann_score.pdf, id=608, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=613, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 275. @@ -2027,7 +1870,7 @@ File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 275. (pdftex.def) Requested size: 597.50682pt x 845.04504pt. -<../ammann/ammann_score.pdf, id=611, page=1, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=616, page=1, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line @@ -2055,7 +1898,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [83 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=643, page=2, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=653, page=2, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page2 used on input line @@ -2072,7 +1915,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page2 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [84 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=676, page=3, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=681, page=3, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page3 used on input line @@ -2089,7 +1932,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page3 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [85 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=682, page=4, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=687, page=4, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page4 used on input line @@ -2106,7 +1949,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page4 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [86 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=687, page=5, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=692, page=5, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page5 used on input line @@ -2123,7 +1966,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page5 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [87 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=692, page=6, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=697, page=6, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page6 used on input line @@ -2140,7 +1983,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page6 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [88 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=697, page=7, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=702, page=7, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page7 used on input line @@ -2157,7 +2000,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page7 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [89 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=702, page=8, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=707, page=8, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page8 used on input line @@ -2174,7 +2017,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page8 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [90 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=707, page=9, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=712, page=9, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page9 used on input line @@ -2191,7 +2034,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page9 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [91 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=713, page=10, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=718, page=10, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page10 used on input line @@ -2208,7 +2051,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page10 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [92 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=718, page=11, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=723, page=11, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page11 used on input line @@ -2225,7 +2068,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page11 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [93 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=723, page=12, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=728, page=12, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page12 used on input line @@ -2242,7 +2085,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page12 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [94 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=728, page=13, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=733, page=13, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page13 used on input line @@ -2259,7 +2102,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page13 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [95 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=733, page=14, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=738, page=14, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page14 used on input line @@ -2276,7 +2119,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page14 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [96 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=738, page=15, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=743, page=15, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page15 used on input line @@ -2293,7 +2136,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page15 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [97 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=744, page=16, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=749, page=16, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page16 used on input line @@ -2310,7 +2153,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page16 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [98 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=749, page=17, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=754, page=17, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page17 used on input line @@ -2327,7 +2170,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page17 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [99 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=754, page=18, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=759, page=18, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page18 used on input line @@ -2344,7 +2187,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page18 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [100 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=759, page=19, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=764, page=19, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page19 used on input line @@ -2361,7 +2204,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page19 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [101 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=764, page=20, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=769, page=20, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page20 used on input line @@ -2378,7 +2221,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page20 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [102 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=769, page=21, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=774, page=21, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page21 used on input line @@ -2395,7 +2238,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page21 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [103 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=775, page=22, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=780, page=22, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page22 used on input line @@ -2412,7 +2255,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page22 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [104 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=780, page=23, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=785, page=23, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page23 used on input line @@ -2429,7 +2272,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page23 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [105 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=785, page=24, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=790, page=24, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page24 used on input line @@ -2447,7 +2290,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page24 used on input line (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [106 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=790, page=25, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=795, page=25, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page25 used on input line @@ -2464,7 +2307,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page25 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [107 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=795, page=26, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=800, page=26, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page26 used on input line @@ -2481,7 +2324,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page26 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [108 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=800, page=27, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=805, page=27, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page27 used on input line @@ -2498,7 +2341,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page27 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [109 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=807, page=28, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=811, page=28, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page28 used on input line @@ -2515,7 +2358,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page28 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [110 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=812, page=29, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=816, page=29, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page29 used on input line @@ -2532,7 +2375,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page29 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [111 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=817, page=30, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=822, page=30, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page30 used on input line @@ -2549,7 +2392,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page30 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [112 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=822, page=31, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=827, page=31, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page31 used on input line @@ -2566,7 +2409,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page31 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [113 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=827, page=32, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=832, page=32, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page32 used on input line @@ -2583,7 +2426,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page32 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [114 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=832, page=33, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=837, page=33, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page33 used on input line @@ -2601,7 +2444,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page33 used on input line (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [115 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=838, page=34, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=843, page=34, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page34 used on input line @@ -2618,7 +2461,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page34 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [116 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=843, page=35, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=848, page=35, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page35 used on input line @@ -2635,7 +2478,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page35 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [117 <../ammann/ammann_score.pdf>] -<../ammann/ammann_score.pdf, id=848, page=36, 597.50829pt x 845.0471pt> +<../ammann/ammann_score.pdf, id=853, page=36, 597.50829pt x 845.0471pt> File: ../ammann/ammann_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../ammann/ammann_score.pdf , page36 used on input line @@ -2652,7 +2495,7 @@ Package pdftex.def Info: ../ammann/ammann_score.pdf , page36 used on input line 275. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [118 <../ammann/ammann_score.pdf>] -<../kari/kari_score.pdf, id=853, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=858, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf used on input line 276. @@ -2661,7 +2504,7 @@ File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf used on input line 276. (pdftex.def) Requested size: 597.50682pt x 845.04504pt. -<../kari/kari_score.pdf, id=856, page=1, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=861, page=1, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 276. @@ -2688,7 +2531,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [119 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=880, page=2, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=890, page=2, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 276. @@ -2705,7 +2548,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [120 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=914, page=3, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=924, page=3, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 276. @@ -2722,7 +2565,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [121 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=920, page=4, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=930, page=4, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 276. @@ -2740,7 +2583,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [122 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=925, page=5, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=935, page=5, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 276. @@ -2757,7 +2600,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [123 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=930, page=6, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=940, page=6, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 276. @@ -2774,7 +2617,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [124 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=935, page=7, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=945, page=7, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 276. @@ -2791,7 +2634,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [125 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=940, page=8, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=950, page=8, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 276. @@ -2808,7 +2651,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [126 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=945, page=9, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=955, page=9, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 276. @@ -2826,7 +2669,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 276. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [127 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=951, page=10, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=961, page=10, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 276 @@ -2843,7 +2686,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [128 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=956, page=11, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=966, page=11, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 276 @@ -2860,7 +2703,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [129 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=961, page=12, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=971, page=12, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 276 @@ -2877,7 +2720,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [130 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=966, page=13, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=976, page=13, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 276 @@ -2894,7 +2737,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [131 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=971, page=14, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=981, page=14, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 276 @@ -2912,7 +2755,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 276 (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [132 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=976, page=15, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=986, page=15, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 276 @@ -2929,7 +2772,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [133 <../kari/kari_score.pdf>] -<../kari/kari_score.pdf, id=982, page=16, 597.50829pt x 845.0471pt> +<../kari/kari_score.pdf, id=992, page=16, 597.50829pt x 845.0471pt> File: ../kari/kari_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 276 @@ -2946,7 +2789,7 @@ Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 276 . (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [134 <../kari/kari_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=987, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=997, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 @@ -2957,7 +2800,7 @@ File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 77. (pdftex.def) Requested size: 597.50682pt x 845.04504pt. -<../jaendel/jaendel_rao_score.pdf, id=990, page=1, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1000, page=1, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input @@ -2984,7 +2827,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [135 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1023, page=2, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1033, page=2, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page2 used on input @@ -3001,7 +2844,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page2 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [136 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1054, page=3, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1064, page=3, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page3 used on input @@ -3018,7 +2861,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page3 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [137 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1059, page=4, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1069, page=4, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page4 used on input @@ -3035,7 +2878,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page4 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [138 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1064, page=5, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1074, page=5, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page5 used on input @@ -3052,7 +2895,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page5 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [139 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1070, page=6, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1080, page=6, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page6 used on input @@ -3069,7 +2912,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page6 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [140 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1075, page=7, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1085, page=7, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page7 used on input @@ -3086,7 +2929,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page7 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [141 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1080, page=8, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1090, page=8, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page8 used on input @@ -3103,7 +2946,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page8 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [142 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1085, page=9, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1095, page=9, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page9 used on input @@ -3120,7 +2963,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page9 used on input line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [143 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1090, page=10, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1100, page=10, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page10 used on inpu @@ -3137,7 +2980,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page10 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [144 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1095, page=11, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1105, page=11, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page11 used on inpu @@ -3154,7 +2997,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page11 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [145 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1101, page=12, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1111, page=12, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page12 used on inpu @@ -3171,7 +3014,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page12 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [146 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1106, page=13, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1116, page=13, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page13 used on inpu @@ -3188,7 +3031,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page13 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [147 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1111, page=14, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1121, page=14, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page14 used on inpu @@ -3206,7 +3049,7 @@ t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [148 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1116, page=15, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1126, page=15, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page15 used on inpu @@ -3223,7 +3066,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page15 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [149 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1121, page=16, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1131, page=16, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page16 used on inpu @@ -3240,7 +3083,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page16 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [150 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1126, page=17, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1136, page=17, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page17 used on inpu @@ -3257,7 +3100,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page17 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [151 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1132, page=18, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1142, page=18, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page18 used on inpu @@ -3274,7 +3117,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page18 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [152 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1137, page=19, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1147, page=19, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page19 used on inpu @@ -3291,7 +3134,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page19 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [153 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1142, page=20, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1152, page=20, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page20 used on inpu @@ -3308,7 +3151,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page20 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [154 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1147, page=21, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1157, page=21, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page21 used on inpu @@ -3325,7 +3168,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page21 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [155 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1152, page=22, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1162, page=22, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page22 used on inpu @@ -3342,7 +3185,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page22 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [156 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1157, page=23, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1167, page=23, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page23 used on inpu @@ -3359,7 +3202,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page23 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [157 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1163, page=24, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1173, page=24, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page24 used on inpu @@ -3376,7 +3219,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page24 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [158 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1168, page=25, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1178, page=25, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page25 used on inpu @@ -3393,7 +3236,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page25 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [159 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1173, page=26, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1183, page=26, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page26 used on inpu @@ -3410,7 +3253,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page26 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [160 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1178, page=27, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1188, page=27, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page27 used on inpu @@ -3427,7 +3270,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page27 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [161 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1183, page=28, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1193, page=28, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page28 used on inpu @@ -3444,7 +3287,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page28 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [162 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1188, page=29, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1198, page=29, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page29 used on inpu @@ -3461,7 +3304,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page29 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [163 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1194, page=30, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1204, page=30, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page30 used on inpu @@ -3478,7 +3321,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page30 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [164 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1199, page=31, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1209, page=31, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page31 used on inpu @@ -3495,7 +3338,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page31 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [165 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1205, page=32, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1214, page=32, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page32 used on inpu @@ -3512,7 +3355,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page32 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [166 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1210, page=33, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1219, page=33, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page33 used on inpu @@ -3529,7 +3372,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page33 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [167 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1215, page=34, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1225, page=34, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page34 used on inpu @@ -3546,7 +3389,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page34 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [168 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1220, page=35, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1230, page=35, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page35 used on inpu @@ -3563,7 +3406,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page35 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [169 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1226, page=36, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1236, page=36, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page36 used on inpu @@ -3580,7 +3423,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page36 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [170 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1248, page=37, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1258, page=37, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page37 used on inpu @@ -3598,7 +3441,7 @@ t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [171 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1253, page=38, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1263, page=38, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page38 used on inpu @@ -3615,7 +3458,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page38 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [172 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1258, page=39, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1268, page=39, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page39 used on inpu @@ -3632,7 +3475,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page39 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [173 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1263, page=40, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1273, page=40, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page40 used on inpu @@ -3649,7 +3492,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page40 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [174 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1268, page=41, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1278, page=41, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page41 used on inpu @@ -3666,7 +3509,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page41 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [175 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1274, page=42, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1284, page=42, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page42 used on inpu @@ -3683,7 +3526,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page42 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [176 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1279, page=43, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1289, page=43, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page43 used on inpu @@ -3700,7 +3543,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page43 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [177 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1284, page=44, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1294, page=44, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page44 used on inpu @@ -3717,7 +3560,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page44 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [178 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1289, page=45, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1299, page=45, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page45 used on inpu @@ -3734,7 +3577,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page45 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [179 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1294, page=46, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1304, page=46, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page46 used on inpu @@ -3751,7 +3594,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page46 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [180 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1299, page=47, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1309, page=47, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page47 used on inpu @@ -3768,7 +3611,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page47 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [181 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1305, page=48, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1315, page=48, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page48 used on inpu @@ -3785,7 +3628,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page48 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [182 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1310, page=49, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1320, page=49, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page49 used on inpu @@ -3802,7 +3645,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page49 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [183 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1315, page=50, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1325, page=50, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page50 used on inpu @@ -3819,7 +3662,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page50 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [184 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1320, page=51, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1330, page=51, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page51 used on inpu @@ -3836,7 +3679,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page51 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [185 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1325, page=52, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1335, page=52, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page52 used on inpu @@ -3853,7 +3696,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page52 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [186 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1330, page=53, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1340, page=53, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page53 used on inpu @@ -3870,7 +3713,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page53 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [187 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1336, page=54, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1346, page=54, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page54 used on inpu @@ -3887,7 +3730,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page54 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [188 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1341, page=55, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1351, page=55, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page55 used on inpu @@ -3904,7 +3747,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page55 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [189 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1346, page=56, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1356, page=56, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page56 used on inpu @@ -3921,7 +3764,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page56 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [190 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1351, page=57, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1361, page=57, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page57 used on inpu @@ -3938,7 +3781,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page57 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [191 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1356, page=58, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1366, page=58, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page58 used on inpu @@ -3955,7 +3798,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page58 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [192 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1361, page=59, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1371, page=59, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page59 used on inpu @@ -3972,7 +3815,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page59 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [193 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1367, page=60, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1377, page=60, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page60 used on inpu @@ -3990,7 +3833,7 @@ t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [194 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1372, page=61, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1382, page=61, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page61 used on inpu @@ -4007,7 +3850,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page61 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [195 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1377, page=62, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1387, page=62, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page62 used on inpu @@ -4024,7 +3867,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page62 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [196 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1382, page=63, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1392, page=63, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page63 used on inpu @@ -4041,7 +3884,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page63 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [197 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1387, page=64, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1397, page=64, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page64 used on inpu @@ -4058,7 +3901,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page64 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [198 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1392, page=65, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1402, page=65, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page65 used on inpu @@ -4075,7 +3918,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page65 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [199 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1398, page=66, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1408, page=66, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page66 used on inpu @@ -4092,7 +3935,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page66 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [200 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1403, page=67, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1413, page=67, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page67 used on inpu @@ -4109,7 +3952,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page67 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [201 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1408, page=68, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1418, page=68, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page68 used on inpu @@ -4126,7 +3969,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page68 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [202 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1413, page=69, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1423, page=69, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page69 used on inpu @@ -4143,7 +3986,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page69 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [203 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1418, page=70, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1428, page=70, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page70 used on inpu @@ -4160,7 +4003,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page70 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [204 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1423, page=71, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1433, page=71, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page71 used on inpu @@ -4177,7 +4020,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page71 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [205 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1429, page=72, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1439, page=72, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page72 used on inpu @@ -4194,7 +4037,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page72 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [206 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1434, page=73, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1444, page=73, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page73 used on inpu @@ -4211,7 +4054,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page73 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [207 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1440, page=74, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1449, page=74, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page74 used on inpu @@ -4228,7 +4071,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page74 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [208 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1445, page=75, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1454, page=75, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page75 used on inpu @@ -4245,7 +4088,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page75 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [209 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1450, page=76, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1460, page=76, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page76 used on inpu @@ -4262,7 +4105,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page76 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [210 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1455, page=77, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1465, page=77, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page77 used on inpu @@ -4279,7 +4122,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page77 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [211 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1461, page=78, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1471, page=78, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page78 used on inpu @@ -4296,7 +4139,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page78 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [212 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1466, page=79, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1476, page=79, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page79 used on inpu @@ -4313,7 +4156,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page79 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [213 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1471, page=80, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1481, page=80, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page80 used on inpu @@ -4330,7 +4173,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page80 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [214 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1476, page=81, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1486, page=81, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page81 used on inpu @@ -4347,7 +4190,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page81 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [215 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1481, page=82, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1491, page=82, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page82 used on inpu @@ -4364,7 +4207,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page82 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [216 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1486, page=83, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1496, page=83, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page83 used on inpu @@ -4382,7 +4225,7 @@ t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [217 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1492, page=84, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1502, page=84, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page84 used on inpu @@ -4399,7 +4242,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page84 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [218 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1497, page=85, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1507, page=85, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page85 used on inpu @@ -4416,7 +4259,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page85 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [219 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1502, page=86, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1512, page=86, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page86 used on inpu @@ -4433,7 +4276,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page86 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [220 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1507, page=87, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1517, page=87, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page87 used on inpu @@ -4450,7 +4293,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page87 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [221 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1512, page=88, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1522, page=88, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page88 used on inpu @@ -4467,7 +4310,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page88 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [222 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1517, page=89, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1527, page=89, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page89 used on inpu @@ -4484,7 +4327,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page89 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [223 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1523, page=90, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1533, page=90, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page90 used on inpu @@ -4501,7 +4344,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page90 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [224 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1528, page=91, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1538, page=91, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page91 used on inpu @@ -4518,7 +4361,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page91 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [225 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1533, page=92, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1543, page=92, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page92 used on inpu @@ -4535,7 +4378,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page92 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [226 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1538, page=93, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1548, page=93, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page93 used on inpu @@ -4552,7 +4395,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page93 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [227 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1543, page=94, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1553, page=94, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page94 used on inpu @@ -4569,7 +4412,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page94 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [228 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1548, page=95, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1558, page=95, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page95 used on inpu @@ -4586,7 +4429,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page95 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [229 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1554, page=96, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1564, page=96, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page96 used on inpu @@ -4603,7 +4446,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page96 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [230 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1559, page=97, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1569, page=97, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page97 used on inpu @@ -4620,7 +4463,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page97 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [231 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1564, page=98, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1574, page=98, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page98 used on inpu @@ -4637,7 +4480,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page98 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [232 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1569, page=99, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1579, page=99, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page99 used on inpu @@ -4654,7 +4497,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page99 used on inpu t line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [233 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1574, page=100, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1584, page=100, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4672,7 +4515,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page100 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [234 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1579, page=101, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1589, page=101, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4690,7 +4533,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page101 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [235 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1585, page=102, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1595, page=102, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4708,7 +4551,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page102 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [236 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1590, page=103, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1600, page=103, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4726,7 +4569,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page103 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [237 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1595, page=104, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1605, page=104, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4744,7 +4587,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page104 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [238 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1600, page=105, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1610, page=105, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4762,7 +4605,7 @@ Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page105 used on inp ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [239 <../jaendel/jaendel_rao_score.pdf>] -<../jaendel/jaendel_rao_score.pdf, id=1605, page=106, 597.50829pt x 845.0471pt> +<../jaendel/jaendel_rao_score.pdf, id=1615, page=106, 597.50829pt x 845.0471pt> File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) @@ -4781,34 +4624,30 @@ ut line 277. (pdftex.def) Requested size: 597.53416pt x 845.08372pt. [240 <../jaendel/jaendel_rao_score.pdf>] -(./a_history_of_the_domino_problem_score.aux) - -LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. - - ) +(./a_history_of_the_domino_problem_score.aux) ) Here is how much of TeX's memory you used: - 10520 strings out of 492623 - 195576 string characters out of 6135670 - 262039 words of memory out of 5000000 - 14261 multiletter control sequences out of 15000+600000 - 6590 words of font info for 25 fonts, out of 8000000 for 9000 - 1141 hyphenation exceptions out of 8191 - 41i,18n,72p,1697b,521s stack positions out of 5000i,500n,10000p,200000b,80000s -{/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc} -Output written on a_history_of_the_domino_problem_score.pdf (240 pages, 4437591 -8 bytes). + 10644 strings out of 477985 + 210603 string characters out of 5840059 + 1867388 words of memory out of 5000000 + 30702 multiletter control sequences out of 15000+600000 + 515254 words of font info for 43 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,1698b,522s stack positions out of 10000i,1000n,20000p,200000b,200000s + +Output written on a_history_of_the_domino_problem_score.pdf (240 pages, 4437480 +0 bytes). PDF statistics: - 1650 PDF objects out of 1728 (max. 8388607) - 853 compressed objects within 9 object streams + 1669 PDF objects out of 1728 (max. 8388607) + 849 compressed objects within 9 object streams 0 named destinations out of 1000 (max. 500000) 1291 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.synctex.gz b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.synctex.gz index 1a9e67e..fafa59e 100644 Binary files a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.synctex.gz and b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.synctex.gz differ diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.tex b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.tex index bf15f05..85b8669 100644 --- a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.tex +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score.tex @@ -124,7 +124,7 @@ Between the two photomasks, there are nine embedded images which can be seen at \end{center} \begin{description}[labelindent=0.5cm] - \item [unidimensional Verniers:] These are the most useful markings for image alignment. For each axis, there are a set of coarse Verniers (bordering the image) and a set of fine Verniers (further from the image) which move 5 times the speed of the coarse Veniers. Everytime an image is aligned the white blob will be centered in both the coarse and fine Verniers. These markings essentially amplify and scale the distance between the image (640 microns) and can be used by a motion tracker in a closed-loop alignment system. + \item [unidimensional Verniers:] These are the most useful markings for image alignment. For each axis, there are a set of coarse Verniers (bordering the image) and a set of fine Verniers (further from the image) which move 5 times the speed of the coarse Veniers. Every time an image is aligned the white blob will be centered in both the coarse and fine Verniers. These markings essentially amplify and scale the distance between the image (640 microns) and can be used by a motion tracker in a closed-loop alignment system. \item [multidimenional Verniers:] These are Verniers that are centered in a two-dimenional space everytime an image is focused. \item [linear Moire grating:] These gratings can be used to make sure that the plates are aligned rotationally (resulting in a completely monochrome bar without any patterns). \item [circular Moire grating:] These gratings best represent the grid of the images. When an image is aligned the respective grating on the grid will be dark. The number of fringes denotes the accuracy of the alignment (none means perfectly aligned). diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.aux b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.aux new file mode 100644 index 0000000..4c028e7 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.aux @@ -0,0 +1,6 @@ +\relax +\catcode 95\active +\citation{*} +\bibstyle{unsrt} +\bibdata{hdp} +\gdef \@abspage@last{240} diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.log b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.log new file mode 100644 index 0000000..ab2fe16 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.log @@ -0,0 +1,4654 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 5 AUG 2023 12:03 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**a_history_of_the_domino_problem_score_revised_description.tex +(./a_history_of_the_domino_problem_score_revised_description.tex +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> +(/usr/share/texmf-dist/tex/latex/base/letter.cls +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class +(/usr/share/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) +) +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 +) +(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 +) +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 +) +(/usr/share/texmf-dist/tex/latex/mathtools/mathtools.sty +Package: mathtools 2022/06/29 v1.29 mathematical typesetting tools + +(/usr/share/texmf-dist/tex/latex/tools/calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count191 +\calc@Cskip=\skip50 +) +(/usr/share/texmf-dist/tex/latex/mathtools/mhsetup.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2022/04/08 v2.17n AMS math features +\@mathmargin=\skip51 + +For additional information on amsmath, use the `?' option. +(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty +Package: amstext 2021/08/26 v2.01 AMS text + +(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks18 +\ex@=\dimen152 +)) +(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen153 +) +(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2022/04/08 v2.04 operator names +) +\inf@bad=\count192 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count193 +\leftroot@=\count194 +LaTeX Info: Redefining \overline on input line 399. +LaTeX Info: Redefining \colon on input line 410. +\classnum@=\count195 +\DOTSCASE@=\count196 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box51 +\strutbox@=\box52 +LaTeX Info: Redefining \big on input line 722. +LaTeX Info: Redefining \Big on input line 723. +LaTeX Info: Redefining \bigg on input line 724. +LaTeX Info: Redefining \Bigg on input line 725. +\big@size=\dimen154 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count197 +LaTeX Info: Redefining \bmod on input line 905. +LaTeX Info: Redefining \pmod on input line 910. +LaTeX Info: Redefining \smash on input line 940. +LaTeX Info: Redefining \relbar on input line 970. +LaTeX Info: Redefining \Relbar on input line 971. +\c@MaxMatrixCols=\count198 +\dotsspace@=\muskip16 +\c@parentequation=\count199 +\dspbrk@lvl=\count266 +\tag@help=\toks19 +\row@=\count267 +\column@=\count268 +\maxfields@=\count269 +\andhelp@=\toks20 +\eqnshift@=\dimen155 +\alignsep@=\dimen156 +\tagshift@=\dimen157 +\tagwidth@=\dimen158 +\totwidth@=\dimen159 +\lineht@=\dimen160 +\@envbody=\toks21 +\multlinegap=\skip52 +\multlinetaggap=\skip53 +\mathdisplay@stack=\toks22 +LaTeX Info: Redefining \[ on input line 2953. +LaTeX Info: Redefining \] on input line 2954. +) +\g_MT_multlinerow_int=\count270 +\l_MT_multwidth_dim=\dimen161 +\origjot=\skip54 +\l_MT_shortvdotswithinadjustabove_dim=\dimen162 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen163 +\l_MT_above_intertext_sep=\dimen164 +\l_MT_below_intertext_sep=\dimen165 +\l_MT_above_shortintertext_sep=\dimen166 +\l_MT_below_shortintertext_sep=\dimen167 +\xmathstrut@box=\box53 +\xmathstrut@dim=\dimen168 +) +(/usr/share/texmf-dist/tex/latex/wasysym/wasysym.sty +Package: wasysym 2020/01/19 v2.4 Wasy-2 symbol support package +\symwasy=\mathgroup4 +LaTeX Font Info: Overwriting symbol font `wasy' in version `bold' +(Font) U/wasy/m/n --> U/wasy/b/n on input line 93. +) +(/usr/share/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi) +\c@tracingmulticols=\count271 +\mult@box=\box54 +\multicol@leftmargin=\dimen169 +\c@unbalance=\count272 +\c@collectmore=\count273 +\doublecol@number=\count274 +\multicoltolerance=\count275 +\multicolpretolerance=\count276 +\full@width=\dimen170 +\page@free=\dimen171 +\premulticols=\dimen172 +\postmulticols=\dimen173 +\multicolsep=\skip55 +\multicolbaselineskip=\skip56 +\partial@page=\box55 +\last@line=\box56 +\maxbalancingoverflow=\dimen174 +\mult@rightbox=\box57 +\mult@grightbox=\box58 +\mult@firstbox=\box59 +\mult@gfirstbox=\box60 +\@tempa=\box61 +\@tempa=\box62 +\@tempa=\box63 +\@tempa=\box64 +\@tempa=\box65 +\@tempa=\box66 +\@tempa=\box67 +\@tempa=\box68 +\@tempa=\box69 +\@tempa=\box70 +\@tempa=\box71 +\@tempa=\box72 +\@tempa=\box73 +\@tempa=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\c@minrows=\count277 +\c@columnbadness=\count278 +\c@finalcolumnbadness=\count279 +\last@try=\dimen175 +\multicolovershoot=\dimen176 +\multicolundershoot=\dimen177 +\mult@nat@firstbox=\box97 +\colbreak@box=\box98 +\mc@col@check@num=\count280 +) +(/usr/share/texmf-dist/tex/generic/dirtree/dirtree.sty +Package: dirtree 2012/12/11 v0.32 package wrapper for dirtree + +(/usr/share/texmf-dist/tex/generic/dirtree/dirtree.tex +`dirtree' v0.32, 2012/12/11 (jcc) +\DT@offset=\dimen178 +\DT@width=\dimen179 +\DT@sep=\dimen180 +\DT@all=\dimen181 +\DT@rulewidth=\dimen182 +\DT@dotwidth=\dimen183 +\DTbaselineskip=\dimen184 +\DT@counti=\count281 +\DT@countii=\count282 +\DT@countiii=\count283 +\DT@countiv=\count284 +\DT@indent=\dimen185 +\DT@parskip=\dimen186 +\DT@baselineskip=\dimen187 +) +File: dirtree.tex 2012/12/11 v0.32 `dirtree' (jcc) +) +(/usr/share/texmf-dist/tex/latex/underscore/underscore.sty +Package: underscore 2006/09/13 +LaTeX Info: Redefining \_ on input line 42. +) +(/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) + +(/usr/share/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) +) +(/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen188 +\ESO@tempdimb=\dimen189 + +(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) + +(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. + +(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex +) +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. +)) +(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. +) +\Gin@req@height=\dimen190 +\Gin@req@width=\dimen191 +) +\AM@pagewidth=\dimen192 +\AM@pageheight=\dimen193 +\AM@fboxrule=\dimen194 + +(/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) +) +\pdfpages@includegraphics@status=\count285 +\AM@pagebox=\box99 +\AM@global@opts=\toks23 +\AM@pagecnt=\count286 +\AM@toc@title=\toks24 +\AM@lof@heading=\toks25 +\c@AM@survey=\count287 +\AM@templatesizebox=\box100 +) +(/usr/share/texmf-dist/tex/latex/sclang-prettifier/sclang-prettifier.sty +Package: sclang-prettifier 2014/06/14 v0.1 A package for prettyprinting SuperCo +llider source code + +(/usr/share/texmf-dist/tex/latex/base/textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(/usr/share/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count288 +\lst@gtempboxa=\box101 +\lst@token=\toks26 +\lst@length=\count289 +\lst@currlwidth=\dimen195 +\lst@column=\count290 +\lst@pos=\count291 +\lst@lostspace=\dimen196 +\lst@width=\dimen197 +\lst@newlines=\count292 +\lst@lineno=\count293 +\abovecaptionskip=\skip57 +\belowcaptionskip=\skip58 +\lst@maxwidth=\dimen198 + +(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz) +\c@lstnumber=\count294 +\lst@skipnumbers=\count295 +\lst@framebox=\box102 +) +(/usr/share/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2023/02/27 1.9 listings configuration +)) +Package: listings 2023/02/27 1.9 (Carsten Heinz) +\currentchar@scpr=\count296 +\toks@scpr=\toks27 +) +(/usr/share/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats + +(/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages + +(/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) +(/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count297 +) +(/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) + +(/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks28 +\XKV@tempa@toks=\toks29 +) +\XKV@depth=\count298 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip59 +\enit@outerparindent=\dimen199 +\enit@toks=\toks30 +\enit@inbox=\box103 +\enit@count@id=\count299 +\enitdp@description=\count300 +) +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count301 +\l__pdf_internal_box=\box104 +) +(./a_history_of_the_domino_problem_score_revised_description.aux) +\openout1 = `a_history_of_the_domino_problem_score_revised_description.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(50.58878pt, 496.33032pt, 50.58878pt) +* v-part:(T,H,B)=(50.58878pt, 743.8693pt, 50.58878pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=496.33032pt +* \textheight=743.8693pt +* \oddsidemargin=-21.68121pt +* \evensidemargin=-21.68121pt +* \topmargin=-78.68121pt +* \headheight=12.0pt +* \headsep=45.0pt +* \topskip=10.0pt +* \footskip=25.0pt +* \marginparwidth=90.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=10.0pt plus 2.0pt minus 4.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count302 +\scratchdimen=\dimen256 +\scratchbox=\box105 +\nofMPsegments=\count303 +\nofMParguments=\count304 +\everyMPshowfont=\toks31 +\MPscratchCnt=\count305 +\MPscratchDim=\dimen257 +\MPnumerator=\count306 +\makeMPintoPDFobject=\count307 +\everyMPtoPDFconversion=\toks32 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) + +(/usr/share/texmf-dist/tex/latex/graphics/lscape.sty +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) +) +Package pdflscape Info: Auto-detected driver: pdftex on input line 81. +)) +\c@lstlisting=\count308 +LaTeX Font Info: Trying to load font information for U+wasy on input line 84 +. + +(/usr/share/texmf-dist/tex/latex/wasysym/uwasy.fd +File: uwasy.fd 2020/01/19 v2.4 Wasy-2 symbol font definitions +) + +File: selects/maquina.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/maquina.jpg used on input line 87. +(pdftex.def) Requested size: 243.20457pt x 182.39622pt. + +File: selects/discos.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/discos.jpg used on input line 90. +(pdftex.def) Requested size: 243.20457pt x 182.36728pt. + +Overfull \hbox (5.41217pt too wide) in paragraph at lines 84--92 + [] + [] + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./selects/maquina.jpg> <./ +selects/discos.jpg>] + +File: selects/oraclesannotated_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/oraclesannotated_cp.jpg used on input line 12 +3. +(pdftex.def) Requested size: 347.4297pt x 231.61348pt. + [2 <./selects/oraclesannotated_cp.jpg>] + +File: selects/maquinalit_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/maquinalit_cp.jpg used on input line 141. +(pdftex.def) Requested size: 347.4297pt x 231.61348pt. + [3 <./selects/maquinalit_cp.jpg>] +No file a_history_of_the_domino_problem_score_revised_description.bbl. + +Underfull \hbox (badness 10000) in paragraph at lines 221--225 + + [] + +[4{/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc}] + +File: selects/berger_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/berger_cp.jpg used on input line 237. +(pdftex.def) Requested size: 496.33032pt x 493.96979pt. + [5 <./selects/berger_cp.jpg>] + +File: selects/robinson_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/robinson_cp.jpg used on input line 244. +(pdftex.def) Requested size: 496.33032pt x 497.64297pt. + [6 <./selects/robinson_cp.jpg>] + +File: selects/penrose_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/penrose_cp.jpg used on input line 251. +(pdftex.def) Requested size: 496.33032pt x 495.04095pt. + [7 <./selects/penrose_cp.jpg>] + +File: selects/ammann_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/ammann_cp.jpg used on input line 258. +(pdftex.def) Requested size: 496.33032pt x 493.47537pt. + [8 <./selects/ammann_cp.jpg>] + +File: selects/kari_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/kari_cp.jpg used on input line 265. +(pdftex.def) Requested size: 496.33032pt x 498.39763pt. + [9 <./selects/kari_cp.jpg>] + +File: selects/jaendel_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/jaendel_cp.jpg used on input line 272. +(pdftex.def) Requested size: 496.33032pt x 496.07713pt. +<../berger/berger_score.pdf, id=53, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf used on input line 277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf used on input line 277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../berger/berger_score.pdf, id=56, page=1, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [10 <./selects/jaendel_cp.jpg>] +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [11 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=101, page=2, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page2 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page2 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page2 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [12 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=133, page=3, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page3 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page3 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page3 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [13 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=139, page=4, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page4 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page4 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page4 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [14 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=144, page=5, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page5 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page5 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page5 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[15 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=149, page=6, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page6 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page6 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page6 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [16 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=154, page=7, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page7 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page7 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page7 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [17 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=159, page=8, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page8 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page8 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page8 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [18 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=164, page=9, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page9 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page9 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page9 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [19 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=170, page=10, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page10 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page10 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page10 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [20 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=175, page=11, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page11 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page11 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page11 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [21 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=180, page=12, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page12 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page12 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page12 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +[22 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=185, page=13, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page13 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page13 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page13 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [23 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=190, page=14, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page14 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page14 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page14 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [24 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=195, page=15, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page15 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page15 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page15 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [25 <../berger/berger_score.pdf>] +<../berger/berger_score.pdf, id=201, page=16, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page16 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page16 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page16 used on input line + 277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [26 <../berger/berger_score.pdf>] +<../robinson/robinson_score.pdf, id=206, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf used on input line 278 +. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf used on input line 278 +. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../robinson/robinson_score.pdf, id=209, page=1, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 278. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [27 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=242, page=2, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page2 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page2 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page2 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [28 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=274, page=3, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page3 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page3 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page3 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [29 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=279, page=4, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page4 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page4 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page4 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [30 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=284, page=5, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page5 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page5 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page5 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [31 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=290, page=6, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page6 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page6 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page6 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [32 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=295, page=7, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page7 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page7 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page7 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [33 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=300, page=8, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page8 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page8 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page8 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [34 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=305, page=9, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page9 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page9 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page9 used on input l +ine 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[35 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=310, page=10, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page10 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page10 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page10 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [36 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=315, page=11, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page11 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page11 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page11 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[37 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=321, page=12, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page12 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page12 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page12 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [38 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=326, page=13, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page13 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page13 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page13 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[39 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=331, page=14, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page14 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page14 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page14 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [40 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=336, page=15, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page15 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page15 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page15 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[41 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=341, page=16, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page16 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page16 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page16 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [42 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=346, page=17, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page17 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page17 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page17 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[43 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=352, page=18, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page18 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page18 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page18 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [44 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=357, page=19, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page19 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page19 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page19 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[45 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=362, page=20, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page20 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page20 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page20 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [46 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=367, page=21, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page21 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page21 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page21 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[47 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=372, page=22, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page22 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page22 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page22 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [48 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=377, page=23, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page23 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page23 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page23 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[49 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=383, page=24, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page24 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page24 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page24 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [50 <../robinson/robinson_score.pdf>] +<../robinson/robinson_score.pdf, id=388, page=25, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page25 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page25 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page25 used on input +line 278. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[51 <../robinson/robinson_score.pdf>] +<../penrose/penrose_score.pdf, id=393, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf used on input line 279. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf used on input line 279. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../penrose/penrose_score.pdf, id=396, page=1, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 279. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [52 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=434, page=2, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page2 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page2 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page2 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[53 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=465, page=3, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page3 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page3 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page3 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [54 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=470, page=4, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page4 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page4 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page4 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[55 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=476, page=5, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page5 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page5 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page5 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [56 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=481, page=6, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page6 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page6 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page6 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[57 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=486, page=7, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page7 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page7 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page7 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [58 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=491, page=8, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page8 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page8 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page8 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[59 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=496, page=9, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page9 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page9 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page9 used on input lin +e 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [60 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=501, page=10, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page10 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page10 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page10 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[61 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=507, page=11, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page11 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page11 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page11 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [62 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=512, page=12, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page12 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page12 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page12 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[63 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=517, page=13, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page13 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page13 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page13 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [64 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=522, page=14, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page14 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page14 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page14 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[65 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=527, page=15, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page15 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page15 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page15 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [66 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=532, page=16, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page16 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page16 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page16 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[67 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=538, page=17, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page17 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page17 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page17 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [68 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=543, page=18, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page18 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page18 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page18 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[69 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=548, page=19, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page19 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page19 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page19 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [70 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=553, page=20, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page20 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page20 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page20 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[71 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=558, page=21, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page21 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page21 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page21 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [72 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=563, page=22, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page22 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page22 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page22 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[73 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=569, page=23, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page23 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page23 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page23 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [74 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=574, page=24, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page24 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page24 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page24 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[75 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=579, page=25, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page25 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page25 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page25 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [76 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=584, page=26, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page26 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page26 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page26 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[77 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=589, page=27, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page27 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page27 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page27 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [78 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=594, page=28, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page28 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page28 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page28 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[79 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=600, page=29, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page29 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page29 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page29 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [80 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=605, page=30, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page30 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page30 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page30 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[81 <../penrose/penrose_score.pdf>] +<../penrose/penrose_score.pdf, id=610, page=31, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page31 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page31 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page31 used on input li +ne 279. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [82 <../penrose/penrose_score.pdf>] +<../ammann/ammann_score.pdf, id=616, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 280. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 280. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../ammann/ammann_score.pdf, id=619, page=1, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +280. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[83 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=656, page=2, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page2 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page2 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page2 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [84 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=684, page=3, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page3 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page3 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page3 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [85 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=690, page=4, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page4 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page4 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page4 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [86 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=695, page=5, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page5 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page5 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page5 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [87 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=700, page=6, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page6 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page6 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page6 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [88 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=705, page=7, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page7 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page7 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page7 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [89 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=710, page=8, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page8 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page8 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page8 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +[90 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=715, page=9, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page9 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page9 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page9 used on input line +280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [91 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=721, page=10, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page10 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page10 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page10 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [92 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=726, page=11, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page11 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page11 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page11 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [93 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=731, page=12, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page12 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page12 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page12 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [94 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=736, page=13, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page13 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page13 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page13 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [95 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=741, page=14, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page14 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page14 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page14 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [96 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=746, page=15, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page15 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page15 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page15 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +[97 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=752, page=16, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page16 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page16 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page16 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [98 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=757, page=17, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page17 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page17 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page17 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [99 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=762, page=18, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page18 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page18 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page18 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [100 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=767, page=19, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page19 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page19 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page19 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [101 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=772, page=20, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page20 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page20 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page20 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [102 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=777, page=21, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page21 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page21 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page21 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [103 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=783, page=22, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page22 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page22 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page22 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [104 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=788, page=23, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page23 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page23 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page23 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [105 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=793, page=24, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page24 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page24 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page24 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[106 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=798, page=25, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page25 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page25 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page25 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [107 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=803, page=26, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page26 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page26 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page26 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [108 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=808, page=27, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page27 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page27 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page27 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [109 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=814, page=28, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page28 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page28 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page28 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [110 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=819, page=29, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page29 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page29 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page29 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [111 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=825, page=30, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page30 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page30 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page30 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [112 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=830, page=31, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page31 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page31 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page31 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [113 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=835, page=32, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page32 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page32 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page32 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [114 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=840, page=33, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page33 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page33 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page33 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[115 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=846, page=34, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page34 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page34 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page34 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [116 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=851, page=35, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page35 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page35 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page35 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [117 <../ammann/ammann_score.pdf>] +<../ammann/ammann_score.pdf, id=856, page=36, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page36 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page36 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page36 used on input line + 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [118 <../ammann/ammann_score.pdf>] +<../kari/kari_score.pdf, id=861, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf used on input line 281. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf used on input line 281. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../kari/kari_score.pdf, id=864, page=1, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 281. + +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [119 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=893, page=2, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [120 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=927, page=3, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [121 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=933, page=4, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[122 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=938, page=5, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [123 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=943, page=6, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [124 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=948, page=7, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [125 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=953, page=8, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [126 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=958, page=9, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 281. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[127 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=964, page=10, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [128 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=969, page=11, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [129 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=974, page=12, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [130 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=979, page=13, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [131 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=984, page=14, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[132 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=989, page=15, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [133 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=995, page=16, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 281 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [134 <../kari/kari_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1000, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 +82. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 +82. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../jaendel/jaendel_rao_score.pdf, id=1003, page=1, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 282. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [135 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1036, page=2, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page2 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page2 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page2 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [136 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1067, page=3, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page3 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page3 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page3 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [137 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1072, page=4, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page4 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page4 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page4 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [138 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1077, page=5, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page5 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page5 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page5 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [139 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1083, page=6, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page6 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page6 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page6 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [140 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1088, page=7, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page7 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page7 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page7 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [141 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1093, page=8, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page8 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page8 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page8 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [142 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1098, page=9, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page9 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page9 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page9 used on input + line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [143 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1103, page=10, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page10 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page10 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page10 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [144 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1108, page=11, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page11 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page11 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page11 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [145 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1114, page=12, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page12 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page12 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page12 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [146 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1119, page=13, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page13 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page13 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page13 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [147 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1124, page=14, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page14 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page14 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page14 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[148 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1129, page=15, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page15 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page15 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page15 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [149 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1134, page=16, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page16 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page16 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page16 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [150 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1139, page=17, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page17 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page17 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page17 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [151 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1145, page=18, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page18 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page18 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page18 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [152 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1150, page=19, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page19 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page19 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page19 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [153 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1155, page=20, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page20 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page20 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page20 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [154 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1160, page=21, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page21 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page21 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page21 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [155 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1165, page=22, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page22 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page22 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page22 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [156 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1170, page=23, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page23 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page23 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page23 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [157 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1176, page=24, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page24 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page24 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page24 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [158 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1181, page=25, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page25 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page25 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page25 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [159 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1186, page=26, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page26 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page26 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page26 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [160 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1191, page=27, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page27 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page27 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page27 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [161 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1196, page=28, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page28 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page28 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page28 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [162 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1201, page=29, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page29 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page29 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page29 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [163 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1207, page=30, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page30 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page30 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page30 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [164 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1212, page=31, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page31 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page31 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page31 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [165 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1217, page=32, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page32 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page32 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page32 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [166 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1222, page=33, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page33 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page33 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page33 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [167 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1228, page=34, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page34 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page34 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page34 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [168 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1233, page=35, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page35 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page35 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page35 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [169 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1239, page=36, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page36 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page36 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page36 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [170 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1261, page=37, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page37 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page37 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page37 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[171 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1266, page=38, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page38 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page38 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page38 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [172 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1271, page=39, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page39 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page39 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page39 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [173 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1276, page=40, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page40 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page40 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page40 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [174 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1281, page=41, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page41 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page41 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page41 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [175 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1287, page=42, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page42 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page42 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page42 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [176 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1292, page=43, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page43 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page43 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page43 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [177 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1297, page=44, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page44 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page44 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page44 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [178 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1302, page=45, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page45 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page45 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page45 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [179 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1307, page=46, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page46 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page46 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page46 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [180 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1312, page=47, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page47 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page47 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page47 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [181 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1318, page=48, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page48 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page48 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page48 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [182 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1323, page=49, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page49 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page49 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page49 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [183 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1328, page=50, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page50 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page50 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page50 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [184 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1333, page=51, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page51 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page51 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page51 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [185 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1338, page=52, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page52 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page52 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page52 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [186 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1343, page=53, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page53 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page53 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page53 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [187 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1349, page=54, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page54 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page54 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page54 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [188 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1354, page=55, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page55 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page55 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page55 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [189 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1359, page=56, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page56 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page56 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page56 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [190 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1364, page=57, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page57 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page57 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page57 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [191 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1369, page=58, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page58 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page58 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page58 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [192 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1374, page=59, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page59 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page59 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page59 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [193 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1380, page=60, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page60 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page60 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page60 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[194 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1385, page=61, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page61 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page61 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page61 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [195 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1390, page=62, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page62 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page62 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page62 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [196 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1395, page=63, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page63 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page63 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page63 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [197 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1400, page=64, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page64 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page64 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page64 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [198 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1405, page=65, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page65 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page65 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page65 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [199 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1411, page=66, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page66 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page66 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page66 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [200 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1416, page=67, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page67 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page67 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page67 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [201 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1421, page=68, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page68 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page68 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page68 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [202 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1426, page=69, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page69 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page69 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page69 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [203 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1431, page=70, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page70 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page70 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page70 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [204 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1436, page=71, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page71 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page71 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page71 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [205 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1442, page=72, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page72 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page72 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page72 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [206 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1447, page=73, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page73 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page73 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page73 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [207 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1452, page=74, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page74 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page74 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page74 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [208 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1457, page=75, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page75 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page75 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page75 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [209 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1463, page=76, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page76 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page76 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page76 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [210 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1468, page=77, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page77 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page77 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page77 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [211 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1474, page=78, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page78 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page78 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page78 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [212 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1479, page=79, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page79 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page79 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page79 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [213 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1484, page=80, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page80 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page80 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page80 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [214 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1489, page=81, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page81 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page81 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page81 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [215 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1494, page=82, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page82 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page82 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page82 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [216 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1499, page=83, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page83 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page83 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page83 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[217 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1505, page=84, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page84 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page84 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page84 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [218 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1510, page=85, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page85 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page85 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page85 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [219 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1515, page=86, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page86 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page86 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page86 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [220 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1520, page=87, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page87 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page87 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page87 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [221 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1525, page=88, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page88 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page88 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page88 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [222 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1530, page=89, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page89 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page89 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page89 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [223 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1536, page=90, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page90 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page90 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page90 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [224 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1541, page=91, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page91 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page91 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page91 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [225 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1546, page=92, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page92 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page92 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page92 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [226 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1551, page=93, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page93 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page93 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page93 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [227 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1556, page=94, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page94 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page94 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page94 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [228 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1561, page=95, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page95 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page95 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page95 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [229 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1567, page=96, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page96 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page96 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page96 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [230 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1572, page=97, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page97 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page97 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page97 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [231 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1577, page=98, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page98 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page98 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page98 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [232 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1582, page=99, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page99 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page99 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page99 used on inpu +t line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [233 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1587, page=100, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page100 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page100 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page100 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [234 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1592, page=101, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page101 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page101 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page101 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [235 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1598, page=102, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page102 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page102 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page102 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [236 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1603, page=103, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page103 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page103 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page103 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [237 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1608, page=104, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page104 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page104 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page104 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [238 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1613, page=105, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page105 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page105 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page105 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [239 <../jaendel/jaendel_rao_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=1618, page=106, 597.50829pt x 845.0471pt> + +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page106 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page106 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page106 used on inp +ut line 282. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[240 <../jaendel/jaendel_rao_score.pdf>] +(./a_history_of_the_domino_problem_score_revised_description.aux) ) +Here is how much of TeX's memory you used: + 10653 strings out of 477985 + 210930 string characters out of 5840059 + 1864388 words of memory out of 5000000 + 30704 multiletter control sequences out of 15000+600000 + 518133 words of font info for 54 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,2268b,522s stack positions out of 10000i,1000n,20000p,200000b,200000s +< +/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb> +Output written on a_history_of_the_domino_problem_score_revised_description.pdf + (240 pages, 10104402 bytes). +PDF statistics: + 1684 PDF objects out of 1728 (max. 8388607) + 858 compressed objects within 9 object streams + 0 named destinations out of 1000 (max. 500000) + 1291 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.synctex.gz b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.synctex.gz new file mode 100644 index 0000000..6037c48 Binary files /dev/null and b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.synctex.gz differ diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.tex b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.tex new file mode 100644 index 0000000..3dc4218 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description.tex @@ -0,0 +1,286 @@ +\documentclass[10pt]{letter} + +\usepackage[a4paper, top=0.7in, bottom=0.7in, left=0.7in, right=0.7in]{geometry} +\usepackage{mathtools} +\usepackage{wasysym} +\usepackage{multicol} +\usepackage{dirtree} +\usepackage{underscore} +\usepackage{pdfpages} +\usepackage[framed,numbered]{sclang-prettifier} +\usepackage{listings} +\usepackage[obeyspaces]{url} +\usepackage{datetime2} +%\usepackage{draftwatermark} +\renewcommand{\arraystretch}{1.3} +\usepackage{graphicx} +\usepackage{enumitem} + +\DTMsetdatestyle{default} +\DTMsetup{datesep={.}} + +%\SetWatermarkColor[rgb]{1, 0.6, 0.6} +%\SetWatermarkScale{2} +%\SetWatermarkHorCenter{1.25in} +%\SetWatermarkVerCenter{1.25in} + +% Define Language +\lstdefinelanguage{Lilypond} +{ + % list of keywords + morekeywords={ + } +} + +% Set Language +\lstset{ + numbers=left, + numberstyle=\small, + numberstyle = \color{black!33}, + numbersep=8pt, + frame = single, + language={Lilypond}, +} + +\newenvironment{note}{ +\vspace{-3mm} +\small +\par +\leftskip=4em\rightskip=5em +\noindent\ignorespaces}{\par\smallskip} + +\makeatletter +\newenvironment{thebibliography}[1] + {\list{\@biblabel{\@arabic\c@enumiv}}% + {\settowidth\labelwidth{\@biblabel{#1}}% + \leftmargin\labelwidth + \advance\leftmargin\labelsep + \usecounter{enumiv}% + \let\p@enumiv\@empty + \renewcommand\theenumiv{\@arabic\c@enumiv}}% + \sloppy + \clubpenalty4000 + \@clubpenalty \clubpenalty + \widowpenalty4000% + \sfcode`\.\@m} + {\def\@noitemerr + {\@latex@warning{Empty `thebibliography' environment}}% + \endlist} +\newcommand\newblock{\hskip .11em\@plus.33em\@minus.07em} +\makeatother + +\begin{document} + +\textit{\textbf{a history of the domino problem}} \\ +a performance-installation + +\begin{flushright} +michael winter \\ schloss solitude and cdmx; 2018 - 2019 \\ +\end{flushright} + +\bigskip + +\begin{center} +\begin{tabular}{cc} + + \centering + \includegraphics[width=0.49\linewidth]{selects/maquina.jpg} + + \centering + \includegraphics[width=0.49\linewidth]{selects/discos.jpg} +\end{tabular} +\end{center} + +\bigskip + +\textbf{Description / note} + +\textit{a history of the domino problem} is a performance-installation that traces the history of an epistemological problem in mathematics about how things that one could never imagine fitting together, actually come together and unify in unexpected ways. The work comprises a set of musical compositions and a kinetic sculpture that sonify and visualize rare tilings (or mosaics) constructed from dominoes. The dominoes in these tilings are similar yet slightly different than those used in the popular game of the same name. As opposed to rectangles, they are squares with various color combinations along the edges (which can alternatively also be represented by numbers or patterns).\footnote{\url{https://en.wikipedia.org/wiki/Wang_tile}} Like in the game, the rule is that edges of adjacent dominoes in a tiling must match. + +The tilings sonified and visualized in \textit{a history of the domino problem} are rare because there is no systematic way to find them. This is due to the fact that they are \textit{aperiodic}.\footnote{\url{https://en.wikipedia.org/wiki/Aperiodic_tiling}} One can think of an aperiodic tiling like an infinite puzzle with a peculiar characteristic. Given unlimited copies of dominoes with a finite set of color/pattern combinations for the edges, there is a solution that will result in a tiling that expands infinitely. However, in that solution, any periodic/repeating structure in the tiling will eventually be interrupted. This phenomenon is one of the most intriguing aspects of the work. As the music and the visuals are derived from the tilings, the resulting textures are always shifting ever so slightly. + +The Domino Problem and its corresponding history are somewhat vexing and difficult to describe. The original problem asked if there exists an algorithm/computer program that, when given as input a finite set of dominoes with varying color combinations for the edges, can output a binary answer, `yes' or `no', whether or not copies of that set can form an infinite tiling. The reason why the Domino Problem is inextricably linked to whether or not aperiodic tilings exist is the following. The existence of aperiodic tilings would mean that such an algorithm \textit{does not} exist. The problem was first posed by Hao Wang in 1961. He actually conjectured that aperiodic tilings do not exist. However, in 1966, his student, Robert Berger, proved him wrong by discovering an infinite, aperiodic tiling constructed with copies of a set of 20,426 dominoes. With the original problem solved, mathematicians then took on the challenge of finding the smallest set of dominoes that would construct an infinite aperiodic tiling. Over the past 60 years, this number has been continually reduced until the most recent discovery of a set of 11 dominoes along with a proof that no smaller sets exist. It is a remarkable narrative/history of a particular epistemological problem that challenged a group of people not only to solve it, but to understand it to the extent possible. + +The music was composed by writing computer programs that generate and scan the tilings such that musical material and information is correlated with the dominoes. Shifting structures in the tilings are reflected by similarly shifting textures in the music. The musical compositions can act as an accompaniment to the visual component by being performed as interventions within the installation or as singular pieces in concert. The visual component of the piece consists of a kinetic sculpture that displays the tilings using visual cryptography.\footnote{\url{https://en.wikipedia.org/wiki/Visual_cryptography}} In visual cryptography, a message is encrypted by dividing the information of the message into two `shadow' images, each which look completely random independently. The message is decrypted and revealed when the shadow images are combined/overlayed in a precise orientation. The use of visual cryptography to reveal the tilings is yet another reflection of the general motivation of the piece: exploring `how things fit together in unexpected ways'. In \textit{a history of the domino problem}, the message \textit{is} the tilings. The shadow images are printed on photomasks, which are essentially high-resolution transparencies: quartz wafers with a chrome coating etched at a pixel size ranging from nano- to micrometers. I used photomasks for two reasons. One: the Domino Problem is about the limits of computation. What computers can and cannot do. Displaying the tilings using photomasks, which are typically implemented to manufacture computer chips, reflects the concept of the piece through its medium. Two: though the wafers are actually small in size, because they are printed at such high resolution, large portions of the tilings can be displayed. In other words: to go big, sometimes you have to go small. The kinetic sculpture uses a high-precision, motorized multiaxis stage to align the finely printed shadow images and reveal the tilings (along with 3 other images of poetic texts inspired by the history of the Domino Problem). The whole apparatus rests on a light source that illuminates the photomasks, which are then magnified and projected. + +\bigskip + +\textbf{Installation and performance setting} + +As an installation, the apparatus that aligns the image should be centered in a dark room such that observers can view the photomasks up close. Ideally, this should be set up with a teleprompter mirror at a 45 degree angle above the apparatus so that the viewer can see the photomasks without having to bend over. On the other side of the mirror, a video camera is placed such that the resulting projected image aligns with what the viewer sees in the teleprompter mirror. The camera side of the mirror must be darkened out with a cover in order to allow the viewer to only see the reflection of the photomasks. The projection should be as large as possible and at as high a resolution as possible. Ideally, the camera should be able to zoom into the images of the tilings to show more detail. + +In the installation, recordings of the musical pieces are played back; sometimes randomly and sometimes in sync with the respective tilings from which they were generated. The installation can be augmented (e.g. for an exhibition opening) by live performances of the musical pieces instead of the recordings. If so, direct access to the apparatus should be avoided in order for a situation where the observers can view the projected images and listen to the musical accompaniment in a tranquil and focused environment. + +A demo of the apparatus is available at: \url{https://vimeo.com/375784136}. + +\bigskip + +\textbf{Photomask alignment} + +Between the two photomasks, there are nine embedded images which can be seen at nine precise orientation organized in a 3 x 3 grid. The image area is surrounded by Moire pattern and Vernier markings to aid in the alignment. Provided below are a description of each of these markings. + +\begin{center} + \includegraphics[width=0.7\linewidth]{selects/oraclesannotated\string_cp.jpg} + \end{center} + + \begin{description}[labelindent=0.5cm] + \item [unidimensional Verniers:] These are the most useful markings for image alignment. For each axis, there are a set of coarse Verniers (bordering the image) and a set of fine Verniers (further from the image) which move 5 times the speed of the coarse Veniers. Every time an image is aligned the white blob will be centered in both the coarse and fine Verniers. These markings essentially amplify and scale the distance between the image (640 microns) and can be used by a motion tracker in a closed-loop alignment system. + \item [multidimenional Verniers:] These are Verniers that are centered in a two-dimenional space everytime an image is focused. + \item [linear Moire grating:] These gratings can be used to make sure that the plates are aligned rotationally (resulting in a completely monochrome bar without any patterns). + \item [circular Moire grating:] These gratings best represent the grid of the images. When an image is aligned the respective grating on the grid will be dark. The number of fringes denotes the accuracy of the alignment (none means perfectly aligned). + \end{description} + + +High precision optical stages are used for the alignment of the wafers. Ideally, the wafers are not touching (separated by a few microns). If the wafers touch, they will degrade over time as they move across each other. However, it is very difficult to achieve perfect alignment without the photomasks touching as the they need to be aligned in all 6 degrees of freedom ($x$, $y$, $z$, $\theta x$, $\theta y$, and $\theta z$) in order for the resulting image to be properly produced. Only the $x$ and $y$ axis need to be moved to find the images once all the other degrees of freedom are set accurately. + +The original setup is as follows. Each of the photomasks are mounted onto tilt stages to be able to align the masks together rotationally (note that a more ideal setup would use goniometer stages). One of the tilt / goniometer stages is then affixed to a stage with 3 degrees of freedom: $x$, $y$, and $z$. The other is fixed directly to an optical breadboard. + +To automate the alignment, high precision motors are used to move one of the photomasks on the $x$ and $y$ axes. In the original setup, the high precision motors are stepper motors. If the photomasks are not touching, an open-loop system can be used to automate alignment. That is, the accuracy of the step count of the motors should be sufficient for alignment. However, if the photomasks need to touch in order to produce the resulting images (as is the often the case with the original setup), the friction between the two photomasks will cause inaccuracies in an open-loop system. To compensate for this, the Vernier markings can be tracked optically (using motion-tracking software or opto-interrupts) in order to create a closed-loop system. The software used to automate the system and control the motors is detailed in the following section. + +\begin{center} + \includegraphics[width=0.7\linewidth]{selects/maquinalit\string_cp.jpg} + \end{center} + +\bigskip + +\textbf{Computer code repository and documentation} + +As the code is subject to change / improvements, the current state of the is available through a git repository at the following address: \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem}. The repository contains the computer code needed to run the installation along with all the code that generated the musical pieces and all the code / schematics / files to rebuild the installation. Further, this document along with each of the scores is marked with the date it was generated in order to verify it is the most recent version. + +%\textbf{Overview of computer code} + +%As the code is subject to change / improvements, the current state of the code is available through a git repository at the following address: \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem}. The repository contains the computer code needed to run the installation along with all the code that generated the musical pieces and all the code / schematics / files to rebuild the installation. Further, this document along with each of the scores is marked with the date it was generated in order to verify it is the most recent version. + +%The repository is organized by the various languages / formats used to generate the musical pieces and visualizations as well as control the installation. To start, I will focus on the software needed to control the installation which includes four basic components: + +%\begin{itemize}[labelindent=0.5cm] +%\item A SuperCollider program with the filename \url{installation_control.scd}. + +%\item A GUI interface written using Open Stage Control with the filename %\url{installation_control_gui.json} + +%\item A motion tracker written in Python using OpenCV to track the Verniers for a closed-loop system with the filename \url{vernier_tracker.py} + +%\item Arduino code to communicate between Supercollider and the stepper-motor drivers with the filename\\ \url{multistepper.ino} +%\end{itemize} + +%In the original setup, the Arduino code is loaded onto the Arduino and the three other programs are loaded and launched on a computer (e.g., a Raspberry Pi) connected to the Arduino to control the system. The SuperCollider program is the main control center. Both the GUI and the motion tracker (which takes in video input from the video camera) communicate to the SuperCollider program through OSC messages, which, in turn, sends serial messages to the Arduino to control the stepper motors via the stepper motor drivers. The Arduino code not only sends messages to the stepper motor drivers, but also takes input signals from the limit switches of the motors to ensure that the motors are not destroyed by running into a hard stop. + +%All the other code (primarily written in SuperCollider) was written to generate the musical pieces as well as the visualizations and is maintained in the repository for reference. For the musical pieces, the SuperCollider code generates electronic realizations of the compositions and Lilypond files for generation of the musical scores. + +%The photomasks were printed from the GDSII file format (\url{*.gds}). The workflow consisted of \url{*.png} generated by SuperCollider and then formatted into \url{*.gds} files using the Python KLayout API. However, all that is needed to reprint the photomasks are the files \url{wafer_1.gds} and \url{wafer_2.gds}. Note that the the \url{*.gds} files along with all larger files are archived in a code releases available at \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem/releases}. Again, all the other files in the repository are maintained for reference. + +\bigskip +\newpage + +\textbf{Appendix: partial historical timeline of the domino problem, selected bibliography, acknowledgments, and tiling images} + +pre-history:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +17th century & Leibniz & pioneer of binary arithmetic and the idea of computing machines \\ +ca 1928 & Hilbert & posed the original ``Entsheidungsproblem'' \\ +ca 1931 & Goedel & first showed that their exists truths that are undecidable with a finite set of axioms \\ +ca 1936 & Turing & invented the concept of the modern day computer and showed its limits yet was unfortunately persecuted for his sexuality despite being a key figure in the triumph of the allied nations against the nazi regime +\end{tabular} + +conjecture and first proof:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1961 & Wang & conjectured that aperiodic tilings of the plane did not exist \\ +ca 1966 & Berger & showed that an aperiodic set of 20000+ tiles exist (using his method this was quickly reduced to 104 then 92 by Berger and Knuth, respectively) +\end{tabular} + +first wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1971 & Robinson \& Lauchli & 56 and 40 tiles, respectively; using a similar technique of tiling arbitrarily large squares discovered independently +\end{tabular} + +second wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1986 & Penrose \& Amman & 32 and 16 tiles, respectively; using a method that translates different, non-squared aperiodic tiles into Wang tiles +\end{tabular} + +third wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1996 & Kari \& Culik & 13 tiles using an new construction with aperiodic integer sequences +\end{tabular} + +final reduction\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 2015 & Jaendel \& Rao & 11 tiles with an incredible computer-assisted proof that no smaller aperiodic sets exist +\end{tabular} + +\bigskip + +\nocite{*} +\bibliographystyle{unsrt} +\bibliography{hdp} + +\bigskip + +A special thanks to: Alice Koegel, Ana Filipovic\textsuperscript{$*$}, Angela Butterstein\textsuperscript{†}, Anita Carey-Yard\textsuperscript{†}, Aykan Safoğlu\textsuperscript{$*$}, Bjoern Gottstein, Charis von Ristok\textsuperscript{†}, Christof Pruss, Daniela Kern-Michler\textsuperscript{§}, David Frühauf\textsuperscript{$*$}, David Mathews\textsuperscript{$*$}, Deborah Walker, Denise Helene Sumi\textsuperscript{$*$}, Didier Aschour, Edith Lázár\textsuperscript{$*$}, Elena Morena Weber\textsuperscript{$*$}, Elke aus dem Moore\textsuperscript{†}, Elmar Mellert, Florian Hoelscher, Gaetan Borot, Helmut Dietz\textsuperscript{†}, Irasema Fernandez, Johanna Markert\textsuperscript{$*$}, Julian Hartbaum\textsuperscript{‡}, Konstantin Lom\textsuperscript{†}, Leon Müllner\textsuperscript{$*$}, Luise Boege\textsuperscript{$*$}, Lukas Ludwig\textsuperscript{$*$}, Luke Wilkins\textsuperscript{$*$}, Marieanne Roth\textsuperscript{†}, Mathias Irmsher\textsuperscript{‡}, Mitra Wakil\textsuperscript{$*$}, Patrizia Bach\textsuperscript{$*$}, Philip Mecke\textsuperscript{$*$}, Robert Blatt\textsuperscript{$*$}, Sander Wickersheim\textsuperscript{†}, Savyon\textsuperscript{$*$}, Silke Pflüger\textsuperscript{†}, Sílvia das Fadas\textsuperscript{$*$}, Simar Preet Kaur\textsuperscript{$*$}, Sonja Flury\textsuperscript{†}, Sophia Guggenberger\textsuperscript{$*$}, Sophie-Charlotte Thieroff\textsuperscript{†}, Stephan Martens\textsuperscript{‡}, Susanna Flock\textsuperscript{$*$}, Tom Rosenberg\textsuperscript{$*$}, Vincenzo Talluto\textsuperscript{§}, and Yuval Shenhar\textsuperscript{$*$}. + +* denotes contemporary resident at Akademie Schloss Solitude\\ +† denotes Akademie Schloss Solitude staff\\ +‡ denotes Institut für Mikroelektronik Stuttgart staff\\ +§ denotes Newport Optics staff\\ + + + +\vspace{\fill} + +\begin{flushright} +version generated: \today +\end{flushright} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/berger\string_cp.jpg} +Berger +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/robinson\string_cp.jpg} +Robinson +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/penrose\string_cp.jpg} +Penrose +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/ammann\string_cp.jpg} +Ammann +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/kari\string_cp.jpg} +Kari +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/jaendel\string_cp.jpg} +Jaendel-Rao + +\vspace*{\fill} + +\includepdf[pages={-}]{../berger/berger\string_score.pdf} +\includepdf[pages={-}]{../robinson/robinson\string_score.pdf} +\includepdf[pages={-}]{../penrose/penrose\string_score.pdf} +\includepdf[pages={-}]{../ammann/ammann\string_score.pdf} +\includepdf[pages={-}]{../kari/kari\string_score.pdf} +\includepdf[pages={-}]{../jaendel/jaendel\string_rao\string_score.pdf} + + + +\end{document} \ No newline at end of file diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.aux b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.aux new file mode 100644 index 0000000..f8f7422 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.aux @@ -0,0 +1,6 @@ +\relax +\catcode 95\active +\citation{*} +\bibstyle{unsrt} +\bibdata{hdp} +\gdef \@abspage@last{78} diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.log b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.log new file mode 100644 index 0000000..024fa09 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.log @@ -0,0 +1,2217 @@ +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 5 AUG 2023 12:03 +entering extended mode + \write18 enabled. + %&-line parsing enabled. +**a_history_of_the_domino_problem_score_revised_description_kali.tex +(./a_history_of_the_domino_problem_score_revised_description_kali.tex +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> +(/usr/share/texmf-dist/tex/latex/base/letter.cls +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class +(/usr/share/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) +) +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 +) +(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + +(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 +) +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 +) +(/usr/share/texmf-dist/tex/latex/mathtools/mathtools.sty +Package: mathtools 2022/06/29 v1.29 mathematical typesetting tools + +(/usr/share/texmf-dist/tex/latex/tools/calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count191 +\calc@Cskip=\skip50 +) +(/usr/share/texmf-dist/tex/latex/mathtools/mhsetup.sty +Package: mhsetup 2021/03/18 v1.4 programming setup (MH) +) +(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2022/04/08 v2.17n AMS math features +\@mathmargin=\skip51 + +For additional information on amsmath, use the `?' option. +(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty +Package: amstext 2021/08/26 v2.01 AMS text + +(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks18 +\ex@=\dimen152 +)) +(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen153 +) +(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2022/04/08 v2.04 operator names +) +\inf@bad=\count192 +LaTeX Info: Redefining \frac on input line 234. +\uproot@=\count193 +\leftroot@=\count194 +LaTeX Info: Redefining \overline on input line 399. +LaTeX Info: Redefining \colon on input line 410. +\classnum@=\count195 +\DOTSCASE@=\count196 +LaTeX Info: Redefining \ldots on input line 496. +LaTeX Info: Redefining \dots on input line 499. +LaTeX Info: Redefining \cdots on input line 620. +\Mathstrutbox@=\box51 +\strutbox@=\box52 +LaTeX Info: Redefining \big on input line 722. +LaTeX Info: Redefining \Big on input line 723. +LaTeX Info: Redefining \bigg on input line 724. +LaTeX Info: Redefining \Bigg on input line 725. +\big@size=\dimen154 +LaTeX Font Info: Redeclaring font encoding OML on input line 743. +LaTeX Font Info: Redeclaring font encoding OMS on input line 744. +\macc@depth=\count197 +LaTeX Info: Redefining \bmod on input line 905. +LaTeX Info: Redefining \pmod on input line 910. +LaTeX Info: Redefining \smash on input line 940. +LaTeX Info: Redefining \relbar on input line 970. +LaTeX Info: Redefining \Relbar on input line 971. +\c@MaxMatrixCols=\count198 +\dotsspace@=\muskip16 +\c@parentequation=\count199 +\dspbrk@lvl=\count266 +\tag@help=\toks19 +\row@=\count267 +\column@=\count268 +\maxfields@=\count269 +\andhelp@=\toks20 +\eqnshift@=\dimen155 +\alignsep@=\dimen156 +\tagshift@=\dimen157 +\tagwidth@=\dimen158 +\totwidth@=\dimen159 +\lineht@=\dimen160 +\@envbody=\toks21 +\multlinegap=\skip52 +\multlinetaggap=\skip53 +\mathdisplay@stack=\toks22 +LaTeX Info: Redefining \[ on input line 2953. +LaTeX Info: Redefining \] on input line 2954. +) +\g_MT_multlinerow_int=\count270 +\l_MT_multwidth_dim=\dimen161 +\origjot=\skip54 +\l_MT_shortvdotswithinadjustabove_dim=\dimen162 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen163 +\l_MT_above_intertext_sep=\dimen164 +\l_MT_below_intertext_sep=\dimen165 +\l_MT_above_shortintertext_sep=\dimen166 +\l_MT_below_shortintertext_sep=\dimen167 +\xmathstrut@box=\box53 +\xmathstrut@dim=\dimen168 +) +(/usr/share/texmf-dist/tex/latex/wasysym/wasysym.sty +Package: wasysym 2020/01/19 v2.4 Wasy-2 symbol support package +\symwasy=\mathgroup4 +LaTeX Font Info: Overwriting symbol font `wasy' in version `bold' +(Font) U/wasy/m/n --> U/wasy/b/n on input line 93. +) +(/usr/share/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi) +\c@tracingmulticols=\count271 +\mult@box=\box54 +\multicol@leftmargin=\dimen169 +\c@unbalance=\count272 +\c@collectmore=\count273 +\doublecol@number=\count274 +\multicoltolerance=\count275 +\multicolpretolerance=\count276 +\full@width=\dimen170 +\page@free=\dimen171 +\premulticols=\dimen172 +\postmulticols=\dimen173 +\multicolsep=\skip55 +\multicolbaselineskip=\skip56 +\partial@page=\box55 +\last@line=\box56 +\maxbalancingoverflow=\dimen174 +\mult@rightbox=\box57 +\mult@grightbox=\box58 +\mult@firstbox=\box59 +\mult@gfirstbox=\box60 +\@tempa=\box61 +\@tempa=\box62 +\@tempa=\box63 +\@tempa=\box64 +\@tempa=\box65 +\@tempa=\box66 +\@tempa=\box67 +\@tempa=\box68 +\@tempa=\box69 +\@tempa=\box70 +\@tempa=\box71 +\@tempa=\box72 +\@tempa=\box73 +\@tempa=\box74 +\@tempa=\box75 +\@tempa=\box76 +\@tempa=\box77 +\@tempa=\box78 +\@tempa=\box79 +\@tempa=\box80 +\@tempa=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\c@minrows=\count277 +\c@columnbadness=\count278 +\c@finalcolumnbadness=\count279 +\last@try=\dimen175 +\multicolovershoot=\dimen176 +\multicolundershoot=\dimen177 +\mult@nat@firstbox=\box97 +\colbreak@box=\box98 +\mc@col@check@num=\count280 +) +(/usr/share/texmf-dist/tex/generic/dirtree/dirtree.sty +Package: dirtree 2012/12/11 v0.32 package wrapper for dirtree + +(/usr/share/texmf-dist/tex/generic/dirtree/dirtree.tex +`dirtree' v0.32, 2012/12/11 (jcc) +\DT@offset=\dimen178 +\DT@width=\dimen179 +\DT@sep=\dimen180 +\DT@all=\dimen181 +\DT@rulewidth=\dimen182 +\DT@dotwidth=\dimen183 +\DTbaselineskip=\dimen184 +\DT@counti=\count281 +\DT@countii=\count282 +\DT@countiii=\count283 +\DT@countiv=\count284 +\DT@indent=\dimen185 +\DT@parskip=\dimen186 +\DT@baselineskip=\dimen187 +) +File: dirtree.tex 2012/12/11 v0.32 `dirtree' (jcc) +) +(/usr/share/texmf-dist/tex/latex/underscore/underscore.sty +Package: underscore 2006/09/13 +LaTeX Info: Redefining \_ on input line 42. +) +(/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) + +(/usr/share/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) +) +(/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen188 +\ESO@tempdimb=\dimen189 + +(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) + +(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 227. + +(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex +) +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. +)) +(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) +) +(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 107. +) +\Gin@req@height=\dimen190 +\Gin@req@width=\dimen191 +) +\AM@pagewidth=\dimen192 +\AM@pageheight=\dimen193 +\AM@fboxrule=\dimen194 + +(/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) +) +\pdfpages@includegraphics@status=\count285 +\AM@pagebox=\box99 +\AM@global@opts=\toks23 +\AM@pagecnt=\count286 +\AM@toc@title=\toks24 +\AM@lof@heading=\toks25 +\c@AM@survey=\count287 +\AM@templatesizebox=\box100 +) +(/usr/share/texmf-dist/tex/latex/sclang-prettifier/sclang-prettifier.sty +Package: sclang-prettifier 2014/06/14 v0.1 A package for prettyprinting SuperCo +llider source code + +(/usr/share/texmf-dist/tex/latex/base/textcomp.sty +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +(/usr/share/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count288 +\lst@gtempboxa=\box101 +\lst@token=\toks26 +\lst@length=\count289 +\lst@currlwidth=\dimen195 +\lst@column=\count290 +\lst@pos=\count291 +\lst@lostspace=\dimen196 +\lst@width=\dimen197 +\lst@newlines=\count292 +\lst@lineno=\count293 +\abovecaptionskip=\skip57 +\belowcaptionskip=\skip58 +\lst@maxwidth=\dimen198 + +(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz) +\c@lstnumber=\count294 +\lst@skipnumbers=\count295 +\lst@framebox=\box102 +) +(/usr/share/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2023/02/27 1.9 listings configuration +)) +Package: listings 2023/02/27 1.9 (Carsten Heinz) +\currentchar@scpr=\count296 +\toks@scpr=\toks27 +) +(/usr/share/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip17 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +(/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats + +(/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages + +(/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) +(/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count297 +) +(/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) + +(/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks28 +\XKV@tempa@toks=\toks29 +) +\XKV@depth=\count298 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +))) +(/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip59 +\enit@outerparindent=\dimen199 +\enit@toks=\toks30 +\enit@inbox=\box103 +\enit@count@id=\count299 +\enitdp@description=\count300 +) +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count301 +\l__pdf_internal_box=\box104 +) +(./a_history_of_the_domino_problem_score_revised_description_kali.aux) +\openout1 = `a_history_of_the_domino_problem_score_revised_description_kali.aux +'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72. +LaTeX Font Info: ... okay on input line 72. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(50.58878pt, 496.33032pt, 50.58878pt) +* v-part:(T,H,B)=(50.58878pt, 743.8693pt, 50.58878pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=496.33032pt +* \textheight=743.8693pt +* \oddsidemargin=-21.68121pt +* \evensidemargin=-21.68121pt +* \topmargin=-78.68121pt +* \headheight=12.0pt +* \headsep=45.0pt +* \topskip=10.0pt +* \footskip=25.0pt +* \marginparwidth=90.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=10.0pt plus 2.0pt minus 4.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count302 +\scratchdimen=\dimen256 +\scratchbox=\box105 +\nofMPsegments=\count303 +\nofMParguments=\count304 +\everyMPshowfont=\toks31 +\MPscratchCnt=\count305 +\MPscratchDim=\dimen257 +\MPnumerator=\count306 +\makeMPintoPDFobject=\count307 +\everyMPtoPDFconversion=\toks32 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +85. + +(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) + +(/usr/share/texmf-dist/tex/latex/graphics/lscape.sty +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) +) +Package pdflscape Info: Auto-detected driver: pdftex on input line 81. +)) +\c@lstlisting=\count308 +LaTeX Font Info: Trying to load font information for U+wasy on input line 84 +. + +(/usr/share/texmf-dist/tex/latex/wasysym/uwasy.fd +File: uwasy.fd 2020/01/19 v2.4 Wasy-2 symbol font definitions +) + +File: selects/maquina.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/maquina.jpg used on input line 87. +(pdftex.def) Requested size: 243.20457pt x 182.39622pt. + +File: selects/discos.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/discos.jpg used on input line 90. +(pdftex.def) Requested size: 243.20457pt x 182.36728pt. + +Overfull \hbox (5.41217pt too wide) in paragraph at lines 84--92 + [] + [] + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./selects/maquina.jpg> <./ +selects/discos.jpg>] + +File: selects/oraclesannotated_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/oraclesannotated_cp.jpg used on input line 12 +3. +(pdftex.def) Requested size: 347.4297pt x 231.61348pt. + [2 <./selects/oraclesannotated_cp.jpg>] + +File: selects/maquinalit_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/maquinalit_cp.jpg used on input line 141. +(pdftex.def) Requested size: 347.4297pt x 231.61348pt. + [3 <./selects/maquinalit_cp.jpg>] +No file a_history_of_the_domino_problem_score_revised_description_kali.bbl. + +Underfull \hbox (badness 10000) in paragraph at lines 221--225 + + [] + +[4{/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc}] + +File: selects/berger_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/berger_cp.jpg used on input line 237. +(pdftex.def) Requested size: 496.33032pt x 493.96979pt. + [5 <./selects/berger_cp.jpg>] + +File: selects/robinson_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/robinson_cp.jpg used on input line 244. +(pdftex.def) Requested size: 496.33032pt x 497.64297pt. + [6 <./selects/robinson_cp.jpg>] + +File: selects/penrose_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/penrose_cp.jpg used on input line 251. +(pdftex.def) Requested size: 496.33032pt x 495.04095pt. + [7 <./selects/penrose_cp.jpg>] + +File: selects/ammann_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/ammann_cp.jpg used on input line 258. +(pdftex.def) Requested size: 496.33032pt x 493.47537pt. + [8 <./selects/ammann_cp.jpg>] + +File: selects/kari_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/kari_cp.jpg used on input line 265. +(pdftex.def) Requested size: 496.33032pt x 498.39763pt. + [9 <./selects/kari_cp.jpg>] + +File: selects/jaendel_cp.jpg Graphic file (type jpg) + +Package pdftex.def Info: selects/jaendel_cp.jpg used on input line 272. +(pdftex.def) Requested size: 496.33032pt x 496.07713pt. +<../berger/berger_score.pdf, id=53, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf used on input line 277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf used on input line 277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../berger/berger_score.pdf, id=56, page=1, 597.50829pt x 845.0471pt> +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [10 <./selects/jaendel_cp.jpg>] +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../berger/berger_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../berger/berger_score.pdf , page1 used on input line +277. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [11 <../berger/berger_score.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=101, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf used on input line 278. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf used on input line 278. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=104, page=1, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page1 used on input line 278. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page1 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page1 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page1 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page1 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [12 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=130, page=2, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page2 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page2 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page2 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [13 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=135, page=3, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page3 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page3 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page3 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [14 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=139, page=4, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page4 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page4 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page4 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [15 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=143, page=5, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page5 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page5 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page5 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + +[16 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali +.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=147, page=6, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page6 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page6 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page6 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [17 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf +, id=151, page=7, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page7 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page7 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/berger_knuth/berger_ +knuth_merge_for_kali.pdf , page7 used on input line 278. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [18 <../../score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kal +i.pdf>] +<../robinson/robinson_score.pdf, id=155, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf used on input line 280 +. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf used on input line 280 +. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../robinson/robinson_score.pdf, id=158, page=1, 597.50829pt x 845.0471pt> +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 280. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../robinson/robinson_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../robinson/robinson_score.pdf , page1 used on input l +ine 280. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [19 <../robinson/robinson_score.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=192, 597.5 +1233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf used on input line 281. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf used on input line 281. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=195, page= +1, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page1 used on input line 281. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page1 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page1 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page1 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page1 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [20 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=221, page= +2, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page2 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page2 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page2 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [21 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=225, page= +3, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page3 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page3 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page3 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [22 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=229, page= +4, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page4 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page4 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page4 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [23 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=233, page= +5, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page5 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page5 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page5 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [24 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=237, page= +6, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page6 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page6 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page6 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [25 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=242, page= +7, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page7 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page7 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page7 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [26 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=246, page= +8, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page8 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page8 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page8 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [27 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=250, page= +9, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page9 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page9 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page9 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + +[28 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=254, page= +10, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page10 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page10 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page10 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [29 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=258, page= +11, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page11 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page11 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page11 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [30 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=262, page= +12, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page12 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page12 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page12 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [31 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=267, page= +13, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page13 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page13 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page13 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [32 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=271, page= +14, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page14 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page14 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page14 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [33 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf, id=275, page= +15, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page15 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page15 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf Graphic f +ile (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/robinson/robinson_no +_alto.pdf , page15 used on input line 281. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [34 <../../score/lilypond_v2.24_update/robinson/robinson_no_alto.pdf>] +<../penrose/penrose_score.pdf, id=279, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf used on input line 283. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf used on input line 283. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../penrose/penrose_score.pdf, id=282, page=1, 597.50829pt x 845.0471pt> +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 283. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 283. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 283. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 283. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../penrose/penrose_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../penrose/penrose_score.pdf , page1 used on input lin +e 283. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [35 <../penrose/penrose_score.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=319, 597.512 +33pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf used on input line 284. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf used on input line 284. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=322, page=1, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page1 used on input line 284. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page1 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page1 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page1 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page1 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [36 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=348, page=2, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page2 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page2 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page2 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [37 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=353, page=3, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page3 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page3 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page3 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [38 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=357, page=4, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page4 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page4 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page4 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [39 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=362, page=5, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page5 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page5 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page5 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [40 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=366, page=6, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page6 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page6 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page6 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [41 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=370, page=7, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page7 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page7 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page7 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + +[42 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=374, page=8, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page8 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page8 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page8 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [43 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=379, page=9, + 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page9 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page9 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page9 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [44 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=383, page=10 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page10 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page10 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page10 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [45 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=387, page=11 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page11 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page11 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page11 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [46 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=391, page=12 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page12 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page12 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page12 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [47 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=395, page=13 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page13 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page13 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page13 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [48 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=399, page=14 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page14 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page14 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page14 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [49 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=404, page=15 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page15 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page15 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page15 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + +[50 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=408, page=16 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page16 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page16 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page16 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [51 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=412, page=17 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page17 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page17 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page17 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [52 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=416, page=18 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page18 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page18 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page18 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [53 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf, id=420, page=19 +, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page19 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page19 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf Graphic fil +e (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/penrose/penrose_no_a +lto.pdf , page19 used on input line 284. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [54 <../../score/lilypond_v2.24_update/penrose/penrose_no_alto.pdf>] +<../ammann/ammann_score.pdf, id=424, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 286. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf used on input line 286. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../ammann/ammann_score.pdf, id=427, page=1, 597.50829pt x 845.0471pt> +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +286. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +286. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +286. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +286. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../ammann/ammann_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../ammann/ammann_score.pdf , page1 used on input line +286. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [55 <../ammann/ammann_score.pdf>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=465, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf used on input line 287. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf used on input line 287. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=468, page=1, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page1 used on input line 287. +(pdftex.def) Requested size: 597.51086pt x 845.04504pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page1 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page1 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page1 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page1 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [56 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=494, page=2, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page2 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page2 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page2 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [57 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=498, page=3, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page3 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page3 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page3 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [58 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=502, page=4, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page4 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page4 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page4 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + +[59 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pd +f>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=506, page=5, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page5 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page5 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page5 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [60 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df>] +<../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf, i +d=510, page=6, 597.51233pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page6 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page6 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df Graphic file (type pdf) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann_distributed/a +mmann_distributed.pdf , page6 used on input line 287. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [61 <../../score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.p +df>] +<../kari/kari_score.pdf, id=515, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf used on input line 289. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf used on input line 289. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../kari/kari_score.pdf, id=518, page=1, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 289. + +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page1 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [62 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=548, page=2, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page2 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [63 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=582, page=3, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page3 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[64 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=587, page=4, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page4 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [65 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=592, page=5, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page5 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [66 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=597, page=6, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page6 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [67 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=603, page=7, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page7 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [68 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=608, page=8, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page8 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [69 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=613, page=9, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page9 used on input line 289. + +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [70 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=618, page=10, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page10 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [71 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=623, page=11, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page11 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [72 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=628, page=12, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page12 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [73 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=634, page=13, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page13 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [74 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=639, page=14, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page14 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [75 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=644, page=15, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page15 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [76 <../kari/kari_score.pdf>] +<../kari/kari_score.pdf, id=649, page=16, 597.50829pt x 845.0471pt> +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../kari/kari_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../kari/kari_score.pdf , page16 used on input line 289 +. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + +[77 <../kari/kari_score.pdf>] +<../jaendel/jaendel_rao_score.pdf, id=654, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 +91. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf used on input line 2 +91. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +<../jaendel/jaendel_rao_score.pdf, id=657, page=1, 597.50829pt x 845.0471pt> +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 291. +(pdftex.def) Requested size: 597.50682pt x 845.04504pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 291. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 291. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 291. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. +File: ../jaendel/jaendel_rao_score.pdf Graphic file (type pdf) + +Package pdftex.def Info: ../jaendel/jaendel_rao_score.pdf , page1 used on input + line 291. +(pdftex.def) Requested size: 597.53416pt x 845.08372pt. + [78 <../jaendel/jaendel_rao_score.pdf>] +(./a_history_of_the_domino_problem_score_revised_description_kali.aux) ) +Here is how much of TeX's memory you used: + 10211 strings out of 477985 + 195616 string characters out of 5840059 + 1864388 words of memory out of 5000000 + 30250 multiletter control sequences out of 15000+600000 + 518133 words of font info for 54 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,2273b,521s stack positions out of 10000i,1000n,20000p,200000b,200000s + +Output written on a_history_of_the_domino_problem_score_revised_description_kal +i.pdf (78 pages, 7103393 bytes). +PDF statistics: + 744 PDF objects out of 1000 (max. 8388607) + 449 compressed objects within 5 object streams + 0 named destinations out of 1000 (max. 500000) + 541 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.synctex.gz b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.synctex.gz new file mode 100644 index 0000000..31a00d5 Binary files /dev/null and b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.synctex.gz differ diff --git a/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.tex b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.tex new file mode 100644 index 0000000..6818388 --- /dev/null +++ b/latex/a_history_of_the_domino_problem/a_history_of_the_domino_problem_score_revised_description_kali.tex @@ -0,0 +1,295 @@ +\documentclass[10pt]{letter} + +\usepackage[a4paper, top=0.7in, bottom=0.7in, left=0.7in, right=0.7in]{geometry} +\usepackage{mathtools} +\usepackage{wasysym} +\usepackage{multicol} +\usepackage{dirtree} +\usepackage{underscore} +\usepackage{pdfpages} +\usepackage[framed,numbered]{sclang-prettifier} +\usepackage{listings} +\usepackage[obeyspaces]{url} +\usepackage{datetime2} +%\usepackage{draftwatermark} +\renewcommand{\arraystretch}{1.3} +\usepackage{graphicx} +\usepackage{enumitem} + +\DTMsetdatestyle{default} +\DTMsetup{datesep={.}} + +%\SetWatermarkColor[rgb]{1, 0.6, 0.6} +%\SetWatermarkScale{2} +%\SetWatermarkHorCenter{1.25in} +%\SetWatermarkVerCenter{1.25in} + +% Define Language +\lstdefinelanguage{Lilypond} +{ + % list of keywords + morekeywords={ + } +} + +% Set Language +\lstset{ + numbers=left, + numberstyle=\small, + numberstyle = \color{black!33}, + numbersep=8pt, + frame = single, + language={Lilypond}, +} + +\newenvironment{note}{ +\vspace{-3mm} +\small +\par +\leftskip=4em\rightskip=5em +\noindent\ignorespaces}{\par\smallskip} + +\makeatletter +\newenvironment{thebibliography}[1] + {\list{\@biblabel{\@arabic\c@enumiv}}% + {\settowidth\labelwidth{\@biblabel{#1}}% + \leftmargin\labelwidth + \advance\leftmargin\labelsep + \usecounter{enumiv}% + \let\p@enumiv\@empty + \renewcommand\theenumiv{\@arabic\c@enumiv}}% + \sloppy + \clubpenalty4000 + \@clubpenalty \clubpenalty + \widowpenalty4000% + \sfcode`\.\@m} + {\def\@noitemerr + {\@latex@warning{Empty `thebibliography' environment}}% + \endlist} +\newcommand\newblock{\hskip .11em\@plus.33em\@minus.07em} +\makeatother + +\begin{document} + +\textit{\textbf{a history of the domino problem}} \\ +a performance-installation + +\begin{flushright} +michael winter \\ schloss solitude and cdmx; 2018 - 2019 \\ +\end{flushright} + +\bigskip + +\begin{center} +\begin{tabular}{cc} + + \centering + \includegraphics[width=0.49\linewidth]{selects/maquina.jpg} + + \centering + \includegraphics[width=0.49\linewidth]{selects/discos.jpg} +\end{tabular} +\end{center} + +\bigskip + +\textbf{Description / note} + +\textit{a history of the domino problem} is a performance-installation that traces the history of an epistemological problem in mathematics about how things that one could never imagine fitting together, actually come together and unify in unexpected ways. The work comprises a set of musical compositions and a kinetic sculpture that sonify and visualize rare tilings (or mosaics) constructed from dominoes. The dominoes in these tilings are similar yet slightly different than those used in the popular game of the same name. As opposed to rectangles, they are squares with various color combinations along the edges (which can alternatively also be represented by numbers or patterns).\footnote{\url{https://en.wikipedia.org/wiki/Wang_tile}} Like in the game, the rule is that edges of adjacent dominoes in a tiling must match. + +The tilings sonified and visualized in \textit{a history of the domino problem} are rare because there is no systematic way to find them. This is due to the fact that they are \textit{aperiodic}.\footnote{\url{https://en.wikipedia.org/wiki/Aperiodic_tiling}} One can think of an aperiodic tiling like an infinite puzzle with a peculiar characteristic. Given unlimited copies of dominoes with a finite set of color/pattern combinations for the edges, there is a solution that will result in a tiling that expands infinitely. However, in that solution, any periodic/repeating structure in the tiling will eventually be interrupted. This phenomenon is one of the most intriguing aspects of the work. As the music and the visuals are derived from the tilings, the resulting textures are always shifting ever so slightly. + +The Domino Problem and its corresponding history are somewhat vexing and difficult to describe. The original problem asked if there exists an algorithm/computer program that, when given as input a finite set of dominoes with varying color combinations for the edges, can output a binary answer, `yes' or `no', whether or not copies of that set can form an infinite tiling. The reason why the Domino Problem is inextricably linked to whether or not aperiodic tilings exist is the following. The existence of aperiodic tilings would mean that such an algorithm \textit{does not} exist. The problem was first posed by Hao Wang in 1961. He actually conjectured that aperiodic tilings do not exist. However, in 1966, his student, Robert Berger, proved him wrong by discovering an infinite, aperiodic tiling constructed with copies of a set of 20,426 dominoes. With the original problem solved, mathematicians then took on the challenge of finding the smallest set of dominoes that would construct an infinite aperiodic tiling. Over the past 60 years, this number has been continually reduced until the most recent discovery of a set of 11 dominoes along with a proof that no smaller sets exist. It is a remarkable narrative/history of a particular epistemological problem that challenged a group of people not only to solve it, but to understand it to the extent possible. + +The music was composed by writing computer programs that generate and scan the tilings such that musical material and information is correlated with the dominoes. Shifting structures in the tilings are reflected by similarly shifting textures in the music. The musical compositions can act as an accompaniment to the visual component by being performed as interventions within the installation or as singular pieces in concert. The visual component of the piece consists of a kinetic sculpture that displays the tilings using visual cryptography.\footnote{\url{https://en.wikipedia.org/wiki/Visual_cryptography}} In visual cryptography, a message is encrypted by dividing the information of the message into two `shadow' images, each which look completely random independently. The message is decrypted and revealed when the shadow images are combined/overlayed in a precise orientation. The use of visual cryptography to reveal the tilings is yet another reflection of the general motivation of the piece: exploring `how things fit together in unexpected ways'. In \textit{a history of the domino problem}, the message \textit{is} the tilings. The shadow images are printed on photomasks, which are essentially high-resolution transparencies: quartz wafers with a chrome coating etched at a pixel size ranging from nano- to micrometers. I used photomasks for two reasons. One: the Domino Problem is about the limits of computation. What computers can and cannot do. Displaying the tilings using photomasks, which are typically implemented to manufacture computer chips, reflects the concept of the piece through its medium. Two: though the wafers are actually small in size, because they are printed at such high resolution, large portions of the tilings can be displayed. In other words: to go big, sometimes you have to go small. The kinetic sculpture uses a high-precision, motorized multiaxis stage to align the finely printed shadow images and reveal the tilings (along with 3 other images of poetic texts inspired by the history of the Domino Problem). The whole apparatus rests on a light source that illuminates the photomasks, which are then magnified and projected. + +\bigskip + +\textbf{Installation and performance setting} + +As an installation, the apparatus that aligns the image should be centered in a dark room such that observers can view the photomasks up close. Ideally, this should be set up with a teleprompter mirror at a 45 degree angle above the apparatus so that the viewer can see the photomasks without having to bend over. On the other side of the mirror, a video camera is placed such that the resulting projected image aligns with what the viewer sees in the teleprompter mirror. The camera side of the mirror must be darkened out with a cover in order to allow the viewer to only see the reflection of the photomasks. The projection should be as large as possible and at as high a resolution as possible. Ideally, the camera should be able to zoom into the images of the tilings to show more detail. + +In the installation, recordings of the musical pieces are played back; sometimes randomly and sometimes in sync with the respective tilings from which they were generated. The installation can be augmented (e.g. for an exhibition opening) by live performances of the musical pieces instead of the recordings. If so, direct access to the apparatus should be avoided in order for a situation where the observers can view the projected images and listen to the musical accompaniment in a tranquil and focused environment. + +A demo of the apparatus is available at: \url{https://vimeo.com/375784136}. + +\bigskip + +\textbf{Photomask alignment} + +Between the two photomasks, there are nine embedded images which can be seen at nine precise orientation organized in a 3 x 3 grid. The image area is surrounded by Moire pattern and Vernier markings to aid in the alignment. Provided below are a description of each of these markings. + +\begin{center} + \includegraphics[width=0.7\linewidth]{selects/oraclesannotated\string_cp.jpg} + \end{center} + + \begin{description}[labelindent=0.5cm] + \item [unidimensional Verniers:] These are the most useful markings for image alignment. For each axis, there are a set of coarse Verniers (bordering the image) and a set of fine Verniers (further from the image) which move 5 times the speed of the coarse Veniers. Every time an image is aligned the white blob will be centered in both the coarse and fine Verniers. These markings essentially amplify and scale the distance between the image (640 microns) and can be used by a motion tracker in a closed-loop alignment system. + \item [multidimenional Verniers:] These are Verniers that are centered in a two-dimenional space everytime an image is focused. + \item [linear Moire grating:] These gratings can be used to make sure that the plates are aligned rotationally (resulting in a completely monochrome bar without any patterns). + \item [circular Moire grating:] These gratings best represent the grid of the images. When an image is aligned the respective grating on the grid will be dark. The number of fringes denotes the accuracy of the alignment (none means perfectly aligned). + \end{description} + + +High precision optical stages are used for the alignment of the wafers. Ideally, the wafers are not touching (separated by a few microns). If the wafers touch, they will degrade over time as they move across each other. However, it is very difficult to achieve perfect alignment without the photomasks touching as the they need to be aligned in all 6 degrees of freedom ($x$, $y$, $z$, $\theta x$, $\theta y$, and $\theta z$) in order for the resulting image to be properly produced. Only the $x$ and $y$ axis need to be moved to find the images once all the other degrees of freedom are set accurately. + +The original setup is as follows. Each of the photomasks are mounted onto tilt stages to be able to align the masks together rotationally (note that a more ideal setup would use goniometer stages). One of the tilt / goniometer stages is then affixed to a stage with 3 degrees of freedom: $x$, $y$, and $z$. The other is fixed directly to an optical breadboard. + +To automate the alignment, high precision motors are used to move one of the photomasks on the $x$ and $y$ axes. In the original setup, the high precision motors are stepper motors. If the photomasks are not touching, an open-loop system can be used to automate alignment. That is, the accuracy of the step count of the motors should be sufficient for alignment. However, if the photomasks need to touch in order to produce the resulting images (as is the often the case with the original setup), the friction between the two photomasks will cause inaccuracies in an open-loop system. To compensate for this, the Vernier markings can be tracked optically (using motion-tracking software or opto-interrupts) in order to create a closed-loop system. The software used to automate the system and control the motors is detailed in the following section. + +\begin{center} + \includegraphics[width=0.7\linewidth]{selects/maquinalit\string_cp.jpg} + \end{center} + +\bigskip + +\textbf{Computer code repository and documentation} + +As the code is subject to change / improvements, the current state of the is available through a git repository at the following address: \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem}. The repository contains the computer code needed to run the installation along with all the code that generated the musical pieces and all the code / schematics / files to rebuild the installation. Further, this document along with each of the scores is marked with the date it was generated in order to verify it is the most recent version. + +%\textbf{Overview of computer code} + +%As the code is subject to change / improvements, the current state of the code is available through a git repository at the following address: \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem}. The repository contains the computer code needed to run the installation along with all the code that generated the musical pieces and all the code / schematics / files to rebuild the installation. Further, this document along with each of the scores is marked with the date it was generated in order to verify it is the most recent version. + +%The repository is organized by the various languages / formats used to generate the musical pieces and visualizations as well as control the installation. To start, I will focus on the software needed to control the installation which includes four basic components: + +%\begin{itemize}[labelindent=0.5cm] +%\item A SuperCollider program with the filename \url{installation_control.scd}. + +%\item A GUI interface written using Open Stage Control with the filename %\url{installation_control_gui.json} + +%\item A motion tracker written in Python using OpenCV to track the Verniers for a closed-loop system with the filename \url{vernier_tracker.py} + +%\item Arduino code to communicate between Supercollider and the stepper-motor drivers with the filename\\ \url{multistepper.ino} +%\end{itemize} + +%In the original setup, the Arduino code is loaded onto the Arduino and the three other programs are loaded and launched on a computer (e.g., a Raspberry Pi) connected to the Arduino to control the system. The SuperCollider program is the main control center. Both the GUI and the motion tracker (which takes in video input from the video camera) communicate to the SuperCollider program through OSC messages, which, in turn, sends serial messages to the Arduino to control the stepper motors via the stepper motor drivers. The Arduino code not only sends messages to the stepper motor drivers, but also takes input signals from the limit switches of the motors to ensure that the motors are not destroyed by running into a hard stop. + +%All the other code (primarily written in SuperCollider) was written to generate the musical pieces as well as the visualizations and is maintained in the repository for reference. For the musical pieces, the SuperCollider code generates electronic realizations of the compositions and Lilypond files for generation of the musical scores. + +%The photomasks were printed from the GDSII file format (\url{*.gds}). The workflow consisted of \url{*.png} generated by SuperCollider and then formatted into \url{*.gds} files using the Python KLayout API. However, all that is needed to reprint the photomasks are the files \url{wafer_1.gds} and \url{wafer_2.gds}. Note that the the \url{*.gds} files along with all larger files are archived in a code releases available at \url{https://unboundedpress.org/code/mwinter/a_history_of_the_domino_problem/releases}. Again, all the other files in the repository are maintained for reference. + +\bigskip +\newpage + +\textbf{Appendix: partial historical timeline of the domino problem, selected bibliography, acknowledgments, and tiling images} + +pre-history:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +17th century & Leibniz & pioneer of binary arithmetic and the idea of computing machines \\ +ca 1928 & Hilbert & posed the original ``Entsheidungsproblem'' \\ +ca 1931 & Goedel & first showed that their exists truths that are undecidable with a finite set of axioms \\ +ca 1936 & Turing & invented the concept of the modern day computer and showed its limits yet was unfortunately persecuted for his sexuality despite being a key figure in the triumph of the allied nations against the nazi regime +\end{tabular} + +conjecture and first proof:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1961 & Wang & conjectured that aperiodic tilings of the plane did not exist \\ +ca 1966 & Berger & showed that an aperiodic set of 20000+ tiles exist (using his method this was quickly reduced to 104 then 92 by Berger and Knuth, respectively) +\end{tabular} + +first wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1971 & Robinson \& Lauchli & 56 and 40 tiles, respectively; using a similar technique of tiling arbitrarily large squares discovered independently +\end{tabular} + +second wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1986 & Penrose \& Amman & 32 and 16 tiles, respectively; using a method that translates different, non-squared aperiodic tiles into Wang tiles +\end{tabular} + +third wave of reduction:\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 1996 & Kari \& Culik & 13 tiles using an new construction with aperiodic integer sequences +\end{tabular} + +final reduction\\ +\begin{tabular}{p{0.9in}p{1.3in}p{4.0in}} +ca 2015 & Jaendel \& Rao & 11 tiles with an incredible computer-assisted proof that no smaller aperiodic sets exist +\end{tabular} + +\bigskip + +\nocite{*} +\bibliographystyle{unsrt} +\bibliography{hdp} + +\bigskip + +A special thanks to: Alice Koegel, Ana Filipovic\textsuperscript{$*$}, Angela Butterstein\textsuperscript{†}, Anita Carey-Yard\textsuperscript{†}, Aykan Safoğlu\textsuperscript{$*$}, Bjoern Gottstein, Charis von Ristok\textsuperscript{†}, Christof Pruss, Daniela Kern-Michler\textsuperscript{§}, David Frühauf\textsuperscript{$*$}, David Mathews\textsuperscript{$*$}, Deborah Walker, Denise Helene Sumi\textsuperscript{$*$}, Didier Aschour, Edith Lázár\textsuperscript{$*$}, Elena Morena Weber\textsuperscript{$*$}, Elke aus dem Moore\textsuperscript{†}, Elmar Mellert, Florian Hoelscher, Gaetan Borot, Helmut Dietz\textsuperscript{†}, Irasema Fernandez, Johanna Markert\textsuperscript{$*$}, Julian Hartbaum\textsuperscript{‡}, Konstantin Lom\textsuperscript{†}, Leon Müllner\textsuperscript{$*$}, Luise Boege\textsuperscript{$*$}, Lukas Ludwig\textsuperscript{$*$}, Luke Wilkins\textsuperscript{$*$}, Marieanne Roth\textsuperscript{†}, Mathias Irmsher\textsuperscript{‡}, Mitra Wakil\textsuperscript{$*$}, Patrizia Bach\textsuperscript{$*$}, Philip Mecke\textsuperscript{$*$}, Robert Blatt\textsuperscript{$*$}, Sander Wickersheim\textsuperscript{†}, Savyon\textsuperscript{$*$}, Silke Pflüger\textsuperscript{†}, Sílvia das Fadas\textsuperscript{$*$}, Simar Preet Kaur\textsuperscript{$*$}, Sonja Flury\textsuperscript{†}, Sophia Guggenberger\textsuperscript{$*$}, Sophie-Charlotte Thieroff\textsuperscript{†}, Stephan Martens\textsuperscript{‡}, Susanna Flock\textsuperscript{$*$}, Tom Rosenberg\textsuperscript{$*$}, Vincenzo Talluto\textsuperscript{§}, and Yuval Shenhar\textsuperscript{$*$}. + +* denotes contemporary resident at Akademie Schloss Solitude\\ +† denotes Akademie Schloss Solitude staff\\ +‡ denotes Institut für Mikroelektronik Stuttgart staff\\ +§ denotes Newport Optics staff\\ + + + +\vspace{\fill} + +\begin{flushright} +version generated: \today +\end{flushright} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/berger\string_cp.jpg} +Berger +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/robinson\string_cp.jpg} +Robinson +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/penrose\string_cp.jpg} +Penrose +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/ammann\string_cp.jpg} +Ammann +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/kari\string_cp.jpg} +Kari +\vspace*{\fill} + +\newpage +\vspace*{\fill} + \centering + \includegraphics[width=1\linewidth]{selects/jaendel\string_cp.jpg} +Jaendel-Rao + +\vspace*{\fill} + +\includepdf[pages={1-1}]{../berger/berger\string_score.pdf} +\includepdf[pages={-7}]{../../score/lilypond\string_v2.24\string_update/berger\string_knuth/berger\string_knuth\string_merge\string_for\string_kali.pdf} + +\includepdf[pages={1-1}]{../robinson/robinson\string_score.pdf} +\includepdf[pages={-15}]{../../score/lilypond\string_v2.24\string_update/robinson/robinson\string_no\string_alto.pdf} + +\includepdf[pages={1-1}]{../penrose/penrose\string_score.pdf} +\includepdf[pages={-19}]{../../score/lilypond\string_v2.24\string_update/penrose/penrose\string_no\string_alto.pdf} + +\includepdf[pages={1-1}]{../ammann/ammann\string_score.pdf} +\includepdf[pages={-6}]{../../score/lilypond\string_v2.24\string_update/ammann\string_distributed/ammann\string_distributed.pdf} + +\includepdf[pages={-}]{../kari/kari\string_score.pdf} + +\includepdf[pages={1-1}]{../jaendel/jaendel\string_rao\string_score.pdf} + + + +\end{document} \ No newline at end of file diff --git a/latex/ammann/ammann_score.aux b/latex/ammann/ammann_score.aux index 05be5cf..ace177d 100644 --- a/latex/ammann/ammann_score.aux +++ b/latex/ammann/ammann_score.aux @@ -1,2 +1,3 @@ \relax \catcode 95\active +\gdef \@abspage@last{36} diff --git a/latex/ammann/ammann_score.log b/latex/ammann/ammann_score.log index 5658443..348ef52 100644 --- a/latex/ammann/ammann_score.log +++ b/latex/ammann/ammann_score.log @@ -1,191 +1,184 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:31 +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 5 AUG 2023 11:04 entering extended mode - restricted \write18 enabled. + \write18 enabled. %&-line parsing enabled. **ammann_score.tex (./ammann_score.tex -LaTeX2e <2018-12-01> +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> (/usr/share/texmf-dist/tex/latex/base/letter.cls -Document Class: letter 2014/09/29 v1.2z Standard LaTeX document class +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class (/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) ) -\longindentation=\dimen102 -\indentedwidth=\dimen103 -\labelcount=\count80 +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 ) (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2018/04/16 v5.8 Page Geometry +Package: geometry 2020/01/02 v5.9 Page Geometry (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 ) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty -Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifvtex.sty -Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) -Package ifvtex Info: VTeX not detected. -) -(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty -Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional -) -\Gm@cnth=\count81 -\Gm@cntv=\count82 -\c@Gm@tempcnt=\count83 -\Gm@bindingoffset=\dimen104 -\Gm@wd@mp=\dimen105 -\Gm@odd@mp=\dimen106 -\Gm@even@mp=\dimen107 -\Gm@layoutwidth=\dimen108 -\Gm@layoutheight=\dimen109 -\Gm@layouthoffset=\dimen110 -\Gm@layoutvoffset=\dimen111 -\Gm@dimlist=\toks15 +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 ) (/usr/share/texmf-dist/tex/latex/underscore/underscore.sty Package: underscore 2006/09/13 LaTeX Info: Redefining \_ on input line 42. ) (/usr/share/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip10 +\Urlmuskip=\muskip16 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) (/usr/share/texmf-dist/tex/latex/tools/verbatim.sty -Package: verbatim 2014/10/28 v1.5q LaTeX2e package for verbatim enhancements -\every@verbatim=\toks16 -\verbatim@line=\toks17 -\verbatim@in@stream=\read1 +Package: verbatim 2022-07-02 v1.5u LaTeX2e package for verbatim enhancements +\every@verbatim=\toks18 +\verbatim@line=\toks19 +\verbatim@in@stream=\read2 ) (/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty -Package: pdfpages 2017/10/31 v0.5l Insert pages of external PDF documents (AM) +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) (/usr/share/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) ) (/usr/share/texmf-dist/tex/latex/tools/calc.sty Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) -\calc@Acount=\count84 -\calc@Bcount=\count85 -\calc@Adimen=\dimen112 -\calc@Bdimen=\dimen113 -\calc@Askip=\skip41 -\calc@Bskip=\skip42 +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 LaTeX Info: Redefining \setlength on input line 80. LaTeX Info: Redefining \addtolength on input line 81. -\calc@Ccount=\count86 -\calc@Cskip=\skip43 +\calc@Ccount=\count191 +\calc@Cskip=\skip50 ) (/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty -Package: eso-pic 2018/04/12 v2.0h eso-pic (RN) - -(/usr/share/texmf-dist/tex/generic/oberdiek/atbegshi.sty -Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen152 +\ESO@tempdimb=\dimen153 -(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty -Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty -Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) -)) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) (/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg File: color.cfg 2016/01/02 v1.6 sample color configuration ) -Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Driver file: pdftex.def on input line 227. (/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex ) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. )) (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) ) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) -Package graphics Info: Driver file: pdftex.def on input line 99. +Package graphics Info: Driver file: pdftex.def on input line 107. ) -\Gin@req@height=\dimen114 -\Gin@req@width=\dimen115 +\Gin@req@height=\dimen154 +\Gin@req@width=\dimen155 ) -\AM@pagewidth=\dimen116 -\AM@pageheight=\dimen117 +\AM@pagewidth=\dimen156 +\AM@pageheight=\dimen157 +\AM@fboxrule=\dimen158 (/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def -File: pppdftex.def 2017/10/31 v0.5l Pdfpages driver for pdfTeX (AM) +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) ) -\AM@pagebox=\box27 -\AM@global@opts=\toks18 -\AM@toc@title=\toks19 -\c@AM@survey=\count87 -\AM@templatesizebox=\box28 +\pdfpages@includegraphics@status=\count192 +\AM@pagebox=\box51 +\AM@global@opts=\toks20 +\AM@pagecnt=\count193 +\AM@toc@title=\toks21 +\AM@lof@heading=\toks22 +\c@AM@survey=\count194 +\AM@templatesizebox=\box52 ) (/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty -Package: datetime2 2018/07/20 v1.5.3 (NLCT) date and time formats +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats (/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty -Package: tracklang 2018/05/13 v1.3.6 (NLCT) Track Languages +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages (/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count88 +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count195 ) (/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) (/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks20 -\XKV@tempa@toks=\toks21 +\XKV@toks=\toks23 +\XKV@tempa@toks=\toks24 ) -\XKV@depth=\count89 +\XKV@depth=\count196 File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) ))) -(/usr/share/texmf-dist/tex/latex/draftwatermark/draftwatermark.sty -Package: draftwatermark 2015/02/19 1.2 Put a gray textual watermark on document - pages - -(/usr/share/texmf-dist/tex/latex/everypage/everypage.sty -Package: everypage 2007/06/20 1.1 Hooks to run on every page +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count197 +\l__pdf_internal_box=\box53 ) -\sc@wm@hcenter=\skip44 -\sc@wm@vcenter=\skip45 -\sc@wm@fontsize=\skip46 -) (./ammann_score.aux) +(./ammann_score.aux) \openout1 = `ammann_score.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: ... okay on input line 22. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. + *geometry* driver: auto-detecting *geometry* detected driver: pdftex *geometry* verbose mode - [ preamble ] result: @@ -220,771 +213,829 @@ LaTeX Font Info: ... okay on input line 22. * \@reversemarginfalse * (1in=72.27pt=25.4mm, 1cm=28.453pt) -\AtBeginShipoutBox=\box29 (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count90 -\scratchdimen=\dimen118 -\scratchbox=\box30 -\nofMPsegments=\count91 -\nofMParguments=\count92 -\everyMPshowfont=\toks22 -\MPscratchCnt=\count93 -\MPscratchDim=\dimen119 -\MPnumerator=\count94 -\makeMPintoPDFobject=\count95 -\everyMPtoPDFconversion=\toks23 -) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty -Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf - -(/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty -Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty -Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) -)) -(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty -Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty -Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty -Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty -Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) -Package ifluatex Info: LuaTeX not detected. -)))) -(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty -Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO -) -Package pdftexcmds Info: LuaTeX not detected. -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -) +\scratchcounter=\count198 +\scratchdimen=\dimen159 +\scratchbox=\box54 +\nofMPsegments=\count199 +\nofMParguments=\count266 +\everyMPshowfont=\toks25 +\MPscratchCnt=\count267 +\MPscratchDim=\dimen160 +\MPnumerator=\count268 +\makeMPintoPDFobject=\count269 +\everyMPtoPDFconversion=\toks26 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -38. -Package grfext Info: Graphics extension search list: -(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE -G,.JBIG2,.JB2,.eps] -(grfext) \AppendGraphicsExtensions on input line 456. +85. (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv e )) -(/usr/share/texmf-dist/tex/latex/oberdiek/pdflscape.sty -Package: pdflscape 2016/05/14 v0.11 Display of landscape pages in PDF (HO) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) (/usr/share/texmf-dist/tex/latex/graphics/lscape.sty -Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) ) Package pdflscape Info: Auto-detected driver: pdftex on input line 81. -) +)) File: ammann_pitches.pdf Graphic file (type pdf) Package pdftex.def Info: ammann_pitches.pdf used on input line 42. (pdftex.def) Requested size: 433.61893pt x 43.36188pt. -<../../score/lilypond/ammann/ammann.pdf, id=2, 597.51233pt x 845.0471pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf used on input -line 59. +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=2, 597.51233pt x 845.0 +471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf u +sed on input line 59. (pdftex.def) Requested size: 597.51086pt x 845.04504pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf used on input -line 59. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf u +sed on input line 59. (pdftex.def) Requested size: 597.51086pt x 845.04504pt. -<../../score/lilypond/ammann/ammann.pdf, id=5, page=1, 597.51233pt x 845.0471pt -> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on - input line 59. +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=5, page=1, 597.51233pt + x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page1 used on input line 59. (pdftex.def) Requested size: 597.51086pt x 845.04504pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on - input line 59. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page1 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - - -LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available -(Font) size <24.88> substituted on input line 59. - -[1 + [1 {/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./ammann_pitches.pdf>] -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[2 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=54, page=2, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [3 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=58, page=3, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [4 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=62, page=4, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [5 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=66, page=5, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [6 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=70, page=6, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [7 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=75, page=7, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [8 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=79, page=8, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on - input line 59. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page1 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page1 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page1 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [2 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=52, page=2, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page2 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page2 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page2 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [3 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=56, page=3, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page3 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page3 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page3 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [4 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=60, page=4, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page4 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page4 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page4 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [5 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=64, page=5, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page5 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page5 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page5 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [6 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=68, page=6, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page6 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page6 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page6 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [7 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=73, page=7, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page7 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page7 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page7 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [8 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=77, page=8, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page8 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page8 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page8 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [9 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=81, page=9, 597.51233p +t x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page9 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page9 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page9 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [10 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=85, page=10, 597.51233 +pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page10 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page10 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page10 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [11 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=89, page=11, 597.51233 +pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page11 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page11 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page11 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [12 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=93, page=12, 597.51233 +pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page12 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page12 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page12 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [13 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=98, page=13, 597.51233 +pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page13 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page13 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page13 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [14 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=102, page=14, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page14 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page14 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page14 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [15 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=106, page=15, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page15 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page15 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page15 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [16 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=110, page=16, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page16 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page16 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page16 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [17 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=114, page=17, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page17 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page17 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page17 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [18 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=118, page=18, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page18 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page18 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page18 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [19 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=123, page=19, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page19 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page19 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page19 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [20 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=127, page=20, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page20 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page20 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page20 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [21 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=131, page=21, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page21 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page21 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page21 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [22 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=135, page=22, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page22 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page22 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page22 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [23 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=139, page=23, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page23 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page23 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page23 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [24 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=143, page=24, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page24 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page24 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page24 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [25 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=148, page=25, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page25 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page25 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page25 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [26 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=152, page=26, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page26 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page26 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page26 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [27 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=156, page=27, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page27 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page27 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page27 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +[28 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=160, page=28, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page28 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page28 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page28 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [29 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=164, page=29, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page29 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page29 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page29 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [30 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=168, page=30, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page30 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page30 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page30 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [31 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=173, page=31, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page31 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page31 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page31 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. -[9 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=83, page=9, 597.51233pt x 845.0471p -t> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on - input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [10 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=87, page=10, 597.51233pt x 845.0471 -pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [11 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=91, page=11, 597.51233pt x 845.0471 -pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [12 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=95, page=12, 597.51233pt x 845.0471 -pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [13 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=100, page=13, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [14 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=104, page=14, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [15 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=108, page=15, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [16 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=112, page=16, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [17 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=116, page=17, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [18 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=120, page=18, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [19 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=125, page=19, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [20 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=129, page=20, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o -n input line 59. +[32 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=177, page=32, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page32 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page32 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page32 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [33 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=181, page=33, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page33 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page33 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page33 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [34 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=185, page=34, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page34 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page34 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page34 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. + [35 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] +<../../score/lilypond_v2.24_update/ammann/ammann.pdf, id=189, page=35, 597.5123 +3pt x 845.0471pt> +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page35 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page35 used on input line 59. +(pdftex.def) Requested size: 597.53821pt x 845.08372pt. +File: ../../score/lilypond_v2.24_update/ammann/ammann.pdf Graphic file (type pd +f) + +Package pdftex.def Info: ../../score/lilypond_v2.24_update/ammann/ammann.pdf , +page35 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. -[21 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=133, page=21, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [22 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=137, page=22, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [23 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=141, page=23, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [24 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=145, page=24, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [25 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=150, page=25, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[26 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=154, page=26, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [27 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=158, page=27, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [28 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=162, page=28, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [29 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=166, page=29, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [30 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=170, page=30, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[31 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=175, page=31, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [32 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=179, page=32, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [33 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=183, page=33, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [34 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=187, page=34, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [35 <../../score/lilypond/ammann/ammann.pdf>] -<../../score/lilypond/ammann/ammann.pdf, id=191, page=35, 597.51233pt x 845.047 -1pt> -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. -File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf) - -Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o -n input line 59. -(pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[36 <../../score/lilypond/ammann/ammann.pdf>] (./ammann_score.aux) - -LaTeX Font Warning: Size substitutions with differences -(Font) up to 117.38377pt have occurred. - +[36 <../../score/lilypond_v2.24_update/ammann/ammann.pdf>] (./ammann_score.aux) ) Here is how much of TeX's memory you used: - 6276 strings out of 492623 - 115586 string characters out of 6135670 - 188854 words of memory out of 5000000 - 10110 multiletter control sequences out of 15000+600000 - 5940 words of font info for 21 fonts, out of 8000000 for 9000 - 1141 hyphenation exceptions out of 8191 - 41i,18n,51p,1011b,514s stack positions out of 5000i,500n,10000p,200000b,80000s + 6450 strings out of 477985 + 128536 string characters out of 5840059 + 1856388 words of memory out of 5000000 + 26603 multiletter control sequences out of 15000+600000 + 514288 words of font info for 38 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,1030b,518s stack positions out of 10000i,1000n,20000p,200000b,200000s -Output written on ammann_score.pdf (36 pages, 1302449 bytes). +mti8.pfb> +Output written on ammann_score.pdf (36 pages, 1288381 bytes). PDF statistics: 218 PDF objects out of 1000 (max. 8388607) - 125 compressed objects within 2 object streams + 121 compressed objects within 2 object streams 0 named destinations out of 1000 (max. 500000) 196 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/latex/ammann/ammann_score.synctex.gz b/latex/ammann/ammann_score.synctex.gz index a14624b..e172ec2 100644 Binary files a/latex/ammann/ammann_score.synctex.gz and b/latex/ammann/ammann_score.synctex.gz differ diff --git a/latex/ammann/ammann_score.tex b/latex/ammann/ammann_score.tex index 7b5ed5c..cdebaad 100644 --- a/latex/ammann/ammann_score.tex +++ b/latex/ammann/ammann_score.tex @@ -6,18 +6,18 @@ \usepackage{verbatim} \usepackage{pdfpages} \usepackage{datetime2} -\usepackage{draftwatermark} +%\usepackage{draftwatermark} \usepackage{graphicx} \DTMsetdatestyle{default} \DTMsetup{datesep={.}} -\SetWatermarkColor[rgb]{1, 0.6, 0.6} -\SetWatermarkScale{2} -\SetWatermarkHorCenter{4in} -\SetWatermarkVerCenter{4in} -\SetWatermarkText{UNFINISHED DRAFT} -\SetWatermarkText{} +%\SetWatermarkColor[rgb]{1, 0.6, 0.6} +%\SetWatermarkScale{2} +%\SetWatermarkHorCenter{4in} +%\SetWatermarkVerCenter{4in} +%\SetWatermarkText{UNFINISHED DRAFT} +%\SetWatermarkText{} \begin{document} \thispagestyle{empty} @@ -26,13 +26,13 @@ \textit{\textbf{ammann}} \\ \normalsize from \textit{a history of the domino problem}\\ -for 5 to 8 sustaining instruments +for 4 to 8 sustaining instruments \bigskip \bigskip \normalsize -The ensemble can play any 5 or more parts (preferably as many as possible) and any 8 or more adjacent sections. If the ensemble starts after the first section (the 2nd through 13th sections), the performers should start on the first note that has an onset within the first measure of the section (replacing the tied note from the last measure of the previous section with a rest). If ending before the final section (the 8th through 19th sections), the last note of each part should be the note tied over from the penultimate measure of the section. Each part should be as distinct in timbre as possible. +The ensemble can play any 4 or more parts (preferably as many as possible) and any 6 or more adjacent sections. If the ensemble starts after the first section (the 2nd through 13th sections), the performers should start on the first note that has an onset within the first measure of the section (replacing the tied note from the last measure of the previous section with a rest). If ending before the final section (the 8th through 19th sections), the last note of each part should be the note tied over from the penultimate measure of the section. Each part should be as distinct in timbre as possible. All the parts are notated within one octave. Written above each note is an up or down arrow indicating whether the pitch be played high or low. That is, in each part, each pitch-class can occur in one of two ways: in either a higher register or a lower one (the up / down arrows should be interpreted in the same respective register throughout). Which registers are selected for each note in each part is open, but should be selected such that there is some overlap / pitch duplications among the parts and some separation. Limiting the overlap will naturally stratify the registers of the parts. The part number should generally correspond to its relative register (i.e. part 2 should be generally higher than part 1). The ensemble can explore replacing pitches of one to two of the parts with various non-pitched percussion instruments with relatively long decays. The up and down arrows would then be interpreted as two different types of the same instrument (e.g. two sizes of triangles). @@ -56,7 +56,7 @@ michael winter\\ version generated: \today \end{flushright} -\includepdf[pages={-}]{../../score/lilypond/ammann/ammann.pdf} +\includepdf[pages={-}]{../../score/lilypond\string_v2.24\string_update/ammann/ammann.pdf} \end{document} \ No newline at end of file diff --git a/latex/kari/kari_score.aux b/latex/kari/kari_score.aux index 05be5cf..01962ae 100644 --- a/latex/kari/kari_score.aux +++ b/latex/kari/kari_score.aux @@ -1,2 +1,3 @@ \relax \catcode 95\active +\gdef \@abspage@last{16} diff --git a/latex/kari/kari_score.log b/latex/kari/kari_score.log index a9b6e17..d25ca42 100644 --- a/latex/kari/kari_score.log +++ b/latex/kari/kari_score.log @@ -1,186 +1,178 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:28 +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 20 JUL 2023 18:30 entering extended mode - restricted \write18 enabled. + \write18 enabled. %&-line parsing enabled. **kari_score.tex (./kari_score.tex -LaTeX2e <2018-12-01> +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> (/usr/share/texmf-dist/tex/latex/base/letter.cls -Document Class: letter 2014/09/29 v1.2z Standard LaTeX document class +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class (/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) ) -\longindentation=\dimen102 -\indentedwidth=\dimen103 -\labelcount=\count80 +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 ) (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2018/04/16 v5.8 Page Geometry +Package: geometry 2020/01/02 v5.9 Page Geometry (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 ) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty -Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifvtex.sty -Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) -Package ifvtex Info: VTeX not detected. -) -(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty -Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional -) -\Gm@cnth=\count81 -\Gm@cntv=\count82 -\c@Gm@tempcnt=\count83 -\Gm@bindingoffset=\dimen104 -\Gm@wd@mp=\dimen105 -\Gm@odd@mp=\dimen106 -\Gm@even@mp=\dimen107 -\Gm@layoutwidth=\dimen108 -\Gm@layoutheight=\dimen109 -\Gm@layouthoffset=\dimen110 -\Gm@layoutvoffset=\dimen111 -\Gm@dimlist=\toks15 +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 ) (/usr/share/texmf-dist/tex/latex/underscore/underscore.sty Package: underscore 2006/09/13 LaTeX Info: Redefining \_ on input line 42. ) (/usr/share/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip10 +\Urlmuskip=\muskip16 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) (/usr/share/texmf-dist/tex/latex/tools/verbatim.sty -Package: verbatim 2014/10/28 v1.5q LaTeX2e package for verbatim enhancements -\every@verbatim=\toks16 -\verbatim@line=\toks17 -\verbatim@in@stream=\read1 +Package: verbatim 2022-07-02 v1.5u LaTeX2e package for verbatim enhancements +\every@verbatim=\toks18 +\verbatim@line=\toks19 +\verbatim@in@stream=\read2 ) (/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty -Package: pdfpages 2017/10/31 v0.5l Insert pages of external PDF documents (AM) +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) (/usr/share/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) ) (/usr/share/texmf-dist/tex/latex/tools/calc.sty Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) -\calc@Acount=\count84 -\calc@Bcount=\count85 -\calc@Adimen=\dimen112 -\calc@Bdimen=\dimen113 -\calc@Askip=\skip41 -\calc@Bskip=\skip42 +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 LaTeX Info: Redefining \setlength on input line 80. LaTeX Info: Redefining \addtolength on input line 81. -\calc@Ccount=\count86 -\calc@Cskip=\skip43 +\calc@Ccount=\count191 +\calc@Cskip=\skip50 ) (/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty -Package: eso-pic 2018/04/12 v2.0h eso-pic (RN) - -(/usr/share/texmf-dist/tex/generic/oberdiek/atbegshi.sty -Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen152 +\ESO@tempdimb=\dimen153 -(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty -Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty -Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) -)) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) (/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg File: color.cfg 2016/01/02 v1.6 sample color configuration ) -Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Driver file: pdftex.def on input line 227. (/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex ) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. )) (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) ) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) -Package graphics Info: Driver file: pdftex.def on input line 99. +Package graphics Info: Driver file: pdftex.def on input line 107. ) -\Gin@req@height=\dimen114 -\Gin@req@width=\dimen115 +\Gin@req@height=\dimen154 +\Gin@req@width=\dimen155 ) -\AM@pagewidth=\dimen116 -\AM@pageheight=\dimen117 +\AM@pagewidth=\dimen156 +\AM@pageheight=\dimen157 +\AM@fboxrule=\dimen158 (/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def -File: pppdftex.def 2017/10/31 v0.5l Pdfpages driver for pdfTeX (AM) +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) ) -\AM@pagebox=\box27 -\AM@global@opts=\toks18 -\AM@toc@title=\toks19 -\c@AM@survey=\count87 -\AM@templatesizebox=\box28 +\pdfpages@includegraphics@status=\count192 +\AM@pagebox=\box51 +\AM@global@opts=\toks20 +\AM@pagecnt=\count193 +\AM@toc@title=\toks21 +\AM@lof@heading=\toks22 +\c@AM@survey=\count194 +\AM@templatesizebox=\box52 ) (/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty -Package: datetime2 2018/07/20 v1.5.3 (NLCT) date and time formats +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats (/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty -Package: tracklang 2018/05/13 v1.3.6 (NLCT) Track Languages +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages (/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count88 +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count195 ) (/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) (/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks20 -\XKV@tempa@toks=\toks21 +\XKV@toks=\toks23 +\XKV@tempa@toks=\toks24 ) -\XKV@depth=\count89 +\XKV@depth=\count196 File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) ))) -(/usr/share/texmf-dist/tex/latex/draftwatermark/draftwatermark.sty -Package: draftwatermark 2015/02/19 1.2 Put a gray textual watermark on document - pages - -(/usr/share/texmf-dist/tex/latex/everypage/everypage.sty -Package: everypage 2007/06/20 1.1 Hooks to run on every page +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count197 +\l__pdf_internal_box=\box53 ) -\sc@wm@hcenter=\skip44 -\sc@wm@vcenter=\skip45 -\sc@wm@fontsize=\skip46 -) (./kari_score.aux) +(./kari_score.aux) \openout1 = `kari_score.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: ... okay on input line 22. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. @@ -221,69 +213,40 @@ LaTeX Font Info: ... okay on input line 22. * \@reversemarginfalse * (1in=72.27pt=25.4mm, 1cm=28.453pt) -\AtBeginShipoutBox=\box29 (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count90 -\scratchdimen=\dimen118 -\scratchbox=\box30 -\nofMPsegments=\count91 -\nofMParguments=\count92 -\everyMPshowfont=\toks22 -\MPscratchCnt=\count93 -\MPscratchDim=\dimen119 -\MPnumerator=\count94 -\makeMPintoPDFobject=\count95 -\everyMPtoPDFconversion=\toks23 -) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty -Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf - -(/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty -Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty -Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) -)) -(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty -Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty -Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty -Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty -Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) -Package ifluatex Info: LuaTeX not detected. -)))) -(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty -Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO -) -Package pdftexcmds Info: LuaTeX not detected. -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -) +\scratchcounter=\count198 +\scratchdimen=\dimen159 +\scratchbox=\box54 +\nofMPsegments=\count199 +\nofMParguments=\count266 +\everyMPshowfont=\toks25 +\MPscratchCnt=\count267 +\MPscratchDim=\dimen160 +\MPnumerator=\count268 +\makeMPintoPDFobject=\count269 +\everyMPtoPDFconversion=\toks26 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -38. -Package grfext Info: Graphics extension search list: -(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE -G,.JBIG2,.JB2,.eps] -(grfext) \AppendGraphicsExtensions on input line 456. +85. (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv e )) -(/usr/share/texmf-dist/tex/latex/oberdiek/pdflscape.sty -Package: pdflscape 2016/05/14 v0.11 Display of landscape pages in PDF (HO) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) (/usr/share/texmf-dist/tex/latex/graphics/lscape.sty -Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) ) Package pdflscape Info: Auto-detected driver: pdftex on input line 81. -) +)) File: dynamic_curve.pdf Graphic file (type pdf) @@ -313,12 +276,7 @@ File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1 used on input line 64. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - - -LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available -(Font) size <24.88> substituted on input line 64. - -[1 + [1 {/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./dynamic_curve.pdf>] File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) @@ -336,8 +294,7 @@ File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1 used on input line 64. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[2 <../../score/lilypond/kari_culik/kari_culik.pdf>] + [2 <../../score/lilypond/kari_culik/kari_culik.pdf>] <../../score/lilypond/kari_culik/kari_culik.pdf, id=47, page=2, 597.51233pt x 8 45.0471pt> File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) @@ -391,7 +348,7 @@ File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page4 used on input line 64. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. -[5 <../../score/lilypond/kari_culik/kari_culik.pdf>] + [5 <../../score/lilypond/kari_culik/kari_culik.pdf>] <../../score/lilypond/kari_culik/kari_culik.pdf, id=59, page=5, 597.51233pt x 8 45.0471pt> File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) @@ -445,7 +402,7 @@ File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page7 used on input line 64. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. -[8 <../../score/lilypond/kari_culik/kari_culik.pdf>] + [8 <../../score/lilypond/kari_culik/kari_culik.pdf>] <../../score/lilypond/kari_culik/kari_culik.pdf, id=72, page=8, 597.51233pt x 8 45.0471pt> File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) @@ -589,31 +546,27 @@ File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1 5 used on input line 64. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [16 <../../score/lilypond/kari_culik/kari_culik.pdf>] (./kari_score.aux) - -LaTeX Font Warning: Size substitutions with differences -(Font) up to 117.38377pt have occurred. - - ) + [16 <../../score/lilypond/kari_culik/kari_culik.pdf>] +(./kari_score.aux) ) Here is how much of TeX's memory you used: - 6216 strings out of 492623 - 112587 string characters out of 6135670 - 188854 words of memory out of 5000000 - 10050 multiletter control sequences out of 15000+600000 - 5940 words of font info for 21 fonts, out of 8000000 for 9000 - 1141 hyphenation exceptions out of 8191 - 41i,18n,51p,839b,514s stack positions out of 5000i,500n,10000p,200000b,80000s - -Output written on kari_score.pdf (16 pages, 367843 bytes). + 6390 strings out of 477985 + 124081 string characters out of 5840059 + 1857388 words of memory out of 5000000 + 26543 multiletter control sequences out of 15000+600000 + 514288 words of font info for 38 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,752b,518s stack positions out of 10000i,1000n,20000p,200000b,200000s + +Output written on kari_score.pdf (16 pages, 371160 bytes). PDF statistics: - 127 PDF objects out of 1000 (max. 8388607) + 132 PDF objects out of 1000 (max. 8388607) 78 compressed objects within 1 object stream 0 named destinations out of 1000 (max. 500000) 96 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/latex/kari/kari_score.synctex.gz b/latex/kari/kari_score.synctex.gz index e7fd4c1..fc81f9d 100644 Binary files a/latex/kari/kari_score.synctex.gz and b/latex/kari/kari_score.synctex.gz differ diff --git a/latex/kari/kari_score.tex b/latex/kari/kari_score.tex index 79b40f2..1f9f6d4 100644 --- a/latex/kari/kari_score.tex +++ b/latex/kari/kari_score.tex @@ -6,18 +6,18 @@ \usepackage{verbatim} \usepackage{pdfpages} \usepackage{datetime2} -\usepackage{draftwatermark} +%\usepackage{draftwatermark} \usepackage{graphicx} \DTMsetdatestyle{default} \DTMsetup{datesep={.}} -\SetWatermarkColor[rgb]{1, 0.6, 0.6} -\SetWatermarkScale{2} -\SetWatermarkHorCenter{4in} -\SetWatermarkVerCenter{4in} -\SetWatermarkText{UNFINISHED DRAFT} -\SetWatermarkText{} +%\SetWatermarkColor[rgb]{1, 0.6, 0.6} +%\SetWatermarkScale{2} +%\SetWatermarkHorCenter{4in} +%\SetWatermarkVerCenter{4in} +%\SetWatermarkText{UNFINISHED DRAFT} +%\SetWatermarkText{} \begin{document} \thispagestyle{empty} @@ -32,7 +32,7 @@ for sustaining instruments and noise / percussion \bigskip \normalsize -The piece consists of a set of `ensemble' instruments notated in the top staff group along with a bass part and a noise / percussion part notated in the bottom staff group. At least 3 of the ensemble parts should be performed (but preferably all). Each of the the ensemble parts span several octaves. To the extent possible, each pitch should be played in the written register. If a single instrument cannot cover the entire range, the part may be played by two instruments. Another option is to transpose or omit notes that are out of range while maintaining a generally open registral spacing and ensuring that the piece does not feel too sparse / empty. Each ensemble part should be as distinct in timbre as possible. +The piece consists of a set of `ensemble' instruments notated in the top staff group along with a bass part and a noise / percussion part notated in the bottom staff group. At least 3 of the ensemble parts should be performed (but preferably all). Each of the ensemble parts span several octaves. To the extent possible, each pitch should be played in the written register. If a single instrument cannot cover the entire range, the part may be played by two instruments. Another option is to transpose or omit notes that are out of range while maintaining a generally open registral spacing and ensuring that the piece does not feel too sparse / empty. Each ensemble part should be as distinct in timbre as possible. The ensemble can play any 4 or more adjacent sections. If the ensemble starts after the first section (the 2nd through 7th sections), the performers should ignore that the note is tied from a note in the previous measure (the last measure of the previous section). If ending before the final section (the 4th through 9th sections), the performers should ignore that the note is tied to a note in the following measure (the first measure of the following section). diff --git a/latex/penrose/penrose_score.aux b/latex/penrose/penrose_score.aux index 05be5cf..7abc3f0 100644 --- a/latex/penrose/penrose_score.aux +++ b/latex/penrose/penrose_score.aux @@ -1,2 +1,3 @@ \relax \catcode 95\active +\gdef \@abspage@last{31} diff --git a/latex/penrose/penrose_score.log b/latex/penrose/penrose_score.log index b235ac1..ba07c9b 100644 --- a/latex/penrose/penrose_score.log +++ b/latex/penrose/penrose_score.log @@ -1,186 +1,178 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:27 +This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023/Arch Linux) (preloaded format=pdflatex 2023.7.4) 20 JUL 2023 18:32 entering extended mode - restricted \write18 enabled. + \write18 enabled. %&-line parsing enabled. **penrose_score.tex (./penrose_score.tex -LaTeX2e <2018-12-01> +LaTeX2e <2022-11-01> patch level 1 +L3 programming layer <2023-02-22> (/usr/share/texmf-dist/tex/latex/base/letter.cls -Document Class: letter 2014/09/29 v1.2z Standard LaTeX document class +Document Class: letter 2021/12/07 v1.3c Standard LaTeX document class (/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) +File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) ) -\longindentation=\dimen102 -\indentedwidth=\dimen103 -\labelcount=\count80 +\longindentation=\dimen140 +\indentedwidth=\dimen141 +\labelcount=\count185 ) (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2018/04/16 v5.8 Page Geometry +Package: geometry 2020/01/02 v5.9 Page Geometry (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 +Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 ) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty -Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ifvtex.sty -Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) -Package ifvtex Info: VTeX not detected. -) -(/usr/share/texmf-dist/tex/generic/ifxetex/ifxetex.sty -Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional -) -\Gm@cnth=\count81 -\Gm@cntv=\count82 -\c@Gm@tempcnt=\count83 -\Gm@bindingoffset=\dimen104 -\Gm@wd@mp=\dimen105 -\Gm@odd@mp=\dimen106 -\Gm@even@mp=\dimen107 -\Gm@layoutwidth=\dimen108 -\Gm@layoutheight=\dimen109 -\Gm@layouthoffset=\dimen110 -\Gm@layoutvoffset=\dimen111 -\Gm@dimlist=\toks15 +(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + +(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count186 +\Gm@cntv=\count187 +\c@Gm@tempcnt=\count188 +\Gm@bindingoffset=\dimen142 +\Gm@wd@mp=\dimen143 +\Gm@odd@mp=\dimen144 +\Gm@even@mp=\dimen145 +\Gm@layoutwidth=\dimen146 +\Gm@layoutheight=\dimen147 +\Gm@layouthoffset=\dimen148 +\Gm@layoutvoffset=\dimen149 +\Gm@dimlist=\toks17 ) (/usr/share/texmf-dist/tex/latex/underscore/underscore.sty Package: underscore 2006/09/13 LaTeX Info: Redefining \_ on input line 42. ) (/usr/share/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip10 +\Urlmuskip=\muskip16 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) (/usr/share/texmf-dist/tex/latex/tools/verbatim.sty -Package: verbatim 2014/10/28 v1.5q LaTeX2e package for verbatim enhancements -\every@verbatim=\toks16 -\verbatim@line=\toks17 -\verbatim@in@stream=\read1 +Package: verbatim 2022-07-02 v1.5u LaTeX2e package for verbatim enhancements +\every@verbatim=\toks18 +\verbatim@line=\toks19 +\verbatim@in@stream=\read2 ) (/usr/share/texmf-dist/tex/latex/pdfpages/pdfpages.sty -Package: pdfpages 2017/10/31 v0.5l Insert pages of external PDF documents (AM) +Package: pdfpages 2022/12/19 v0.5x Insert pages of external PDF documents (AM) (/usr/share/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) ) (/usr/share/texmf-dist/tex/latex/tools/calc.sty Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) -\calc@Acount=\count84 -\calc@Bcount=\count85 -\calc@Adimen=\dimen112 -\calc@Bdimen=\dimen113 -\calc@Askip=\skip41 -\calc@Bskip=\skip42 +\calc@Acount=\count189 +\calc@Bcount=\count190 +\calc@Adimen=\dimen150 +\calc@Bdimen=\dimen151 +\calc@Askip=\skip48 +\calc@Bskip=\skip49 LaTeX Info: Redefining \setlength on input line 80. LaTeX Info: Redefining \addtolength on input line 81. -\calc@Ccount=\count86 -\calc@Cskip=\skip43 +\calc@Ccount=\count191 +\calc@Cskip=\skip50 ) (/usr/share/texmf-dist/tex/latex/eso-pic/eso-pic.sty -Package: eso-pic 2018/04/12 v2.0h eso-pic (RN) +Package: eso-pic 2020/10/14 v3.0a eso-pic (RN) +\ESO@tempdima=\dimen152 +\ESO@tempdimb=\dimen153 -(/usr/share/texmf-dist/tex/generic/oberdiek/atbegshi.sty -Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty -Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) -) -(/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty -Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) -)) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) +Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) (/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg File: color.cfg 2016/01/02 v1.6 sample color configuration ) -Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Driver file: pdftex.def on input line 227. (/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex ) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. +Package xcolor Info: Model `RGB' extended on input line 1369. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. )) (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) +Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) +Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +Package: trig 2021/08/11 v1.11 sin cos tan (DPC) ) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) -Package graphics Info: Driver file: pdftex.def on input line 99. +Package graphics Info: Driver file: pdftex.def on input line 107. ) -\Gin@req@height=\dimen114 -\Gin@req@width=\dimen115 +\Gin@req@height=\dimen154 +\Gin@req@width=\dimen155 ) -\AM@pagewidth=\dimen116 -\AM@pageheight=\dimen117 +\AM@pagewidth=\dimen156 +\AM@pageheight=\dimen157 +\AM@fboxrule=\dimen158 (/usr/share/texmf-dist/tex/latex/pdfpages/pppdftex.def -File: pppdftex.def 2017/10/31 v0.5l Pdfpages driver for pdfTeX (AM) +File: pppdftex.def 2022/12/19 v0.5x Pdfpages driver for pdfTeX (AM) ) -\AM@pagebox=\box27 -\AM@global@opts=\toks18 -\AM@toc@title=\toks19 -\c@AM@survey=\count87 -\AM@templatesizebox=\box28 +\pdfpages@includegraphics@status=\count192 +\AM@pagebox=\box51 +\AM@global@opts=\toks20 +\AM@pagecnt=\count193 +\AM@toc@title=\toks21 +\AM@lof@heading=\toks22 +\c@AM@survey=\count194 +\AM@templatesizebox=\box52 ) (/usr/share/texmf-dist/tex/latex/datetime2/datetime2.sty -Package: datetime2 2018/07/20 v1.5.3 (NLCT) date and time formats +Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats (/usr/share/texmf-dist/tex/latex/tracklang/tracklang.sty -Package: tracklang 2018/05/13 v1.3.6 (NLCT) Track Languages +Package: tracklang 2022/12/13 v1.6.1 (NLCT) Track Languages (/usr/share/texmf-dist/tex/generic/tracklang/tracklang.tex)) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count88 +Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count195 ) (/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2014/12/03 v2.7a package option processing (HA) +Package: xkeyval 2022/06/16 v2.9 package option processing (HA) (/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks20 -\XKV@tempa@toks=\toks21 +\XKV@toks=\toks23 +\XKV@tempa@toks=\toks24 ) -\XKV@depth=\count89 +\XKV@depth=\count196 File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) ))) -(/usr/share/texmf-dist/tex/latex/draftwatermark/draftwatermark.sty -Package: draftwatermark 2015/02/19 1.2 Put a gray textual watermark on document - pages - -(/usr/share/texmf-dist/tex/latex/everypage/everypage.sty -Package: everypage 2007/06/20 1.1 Hooks to run on every page +(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def +File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX) +\l__color_backend_stack_int=\count197 +\l__pdf_internal_box=\box53 ) -\sc@wm@hcenter=\skip44 -\sc@wm@vcenter=\skip45 -\sc@wm@fontsize=\skip46 -) (./penrose_score.aux) +(./penrose_score.aux) \openout1 = `penrose_score.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 22. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 22. +LaTeX Font Info: ... okay on input line 22. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 22. LaTeX Font Info: ... okay on input line 22. @@ -221,69 +213,40 @@ LaTeX Font Info: ... okay on input line 22. * \@reversemarginfalse * (1in=72.27pt=25.4mm, 1cm=28.453pt) -\AtBeginShipoutBox=\box29 (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count90 -\scratchdimen=\dimen118 -\scratchbox=\box30 -\nofMPsegments=\count91 -\nofMParguments=\count92 -\everyMPshowfont=\toks22 -\MPscratchCnt=\count93 -\MPscratchDim=\dimen119 -\MPnumerator=\count94 -\makeMPintoPDFobject=\count95 -\everyMPtoPDFconversion=\toks23 -) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty -Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf - -(/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty -Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty -Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) -)) -(/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty -Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty -Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty -Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) - -(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty -Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) -Package ifluatex Info: LuaTeX not detected. -)))) -(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty -Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO -) -Package pdftexcmds Info: LuaTeX not detected. -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -) +\scratchcounter=\count198 +\scratchdimen=\dimen159 +\scratchbox=\box54 +\nofMPsegments=\count199 +\nofMParguments=\count266 +\everyMPshowfont=\toks25 +\MPscratchCnt=\count267 +\MPscratchDim=\dimen160 +\MPnumerator=\count268 +\makeMPintoPDFobject=\count269 +\everyMPtoPDFconversion=\toks26 +) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -38. -Package grfext Info: Graphics extension search list: -(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE -G,.JBIG2,.JB2,.eps] -(grfext) \AppendGraphicsExtensions on input line 456. +85. (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv e )) -(/usr/share/texmf-dist/tex/latex/oberdiek/pdflscape.sty -Package: pdflscape 2016/05/14 v0.11 Display of landscape pages in PDF (HO) +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape.sty +Package: pdflscape 2022-10-27 v0.13 Display of landscape pages in PDF + +(/usr/share/texmf-dist/tex/latex/pdflscape/pdflscape-nometadata.sty +Package: pdflscape-nometadata 2022-10-28 v0.13 Display of landscape pages in PD +F (HO) (/usr/share/texmf-dist/tex/latex/graphics/lscape.sty -Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) +Package: lscape 2020/05/28 v3.02 Landscape Pages (DPC) ) Package pdflscape Info: Auto-detected driver: pdftex on input line 81. -) +)) File: penrose_pitches.pdf Graphic file (type pdf) @@ -312,12 +275,7 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - - -LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available -(Font) size <24.88> substituted on input line 59. - -[1 + [1 {/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./penrose_pitches.pdf>] File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -335,8 +293,7 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[2 <../../score/lilypond/penrose/penrose.pdf>] + [2 <../../score/lilypond/penrose/penrose.pdf>] <../../score/lilypond/penrose/penrose.pdf, id=52, page=2, 597.51233pt x 845.047 1pt> File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -426,8 +383,7 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page6 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[7 <../../score/lilypond/penrose/penrose.pdf>] + [7 <../../score/lilypond/penrose/penrose.pdf>] <../../score/lilypond/penrose/penrose.pdf, id=73, page=7, 597.51233pt x 845.047 1pt> File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -517,8 +473,7 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page11 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[12 <../../score/lilypond/penrose/penrose.pdf>] + [12 <../../score/lilypond/penrose/penrose.pdf>] <../../score/lilypond/penrose/penrose.pdf, id=93, page=12, 597.51233pt x 845.04 71pt> File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -644,7 +599,8 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page18 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [19 <../../score/lilypond/penrose/penrose.pdf>] + +[19 <../../score/lilypond/penrose/penrose.pdf>] <../../score/lilypond/penrose/penrose.pdf, id=123, page=19, 597.51233pt x 845.0 471pt> File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -842,8 +798,7 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page29 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - -[30 <../../score/lilypond/penrose/penrose.pdf>] + [30 <../../score/lilypond/penrose/penrose.pdf>] <../../score/lilypond/penrose/penrose.pdf, id=168, page=30, 597.51233pt x 845.0 471pt> File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) @@ -861,31 +816,27 @@ File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf) Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page30 used on input line 59. (pdftex.def) Requested size: 597.53821pt x 845.08372pt. - [31 <../../score/lilypond/penrose/penrose.pdf>] (./penrose_score.aux) - -LaTeX Font Warning: Size substitutions with differences -(Font) up to 117.38377pt have occurred. - - ) + [31 <../../score/lilypond/penrose/penrose.pdf>] +(./penrose_score.aux) ) Here is how much of TeX's memory you used: - 6261 strings out of 492623 - 114946 string characters out of 6135670 - 187854 words of memory out of 5000000 - 10095 multiletter control sequences out of 15000+600000 - 5940 words of font info for 21 fonts, out of 8000000 for 9000 - 1141 hyphenation exceptions out of 8191 - 41i,18n,51p,842b,514s stack positions out of 5000i,500n,10000p,200000b,80000s - -Output written on penrose_score.pdf (31 pages, 1137754 bytes). + 6435 strings out of 477985 + 126426 string characters out of 5840059 + 1854388 words of memory out of 5000000 + 26588 multiletter control sequences out of 15000+600000 + 514288 words of font info for 38 fonts, out of 8000000 for 9000 + 14 hyphenation exceptions out of 8191 + 72i,17n,76p,647b,518s stack positions out of 10000i,1000n,20000p,200000b,200000s + +Output written on penrose_score.pdf (31 pages, 1140680 bytes). PDF statistics: - 196 PDF objects out of 1000 (max. 8388607) + 201 PDF objects out of 1000 (max. 8388607) 115 compressed objects within 2 object streams 0 named destinations out of 1000 (max. 500000) 171 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/latex/penrose/penrose_score.synctex.gz b/latex/penrose/penrose_score.synctex.gz index 7ce3490..cf83772 100644 Binary files a/latex/penrose/penrose_score.synctex.gz and b/latex/penrose/penrose_score.synctex.gz differ diff --git a/latex/penrose/penrose_score.tex b/latex/penrose/penrose_score.tex index 7f90891..b3872e0 100644 --- a/latex/penrose/penrose_score.tex +++ b/latex/penrose/penrose_score.tex @@ -6,18 +6,18 @@ \usepackage{verbatim} \usepackage{pdfpages} \usepackage{datetime2} -\usepackage{draftwatermark} +%\usepackage{draftwatermark} \usepackage{graphicx} \DTMsetdatestyle{default} \DTMsetup{datesep={.}} -\SetWatermarkColor[rgb]{1, 0.6, 0.6} -\SetWatermarkScale{2} -\SetWatermarkHorCenter{4in} -\SetWatermarkVerCenter{4in} -\SetWatermarkText{UNFINISHED DRAFT} -\SetWatermarkText{} +%\SetWatermarkColor[rgb]{1, 0.6, 0.6} +%\SetWatermarkScale{2} +%\SetWatermarkHorCenter{4in} +%\SetWatermarkVerCenter{4in} +%\SetWatermarkText{UNFINISHED DRAFT} +%\SetWatermarkText{} \begin{document} \thispagestyle{empty} @@ -32,7 +32,7 @@ for 4 to 6 sustaining instruments \bigskip \normalsize -The ensemble can play any 4 or more parts (preferably as many as possible) and any 8 or more adjacent sections. The ensemble can explore replacing pitches of the one of the outer parts with various non-pitched percussion instruments with relatively long decays. +The ensemble can play any 4 or more parts (preferably as many as possible) and any 8 or more adjacent sections. The ensemble can explore replacing pitches of one of the outer parts with various non-pitched percussion instruments with relatively long decays. The piece should feel rather tranquil with a relatively constant dynamic throughout the piece. Parts with a higher temporal density at any given point should rise slightly above the rest of the ensemble. This sense of phrasing should come out naturally based on the temporal density alone, but can be further articulated by the performers applying a subtle swell over sequences of notes with relatively shorter durations. As a result, each section should be heard as a series of undulations / breaths. Performers may also occasionally omit or cut short a note in order to breathe or give a sense of phrasing. diff --git a/live_utilities/supercollider/live_utilities.scd b/live_utilities/supercollider/live_utilities.scd index 5780d01..7b08a56 100644 --- a/live_utilities/supercollider/live_utilities.scd +++ b/live_utilities/supercollider/live_utilities.scd @@ -66,7 +66,7 @@ s.waitForBoot({ b = 6.collect({var buf = Buffer.alloc(s, 512, 1); buf.sine1(1.0 / 5.collect({arg i; pow(i + 1, 5.0.rand + 1)}), true, true, true)}); SynthDef(\ammann, {arg freq, amp, del = 5, gate = 1, sustain = 1, buf = 0, out = 0; - Out.ar(out, Osc.ar(Select.kr(buf, b), freq, 0, amp) * EnvGen.kr(Env.adsr(0.05, sustain, 0.5, 0.1), gate, 1, 0, 1, doneAction: 2)); + Out.ar(out, Osc.ar(Select.kr(buf, b), freq, 0, amp) * EnvGen.kr(Env.adsr(3, sustain - 4, 1, 1), gate, 1, 0, 1, doneAction: 2)); }).add; }; @@ -172,7 +172,8 @@ s.waitForBoot({ \buf, i, \out, hdpBusArray[i], //\freq, Pseq((55 * r.slice(nil, 2).flatten).cpsmidi.round(0.5).midicps), - \freq, Pseq((55 * r.slice(nil, 2).flatten)), + //\freq, Pseq((55 * r.slice(nil, 2).flatten)) / 8 * pow(2, i), + \freq, Pseq(r.slice(nil, 2).flatten.collect({arg harm; (55 * harm) / 4 * pow(2, i) * pow(2, if(harm < 8, {0}, {0}))})), \dur, Pseq(r.slice(nil, 0).flat), //this is a bit tricky it makes it so that each note goes to the next @@ -350,9 +351,9 @@ s.waitForBoot({ OSCdef(\mixer, {arg msg, time, addr, port; - [msg, time, addr, port].postln; - if(msg[1] != "volume_master", { - mixer.set((msg[1] ++ '_' ++ msg[2]), msg[3]) + [msg, time, addr, port]; + if(msg[1].asString != "volume_master", { + mixer.set((msg[1] ++ '_' ++ msg[2]), msg[3]); }, { mixer.set(msg[1], msg[2]) }); diff --git a/python/brightness_detect.py b/python/brightness_detect.py deleted file mode 100644 index 5991305..0000000 --- a/python/brightness_detect.py +++ /dev/null @@ -1,149 +0,0 @@ -# importing libraries -import cv2 -import numpy as np -from scipy import stats - - -drawing = False -point1 = () -point2 = () - -def mouse_drawing(event, x, y, flags, params): - global point1, point2, drawing - if event == cv2.EVENT_LBUTTONDOWN: - if drawing is False: - drawing = True - point1 = (x, y) - else: - drawing = False - - elif event == cv2.EVENT_MOUSEMOVE: - if drawing is True: - point2 = (x, y) - -# Our ROI, defined by two points -p1, p2 = None, None -state = 0 - -# Called every time a mouse event happen -def on_mouse(event, x, y, flags, userdata): - global state, point1, point2 - - # Left click - if event == cv2.EVENT_LBUTTONUP: - # Select first point - if state == 0: - point1 = (x,y) - state += 1 - # Select second point - elif state == 1: - point2 = (x,y) - state += 1 - - -#xFine = (848, 187, 225, 21.0) -#yFine = (604, 402, 20.5, 276) - -xFine = (848, 187, 848 + 225, 187 + 21.0) -yFine = (604, 402, 604 + 20.5, 402 + 276) - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -def track(frame, ROI, centroid, update): - if(update): - crop = frame[int(ROI[1]):int(ROI[3]), int(ROI[0]):int(ROI[2])] - crop = cv2.cvtColor(crop, cv2.COLOR_RGB2GRAY) - crop = cv2.GaussianBlur(crop,(7,7),cv2.BORDER_DEFAULT) - - #ret, thresh = cv2.threshold(crop, 100, 255, cv2.THRESH_OTSU + cv2.THRESH_BINARY) - ret,thresh = cv2.threshold(crop, 50, 255, 0) - - M = cv2.moments(thresh) - - # calculate x,y coordinate of center - if M["m00"] != 0: - centroid[0] = int(M["m10"] / M["m00"]) - centroid[1] = int(M["m01"] / M["m00"]) - #else: - # cX, cY = 0, 0 - #print(cY) - cv2.circle(frame, (int(ROI[0]) + centroid[0], int(ROI[1]) + centroid[1]), 3, (0, 255, 0), -1) - -cv2.namedWindow("Frame") -cv2.setMouseCallback("Frame", mouse_drawing) -cv2.namedWindow("Process") - -# Create a VideoCapture object and read from input file -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") -cap.set(cv2.CAP_PROP_POS_FRAMES, 10000) - -# Check if camera opened successfully -if (cap.isOpened()== False): - print("Error opening video file") - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -# Read until video is completed -while(cap.isOpened()): - - # Capture frame-by-frame - ret, frame = cap.read() - if ret == True: - # Display the resulting frame - - if point1 and point2: - px = sorted([point1[0], point2[0]]) - py = sorted([point1[1], point2[1]]) - #cv2.rectangle(frame, point1, point2, (0, 255, 0)) - xFine = (px[0], py[0], px[1], py[1]) - - crop = frame[int(xFine[1]):int(xFine[3]), int(xFine[0]):int(xFine[2])] - gray = cv2.cvtColor(crop, cv2.COLOR_BGR2GRAY) - fm = cv2.Laplacian(gray, cv2.CV_64F).var() - - kernel = np.ones((30, 50), np.uint8) - - text = "Not Blurry" - blur = cv2.GaussianBlur(cv2.bitwise_not(crop),(1001,3), 3, 1) * 3 - dilation = cv2.dilate(gray, kernel, iterations=1) - ret,dilation = cv2.threshold(dilation,20,255,cv2.THRESH_BINARY_INV) - - mean = pow(dilation.mean(), 3) - # if the focus measure is less than the supplied threshold, - # then the image should be considered "blurry" - if fm < 100.0: - text = "Blurry" - # show the image - cv2.rectangle(frame, (int(xFine[0]), int(xFine[1])), (int(xFine[2]),int(xFine[3])), (0, 255, 0)) - cv2.rectangle(frame, (int(xFine[0]), int(xFine[1])), (int(xFine[2]),int(xFine[3])), (0, 255, 0)) - cv2.putText(frame, "{}: {:.2f}".format(text, fm), (10, 30), - cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) - cv2.putText(frame, "{}: {:.2f}".format("Brightness", mean), (10, 100), - cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) - - cv2.imshow("Frame", frame) - cv2.imshow("Process", crop) - - - # Press Q on keyboard to exit - key = cv2.waitKey(100) - - if key == 32: - cv2.waitKey() - elif key == ord('q'): - break - -# Break the loop - else: - break - -# When everything done, release -# the video capture object -cap.release() - -# Closes all the frames -cv2.destroyAllWindows() \ No newline at end of file diff --git a/python/brightness_detect_clean.py b/python/brightness_detect_clean.py deleted file mode 100644 index 03a9e67..0000000 --- a/python/brightness_detect_clean.py +++ /dev/null @@ -1,148 +0,0 @@ -# importing libraries -import cv2 -import numpy as np -from scipy import stats - - -rectToSet = 'x' -moving = False -roiXCenter = (960, 195) -roiYCenter = (615, 530) -w = 10 -l1 = 50 -l2 = 150 -l3 = 20 -roiXInner = (roiXCenter[0] - l1, roiXCenter[1] - w, roiXCenter[0] + l1, roiXCenter[1] + w) -roiXOuter = (roiXCenter[0] - l2, roiXCenter[1] - w, roiXCenter[0] + l2, roiXCenter[1] + w) -roiXCourse = (roiXCenter[0] - l3, roiXCenter[1] + (w * 1), roiXCenter[0] + l3, roiXCenter[1] + (w * 3)) - -roiYInner = (roiYCenter[0] - w, roiYCenter[1] - l1, roiYCenter[0] + w, roiYCenter[1] + l1) -roiYOuter = (roiYCenter[0] - w, roiYCenter[1] - l2, roiYCenter[0] + w, roiYCenter[1] + l2) -roiYCourse = (roiYCenter[0] + (w * 1), roiYCenter[1] - l3, roiYCenter[0] + (w * 3), roiYCenter[1] + l3) - -dilationVal = 75 - -def moveROI(event, x, y, flags, params): - global roiXCenter, roiYCenter, roiXInner, roiXOuter, roiXCourse, roiYInner, roiYOuter, roiYCourse, moving - if event == cv2.EVENT_LBUTTONDOWN: - moving = True - - elif event==cv2.EVENT_MOUSEMOVE: - if moving==True: - if rectToSet=='x': - roiXCenter = (x, y) - roiXInner = (roiXCenter[0] - l1, roiXCenter[1] - w, roiXCenter[0] + l1, roiXCenter[1] + w) - roiXOuter = (roiXCenter[0] - l2, roiXCenter[1] - w, roiXCenter[0] + l2, roiXCenter[1] + w) - roiXCourse = (roiXCenter[0] - l3, roiXCenter[1] + (w * 1), roiXCenter[0] + l3, roiXCenter[1] + (w * 3)) - - elif rectToSet=='y': - roiYCenter = (x, y) - roiYInner = (roiYCenter[0] - w, roiYCenter[1] - l1, roiYCenter[0] + w, roiYCenter[1] + l1) - roiYOuter = (roiYCenter[0] - w, roiYCenter[1] - l2, roiYCenter[0] + w, roiYCenter[1] + l2) - roiYCourse = (roiYCenter[0] + (w * 1), roiYCenter[1] - l3, roiYCenter[0] + (w * 3), roiYCenter[1] + l3) - - elif event == cv2.EVENT_LBUTTONUP: - moving = False - - -cv2.namedWindow("Frame") -cv2.setMouseCallback("Frame", moveROI) -#cv2.namedWindow("Process") - -# Create a VideoCapture object and read from input file -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") -cap.set(cv2.CAP_PROP_POS_FRAMES, 10000) - -# Check if camera opened successfully -if (cap.isOpened()== False): - print("Error opening video file") - - -def track(frame, roiInner, roiOuter, roiCourse): - w = 30 - l1 = 30 - l2 = 100 - cropFine = frame[roiOuter[1]:roiOuter[3], roiOuter[0]:roiOuter[2]] - cropCourse = frame[roiCourse[1]:roiCourse[3], roiCourse[0]:roiCourse[2]] - #gray = cv2.cvtColor(crop, cv2.COLOR_BGR2GRAY) - - #may not need any of this - kernel = np.ones((dilationVal, dilationVal), np.uint8) - dilation = cv2.dilate(cropFine, kernel, iterations=1) - ret,tresh = cv2.threshold(dilation,20,255,cv2.THRESH_BINARY) - - #mean = pow(frame[roiInner[1]:roiInner[3], roiInner[0]:roiInner[2]].mean(), 3) - frame[roiOuter[1]:roiOuter[3], roiOuter[0]:roiOuter[2]] = tresh - meanFine = pow(frame[roiInner[1]:roiInner[3], roiInner[0]:roiInner[2]].mean(), 2) - meanCourse = frame[roiCourse[1]:roiCourse[3], roiCourse[0]:roiCourse[2]].mean() - - mean = 0 - if(meanCourse > 10): - mean = meanFine - - distance = pow(255, 2) - mean - - return distance - -def drawRects(frame): - cv2.rectangle(frame, (roiXOuter[0], roiXOuter[1]), (roiXOuter[2], roiXOuter[3]), (0, 255, 0)) - cv2.rectangle(frame, (roiXCenter[0] - l1, roiXInner[1]), (roiXCenter[0], roiXInner[3]), (0, 255, 0)) - cv2.rectangle(frame, (roiXCenter[0], roiXInner[1]), (roiXCenter[0] + l1, roiXInner[3]), (0, 255, 0)) - cv2.rectangle(frame, (roiXCourse[0], roiXCourse[1]), (roiXCourse[2], roiXCourse[3]), (0, 255, 0)) - - cv2.rectangle(frame, (roiYOuter[0], roiYOuter[1]), (roiYOuter[2], roiYOuter[3]), (0, 255, 0)) - cv2.rectangle(frame, (roiYInner[0], roiYCenter[1] - l1), (roiYInner[2], roiYCenter[1]), (0, 255, 0)) - cv2.rectangle(frame, (roiYInner[0], roiYCenter[1]), (roiYInner[2], roiYCenter[1] + l1), (0, 255, 0)) - cv2.rectangle(frame, (roiYCourse[0], roiYCourse[1]), (roiYCourse[2], roiYCourse[3]), (0, 255, 0)) - -# Read until video is completed -while(cap.isOpened()): - - # Capture frame-by-frame - ret, frame = cap.read() - if ret == True: - # Display the resulting frame - - distanceX = track(frame, roiXInner, roiXOuter, roiXCourse) - distanceY = track(frame, roiYInner, roiYOuter, roiYCourse) - - drawRects(frame) - - cv2.putText(frame, "{}: {:.2f}".format("distance x", distanceX), (10, 100), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) - cv2.putText(frame, "{}: {:.2f}".format("distance y", distanceY), (10, 200), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) - - #fm = cv2.Laplacian(gray, cv2.CV_64F).var() - #cv2.putText(frame, "{}: {:.2f}".format("blur", fm), (10, 30), - #cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) - - cv2.imshow("Frame", frame) - #cv2.imshow("Process", tresh) - - - # Press Q on keyboard to exit - key = cv2.waitKey(1) - - if key == 32: - cv2.waitKey() - elif key == ord('+'): - dilationVal = dilationVal + 1 - elif key == ord('-'): - if dilationVal > 0: - dilationVal = dilationVal - 1 - elif key == ord('x'): - rectToSet = 'x' - elif key == ord('y'): - rectToSet = 'y' - elif key == ord('q'): - break - -# Break the loop - else: - break - -# When everything done, release -# the video capture object -cap.release() - -# Closes all the frames -cv2.destroyAllWindows() \ No newline at end of file diff --git a/python/rect_draw.py b/python/rect_draw.py deleted file mode 100644 index abbc8a6..0000000 --- a/python/rect_draw.py +++ /dev/null @@ -1,53 +0,0 @@ -import cv2 -import numpy as np - -drawing = False -point1 = () -point2 = () - -def mouse_drawing(event, x, y, flags, params): - global point1, point2, drawing - if event == cv2.EVENT_LBUTTONDOWN: - if drawing is False: - drawing = True - point1 = (x, y) - else: - drawing = False - - elif event == cv2.EVENT_MOUSEMOVE: - if drawing is True: - point2 = (x, y) - -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") - -# Exit if video not opened. -if not cap.isOpened(): - print("Could not open video") - sys.exit() - -# Read first frame. -cap.set(cv2.CAP_PROP_POS_FRAMES, 5000) -ok, initFrame = cap.read() -if not ok: - print('Cannot read video file') - sys.exit() - -cv2.namedWindow("Frame") -#cv2.setMouseCallback("Frame", mouse_drawing) - -while cap.isOpened(): - ok, frame = cap.read() - - if ok == True: - - #if point1 and point2: - # cv2.rectangle(frame, point1, point2, (0, 255, 0)) - - cv2.imshow("Frame", frame) - - else: - break - - -cap.release() -cv2.destroyAllWindows() \ No newline at end of file diff --git a/python/templates/index.html b/python/templates/index.html deleted file mode 100644 index e9ee49a..0000000 --- a/python/templates/index.html +++ /dev/null @@ -1,9 +0,0 @@ - - - Video Streaming Demonstration - - -

Video Streaming Demonstration

- - - diff --git a/python/vernier_tracker.py b/python/vernier_tracker.py index 0fb5ac7..a715c34 100644 --- a/python/vernier_tracker.py +++ b/python/vernier_tracker.py @@ -1,162 +1,221 @@ -#This is a proof of concept for motion tracking of the vernier in very early stages - +#!/usr/bin/python3 +from PyQt5.QtWidgets import QApplication, QWidget, QShortcut +from PyQt5.QtGui import QKeySequence +from PyQt5.QtCore import Qt, QThread, QPoint +import time import cv2 -import sys -from pythonosc.udp_client import SimpleUDPClient -from flask import Flask, render_template, Response -import threading -import argparse - -outputFrame = None -lock = threading.Lock() - -app = Flask(__name__) - -ip = "127.0.0.1" -port = 57120 - -client = SimpleUDPClient(ip, port) # Create client - -# Read video (eventually will be the live capture from the camera) -video = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") - -# Exit if video not opened. -if not video.isOpened(): - print("Could not open video") - sys.exit() - -# Read first frame. -video.set(cv2.CAP_PROP_POS_FRAMES, 5000) -ok, initFrame = video.read() -if not ok: - print('Cannot read video file') - sys.exit() - -#frame = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY) -#frame = cv2.GaussianBlur(frame,(5,5),cv2.BORDER_DEFAULT) - -# all this for selecting ROI -#xROI = cv2.selectROI('Tracking', initFrame) -#yROI = cv2.selectROI('Tracking', initFrame) -#print(xROI) -#print(yROI) -#xFine = (xROI[0], xROI[1], xROI[2], xROI[3] / 2) -#xCourse = (xROI[0], xROI[1] + (xROI[3] / 2), xROI[2], xROI[3] / 2) -#yFine = (yROI[0], yROI[1], yROI[2] / 2, yROI[3]) -#yCourse = (yROI[0] + (yROI[2] / 2), yROI[1], yROI[2] / 2, yROI[3]) -#print(xFine) -#print(yFine) - -xFine = (848, 187, 225, 21.0) -yFine = (604, 402, 20.5, 276) - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -def track(frame, ROI, centroid, update): - if(update): - crop = frame[int(ROI[1]):int(ROI[1]+ROI[3]), int(ROI[0]):int(ROI[0]+ROI[2])] - crop = cv2.cvtColor(crop, cv2.COLOR_RGB2GRAY) - crop = cv2.GaussianBlur(crop,(7,7),cv2.BORDER_DEFAULT) - - #ret, thresh = cv2.threshold(crop, 100, 255, cv2.THRESH_OTSU + cv2.THRESH_BINARY) - ret,thresh = cv2.threshold(crop, 50, 255, 0) - M = cv2.moments(thresh) - - # calculate x,y coordinate of center - if M["m00"] != 0: - centroid[0] = int(M["m10"] / M["m00"]) - centroid[1] = int(M["m01"] / M["m00"]) - #else: - # cX, cY = 0, 0 - #print(cY) - cv2.circle(frame, (int(ROI[0]) + centroid[0], int(ROI[1]) + centroid[1]), 5, (255, 255, 255), -1) - -def detect_motion(): - # grab global references to the video stream, output frame, and - # lock variables - global vs, outputFrame, lock - - frameCountMod = 0 - centroidX = [0, 0] - centroidY = [0, 0] - """Video streaming generator function.""" - while True: - # Read a new frame - ok, frame = video.read() - if not ok: - break - - if(frameCountMod == 0): - track(frame, xFine, centroidX, True) - track(frame, yFine, centroidY, True) - xPos = (centroidX[0] / xFine[2]) * 2 - 1 - yPos = (centroidY[1] / yFine[3]) * 2 - 1 - client.send_message("/trackerpos", [xPos, yPos]) - else: - track(frame, xFine, centroidX, False) - track(frame, yFine, centroidY, False) - - - frameCountMod = (frameCountMod + 1) % 10 - - cv2.rectangle(frame, (int(xFine[0]), int(xFine[1])), (int(xFine[0]+int(xFine[2])),int(xFine[1]+xFine[3])), (255, 255, 255), 5) - cv2.rectangle(frame, (int(yFine[0]), int(yFine[1])), (int(yFine[0]+int(yFine[2])),int(yFine[1]+yFine[3])), (255, 255, 255), 5) - - # Display result - #cv2.imshow("Tracking", frame) - #cv2.imshow("Crop", crop) - - with lock: - outputFrame = frame.copy() - - # Exit if ESC pressed - #k = cv2.waitKey(1) & 0xff - #if k == 27 : - # cv2.destroyWindow('Tracking') - # break - - -@app.route('/') -def index(): - """Video streaming home page.""" - return render_template('index.html') - - -def generate(): - # grab global references to the output frame and lock variables - global outputFrame, lock - - # loop over frames from the output stream - while True: - # wait until the lock is acquired - with lock: - # check if the output frame is available, otherwise skip - # the iteration of the loop - if outputFrame is None: - continue - - # encode the frame in JPEG format - (flag, encodedImage) = cv2.imencode(".jpg", outputFrame) - - # ensure the frame was successfully encoded - if not flag: - continue - - # yield the output frame in the byte format - yield(b'--frame\r\n' b'Content-Type: image/jpeg\r\n\r\n' + - bytearray(encodedImage) + b'\r\n') - - -@app.route('/video_feed') -def video_feed(): - """Video streaming route. Put this in the src attribute of an img tag.""" - return Response(generate(),mimetype='multipart/x-mixed-replace; boundary=frame') - - -if __name__ == '__main__': - t = threading.Thread(target=detect_motion) - t.daemon = True - t.start() - app.run(host='127.0.0.1', port=5000, threaded=True) +from picamera2 import MappedArray, Picamera2, Preview +from picamera2.previews.qt import QGlPicamera2 +import numpy as np + + +def rectFromPoint(center, len, width, axis): + rect = ((0, 0), (0, 0)) + l = int(len/2) + w = int(width/2) + if(axis == 'x'): + rect = ((center[0] - l, center[1] - w), (center[0] + l, center[1] + w)) + elif(axis == 'y'): + rect = ((center[0] - w, center[1] - l), (center[0] + w, center[1] + l)) + return rect + + +def rectsFromPoint(center, l1, l2, l3, w, axis): + centerFine = center + fineInner = rectFromPoint(centerFine, l1, w, axis) + fineOuter = rectFromPoint(centerFine, l2, w, axis) + centerCoarse = center + if(axis == 'x'): + centerCoarse = (center[0], center[1] + w) + elif(axis == 'y'): + centerCoarse = (center[0] + w, center[1]) + coarse = rectFromPoint(centerCoarse, l3, w, axis) + return [fineInner, fineOuter, coarse, center] + + +def moveROI(event, x, y, flags, params): + global roiX, roiY, moving, l1, l2, l3, w, selectedAxis + if event == cv2.EVENT_LBUTTONDOWN: + moving = True + + elif event==cv2.EVENT_MOUSEMOVE: + if moving==True: + if(selectedAxis == 'x'): + roiX = rectsFromPoint((x, y), l1, l2, l3, w, selectedAxis) + elif(selectedAxis == 'y'): + roiY = rectsFromPoint((x, y), l1, l2, l3, w, selectedAxis) + + elif event == cv2.EVENT_LBUTTONUP: + moving = False + + +def crop(frame, rect): + return frame[rect[0][1]:rect[1][1], rect[0][0]:rect[1][0]] + + +def replaceCrop(frame, rect, crop): + frame[rect[0][1]:rect[1][1], rect[0][0]:rect[1][0]] = crop + + +def genDKernel(dVal): + return np.ones((dVal, dVal), np.uint8) + + +def track(frame, roi, dKernel): + exp = 2 + roiFineInner, roiFineOuter, roiCourse, roiCenter = roi + + cropFineOuter = crop(frame, roiFineOuter) + cropCoarse = crop(frame, roiCourse) + #gray = cv2.cvtColor(crop, cv2.COLOR_BGR2GRAY) + + dilation = cv2.dilate(cropFineOuter, dKernel, iterations=1) + ret,thresh = cv2.threshold(dilation,100,255,cv2.THRESH_BINARY) + + replaceCrop(frame, roiFineOuter, thresh) + + # this could potentially be made more efficient by cropping from cropFineOuter + cropFineInner = crop(frame, roiFineInner) + + meanFine = pow(cropFineInner.mean(), exp) + meanCourse = pow(cropCoarse.mean(), 1) + mean = 0 + if(meanCourse > 10): + mean = meanFine + distance = pow(255, exp) - mean + + return distance + + +def drawRect(frame, points): + cv2.rectangle(frame, points[0], points[1], (0, 255, 0)) + + +def drawRoi(frame, roi): + for rect in roi[:3]: + drawRect(frame, rect) + center = roi[3] + cv2.line(frame, (center[0] - 5, center[1]), (center[0] + 5, center[1]), (0, 255, 0), 1) + cv2.line(frame, (center[0], center[1] - 5), (center[0], center[1] + 5), (0, 255, 0), 1) + +def picameraToCVTrack(): + global roiX, roiY, moving, l1, l2, l3, w, selectedAxis, dilationKernel, calibrate + + while True: + frame = picam2.capture_buffer("lores") + frame = frame[:s1 * h1].reshape((h1, s1)) + #frame = picam2.capture_array("lores") + #frame = cv2.cvtColor(frame, cv2.COLOR_GRAY2RGB) + + distanceX = track(frame, roiX, dilationKernel) + distanceY = track(frame, roiY, dilationKernel) + + drawRoi(frame, roiX) + drawRoi(frame, roiY) + + cv2.putText(frame, "{}: {:.2f}".format("distance x", distanceX), (10, 100), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) + cv2.putText(frame, "{}: {:.2f}".format("distance y", distanceY), (10, 200), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 0, 255), 3) + + if calibrate: + cv2.imshow("Frame", frame) + #cv2.imshow("Process", tresh) + + # Press Q on keyboard to exit + key = cv2.waitKey(20) + #if key == 32: + # cv2.waitKey() + if key == ord('+'): + dilationVal = dilationVal + 1 + dilationKernel = genDKernel(dilationVal) + elif key == ord('-'): + if dilationVal > 0: + dilationVal = dilationVal - 1 + dilationKernel = genDKernel(dilationVal) + elif key == ord('x'): + selectedAxis = 'x' + elif key == ord('y'): + selectedAxis = 'y' + elif key == ord('c'): + if calibrate: + calibrate = False + cv2.destroyAllWindows() + else: + print("hello") + calibrate = True + cv2.startWindowThread() + #elif key == ord('q'): + # break + + +class TrackerThread(QThread): + def __init__(self, target=None): + super().__init__() + self.target = target + + def run(self): + if self.target: + self.target() + + +class MainWindow(QGlPicamera2): + def __init__(self, *args, **kwargs): + super(MainWindow, self).__init__(*args, **kwargs) + trackerThread = TrackerThread(target=picameraToCVTrack) + trackerThread.start() + self.shortcut_close_window = QShortcut(QKeySequence('f'), self) + self.shortcut_close_window.activated.connect(self.goFullscreen) + self.setWindowFlags(Qt.FramelessWindowHint) + self.move(0, 0) + + def mousePressEvent(self, event): + self.oldPos = event.globalPos() + + def mouseMoveEvent(self, event): + delta = QPoint (event.globalPos() - self.oldPos) + self.move(self.x() + delta.x(), self.y() + delta.y()) + self.oldPos = event.globalPos() + + def goFullscreen(self): + if self.isFullScreen(): + #self.setWindowFlags(self._flags) + self.showNormal() + else: + #self._flags = self.windowFlags() + #self.setWindowFlags(Qt.WindowCloseButtonHint | Qt.WindowType_Mask) + self.showFullScreen() + +picam2 = Picamera2() +#picam2.start_preview(Preview.QTGL) +#max resolution is (4056, 3040) which is more like 10 fps +config = picam2.create_preview_configuration(main={"size": (2028, 1520)}, lores={"size": (1920, 1440), "format": "YUV420"}) +picam2.configure(config) + +app = QApplication([]) +qpicamera2 = MainWindow(picam2, width=1920, height=1440, keep_ar=False) +qpicamera2.setWindowTitle("Qt Picamera2 App") + +selectedAxis = 'x' +moving = False +l1 = 100 +l2 = 300 +l3 = 40 +w = 20 +roiXCenter = (960, 195) +roiYCenter = (615, 530) +roiX = rectsFromPoint(roiXCenter, l1, l2, l3, w, 'x') +roiY = rectsFromPoint(roiYCenter, l1, l2, l3, w, 'y') +dilationVal = 75 +dilationKernel = genDKernel(dilationVal) +calibrate = True + +cv2.startWindowThread() +cv2.namedWindow("Frame") +cv2.setMouseCallback("Frame", moveROI) + +(w0, h0) = picam2.stream_configuration("main")["size"] +(w1, h1) = picam2.stream_configuration("lores")["size"] +s1 = picam2.stream_configuration("lores")["stride"] + +picam2.start() +qpicamera2.show() +app.exec() diff --git a/python/vernier_tracker_multiple_points.py b/python/vernier_tracker_multiple_points.py deleted file mode 100644 index 741c1d8..0000000 --- a/python/vernier_tracker_multiple_points.py +++ /dev/null @@ -1,113 +0,0 @@ -# importing libraries -import cv2 -import numpy as np - - -drawing = False -point1 = () -point2 = () - -def mouse_drawing(event, x, y, flags, params): - global point1, point2, drawing - if event == cv2.EVENT_LBUTTONDOWN: - if drawing is False: - drawing = True - point1 = (x, y) - else: - drawing = False - - elif event == cv2.EVENT_MOUSEMOVE: - if drawing is True: - point2 = (x, y) - -#xFine = (848, 187, 225, 21.0) -#yFine = (604, 402, 20.5, 276) - -xFine = (848, 187, 848 + 225, 187 + 21.0) -yFine = (604, 402, 604 + 20.5, 402 + 276) - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -def track(frame, ROI, centroid, update): - if(update): - crop = frame[int(ROI[1]):int(ROI[3]), int(ROI[0]):int(ROI[2])] - crop = cv2.cvtColor(crop, cv2.COLOR_RGB2GRAY) - crop = cv2.GaussianBlur(crop,(7,7),cv2.BORDER_DEFAULT) - - ret,thresh = cv2.threshold(crop, 50, 255, 0) - - contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE) - - for c in contours: - # calculate moments for each contour - M = cv2.moments(c) - - # calculate x,y coordinate of center - if M["m00"] != 0: - centroid[0] = int(M["m10"] / M["m00"]) - centroid[1] = int(M["m01"] / M["m00"]) - else: - centroid[0], centroid[1] = 0, 0 - #cv2.circle(img, (cX, cY), 5, (255, 255, 255), -1) - cv2.circle(frame, (int(ROI[0]) + centroid[0], int(ROI[1]) + centroid[1]), 3, (0, 255, 0), -1) - -cv2.namedWindow("Frame") -cv2.setMouseCallback("Frame", mouse_drawing) - -# Create a VideoCapture object and read from input file -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") -cap.set(cv2.CAP_PROP_POS_FRAMES, 10000) - -# Check if camera opened successfully -if (cap.isOpened()== False): - print("Error opening video file") - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -# Read until video is completed -while(cap.isOpened()): - - # Capture frame-by-frame - ret, frame = cap.read() - if ret == True: - # Display the resulting frame - - if(frameCountMod == 0): - track(frame, xFine, centroidX, True) - track(frame, yFine, centroidY, True) - xPos = (centroidX[0] / xFine[2]) * 2 - 1 - yPos = (centroidY[1] / yFine[3]) * 2 - 1 - else: - track(frame, xFine, centroidX, False) - track(frame, yFine, centroidY, False) - - frameCountMod = (frameCountMod + 1) % 10 - - cv2.rectangle(frame, (int(xFine[0]), int(xFine[1])), (int(xFine[2]),int(xFine[3])), (0, 255, 0)) - cv2.rectangle(frame, (int(yFine[0]), int(yFine[1])), (int(yFine[2]),int(yFine[3])), (0, 255, 0)) - - if point1 and point2: - #cv2.rectangle(frame, point1, point2, (0, 255, 0)) - xFine = (point1[0], point1[1], point2[0], point2[1]) - - cv2.imshow("Frame", frame) - - - # Press Q on keyboard to exit - if cv2.waitKey(25) & 0xFF == ord('q'): - break - -# Break the loop - else: - break - -# When everything done, release -# the video capture object -cap.release() - -# Closes all the frames -cv2.destroyAllWindows() \ No newline at end of file diff --git a/python/vernier_tracker_without_flask.py b/python/vernier_tracker_without_flask.py deleted file mode 100644 index e6b3b9e..0000000 --- a/python/vernier_tracker_without_flask.py +++ /dev/null @@ -1,110 +0,0 @@ -# importing libraries -import cv2 -import numpy as np - - -drawing = False -point1 = () -point2 = () - -def mouse_drawing(event, x, y, flags, params): - global point1, point2, drawing - if event == cv2.EVENT_LBUTTONDOWN: - if drawing is False: - drawing = True - point1 = (x, y) - else: - drawing = False - - elif event == cv2.EVENT_MOUSEMOVE: - if drawing is True: - point2 = (x, y) - -#xFine = (848, 187, 225, 21.0) -#yFine = (604, 402, 20.5, 276) - -xFine = (848, 187, 848 + 225, 187 + 21.0) -yFine = (604, 402, 604 + 20.5, 402 + 276) - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -def track(frame, ROI, centroid, update): - if(update): - crop = frame[int(ROI[1]):int(ROI[3]), int(ROI[0]):int(ROI[2])] - crop = cv2.cvtColor(crop, cv2.COLOR_RGB2GRAY) - crop = cv2.GaussianBlur(crop,(7,7),cv2.BORDER_DEFAULT) - - #ret, thresh = cv2.threshold(crop, 100, 255, cv2.THRESH_OTSU + cv2.THRESH_BINARY) - ret,thresh = cv2.threshold(crop, 50, 255, 0) - - M = cv2.moments(thresh) - - # calculate x,y coordinate of center - if M["m00"] != 0: - centroid[0] = int(M["m10"] / M["m00"]) - centroid[1] = int(M["m01"] / M["m00"]) - #else: - # cX, cY = 0, 0 - #print(cY) - cv2.circle(frame, (int(ROI[0]) + centroid[0], int(ROI[1]) + centroid[1]), 3, (0, 255, 0), -1) - -cv2.namedWindow("Frame") -cv2.setMouseCallback("Frame", mouse_drawing) - -# Create a VideoCapture object and read from input file -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") -cap.set(cv2.CAP_PROP_POS_FRAMES, 10000) - -# Check if camera opened successfully -if (cap.isOpened()== False): - print("Error opening video file") - -frameCountMod = 0 -centroidX = [0, 0] -centroidY = [0, 0] - -# Read until video is completed -while(cap.isOpened()): - - # Capture frame-by-frame - ret, frame = cap.read() - if ret == True: - # Display the resulting frame - - if(frameCountMod == 0): - track(frame, xFine, centroidX, True) - track(frame, yFine, centroidY, True) - xPos = (centroidX[0] / xFine[2]) * 2 - 1 - yPos = (centroidY[1] / yFine[3]) * 2 - 1 - else: - track(frame, xFine, centroidX, False) - track(frame, yFine, centroidY, False) - - frameCountMod = (frameCountMod + 1) % 3 - - cv2.rectangle(frame, (int(xFine[0]), int(xFine[1])), (int(xFine[2]),int(xFine[3])), (0, 255, 0)) - cv2.rectangle(frame, (int(yFine[0]), int(yFine[1])), (int(yFine[2]),int(yFine[3])), (0, 255, 0)) - - if point1 and point2: - #cv2.rectangle(frame, point1, point2, (0, 255, 0)) - xFine = (point1[0], point1[1], point2[0], point2[1]) - - cv2.imshow("Frame", frame) - - - # Press Q on keyboard to exit - if cv2.waitKey(25) & 0xFF == ord('q'): - break - -# Break the loop - else: - break - -# When everything done, release -# the video capture object -cap.release() - -# Closes all the frames -cv2.destroyAllWindows() \ No newline at end of file diff --git a/python/video_play.py b/python/video_play.py deleted file mode 100644 index eef0aa7..0000000 --- a/python/video_play.py +++ /dev/null @@ -1,60 +0,0 @@ -# importing libraries -import cv2 -import numpy as np - - -drawing = False -point1 = () -point2 = () - -def mouse_drawing(event, x, y, flags, params): - global point1, point2, drawing - if event == cv2.EVENT_LBUTTONDOWN: - if drawing is False: - drawing = True - point1 = (x, y) - else: - drawing = False - - elif event == cv2.EVENT_MOUSEMOVE: - if drawing is True: - point2 = (x, y) - -cv2.namedWindow("Frame") -cv2.setMouseCallback("Frame", mouse_drawing) - -# Create a VideoCapture object and read from input file -cap = cv2.VideoCapture("/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/recs/a_history_of_the_domino_problem_final_documentation_hq.mp4") - -# Check if camera opened successfully -if (cap.isOpened()== False): - print("Error opening video file") - -# Read until video is completed -while(cap.isOpened()): - -# Capture frame-by-frame - ret, frame = cap.read() - if ret == True: - # Display the resulting frame - - if point1 and point2: - cv2.rectangle(frame, point1, point2, (0, 255, 0)) - - cv2.imshow("Frame", frame) - - - # Press Q on keyboard to exit - if cv2.waitKey(25) & 0xFF == ord('q'): - break - -# Break the loop - else: - break - -# When everything done, release -# the video capture object -cap.release() - -# Closes all the frames -cv2.destroyAllWindows() \ No newline at end of file diff --git a/score/lilypond/ammann/includes/ammann_part_0.pdf b/score/lilypond/ammann/includes/ammann_part_0.pdf deleted file mode 100644 index dbbab36..0000000 Binary files a/score/lilypond/ammann/includes/ammann_part_0.pdf and /dev/null differ diff --git a/score/lilypond_v2.24_update/ammann/includes/ammann_part_0.pdf b/score/lilypond_v2.24_update/ammann/includes/ammann_part_0.pdf deleted file mode 100644 index dbbab36..0000000 Binary files a/score/lilypond_v2.24_update/ammann/includes/ammann_part_0.pdf and /dev/null differ diff --git a/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.ly b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.ly new file mode 100644 index 0000000..321e7e0 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.ly @@ -0,0 +1,175 @@ +\version "2.24.1" + +genStaff = +#(define-music-function (parser location part) + (string?) + (let * ((file (string-append "includes/ammann_part_" part ".ly"))) + #{ + \new Staff \with { + instrumentName = #part + shortInstrumentName = #part + } + << + \include #file + >> + #})) + +\paper { + #(set-paper-size "a4" 'portrait) + top-margin = 1 \cm + bottom-margin = 1 \cm + left-margin = 1.75 \cm + + top-system-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + last-bottom-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + systems-per-page = 4 + + print-page-number = ##t + oddHeaderMarkup = \markup { \unless \on-first-page {"(ammann)"}} + evenHeaderMarkup = \markup { \unless \on-first-page {"(ammann)"}} + oddFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} + evenFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} +} + +\header { + title = \markup { \italic {ammann}} + subtitle = \markup { \normal-text { from \italic{a history of the domino the problem}}} + composer = \markup \right-column {"michael winter" "(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)"} + tagline = "" +} + +#(set-global-staff-size 11) + +\layout { + indent = 0.0\cm + line-width = 17\cm + %ragged-last = ##t + + \context { + \Score + \override BarNumber.extra-offset = #'(0 . 4) + \override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print) + \override RehearsalMark.direction = #DOWN + rehearsalMarkFormatter = #format-mark-box-numbers + } + \context { + \Staff + \override VerticalAxisGroup.staff-staff-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + \override TimeSignature.font-size = #2 + \override TimeSignature.break-align-symbol = #'clef + \override TimeSignature.X-offset = + #ly:self-alignment-interface::x-aligned-on-self + \override TimeSignature.self-alignment-X = #LEFT + %\override TimeSignature.after-line-breaking = + % #shift-right-at-line-begin + \override TimeSignature.Y-offset = #11 + \override TimeSignature.extra-offset = #'(2 . 0) + + } + + \context { + \StaffGroup + \name "SemiStaffGroup" + \consists "Span_bar_engraver" + \override SpanBar.stencil = + #(lambda (grob) + (if (string=? (ly:grob-property grob 'glyph-name) "|") + (set! (ly:grob-property grob 'glyph-name) "")) + (ly:span-bar::print grob)) + } + \context { + \Score + \accepts SemiStaffGroup + } +} + + +\score { +%showLastLength = R1*128 +\new Score +%\with{ proportionalNotationDuration = #(ly:make-moment 1 16) } + << + \new SemiStaffGroup { + << + + \new Staff \with { + instrumentName = #"4" + shortInstrumentName = #"4" + midiInstrument = #"clarinet" + } + << + \transpose c c' + \include "includes/ammann_part_4.ly" + >> + + \new Staff \with { + instrumentName = #"3" + shortInstrumentName = #"3" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + } + << + \clef bass + \transpose c c, + \include "includes/ammann_part_5.ly" + >> + + \new Staff \with { + instrumentName = #"2" + shortInstrumentName = #"2" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + } + << + \include "includes/ammann_part_6.ly" + >> + + \new Staff \with { + instrumentName = #"1" + shortInstrumentName = #"1" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + } + << + \clef bass + \transpose c c,, + \include "includes/ammann_part_7.ly" + >> + + %\genStaff #"0" + %\genStaff #"1" + %\genStaff #"2" + %\genStaff #"3" + %\genStaff #"4" + %\genStaff #"5" + >> + } + >> + \layout { } + %\midi { } +} diff --git a/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf new file mode 100644 index 0000000..e5cf719 Binary files /dev/null and b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed.pdf differ diff --git a/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed_split.ly b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed_split.ly new file mode 100644 index 0000000..dc0a10a --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/ammann_distributed_split.ly @@ -0,0 +1,193 @@ +\version "2.24.1" + +genStaff = +#(define-music-function (parser location part) + (string?) + (let * ((file (string-append "includes/ammann_part_" part ".ly"))) + #{ + \new Staff \with { + instrumentName = #part + shortInstrumentName = #part + } + << + \include #file + >> + #})) + +\paper { + #(set-paper-size "a4" 'portrait) + top-margin = 1 \cm + bottom-margin = 1 \cm + left-margin = 1.75 \cm + + top-system-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + last-bottom-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + systems-per-page = 3 + + print-page-number = ##t + oddHeaderMarkup = \markup { \unless \on-first-page {"(ammann)"}} + evenHeaderMarkup = \markup { \unless \on-first-page {"(ammann)"}} + oddFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} + evenFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} +} + +\header { + title = \markup { \italic {ammann}} + subtitle = \markup { \normal-text { from \italic{a history of the domino the problem}}} + composer = \markup \right-column {"michael winter" "(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)"} + tagline = "" +} + +#(set-global-staff-size 11) + +\layout { + indent = 0.0\cm + line-width = 17\cm + %ragged-last = ##t + + \context { + \Score + \override BarNumber.extra-offset = #'(0 . 4) + \override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print) + \override RehearsalMark.direction = #DOWN + rehearsalMarkFormatter = #format-mark-box-numbers + } + \context { + \Staff + \override VerticalAxisGroup.staff-staff-spacing = + #'((basic-distance . 17 ) + (minimum-distance . 17 ) + (padding . 0 ) + (stretchability . 0)) + + \override TimeSignature.font-size = #2 + \override TimeSignature.break-align-symbol = #'clef + \override TimeSignature.X-offset = + #ly:self-alignment-interface::x-aligned-on-self + \override TimeSignature.self-alignment-X = #LEFT + %\override TimeSignature.after-line-breaking = + % #shift-right-at-line-begin + \override TimeSignature.Y-offset = #9 + \override TimeSignature.extra-offset = #'(2 . 0) + + } + + \context { + \StaffGroup + \name "SemiStaffGroup" + \consists "Span_bar_engraver" + \override SpanBar.stencil = + #(lambda (grob) + (if (string=? (ly:grob-property grob 'glyph-name) "|") + (set! (ly:grob-property grob 'glyph-name) "")) + (ly:span-bar::print grob)) + } + \context { + \Score + \accepts SemiStaffGroup + } +} + + +\score { +%showLastLength = R1*128 +\new Score +%\with{ proportionalNotationDuration = #(ly:make-moment 1 16) } + << + \new SemiStaffGroup { + << + \new Staff \with { + instrumentName = #"3+4↑" + shortInstrumentName = #"3+4↑" + midiInstrument = #"clarinet" + \consists Merge_rests_engraver + } + << + \transpose c c + \include "includes/ammann_part_4_up.ly" + \\ + \transpose c c, + \include "includes/ammann_part_5_up.ly" + >> + + \new Staff \with { + instrumentName = #"3+4↓" + shortInstrumentName = #"3+4↓" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + \consists Merge_rests_engraver + } + << + \clef bass + \transpose c c + \include "includes/ammann_part_4_down.ly" + \\ + \clef bass + \transpose c c, + \include "includes/ammann_part_5_down.ly" + >> + + \new Staff \with { + instrumentName = #"1+2↑" + shortInstrumentName = #"1+2↑" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + \consists Merge_rests_engraver + } + << + \transpose c c + \include "includes/ammann_part_6_up.ly" + \\ + \transpose c c, + \include "includes/ammann_part_7_up.ly" + >> + + \new Staff \with { + instrumentName = #"1+2↓" + shortInstrumentName = #"1+2↓" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + \consists Merge_rests_engraver + } + << + \clef bass + \transpose c c + \include "includes/ammann_part_6_down.ly" + \\ + \clef bass + \transpose c c, + \include "includes/ammann_part_7_down.ly" + >> + + %\genStaff #"0" + %\genStaff #"1" + %\genStaff #"2" + %\genStaff #"3" + %\genStaff #"4" + %\genStaff #"5" + >> + } + >> + \layout { } + %\midi { } +} diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0.ly new file mode 100644 index 0000000..49e49db --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''4 %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} e'8. \p ~ e'2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a16 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} dih'8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 b'1 b'4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } r4 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 e''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. \p ~ b4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} r16 } r4. | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 5/4 { a8 %{notechange%} gis''8. ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 fih''2 %{notechange%} fih'2 \p ~ fih'8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''16 %{notechange%} cis'4 \mf } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 dih''1 dih''2 %{notechange%} dih'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 dih'8. %{notechange%} r16 r8 | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} cis''4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 cis'8. %{notechange%} e''16 ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} b'8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2. ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih''4 %{notechange%} e'16 \p ~ } e'2. ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 e'4 ~ e'16 %{notechange%} r8. r4. | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} b8. \p ~ b8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} gis''4 \mf ~ } gis''8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } r4 | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2.\p | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} a4 ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 a2 %{notechange%} gis''1 ~ gis''1 ~ gis''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} fih'4 \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''4 | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2\p ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis''4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 dih'1 ~ dih'4 ~ dih'8. %{notechange%} a'16 ~ a'2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} dih''8 \mf ~ } dih''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} fih'16 \p ~ } fih'4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} fih'8. ~ } fih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} geh''16 \p ~ } geh''4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} cis'8. \mf ~ } cis'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 dih'4. %{notechange%} a'4. ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} b'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} dih'2 \p | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 cis'8 %{notechange%} e'8 \p ~ e'2. ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'4 | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} fih''4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} geh''4 | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} fih''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} a'8 %{notechange%} geh''8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} e'8 \p ~ e'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4. ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} geh''16 ~ geh''4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 a'8. %{notechange%} geh''16 ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} fih''4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} a'4 \p ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} a16 ~ a2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b'4 %{notechange%} b16 \p ~ } b4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} b'4 \mf ~ } b'8 | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''4. %{notechange%} e''4. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r8. %{notechange%} dih''16 ~ dih''1 ~ dih''2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8 %{notechange%} b8. \p ~ } b4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} fih'4 \p ~ } fih'8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 fih'8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} fih''2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih''4 ~ \tuplet 5/4 { fih''16 %{notechange%} geh'4 ~ } geh'2 | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} fih''8. ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 fih''4 ~ \tuplet 5/4 { fih''8. %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 e''1 e''2 %{notechange%} dih'4 \p | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r2. %{notechange%} a'1 ~ a'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} e''8 \mf ~ e''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e''8. \mf ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} e''4. ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 3/2 { b'4 %{notechange%} r8 } r8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf } | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r4 | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. \mf ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''4 %{notechange%} b'16 ~ } b'2 ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} a'4. \p ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { a'4 %{notechange%} dih'8 ~ } dih'2. ~ dih'8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} dih''8. \mf } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 ~ fih'4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 3/2 { a'4 %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} gis''4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''4 %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} gis''4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 gis''8. %{notechange%} cis''16 \p ~ cis''4. | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} e'8 %{notechange%} geh''8 ~ geh''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 e'2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. \p | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 ~ fih'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. \p ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b8 %{notechange%} a'4. ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 cis'8 %{notechange%} a4. ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} a'8. \p ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} a'8 \p ~ a'4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 a'4 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 cis'4 %{notechange%} a4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { dih'8 %{notechange%} fih''8. \mf ~ } fih''2. ~ | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2. | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'16 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 fih'8. %{notechange%} e''16 \mf | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} e''8. \mf ~ e''8 | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} b4 \p ~ } b8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 geh''2 %{notechange%} a2 \mf ~ a8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 %{notechange%} cis'2 \mf | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} gis''4 \mf ~ } gis''8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} a'4 ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} e'8. | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 b8 %{notechange%} b'8 \mf ~ b'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { b'4 %{notechange%} b8 \p ~ } b2. ~ b8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'8 %{notechange%} a4 \mf } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} a4 \mf ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a4 %{notechange%} geh''16 \p ~ } geh''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} a4 \mf | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} geh''16 \p ~ } geh''4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 cis''4. \hideNotes r4. | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 ~ \tuplet 3/2 { geh'4 %{notechange%} cis''8 \p ~ } cis''4. | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 dih'4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} a4 ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} a4 ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} fih''8. ~ fih''8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4 | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} cis'8. ~ cis'2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'4. | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} gis''8. \mf | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b'4 ~ | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b'8. %{notechange%} fih'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b8 %{notechange%} dih'8 ~ dih'2. ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} a'4 } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} geh''4 \p ~ } geh''8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} b2. | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} cis''8. \p ~ } cis''4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } r4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} fih'4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 dih'16 %{notechange%} cis''8. ~ cis''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} dih'4. \p ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 dih'8 %{notechange%} cis''8 ~ cis''2 ~ cis''8 ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} fih'4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 cis'1 ~ \tuplet 3/2 { cis'4 %{notechange%} fih'8 \p ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} geh''2 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 a4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} cis''8 ~ cis''4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 %{notechange%} geh''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} geh''4. \p | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 geh'1 ~ \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a2. ~ | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 b'8. %{notechange%} fih''16 | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8 %{notechange%} b'8. \mf ~ } b'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} b'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} dih'4 ~ } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a8 %{notechange%} r8 r4. | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} geh''4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 b8 %{notechange%} geh''4. | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 \mf ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 b8 %{notechange%} geh''4 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} fih''16 \mf ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} r8. r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} e''8 %{notechange%} gis''4 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} geh''2. ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} cis'8. \mf ~ cis'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 cis'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh''4 %{notechange%} b2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} fih''16 \mf ~ fih''4 ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} fih''8. ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''2 %{notechange%} e'2. \p ~ e'8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} fih''8. \mf ~ fih''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} e'4 \p ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} a8. ~ } a4. | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} a'4 \p } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 e''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 fih''16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} fih''4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} gis''8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. \mf ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 geh''4. %{notechange%} e'8 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e'8. \p | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih''2\mf ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} dih''8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 e'4 ~ \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 b2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} geh'16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} fih''4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} fih''4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} gis''8 ~ gis''4. ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 \mf ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} geh''4. \p | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} dih''8 \mf ~ dih''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} dih''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 geh''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 dih'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 cis'4. %{notechange%} dih'8 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 b'4 %{notechange%} dih''2. ~ dih''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 dih''8. %{notechange%} cis''16 \p ~ cis''8 | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} a4 ~ } a2 ~ a8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a4 %{notechange%} e''16 ~ } e''4 ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} b4 } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} geh''4. \p \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b4 %{notechange%} fih''4. \mf | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} b16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 fih''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 %{notechange%} cis''4. ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''8. %{notechange%} cis'8 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 cis'8. %{notechange%} cis''16 \p ~ cis''2 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} b'8. \mf ~ b'4 | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} b'16 \mf ~ b'2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih'4 %{notechange%} fih''8 \mf ~ } fih''4. | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} gis''4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} gis''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 %{notechange%} dih''2.\mf ~ dih''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih''2.\mf ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih''4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} cis''4\p ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis''4 %{notechange%} fih''4. \mf | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b4 ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 a1 a4 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2 ~ dih''8 ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 cis'8 %{notechange%} gis''4. ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 gis''16 %{notechange%} r8. r4. | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''8 %{notechange%} b'8 \mf ~ b'2. | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 geh'4 %{notechange%} a8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 a4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} a'8. } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} fih''2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} a'8 ~ } a'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_down.ly new file mode 100644 index 0000000..d2db928 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} e'8. ~ e'2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a16 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} dih'8. %{notechange%} r16 r4. | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. ~ b4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } r8 | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} r16 } r4. | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 r2 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} fih'2 \p ~ fih'8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} r4 } r8 | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r1 r2 %{notechange%} dih'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 dih'8. %{notechange%} r16 r8 | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} cis'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 cis'8. %{notechange%} r16 | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} r8 } r4. | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r4 %{notechange%} e'16 \p ~ } e'2. ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 e'4 ~ e'16 %{notechange%} r8. r4. | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b8. ~ b8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 a2 %{notechange%} r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih'4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} r2 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 dih'1 ~ dih'4 ~ dih'8. %{notechange%} r16 r2 | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} r8 r4. | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} r8 } r4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 dih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} dih'2 \p | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 cis'8 %{notechange%} e'8 \p ~ e'2. ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} r8 } r4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'4 | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e'8 ~ e'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'4. ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} r16 r4. | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} r16 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} a16 ~ a2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8 %{notechange%} b8. \p ~ } b4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} r8. r8 | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} r8 } r8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 fih'8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 geh'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r1 r2 %{notechange%} dih'4 | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 \hideNotes r2. r2. r2. | \unHideNotes %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} r8. | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf } | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } dih'4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ dih'8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} r4. \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 ~ fih'4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} r8. r8 | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} e'8 %{notechange%} r8 r4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 e'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} r8. r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 ~ fih'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} r16 } r4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 cis'8 %{notechange%} a4. ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} r8. | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 ~ } cis'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} r8 r4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 cis'4 %{notechange%} a4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } r2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2. | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 fih'8. %{notechange%} r16 | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} r8. r8 | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} b4 ~ } b8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} cis'2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e'8. | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 b8 %{notechange%} r8 r4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b2. ~ b8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 \mf } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} r8. } r8 | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a4 %{notechange%} r16 } r8 | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} r16 } r4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 ~ \tuplet 3/2 { geh'4 %{notechange%} r8 } r4. | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 dih'4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} cis'8. ~ cis'2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8. %{notechange%} fih'8 } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b8 %{notechange%} dih'8 ~ dih'2. ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b2. \p | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r4 r4 r4 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 dih'16 %{notechange%} r8. r4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} dih'4. ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 dih'8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih'4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 cis'1 ~ \tuplet 3/2 { cis'4 %{notechange%} fih'8 \p ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 a4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 geh'1 ~ \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a2. ~ | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih'4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r4. | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a8 %{notechange%} r8 r4. | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 \mf ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 b8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 \hideNotes r2. | \unHideNotes %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} cis'8. \mf ~ cis'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 cis'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} b2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r2 %{notechange%} e'2. ~ e'8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} r8. r4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} e'4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a4. | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} r2 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. \mf ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} r8 } r8 | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 \p ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 e'4 ~ \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 b2 \hideNotes r2 | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} geh'16 %{notechange%} r8. r4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 dih'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 cis'4. %{notechange%} dih'8 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} r16 r2 | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a2 ~ a8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} b4 \p } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b4 \hideNotes r4. | \unHideNotes %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} b16 %{notechange%} r8. r8 | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 cis'8. %{notechange%} r16 r2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} r16 r2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r4. | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} r4 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b4 ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 a1 a4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} r8. r8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 cis'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 geh'4 %{notechange%} a8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 a4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} r8 } r4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_up.ly new file mode 100644 index 0000000..25e342e --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_0_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''4 %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 b'1 b'4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 e''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 fih''2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r4. \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''16 %{notechange%} r4 } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 dih''1 dih''2 %{notechange%} r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} cis''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 r8. %{notechange%} e''16 \mf ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} b'8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} r8. } r4. | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8. %{notechange%} r8 } r8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih''4 %{notechange%} r16 } r2. | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} r8 } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} r8. r8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} gis''4 ~ } gis''8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2.\p | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 %{notechange%} gis''1 ~ gis''1 ~ gis''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 dih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2\p ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r1 r4 r8. %{notechange%} a'16 ~ a'2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} dih''8 \mf ~ } dih''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 r4. %{notechange%} a'8 \p ~ a'4. ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} geh''16 \p ~ } geh''4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} r8. } r8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} r8 r4. | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} b'4. \mf ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 e''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8 %{notechange%} r8. } r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} fih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4\p | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} fih''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} a'8 %{notechange%} geh''8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} r8 r2 | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } r4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} r8. r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 ~ geh''4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 a'8. %{notechange%} geh''16 ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} a'4 \p ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} r16 r2 | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b'4 %{notechange%} r16 } r4. | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''4. %{notechange%} e''4. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r8. %{notechange%} dih''16 ~ dih''1 ~ dih''2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} b'8 ~ } b'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih''2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih''4 ~ \tuplet 5/4 { fih''16 %{notechange%} r4 } r2 | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih''8. ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 fih''4 ~ \tuplet 5/4 { fih''8. %{notechange%} r8 } r4. | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 e''1 e''2 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r2. %{notechange%} a'1 ~ a'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} r8 r2 | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e''8 ~ e''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e''8. ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} e''4. ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 3/2 { b'4 %{notechange%} r8 } r8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} r4 } r8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''4 %{notechange%} b'16 ~ } b'2 ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} a'4. \p ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r2. r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} r8 } r2. | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 3/2 { a'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. \mf | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''4 %{notechange%} r8 } r4. | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 gis''8. %{notechange%} cis''16 \p ~ cis''4. | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} geh''8 \p ~ geh''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} r2. r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 a'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8 %{notechange%} fih''8. \mf ~ } fih''2. ~ | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { fih''8. %{notechange%} r8 } r2. | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 r8. %{notechange%} e''16 | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 geh''2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} gis''4 \mf ~ } gis''8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} b'8 \mf ~ b'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { b'4 %{notechange%} r8 } r2. r8 | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 ~ a'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'8 %{notechange%} r4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''8 ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} geh''16 ~ } geh''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh''16 ~ } geh''4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 cis''4. \hideNotes r4. | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 \tuplet 3/2 { r4 %{notechange%} cis''8 ~ } cis''4. | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih''8. ~ fih''8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} r8. r2 | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'4. | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b'4 ~ | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b'8. %{notechange%} r8 } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 geh''4 \hideNotes r2. | \unHideNotes %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} cis''8. ~ } cis''4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r8 | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis''8. ~ cis''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 r8 %{notechange%} cis''8 \p ~ cis''2 ~ cis''8 ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 cis''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r1 r4 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} geh''2 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} cis''8 \p ~ cis''4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 %{notechange%} geh''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} geh''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r1 \hideNotes r1 | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 b'8. %{notechange%} fih''16 | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8 %{notechange%} b'8. \mf ~ } b'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} b'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} r4 } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} r8. r8 | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} fih''16 \mf ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} r8. r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} e''8 %{notechange%} gis''4 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} geh''2. ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r2 \hideNotes r4. | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} fih''16 \mf ~ fih''4 ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 r16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} fih''8. ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''2 %{notechange%} r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih''8. ~ fih''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 e''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 fih''16 %{notechange%} r8. r4. | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh''4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 geh''4. %{notechange%} r8 | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih''2\mf ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} dih''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih''2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} fih''4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} gis''8 ~ gis''4. ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} geh''4. \p | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} dih''8 ~ dih''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} dih''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 geh''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} a'8 ~ } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 b'4 %{notechange%} dih''2. ~ dih''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 dih''8. %{notechange%} cis''16 \p ~ cis''8 | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} r4 } r2 r8 | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} e''16 ~ } e''4 ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} r4 } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} geh''4. \p \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. \mf | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} cis''16 \p ~ cis''2 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} b'16 \mf ~ b'2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } fih''4. | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} gis''4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} gis''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 %{notechange%} dih''2.\mf ~ dih''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih''2.\mf ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih''4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} cis''4\p ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis''4 %{notechange%} fih''4. \mf | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r1 r4 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2 ~ dih''8 ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 gis''16 %{notechange%} r8. r4. | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''8 %{notechange%} b'8 \mf ~ b'2. | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} a'8. \p } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih''2\mf | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} a'8 \p ~ } a'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1.ly new file mode 100644 index 0000000..debc4c0 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'8 %{notechange%} cis''4 \p ~ } cis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a4 %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } geh''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r4. | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 r8. %{notechange%} gis''16 ~ gis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r4 | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 geh'8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} fih'2 \p | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b4 %{notechange%} r16 } r2 | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 gis''8 %{notechange%} dih''8 ~ | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} a4 \mf ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ gis''16 %{notechange%} dih''8. ~ dih''8 ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 dih''4 ~ \tuplet 5/4 { dih''4 %{notechange%} a16 ~ } a4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 fih''4 %{notechange%} a'2.\p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 fih''2 %{notechange%} fih'2 \p ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } r4 | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. \p ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} e''2\mf ~ e''8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} geh''8. ~ } geh''4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} geh'8 \mf ~ geh'4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 geh'8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 e''16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 a'1 ~ a'8 %{notechange%} geh'8 \mf ~ geh'4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} b'16 \mf ~ b'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'8 %{notechange%} fih'4 \p ~ } fih'4. | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} r16 r4 | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2. ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''8 %{notechange%} b8 \p ~ b4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} gis''16 \mf ~ } gis''4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''4 %{notechange%} b2. \p ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} gis''16 \mf ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} geh'8. \mf ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 fih'4. %{notechange%} e''4\mf ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} cis''4 | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } dih''4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} b8. ~ b2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4 ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih''2 %{notechange%} e''1 ~ e''1 ~ e''4 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } fih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 \mf ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} a'8. \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 a'4. %{notechange%} geh''8 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 cis'2 ~ \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''1 ~ gis''4 | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} geh''4 \p | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ a'16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} b'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} cis'16 %{notechange%} e'8. \p ~ e'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} gis''4 \mf ~ } gis''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} b8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} fih''8. \mf ~ fih''4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih''2 %{notechange%} b'2 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} b4. \p ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} b'8 %{notechange%} b4 \p ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} b'8 \mf ~ } b'8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} b8 \hideNotes r4 | \unHideNotes %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a4 %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ dih''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 fih''8. %{notechange%} geh''16 \p ~ geh''2 ~ geh''8 ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 a'8 %{notechange%} geh''4. | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} b'8 \mf ~ } b'8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'4 %{notechange%} b16 \p ~ } b2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} e'8 \p ~ e'4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r8 %{notechange%} dih''8 \mf ~ dih''2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} gis''8. \mf ~ gis''2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''8. %{notechange%} fih'8 \p ~ } fih'2 ~ fih'8 | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 %{notechange%} cis'1 \mf ~ cis'2. ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 cis'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} fih'8 \p ~ } fih'4 | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} cis''4 ~ } cis''8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis''4 ~ } cis''8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} dih'8 } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r2 r8. %{notechange%} a16 \mf ~ a4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} b'4 \mf ~ } b'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 e''4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} geh''4 ~ } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'2. %{notechange%} a'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'1 ~ b'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 dih'8. %{notechange%} a16 \mf ~ a8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 a2 %{notechange%} b2 \p ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} r8 } r8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} e'4. \p | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} b'4 ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 b'4 ~ b'16 %{notechange%} a'8. \p ~ a'4 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r4 | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4. %{notechange%} gis''8 \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a8. %{notechange%} gis''8 } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 a4 %{notechange%} gis''4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 gis''8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} e'16 \p ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} geh''8 ~ geh''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih'4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} fih'8. ~ fih'2 | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8. %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} gis''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} b'2 ~ b'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b'4 %{notechange%} geh'4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } gis''2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} dih'4 \p ~ } dih'4 ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 fih''4. %{notechange%} r8 | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r8. %{notechange%} b8 \p ~ } b2 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1\mf ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} fih'8. %{notechange%} e''16 \mf ~ e''8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'2 ~ e'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 e'8 %{notechange%} a'4. ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} a'8. \p | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} a'8 \p ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} dih''16 \mf ~ dih''4 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} dih'4 \p ~ } dih'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 fih'4 %{notechange%} dih'2. ~ dih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } gis''2 ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} e''8. ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} a4 \mf ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} a16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 %{notechange%} cis'1 \mf ~ cis'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } geh''4. ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} cis''4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis''4 \p | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih'2 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 a'8. %{notechange%} e'16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e''4 \mf ~ | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 e''1 e''4 %{notechange%} a4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} fih''8. ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 a'8. %{notechange%} r16 r8 | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 r4 | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} geh'2 \mf ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} fih'4 ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} e''4. ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} geh'4. ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'16 %{notechange%} geh''4 \p ~ } geh''4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} geh''8 %{notechange%} b8 ~ b4. | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8 %{notechange%} geh''8. ~ } geh''4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis'4 \mf | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis''4 %{notechange%} a2. \mf | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. %{notechange%} fih''4 \mf ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} a'4 \p | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} gis''16 \mf ~ gis''2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'4 %{notechange%} fih'8 \p ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} e'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} fih'4 \p } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 ~ | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 dih''2. %{notechange%} a1 ~ a2. ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} cis''8. ~ cis''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 b'4 %{notechange%} a4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} b'8 \mf ~ } b'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b'1 b'4 %{notechange%} fih'2. \p | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} e'4 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} e''8. \mf } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} a'16 %{notechange%} r8. r4 | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b4 %{notechange%} geh''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} a4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { b'4 %{notechange%} b8 \p ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} geh''4 ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 geh''8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 e'4 ~ e'16 %{notechange%} b'8. \mf ~ b'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 fih''2 %{notechange%} e'4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 fih''8 %{notechange%} r8 r2 | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e''8 %{notechange%} a8. ~ } a4. | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 dih''4 ~ dih''16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} gis''4 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 geh''4 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} cis'4. ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} geh''4. %{notechange%} e'8 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e'8 \p | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 \mf ~ | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} gis''8. ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} fih''4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} geh'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'2. ~ a'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} b8. %{notechange%} e'16 ~ e'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 e'8. %{notechange%} dih'16 ~ dih'4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 e'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'2 | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a'4. | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} b4 ~ } | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} b16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 geh''4 ~ \tuplet 5/4 { geh''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''16 %{notechange%} a4 \mf ~ } a4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a4 %{notechange%} e''16 ~ } e''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 geh''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'2 ~ e'8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} cis'4 \mf | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} geh'8. %{notechange%} dih'16 \p ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 %{notechange%} cis''4 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} cis'4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} dih'16 %{notechange%} b'8. \mf ~ b'4 | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2\p | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'8. %{notechange%} b'16 \mf ~ b'2 ~ b'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} cis''8. \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih''4 \mf ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih''8. %{notechange%} cis''16 \p ~ cis''2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 cis'8 %{notechange%} cis''8 \p ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} r8. } r8 | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} geh'8. %{notechange%} geh''16 \p ~ geh''4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh''4 %{notechange%} e''16 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } r4 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis'4 %{notechange%} gis''4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 cis'2. ~ cis'8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} fih''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} cis''4. \p | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} a'8. ~ } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} a'8. } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} a'8. ~ } a'8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''8 %{notechange%} r8 r2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8. %{notechange%} cis'8 ~ } cis'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_down.ly new file mode 100644 index 0000000..300b489 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } r2 | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} r16 r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 geh'8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} fih'2 \p | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b4 %{notechange%} r16 } r2 | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} a4 \mf ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } r8 | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih'2 ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 e'2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh'8 \mf ~ geh'4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 geh'8. %{notechange%} r16 r8 | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r1 r8 %{notechange%} geh'8 \mf ~ geh'4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} r16 } r4. | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b2. ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} r16 } r2 r8 | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} geh'8. \mf ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 fih'4. \hideNotes r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} b8. ~ b2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 %{notechange%} r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8. %{notechange%} r8 } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. \mf ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} r4 r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 cis'2 ~ \tuplet 3/2 { cis'4 %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } r2 | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'4 %{notechange%} r8 } r2 | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} cis'8. ~ } cis'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} cis'16 %{notechange%} e'8. \p ~ e'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} b8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} r8. r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} b4 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} b8 \hideNotes r4 | \unHideNotes %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a4 %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 cis'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r4 r4 r8 \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} r8 } r8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} e'8 \p ~ e'4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} r8. r2 | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2 ~ fih'8 | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 %{notechange%} cis'1 \mf ~ cis'2. ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 cis'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'4 | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r2 r8. %{notechange%} a16 \mf ~ a4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} r4 } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'2. \hideNotes r1 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} r8 } r1 r2 | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 dih'8. %{notechange%} a16 \mf ~ a8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 a2 %{notechange%} b2 \p ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} r8 } r8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} e'4. \p | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4. %{notechange%} r8 r2 r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a8. %{notechange%} r8 } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 e'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih'4 %{notechange%} r16 } r4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} fih'8. ~ fih'2 | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8. %{notechange%} r8 } r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} r2 r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh'4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } r2 | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } dih'4 ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r8. %{notechange%} b8 ~ } b2 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} fih'8. %{notechange%} r16 r8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'2 ~ e'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 e'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis'4 ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} r8 r4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } dih'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 fih'4 %{notechange%} dih'2. ~ dih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } r2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} r8. \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} r8. } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} a16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 %{notechange%} cis'1 ~ cis'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} r8. } r4. | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih'2 \p ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 r8. %{notechange%} e'16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 r4 %{notechange%} a4. \mf ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} r8. | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} geh'2 \mf ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} fih'4 ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} geh'4. \mf ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'16 %{notechange%} r4 } r4. | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 \p ~ b4. | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8 %{notechange%} r8. } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis'4 \mf | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} a2. | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. \hideNotes r4 | \unHideNotes %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} r16 r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} e'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} fih'4 \p } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 ~ | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } r4. | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r2. %{notechange%} a1 ~ a2. ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r8 | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r1 r4 %{notechange%} fih'2. | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} e'4 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} r8. } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b4 \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} a4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 e'4 ~ e'16 %{notechange%} r8. r2 | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r2 %{notechange%} e'4. ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8 %{notechange%} a8. ~ } a4. | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r4 r16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} cis'4. ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} r4. %{notechange%} e'8 \p ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} geh'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} b8. %{notechange%} e'16 ~ e'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 e'8. %{notechange%} dih'16 ~ dih'4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 e'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'2 | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} b4 ~ } | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} b16 %{notechange%} r8. | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r4 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a4 %{notechange%} r16 } r2 | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'2 ~ e'8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} cis'4 \mf | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} geh'8. %{notechange%} dih'16 \p ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} dih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'8. %{notechange%} r16 r2 r8 | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 cis'8 %{notechange%} r8 | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} geh'8. %{notechange%} r16 r4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 cis'2. ~ cis'8. %{notechange%} r16 r2. r8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} r8. } r8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} r4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_up.ly new file mode 100644 index 0000000..07ffbae --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_1_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis''8. %{notechange%} r8 } r2 | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } geh''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r4. | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 r8. %{notechange%} gis''16 ~ gis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} r2 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'4 %{notechange%} r8 } r4. | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 gis''8 %{notechange%} dih''8 ~ | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ gis''16 %{notechange%} dih''8. ~ dih''8 ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 dih''4 ~ \tuplet 5/4 { dih''4 %{notechange%} r16 } r4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 fih''4 %{notechange%} a'2.\p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 fih''2 \hideNotes r2 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} e''2 ~ e''8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 r8. %{notechange%} e''16 \mf ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 e''16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 a'1 ~ a'8 %{notechange%} r8 r4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 \mf ~ b'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'8 %{notechange%} r4 } r4. | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''8 %{notechange%} r8 r4. | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} gis''16 ~ } gis''4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''4 \hideNotes r2. | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r4 %{notechange%} gis''16 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e''4\mf ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} cis''4 | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } dih''4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} r8. r2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 gis''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4 ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih''2 %{notechange%} e''1 ~ e''1 ~ e''4 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''4 %{notechange%} r16 } r8 | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 dih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} a'8. \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 a'4. %{notechange%} geh''8 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r2 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''1 ~ gis''4 | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} geh''4 \p | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ gis''8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 e''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b'4. \mf ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} r4 } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8 %{notechange%} r8. } r4. | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } r2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih''8. ~ fih''4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih''2 %{notechange%} b'2 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} b'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} r8. r8 | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''4 %{notechange%} r16 } r4. | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ dih''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''4 %{notechange%} r16 } r8 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 fih''8. %{notechange%} geh''16 \p ~ geh''2 ~ geh''8 ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''8 %{notechange%} r8. } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 a'8 %{notechange%} geh''4. | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} r8. } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} b'8 \mf ~ } b'8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'4 %{notechange%} r16 } r2 | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r8 %{notechange%} dih''8 ~ dih''2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} gis''8. ~ gis''2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r8 | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} r8 } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r2 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} b'4 \mf ~ } b'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 e''4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} r8. r8 | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2. %{notechange%} a'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} r8 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'1 ~ b'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} b'4 ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 b'4 ~ b'16 %{notechange%} a'8. \p ~ a'4 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r4. | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} gis''16 ~ gis''4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r4. | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 r4. %{notechange%} gis''8 ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} r8 } r2 | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} gis''8 \mf } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} r8 } r8 | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 gis''8 %{notechange%} r8 r2 | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh''8 \p ~ geh''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8 %{notechange%} r8. } r4. | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} r8. } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r4. | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} gis''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} r16 } r4. | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} r16 } r4. | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} b'2 ~ b'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 fih''4. %{notechange%} r8 | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} r8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} dih''16 \mf ~ dih''4 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r4. | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''2 ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} e''8. ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} r8 } r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''4. ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} cis''4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} cis''4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } r2 | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 a'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e''4 \mf ~ | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 e''1 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih''8. ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 a'8. %{notechange%} r16 r8 | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} e''4. ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh''4 \p ~ } geh''4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} geh''8 %{notechange%} r8 r4. | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis''4 \hideNotes r2. | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. %{notechange%} fih''4 \mf ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} a'4 \p | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 ~ gis''2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'4 %{notechange%} r8 } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 dih''2. \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 b'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} b'8 \mf ~ } b'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b'1 b'4 \hideNotes r2. | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 a'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} e''8. \mf } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} r4 } r8 | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b'16 \mf ~ } b'4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { b'4 %{notechange%} r8 } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh''4 ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 geh''8. %{notechange%} r16 r4. | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} r8 } r8 | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} b'8. ~ b'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 fih''2 \hideNotes r4. | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih''8. ~ | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 fih''8 %{notechange%} r8 r2 | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 dih''4 ~ dih''16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} gis''4 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 geh''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} r8 } r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} geh''4. %{notechange%} r8 | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} r8. r8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2.\p ~ cis''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} r8 | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 \mf ~ | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} fih''4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'2. ~ a'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'8. %{notechange%} r8 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} r4 \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a'4. \p | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} dih''8. ~ | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 geh''4 ~ \tuplet 5/4 { geh''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''16 %{notechange%} r4 } r4. | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} e''16 \mf ~ } e''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 geh''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} cis''4 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2\p | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 r8. %{notechange%} b'16 \mf ~ b'2 ~ b'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} cis''8. \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih''4 \mf ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih''8. %{notechange%} cis''16 \p ~ cis''2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 r8 %{notechange%} cis''8 \p ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} r8. } r8 | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} geh''16 ~ geh''4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh''4 %{notechange%} e''16 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r2. r8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} fih''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} cis''4. \p | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} a'8. ~ } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} r4 } r8 | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} a'8. } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} a'8. ~ } a'8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''8 %{notechange%} r8 r2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8. %{notechange%} r8 } r8 | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2.ly new file mode 100644 index 0000000..4be371c --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} a'16 ~ a'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4. %{notechange%} a'4. | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r4 | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } dih''4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'4 | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} a2. \mf ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 cis'2 ~ \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ gis''16 %{notechange%} dih''8. ~ dih''4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 fih'4 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 \p ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 e'2 %{notechange%} e''2\mf | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 gis''2. %{notechange%} dih'4. \p ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} e'8 ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} a4 \mf | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} geh''4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} b8. \p ~ b8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} b8. \p ~ | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 gis''4. %{notechange%} e''4 ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} fih'4 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'16 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 5/4 { e''8 %{notechange%} dih'8. \p ~ } dih'4 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} gis''4 \mf ~ } gis''4 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} dih'8. ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 ~ \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'1 ~ geh'1 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} a'16 ~ } a'4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 a'4. %{notechange%} geh''8 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} dih''8 %{notechange%} a4 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} a'4 \p ~ } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'4 ~ \tuplet 5/4 { b'4 %{notechange%} e''16 ~ } e''1 ~ e''2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} a'8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ e''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} cis'16 ~ } cis'2 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 cis'16 %{notechange%} e'8. \p ~ e'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 cis'4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 b'4 %{notechange%} b2 \p ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} fih''8. \mf ~ fih''4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 %{notechange%} b'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} b4. \p ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 b4 %{notechange%} b'2\mf ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 dih'4. %{notechange%} a'4 ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''4 %{notechange%} geh'16 ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} b8. \p ~ } b8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 a'8. %{notechange%} geh''16 ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ fih''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 fih''8 %{notechange%} fih'4. \p | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 cis''16 %{notechange%} dih'8. ~ dih'2 ~ dih'8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} geh''4 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. \mf ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} a16 ~ } a4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} geh'8. ~ } geh'8 ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} fih''8 ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''4. %{notechange%} e''4. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} cis'16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { gis''8. %{notechange%} fih'8 \p ~ } fih'2. | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis'1 \mf ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 cis''2 %{notechange%} geh''1 ~ geh''4 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 %{notechange%} cis''4 | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih''8 \mf ~ } fih''4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} fih''4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 geh'4 %{notechange%} a'4 \p ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 cis'8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'2 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8. %{notechange%} geh''8 \p ~ } geh''8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'2 ~ b'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'4. ~ | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} fih''8. ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} geh'4 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 r2 %{notechange%} dih'2. \p ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} a'4 ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} fih'8 ~ fih'2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 a'4 %{notechange%} fih'2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a'4. ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 gis''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} cis'16 ~ cis'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2\mf ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 b8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} e'4. \p ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } dih''2. ~ dih''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} geh''8. ~ | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih''8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} geh''8 ~ geh''4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 gis''8. %{notechange%} cis''16 \p ~ cis''4 | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} b'4 ~ } | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e'8. %{notechange%} cis'8 \mf ~ } cis'2. ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 b'4 ~ b'16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 geh'4 ~ geh'16 %{notechange%} a'8. \p | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 geh'4 ~ geh'16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b4 ~ b16 %{notechange%} e''8. \mf | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} e''8. \mf ~ e''8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2. ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 geh''8. %{notechange%} a'16 ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 geh''4 %{notechange%} a2 \mf ~ a8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 a4 %{notechange%} geh'4 | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 gis''8. %{notechange%} e''16 ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 e''8. %{notechange%} dih''16 ~ dih''2. | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'16 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e''8. \mf ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} r16 r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 \p } | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 fih'8. %{notechange%} e''16 \mf ~ e''8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} b4 \p ~ } \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} cis''8 ~ } cis''8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'8 %{notechange%} dih'8 \p ~ dih'2. ~ dih'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} geh'2 \mf ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 a16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} e'8. ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} e''8. \mf ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} a4 ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} e''8. \mf ~ e''4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 e''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 geh'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'8. %{notechange%} dih'16 \p ~ dih'1 ~ dih'4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} fih'4 ~ } | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} geh'2. \mf | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} gis''4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} e'8. | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 b8. %{notechange%} b'16 \mf ~ b'2 ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 b'16 %{notechange%} b8. \p ~ b8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} geh''8. ~ } geh''4 ~ | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} geh''8 %{notechange%} b4. | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'4 ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} dih'8. ~ dih'8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'16 %{notechange%} cis''4 ~ } cis''8 | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''8 | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} cis''8. \p ~ } cis''4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} a'4 \p } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 ~ fih'16 %{notechange%} gis''8. \mf ~ gis''2 ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} a4 ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} a4 ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } r4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} cis'8. ~ cis'2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} fih'4 \p | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} cis'8 \mf ~ cis'4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} a4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} e''4. ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 b8. %{notechange%} gis''16 \mf ~ gis''1 ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} fih'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis''4 %{notechange%} fih'4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'16 %{notechange%} e'8. ~ e'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 fih'4 %{notechange%} fih'4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 a'4 ~ a'16 %{notechange%} e'16 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} a'4 %{notechange%} fih'4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'4 ~ a'16 %{notechange%} r8. r2 | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2. r8. %{notechange%} geh''16 ~ geh''1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 geh'8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} geh''4 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} b4 %{notechange%} a4 \mf ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} geh'8. \mf ~ } geh'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 geh'8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} dih''4 ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} fih''8. \mf ~ fih''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} b'8. \mf ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 b'8. %{notechange%} fih''16 ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} b'16 \mf ~ b'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e''8 %{notechange%} a8. ~ } a2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 dih''4 ~ dih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 r8 %{notechange%} dih'8 \p | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih'2. ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} b4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} cis'8. ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 cis'2 %{notechange%} b2. \p ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} b4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 fih''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r4. %{notechange%} e'8 \p ~ e'4. | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e'8. \p ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e'8. \p | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'8 %{notechange%} gis''4. ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} fih''8 ~ } fih''8 ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} geh'4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} a8. \mf ~ a4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 a4 ~ a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh''8 %{notechange%} a'4 ~ } a'2. ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'4 %{notechange%} fih''8 ~ } fih''4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} gis''8 ~ gis''4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} gis''4 %{notechange%} b2 \p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} dih''8. \mf ~ dih''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a8 %{notechange%} e''8. ~ } e''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} dih'8. ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} cis'2 \mf ~ cis'8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'16 %{notechange%} e'4 \p ~ } e'4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} cis''8 \p | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} b4. \p \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih'16 %{notechange%} b'8. \mf | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} gis''8 %{notechange%} cis''4. \p | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih''4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 gis''8. %{notechange%} cis''16 \p ~ cis''2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8 %{notechange%} r8. } r8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} e'4 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} cis'4 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} fih''4. \mf | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} dih'4 \p ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} b'8. \mf ~ b'8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 b'4 %{notechange%} geh'4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'16 %{notechange%} b'8. \mf ~ b'2. ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 e'1 ~ e'4 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} fih''4 \mf ~ } fih''8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} a'8. ~ } a'4 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 b2 %{notechange%} gis''2\mf | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} r8 r4. | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. r4 | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} fih''4 ~ } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 cis''16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} fih''8 ~ } fih''4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_down.ly new file mode 100644 index 0000000..1630ca9 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} r8 r4. | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8. %{notechange%} r8 } r4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'4 | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} a2. \mf ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 cis'2 ~ \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} r8 r4. | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. ~ e'4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. \mf ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } r8 | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} b8 \p ~ } b2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih'4. ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 fih'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 e'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2. %{notechange%} dih'4. \p ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8. %{notechange%} r8 } r8 | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } r8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r4 \tuplet 5/4 { r8. %{notechange%} e'8 ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} a4 \mf | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} cis'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b8. \p ~ b8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b8. ~ | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} r4 } r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 fih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'16 %{notechange%} r4 } r4. | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } r2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'4 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 ~ \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'1 ~ geh'1 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r4. | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} a4 \mf ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} r4 r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 \hideNotes r1 r1 | \unHideNotes %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r8 | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} r8 } r4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} cis'16 ~ } cis'2 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 cis'16 %{notechange%} e'8. \p ~ e'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 cis'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} b2 \p ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} r8. r4. | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} b4. ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 b4 \hideNotes r2 | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 dih'4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} r4 } r8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 a4 \hideNotes r2 | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} b8. \p ~ } b8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 r16 %{notechange%} dih'8. ~ dih'2 ~ dih'8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} r8 } r8 | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} cis'16 %{notechange%} r8. r4. | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'2. | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis'1 \mf ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r2 %{notechange%} r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} r4 } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 ~ } geh'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 cis'8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 r2 %{notechange%} dih'2. \p ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} fih'2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} r4 } r2 | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 r8. %{notechange%} cis'16 \mf ~ cis'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { e'8 %{notechange%} r8. } r2. r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e'8. %{notechange%} cis'8 \mf ~ } cis'2. ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 geh'4 ~ geh'16 %{notechange%} r8. | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 \p ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 geh'4 ~ geh'16 %{notechange%} r8. r8 | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. \p ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 b4 ~ b16 %{notechange%} r8. | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} r8. r8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} r8. r8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 a4 %{notechange%} geh'4 | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 } | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 fih'8. %{notechange%} r16 r8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 ~ } \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'8 %{notechange%} dih'8 \p ~ dih'2. ~ dih'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} geh'2 \mf ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 a16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e'8. \p ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} r8. r4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 geh'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'8. %{notechange%} dih'16 \p ~ dih'1 ~ dih'4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} fih'4 ~ } | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} geh'2. \mf | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e'8. | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 b8. %{notechange%} r16 r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 r16 %{notechange%} b8. ~ b8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} b4. | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} dih'8. ~ dih'8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 ~ fih'16 %{notechange%} r8. r2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} a4 ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} cis'8. ~ cis'2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} fih'4 \p | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} cis'8 \mf ~ cis'4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 b8. %{notechange%} r16 r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih'4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'16 %{notechange%} e'8. ~ e'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 fih'4 %{notechange%} fih'4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r4. | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 r4 r16 %{notechange%} e'16 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih'4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 \hideNotes r1 r1 | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 geh'8 %{notechange%} r8 | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} b4 %{notechange%} a4 \mf ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 geh'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 r8 %{notechange%} dih'8 \p | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih'2. ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} cis'8. ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 cis'2 %{notechange%} b2. \p ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} b4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r4. %{notechange%} e'8 ~ e'4. | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} r8. r8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} a8. \mf ~ a4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 a4 ~ a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'4 %{notechange%} r8 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'4 %{notechange%} r8 } r4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} r16 r2 | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} r4 %{notechange%} b2 ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} r8. r4. | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} dih'8. \p ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} cis'2 \mf ~ cis'8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'16 %{notechange%} e'4 \p ~ } e'4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b8. %{notechange%} r16 r4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih'16 %{notechange%} r8. | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} e'4 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} cis'4 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'16 %{notechange%} r8. r2. | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e'8 ~ e'4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 e'1 ~ e'4 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 b2 \hideNotes r2 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } r4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_up.ly new file mode 100644 index 0000000..e8b48b3 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_2_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} a'16 ~ a'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4. %{notechange%} a'4. | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 r4. %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ gis''16 %{notechange%} dih''8. ~ dih''4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'4 %{notechange%} r8 } r2 | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} e''2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 gis''2. \hideNotes r4. | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} r8 } r1 r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} r8. r8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 gis''4. %{notechange%} e''4 ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} r4 } r4. | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 e''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} r8. } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 r4 r1 r1 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} a'16 ~ } a'4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 a'4. %{notechange%} geh''8 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} dih''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} a'4 \p ~ } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'4 ~ \tuplet 5/4 { b'4 %{notechange%} e''16 ~ } e''1 ~ e''2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} a'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ e''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } r2 | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} r8. r8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 b'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih''8. ~ fih''4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 %{notechange%} b'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 b'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} b'2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} r16 } r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} a'4 ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} e''4 \mf ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} r8. } r8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''4 %{notechange%} r16 } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 a'8. %{notechange%} geh''16 ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ fih''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 fih''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2\p ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 cis''16 %{notechange%} r8. r2 r8 | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. \mf ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} r16 } r4. | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} fih''8 ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''4. %{notechange%} e''4. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } r2. | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} cis''2\p ~ cis''8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 cis''2 %{notechange%} geh''1 ~ geh''4 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} cis''4 | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih''8 \mf ~ } fih''4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 \p ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'2 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} r8. | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8. %{notechange%} geh''8 \p ~ } geh''8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'2 ~ b'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih''8. ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 r2 \hideNotes r2. | \unHideNotes %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} r8 r2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 a'4 \hideNotes r2. | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a'4. ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 gis''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} r16 r8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2 ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} gis''4 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''2. ~ dih''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { b'4 %{notechange%} r16 } r2. | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh''8 \p ~ geh''4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } r2 | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} r8 } r2 | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 gis''8. %{notechange%} cis''16 \p ~ cis''4 | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 \mf ~ } | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 b'4 ~ b'16 %{notechange%} r8. r8 | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} a'8. \p | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} r2. r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e''8. \mf | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2. ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 geh''8. %{notechange%} a'16 ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 geh''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 gis''8. %{notechange%} e''16 ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 e''8. %{notechange%} dih''16 ~ dih''2. | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} r16 r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r2 r8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 r8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} r4 } \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis''8 \p ~ } cis''8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e''8. \mf ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 e''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} e''8. ~ e''4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 e''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r8. %{notechange%} r16 r1 r4. | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} gis''4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} b'16 \mf ~ b'2 ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 b'16 %{notechange%} r8. r8 | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''4 ~ | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} geh''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'16 %{notechange%} cis''4 ~ } cis''8 | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''8 | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} cis''8. \p ~ } cis''4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} a'4 \p } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} r8 } r8 | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} gis''8. ~ gis''2 ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} r8. r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} e''4. ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r8. %{notechange%} gis''16 ~ gis''1 ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 a'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 a'4 ~ a'16 %{notechange%} r16 | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'4 ~ a'16 %{notechange%} r8. r2 | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2. r8. %{notechange%} geh''16 ~ geh''1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 r8 %{notechange%} geh''8 ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r8 | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} geh''4 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b'16 \mf ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih''8. ~ fih''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b'8. ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 b'8. %{notechange%} fih''16 ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} b'16 ~ b'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 dih''4 ~ dih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r2 %{notechange%} r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 fih''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} fih''8 ~ } fih''8 ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh''8 %{notechange%} a'4 ~ } a'2. ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} gis''8 \mf ~ gis''4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} gis''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} e''8. ~ } e''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 gis''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} dih''4. ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} cis''8 \p | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b'8. \mf | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} gis''8 %{notechange%} cis''4. \p | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih''4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 gis''8. %{notechange%} cis''16 \p ~ cis''2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8 %{notechange%} r8. } r8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} r4 } r2 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. ~ b'8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r16 %{notechange%} b'8. ~ b'2. ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} r8 r4. | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r1 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} a'8. \p ~ } a'4 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} r4 } r4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} gis''2\mf | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} r8 r4. | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 cis''16 %{notechange%} r8. r8 | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3.ly new file mode 100644 index 0000000..24665b3 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''16 %{notechange%} r4 } r4. | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 ~ gis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} gis''4 %{notechange%} e''2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } r4 | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} fih'4 \p | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'4 | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 cis'4 %{notechange%} e''4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} e''4 %{notechange%} fih''4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih''4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 gis''1 gis''4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r4 | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} geh'4 ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a16 %{notechange%} geh'4 } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2\mf ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2\mf ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} geh''8. ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} geh'8 \mf ~ geh'2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } r4 | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 \p ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} e'4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 e''16 %{notechange%} cis'8. ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } r4 | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 dih''16 %{notechange%} b8. \p ~ b4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} gis''4 \mf } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 dih''2 ~ \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''2. ~ cis''8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih''4 %{notechange%} gis''16 ~ } gis''4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 gis''8. %{notechange%} e''16 ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} a'4 \p } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 dih'4 ~ dih'16 %{notechange%} r8. r4. | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 b'4 ~ b'16 %{notechange%} geh'8. ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} fih'8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh'4 \mf | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \p ~ \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} cis'4 \mf } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { geh'4 %{notechange%} a'16 \p ~ } a'2 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} geh''16 ~ geh''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 cis''8. %{notechange%} b16 ~ b1 ~ b1 ~ b2 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} gis''4 \mf ~ } gis''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} gis''4 \mf ~ } gis''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} e'2 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''1 ~ gis''4 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'4 | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} b4. \p ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 b4 %{notechange%} b'2\mf ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} b4. \p ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} fih''8 \mf ~ fih''2 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} b'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} b8. \p ~ b8 | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} dih''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 dih'4. %{notechange%} a'4. ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { fih'4 %{notechange%} a16 \mf ~ } a4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a16 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} dih'2 \p | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { geh''4 %{notechange%} cis'16 \mf ~ } cis'2. ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2. | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} dih'8 %{notechange%} geh''8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 e''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a2 ~ a8 ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} dih'8. ~ dih'2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} geh''16 ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} fih'8. ~ } fih'8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} gis''8. \mf ~ gis''2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} fih'4 \p ~ } fih'8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} e'8 ~ e'4. | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} geh''4 ~ } geh''4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 %{notechange%} cis''2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { cis''16 %{notechange%} dih'4 ~ } dih'2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} dih''8. ~ dih''2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih''4 %{notechange%} geh'2 ~ geh'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 geh'1 ~ \tuplet 5/4 { geh'16 %{notechange%} fih''4 ~ } fih''2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 fih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} a4 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b'2. | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} a8. \mf ~ | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 b1 b2 %{notechange%} dih'4 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 dih'8. %{notechange%} a16 \mf ~ | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 b2. %{notechange%} a'1 ~ a'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} a'16 %{notechange%} fih'8. ~ fih'8 | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih'8. \p } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih'8. \p } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } r4 | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} a'4 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih''4 \mf ~ | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 fih'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} cis''4 \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { gis''8 %{notechange%} fih'4 \p ~ } fih'2 ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} e'2 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. \p ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} b16 %{notechange%} e''8. \mf ~ e''8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''4 %{notechange%} b'16 ~ } b'2 ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} a'4. \p ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'2. ~ dih'8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8. %{notechange%} gis''8 \mf ~ } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. \p | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 cis'4 ~ cis'16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} geh'4 ~ geh'16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh'8 %{notechange%} b4 \p ~ } b2. | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. ~ fih'8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} gis''8. %{notechange%} cis''16 \p ~ cis''4 | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 ~ fih'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 gis''8 %{notechange%} fih'8 \p ~ fih'2 ~ fih'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 fih'8 %{notechange%} a'4. ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 geh''8 %{notechange%} a4. \mf ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} a'8. \p ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} a'8 \p ~ a'4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} a4. \mf | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 fih'2 ~ fih'8. %{notechange%} e''16 \mf ~ e''4 ~ | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} e''8. %{notechange%} dih''16 ~ dih''2. | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 dih'4 ~ dih'16 %{notechange%} e''8. \mf | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} b8. \p } | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1\mf ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} r8. | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} b4 \p ~ } b8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''4 %{notechange%} geh''16 ~ } geh''8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 cis''2 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 a16 %{notechange%} fih''8. ~ fih''4. ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} e'8. | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 a'2 ~ a'8. %{notechange%} e'16 ~ e'4. ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 e'8 %{notechange%} e''8 \mf ~ e''2 ~ e''8 | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} cis''8. %{notechange%} r16 r4 | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih''8 %{notechange%} b4 \p ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { b8 %{notechange%} a'4 ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 a'1 ~ a'4 ~ a'16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 b8. %{notechange%} b'16 \mf ~ b'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} a4 \mf } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} a4 \mf ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 a8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 e'8 %{notechange%} e''8 \mf ~ e''2 ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4 | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} cis'8. ~ cis'2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} cis''16 \p ~ } cis''4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} a8 \mf ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} fih'8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2\mf ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} a4 } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} a2. | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r8 %{notechange%} cis'8 ~ cis'2. ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} e'2 \p ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 ~ | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} b8. \p ~ } b8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b4 \p } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} fih'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} cis''8 ~ cis''4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 cis''1 ~ \tuplet 3/2 { cis''4 %{notechange%} fih'8 ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} e'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 a4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} fih''4. \mf ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 fih''4 %{notechange%} geh''4 \p | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} b4 %{notechange%} geh''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} b2. \p ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b2 ~ \tuplet 5/4 { b8. %{notechange%} e''8 \mf ~ } e''1 ~ e''4 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8. %{notechange%} a8 ~ } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 a8 %{notechange%} e'4 \p ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} e''8. \mf ~ } e''8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} fih''8 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} a4 ~ a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} fih''16 ~ fih''8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} gis''4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 b'16 %{notechange%} r8. | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 cis'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} b2 \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} cis''4 ~ } cis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} fih''16 \mf ~ fih''4 ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 fih''8 %{notechange%} r8 r4. | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''2 %{notechange%} e'2. \p ~ e'8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 e'8. %{notechange%} b'16 \mf ~ b'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a8. %{notechange%} dih'16 \p ~ dih'2 | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4. | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 a16 %{notechange%} dih'8. \p | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 fih'8 %{notechange%} gis''8 \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} fih''4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} fih''4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} gis''8. ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 b4. %{notechange%} e'8 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh''4 } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} gis''8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'16 %{notechange%} geh'4 \mf ~ } geh'4 | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2\p ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 a'8 %{notechange%} fih'8 ~ fih'2. ~ fih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ geh'8. %{notechange%} cis'16 ~ cis'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh''8 %{notechange%} dih'8. ~ } dih'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } e''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} b'4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} b8. \p ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} a8 \mf ~ a4. ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { a16 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a16 %{notechange%} e''4 ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} geh''4. \p | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a4 %{notechange%} e''16 ~ } e''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} e''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} dih'16 ~ dih'8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 e'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e'4 %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} fih'16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 b4 %{notechange%} dih''2.\mf ~ dih''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} gis''16 ~ gis''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 b8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 cis'4. %{notechange%} dih'8 \p ~ dih'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} dih'8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} dih'8 %{notechange%} r8 | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 cis'4. %{notechange%} dih'4 \p ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} cis''16 ~ cis''4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} gis''8 %{notechange%} cis''4\p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} cis''8. \p ~ | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 cis''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} geh''8. \p ~ geh''4 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} fih''4 \mf ~ } fih''4 | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} fih''2\mf | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} b'8. \mf ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} cis'8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 %{notechange%} dih''2.\mf ~ dih''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} r16 } r4 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 r8 %{notechange%} fih'8 \p ~ fih'2 ~ fih'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} cis''4 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} a'8. ~ } a'8 | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b4 ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 dih'1 ~ dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} a'4 ~ } a'4. | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} a4 \mf ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. r4 | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2 ~ dih''8 | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 gis''16 %{notechange%} r8. r4. | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''2 ~ \tuplet 3/2 { geh''4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 a4 %{notechange%} fih''4 ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 a4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2 ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} gis''8. ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 cis'8 %{notechange%} geh''4\p ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 geh''4 %{notechange%} gis''2\mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 cis'8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_down.ly new file mode 100644 index 0000000..d4ec4de --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} fih'4 \p | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r1 \hideNotes r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a16 %{notechange%} geh'4 } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} r2 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} geh'8 \mf ~ geh'2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 \p ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} e'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r16 %{notechange%} cis'8. \mf ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r8 | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} r4 } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r2 r4 r2. r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'16 %{notechange%} r4 } r4. | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'16 %{notechange%} r4 } r4. | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } r2 | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 dih'4 ~ dih'16 %{notechange%} r8. r4. | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} geh'8. \mf ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} fih'8. %{notechange%} r16 r4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh'4 \mf | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \p ~ \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} cis'4 \mf } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { geh'4 %{notechange%} r16 } r2 | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r8. %{notechange%} b16 \p ~ b1 ~ b1 ~ b2 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8. %{notechange%} r8 } r8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} e'2 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} cis'8. ~ } cis'4 | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { e'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. \p ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 b4 \hideNotes r2 | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} b4. ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b8. ~ b8 | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 dih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { fih'4 %{notechange%} a16 \mf ~ } a4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} dih'2 \p | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r4 %{notechange%} cis'16 \mf ~ } cis'2. ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} dih'8 %{notechange%} r8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a2 ~ a8 ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} dih'8. ~ dih'2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} r16 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} r8. r2 | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} e'8 ~ e'4. | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 \hideNotes r2. | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} geh'2 \mf ~ geh'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 geh'1 ~ \tuplet 5/4 { geh'16 %{notechange%} r4 } r2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} a4 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} r8 } r8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'4. | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} a8. \mf ~ | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 b1 b2 %{notechange%} dih'4 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 dih'8. %{notechange%} a16 \mf ~ | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 b2. %{notechange%} r1 r2 | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. ~ fih'8 | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih'8. } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih'8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} e'2 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} b16 %{notechange%} r8. r8 | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'2. ~ dih'8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8. %{notechange%} r8 } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} r16 } r4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r4. | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} e'8. \p ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 cis'4 ~ cis'16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} geh'4 ~ geh'16 %{notechange%} r8. r8 | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh'8 %{notechange%} b4 \p ~ } b2. | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. ~ fih'8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 dih'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 ~ fih'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 r8 %{notechange%} fih'8 ~ fih'2 ~ fih'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a4. \mf ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} r8. | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 ~ } cis'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 cis'8 %{notechange%} r8 r4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 fih'2 ~ fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 dih'4 ~ dih'16 %{notechange%} r8. | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} b8. } | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} b4 ~ } b8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} r8. r8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 a16 %{notechange%} r8. r4. | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e'8. \p | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 r2 r8. %{notechange%} e'16 ~ e'4. ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 e'8 %{notechange%} r8 r2 r8 | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} r16 r4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 r4 r16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 b8. %{notechange%} r16 r2. | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } r8 | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} r8. } r8 | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 a8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 e'8 %{notechange%} r8 r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} cis'8. \mf ~ cis'2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} fih'8. %{notechange%} r16 r4. | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} a4 \mf } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} a2. | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r8 %{notechange%} cis'8 ~ cis'2. ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'8 %{notechange%} r8. } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 r4. \hideNotes r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} r8. } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 r4. \hideNotes r4 | \unHideNotes %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} e'2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} b4 } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} r8 r4. | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r1 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} e'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } r4. | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 a4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} b4 \hideNotes r4. | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} b2. \p ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b2 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} a8 \mf ~ } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 a8 %{notechange%} e'4 \p ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r4. | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} a4 ~ a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r4. | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } r8 | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} a4 ~ } a4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 cis'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} b2 \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r2 %{notechange%} e'2. ~ e'8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 e'8. %{notechange%} r16 r4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a8. %{notechange%} dih'16 \p ~ dih'2 | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4. | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 a16 %{notechange%} dih'8. \p | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 fih'8 %{notechange%} r8 r2 r8 | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 b16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 b4. %{notechange%} e'8 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 r8 %{notechange%} fih'8 \p ~ fih'2. ~ fih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ geh'8. %{notechange%} cis'16 ~ cis'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} r8 } r8 | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } dih'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b8. \p ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} a8 \mf ~ a4. ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { a16 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a16 %{notechange%} r4 } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a4 %{notechange%} r16 } r2 | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 r8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 e'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e'4 %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} fih'16 %{notechange%} r8. | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 b4 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 b8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 cis'4. %{notechange%} dih'8 \p ~ dih'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} dih'8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} dih'8 %{notechange%} r8 | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 cis'4. %{notechange%} dih'4 \p ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} r8. | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} cis'8 %{notechange%} r8 r4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 r8 %{notechange%} fih'8 \p ~ fih'2 ~ fih'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} r4 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b4 ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 dih'1 ~ dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r4. | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} a4 \mf ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 \tuplet 3/2 { r4 %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 a4 \hideNotes r4 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 cis'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 cis'8 %{notechange%} r4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_up.ly new file mode 100644 index 0000000..1e0ffb3 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_3_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''16 %{notechange%} r4 } r4. | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 ~ gis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} gis''4 %{notechange%} e''2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} e''4 %{notechange%} fih''4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih''4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 gis''1 gis''4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} r8 } r4. | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2\mf ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 fih''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2\mf ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} r8 r2 | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} e''4. ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 e''16 %{notechange%} r8. r2 r8 | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2 ~ gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a'4 %{notechange%} r8 } r2 | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r8 | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} r4 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 dih''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} gis''4 } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 dih''2 ~ \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''2. ~ cis''8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8. %{notechange%} r8 } r8 | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { dih''4 %{notechange%} gis''16 ~ } gis''4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 gis''8. %{notechange%} e''16 ~ | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} a'4 \p } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''8. %{notechange%} r8 } r8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 b'4 ~ b'16 %{notechange%} r8. | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} a'16 ~ } a'2 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} geh''16 ~ geh''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 cis''8. %{notechange%} r16 r1 r1 r2 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} r8. } r8 | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 \mf ~ } gis''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r2 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''1 ~ gis''4 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} b'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 b'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih''8 ~ fih''2 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} b'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} r8. r8 | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} dih''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} r16 } r4. | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 e''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { geh''4 %{notechange%} r16 } r2. | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''8 %{notechange%} r8. } r8 | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2. | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} r8 %{notechange%} geh''8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 r8 | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} r8. r2 | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} r8. } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} gis''8. \mf ~ gis''2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} geh''4 ~ } geh''4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} cis''2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \tuplet 5/4 { cis''16 %{notechange%} r4 } r2. | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} dih''8. ~ dih''2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r1 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 fih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} b'8 ~ } b'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} r8 } r4. | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b'2. | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r1 r2 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r2. %{notechange%} a'1 ~ a'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} r8 r2 | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} a'16 %{notechange%} r8. r8 | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} r8. } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} r8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } r2 | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} a'4\p | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih''4 \mf ~ | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} cis''4 \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } r2 | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} e''8. ~ e''8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''4 %{notechange%} b'16 ~ } b'2 ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} a'4. \p ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r2. r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} r8. r8 | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r4. | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} r8. } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r4 r16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} gis''8. %{notechange%} cis''16 \p ~ cis''4 | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 gis''8 %{notechange%} r8 r2 r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 geh''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r2 r8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} e''8. %{notechange%} dih''16 ~ dih''2. | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e''8. | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} r8. } | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} r8. | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''4 %{notechange%} geh''16 ~ } geh''8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 cis''2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih''8. \mf ~ fih''4. ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 a'2 ~ a'8. %{notechange%} r16 r4. | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r8 %{notechange%} e''8 \mf ~ e''2 ~ e''8 | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } r2 | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 a'1 ~ a'4 ~ a'16 %{notechange%} r8. r8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r8. %{notechange%} b'16 \mf ~ b'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'4 %{notechange%} r8 } r8 | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''8 ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e''8 \mf ~ e''2 ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} r8. r2 | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} cis''16 \p ~ } cis''4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. \mf ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} r8 } r4. | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2\mf ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} r4 } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} cis''4. \p | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 ~ | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} cis''8 ~ cis''4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 cis''1 ~ \tuplet 3/2 { cis''4 %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 fih''4 %{notechange%} geh''4 \p | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} geh''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''1 ~ e''4 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8. %{notechange%} r8 } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} e''8. ~ } e''8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 ~ | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} fih''8 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 b'8. %{notechange%} fih''16 ~ fih''8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} gis''4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 b'16 %{notechange%} r8. | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} gis''4 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r2 \hideNotes r4. | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} fih''16 \mf ~ fih''4 ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 fih''8 %{notechange%} r8 r4. | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''2 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} r2 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r8 %{notechange%} gis''8 ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} fih''4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh''4 \p } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} r8 } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. \mf | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 a'8 %{notechange%} r8 r2. r8 | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} e''4 \mf ~ } e''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} b'4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} e''4 ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} geh''4. \p | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} e''16 ~ } e''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} e''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} r16 r8 | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r4 %{notechange%} dih''2. ~ dih''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} gis''16 ~ gis''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} r4 \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} cis''16 \p ~ cis''4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} gis''8 %{notechange%} cis''4\p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} cis''8. \p ~ | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 cis''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} geh''8. ~ geh''4 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''4 | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih''2\mf | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b'8. ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8. %{notechange%} r8 } r4. | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 %{notechange%} dih''2.\mf ~ dih''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} cis''4\p ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8 %{notechange%} a'8. ~ } a'8 | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r1 r4 \tuplet 5/4 { r16 %{notechange%} a'4 ~ } a'4. | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih''2 ~ dih''8 | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 gis''16 %{notechange%} r8. r4. | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''2 ~ \tuplet 3/2 { geh''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2 ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4\p ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 geh''4 %{notechange%} gis''2\mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4.ly new file mode 100644 index 0000000..05949d1 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} fih'8 \p ~ fih'4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'2 | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} a4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { a8 %{notechange%} cis''4 \p ~ } cis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 a2 ~ \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} a8 %{notechange%} a'8 \p | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 a'2 %{notechange%} geh''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} geh''8 \p ~ } geh''4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} e''2\mf | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} gis''8. ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'4 %{notechange%} a16 \mf ~ } a4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 fih''2 %{notechange%} fih'2 \p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8. %{notechange%} geh''8 \p ~ } geh''4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} geh'8 \mf ~ geh'2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 geh'2 %{notechange%} e''2 ~ e''8 ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} geh'8 ~ geh'4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 geh'8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e''8. \mf ~ e''4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 e''2 ~ e''8. %{notechange%} b'16 ~ b'2. ~ b'8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} r16 r4 | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} a'4 ~ a'16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \p ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'2 ~ fih'8 | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { a8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} r16 r4 | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} a8. \mf ~ a8 ~ \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { a8 %{notechange%} dih''8. ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} b8. ~ b2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} a4. ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} gis''4 ~ } gis''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih'2 %{notechange%} e''1\mf ~ e''1 ~ e''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''2 ~ gis''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} e'8. ~ e'4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8 %{notechange%} fih''8. \mf ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } fih'4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'1 ~ b'16 %{notechange%} b8. \p ~ b2. ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} b'8 %{notechange%} b4. \p ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 b'4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} a4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} dih'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} fih'4 ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''2 | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} e'8. \p ~ e'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} gis''4 \mf ~ } gis''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 geh'2 %{notechange%} b'2 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} b'8 %{notechange%} b4 \p ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} b'8 \mf ~ } b'8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} r4 | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} e''8 %{notechange%} r8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 geh'4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} a8. ~ } a4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} a4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ dih''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} dih'8. ~ dih'2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} geh''4. ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} cis''4 \p ~ } cis''8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. \p ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis''4 ~ } cis''8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} geh''4. ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} fih''4. ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} fih''4. ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} fih''4. %{notechange%} e''4 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r4. %{notechange%} a8 ~ a2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 fih'2. ~ \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b2. ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 \mf ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} b2 \p ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 b2. %{notechange%} dih'4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} dih'8. %{notechange%} a16 \mf ~ a8 ~ | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 b4 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} a'4 ~ | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'4. %{notechange%} gis''8 \mf ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'1 ~ b'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih'16 \p ~ } dih'8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. \mf | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} dih'16 \p ~ } dih'4 | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} fih'2. \p ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 fih'8 %{notechange%} gis''8 \mf ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} e'4. | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} b'16 ~ } b'4 ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} cis'8. ~ cis'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} b2. \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} b'4 } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2. | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} r4 } r8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r4 | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a2 ~ a8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { e'4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} geh''8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} b'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'4. | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 \p ~ fih'4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 geh'4 ~ geh'16 %{notechange%} a'8. \p | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 b8 %{notechange%} geh'8 \mf | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} cis''8. \p | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r8 %{notechange%} e''8 \mf ~ e''2. ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} gis''16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} geh''8 ~ geh''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'2 ~ cis'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'16 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8. %{notechange%} b8 \p ~ } b2 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1\mf ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} r8. r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} b8. \p ~ } b8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 fih'8 %{notechange%} a'4. ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } geh''8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} a'8. | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} geh''8. ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} e''8. \mf ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 e''8. %{notechange%} dih''16 ~ dih''4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 dih''4 %{notechange%} dih'2. \p ~ dih'8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2 ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} e''8. \mf \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4. ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'2. \hideNotes r4. | \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} geh'2 ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} e'8. \p | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} e''8. ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 \p ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} b'8 \mf ~ b'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 a8. %{notechange%} fih''16 ~ fih''2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh''1 geh''4 %{notechange%} a4. \mf ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 e'8 %{notechange%} e''8 \mf ~ e''2. | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} cis''4 \p } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 cis''8. %{notechange%} r16 r8 | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} geh'2 \mf \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4 %{notechange%} a'2\p | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8. %{notechange%} dih''8 ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} a4 } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} dih''8. %{notechange%} e''16 ~ | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e''8. ~ | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 5/4 { e''4 %{notechange%} e'16 \p ~ } e'2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} a'4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 fih'8 %{notechange%} b8 ~ b2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b8. \p ~ } b4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} fih'8 ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} cis''8. ~ cis''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} fih'4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis''4 ~ | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} fih''4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 dih''4. %{notechange%} cis''8 \p ~ cis''1 ~ cis''1 | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} e''4. ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} a4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 e'2. ~ e'8. %{notechange%} geh''16 ~ geh''1 ~ | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} geh'4 \mf } | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} geh'8 %{notechange%} geh''4\p ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4 | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih''2\mf ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} dih''4. %{notechange%} fih''8 | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} b'8. %{notechange%} fih''16 ~ fih''4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} a4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a16 %{notechange%} r8. r4. | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} e''8. \mf ~ } e''8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} dih'4 ~ } dih'8 ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'4 %{notechange%} b8 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. r4 | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 fih''4 ~ fih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} a8. ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a8. %{notechange%} dih'16 \p ~ dih'4 | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 \tuplet 5/4 { a'8 %{notechange%} e''8. \mf ~ } e''1 ~ e''8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 geh'4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 b4. %{notechange%} e'8 ~ e'4. ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } r4 | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4 | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} gis''8. ~ gis''8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} a'2.\p ~ a'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih''4 | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} b'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} b8. \p ~ } b8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 b'4 ~ b'8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} e''4 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1\p ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} dih''8. %{notechange%} e'16 \p ~ e'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e'4 \p ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} e'4 ~ } e'4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} r4 | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} geh'4 ~ } geh'2 | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 fih'16 %{notechange%} gis''8. \mf ~ gis''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} gis''16 \mf ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} b4 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} dih''8. \mf ~ dih''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} cis''4\p ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} r8. | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} dih'8. \p ~ dih'8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 dih'2 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} dih'16 \p ~ dih'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'4 %{notechange%} a'8 } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} a'4 ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf } | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 \p ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'4 %{notechange%} e'8 \p ~ } e'4. ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} geh'8. %{notechange%} geh''16 \p ~ geh''8 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} cis'4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} b'8. \mf ~ b'4 | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} cis''8. \p ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8. %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} r4 | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 fih'8 %{notechange%} cis''8 ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} e'8 ~ } e'8 ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } r4. | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 geh'2 %{notechange%} e'4 \p ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 a4 %{notechange%} gis''4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''8 %{notechange%} r8 r4. | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r2. r8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} fih''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 %{notechange%} gis''2\mf ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} gis''4 ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} r4 | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 \p ~ geh''4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 cis'4 %{notechange%} gis''4. ~ | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { gis''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 cis''8 %{notechange%} e'8 ~ e'2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'16 %{notechange%} b'8. \mf ~ b'2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_down.ly new file mode 100644 index 0000000..2b73306 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} fih'8 \p ~ fih'4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'2 | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} r16 r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} a4. ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { a8 %{notechange%} r4 } r2. | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 a2 ~ \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} a8 %{notechange%} r8 | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} r16 r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r4 r4 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 e'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} r8. } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'4 %{notechange%} a16 \mf ~ } a4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih'2 \p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} geh'8 \mf ~ geh'2 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 geh'2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh'8 ~ geh'4. ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 geh'8. %{notechange%} r16 r8 | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r2 r8. %{notechange%} r16 r2. r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} r4 } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } r2 | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r4. | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} r4 r16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 r2 r16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'2 ~ fih'8 | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { a8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 e'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} a8. \mf ~ a8 ~ \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { a8 %{notechange%} r8. } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} b8. \p ~ b2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} a4. \mf ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} r4 } r8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih'2 %{notechange%} r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. \mf ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r4 %{notechange%} dih'16 \p ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} e'8. ~ e'4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8 %{notechange%} r8. } r4. | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r1 r16 %{notechange%} b8. ~ b2. ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} b4. ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} r8. } r4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} dih'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { cis'4 %{notechange%} r8 } r2 | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} e'8. \p ~ e'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh'8 ~ geh'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 geh'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} b4 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'4 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 geh'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} a4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} dih'8. ~ dih'2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} r8 } r8 | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} r4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r4. %{notechange%} a8 ~ a2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis'8. %{notechange%} fih'8 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 fih'2. ~ \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b2. ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} b2 \p ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 b2. %{notechange%} dih'4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} dih'8. %{notechange%} a16 \mf ~ a8 ~ | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 b4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'4. %{notechange%} r8 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2 ~ \tuplet 3/2 { fih'4 %{notechange%} r8 } r1 r2 | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} dih'16 ~ } dih'8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} dih'16 ~ } dih'4 | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 cis'4 %{notechange%} fih'2. \p ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 fih'8 %{notechange%} r8 | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} b2. \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} r8 r4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} r4 } r8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a2 ~ a8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { e'4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 \p ~ } e'4. | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 \p ~ fih'4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 geh'4 ~ geh'16 %{notechange%} r8. | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 b8 %{notechange%} geh'8 \mf | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} r8 } r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'2 ~ cis'8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r8. %{notechange%} b8 ~ } b2 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r4 %{notechange%} dih'2. ~ dih'8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2 ~ | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4. ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'2. \hideNotes r4. | \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} geh'2 ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} e'8. \p | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} r16 r4. | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 b8 %{notechange%} r8 r4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 a8. %{notechange%} r16 r2 | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis'8 %{notechange%} r8. } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 r4 %{notechange%} a4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} e'8. \p ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 e'8 %{notechange%} r8 r2. | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} geh'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} a4 } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis'8 %{notechange%} r8. } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } r2 | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 fih'8 %{notechange%} b8 ~ b2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} fih'8 ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} fih'4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } r4. | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } r8 | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r4. %{notechange%} r8 r1 r1 | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8. %{notechange%} r8 } r4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 r2 r16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 e'2. ~ e'8. %{notechange%} r16 r1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf } | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} geh'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a16 %{notechange%} r8. r4. | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'8 ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'4 %{notechange%} b8 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} r8. | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a8. %{notechange%} dih'16 \p ~ dih'4 | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r4 r1 r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} a4 ~ } a4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'4 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 geh'4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 b4. %{notechange%} e'8 ~ e'4. ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} r8. r8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} b8. \p ~ } b8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 r4 r8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} e'16 \p ~ e'4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} e'8. ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} e'4 ~ } e'4 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { cis'8 %{notechange%} geh'4 ~ } geh'2 | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 fih'16 %{notechange%} r8. r4. | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} b4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} dih'8. \p ~ dih'8 ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 dih'2 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} dih'16 \p ~ dih'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 r4 r8 \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r4 %{notechange%} e'8 ~ } e'4. ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} geh'8. %{notechange%} r16 r8 | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 fih'8 %{notechange%} r8 | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} e'8 ~ } e'8 ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } r4. | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 geh'2 %{notechange%} e'4 \p ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r2. r8. %{notechange%} r16 r2. r8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 a4 \hideNotes r2 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 cis'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e'8 \p ~ e'2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'16 %{notechange%} r8. r2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_up.ly new file mode 100644 index 0000000..a3932a1 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_4_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 ~ gis''2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} r8 } r4. | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} r8 } r4. | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} r8 %{notechange%} a'8 | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 a'2 %{notechange%} geh''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} gis''16 \mf ~ gis''2 ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} geh''8 \p ~ } geh''4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} e''2\mf | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''4 %{notechange%} r8 } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} r8 } r8 | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 fih''2 \hideNotes r2 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b'8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8. %{notechange%} geh''8 \p ~ } geh''4 ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} r8 r2 | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} e''2\mf ~ e''8 ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} r8. r8 | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 r8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e''8. \mf ~ e''4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 e''2 ~ e''8. %{notechange%} b'16 ~ b'2. ~ b'8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} r4 } r4. | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} a'4 ~ a'16 %{notechange%} r8. r8 | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8. %{notechange%} dih''8 \mf ~ } dih''4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} r8. r2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} dih''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 %{notechange%} e''1 ~ e''1 ~ e''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''4 %{notechange%} r16 } r8 | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ gis''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} r8. } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} r8. } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'1 ~ b'16 %{notechange%} r8. r2. | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} b'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 b'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 e''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} r4 } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } r2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} r8 r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} b'2\mf ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} b'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} e''8 %{notechange%} r8 | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ dih''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 cis''16 %{notechange%} r8. r2 | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} r8. } r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} geh''4. ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} fih''4. %{notechange%} e''4 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 5/4 { e''16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 ~ | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} r8. r8 | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r4. %{notechange%} gis''8 \mf ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} r8. r8 | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'1 ~ b'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} r8 r2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r4. | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 r8 %{notechange%} gis''8 ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''4 %{notechange%} b'16 ~ } b'4 ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} r8. r8 | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} b'4 } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2. | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 r4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 r4 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} b'2\mf ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} r16 } r4. | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} a'8. \p | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} cis''8. \p | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r8 %{notechange%} e''8 \mf ~ e''2. ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} r4 } r8 | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} gis''16 %{notechange%} r8. r8 | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} r16 } r4. | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh''8 \p ~ geh''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh''16 %{notechange%} r4 } r2 r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } r2 | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4. ~ | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8. %{notechange%} r8 } r2 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 b'16 %{notechange%} r8. r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } geh''8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} a'8. | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} geh''8. ~ } | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'4 %{notechange%} geh''16 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e''8. ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 e''8. %{notechange%} dih''16 ~ dih''4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 dih''4 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } r2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e''8. \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 r2. \hideNotes r4. | \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} e''8. ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} b'8 ~ b'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r8 | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} fih''16 ~ fih''2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh''1 geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r8 %{notechange%} e''8 \mf ~ e''2. | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} cis''4 ~ | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 cis''8. %{notechange%} r16 r8 | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} gis''16 ~ gis''4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4 %{notechange%} a'2\p | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8. %{notechange%} dih''8 ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} dih''8. %{notechange%} e''16 ~ | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e''8. ~ | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 e''4 ~ \tuplet 5/4 { e''4 %{notechange%} r16 } r2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 \p | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} r8 r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis''4 ~ | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} r8 } r8 | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} fih''4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 dih''4. %{notechange%} cis''8 \p ~ cis''1 ~ cis''1 | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} e''4. ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2. r8. %{notechange%} geh''16 ~ geh''1 ~ | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8 %{notechange%} r8. } r8 | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} geh''4 ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} dih''2\mf ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} dih''4. %{notechange%} fih''8 | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} b'8. %{notechange%} fih''16 ~ fih''4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} r8. r8 | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} e''8. \mf ~ } e''8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} r8 } r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 cis''8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 fih''4 ~ fih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 \tuplet 5/4 { a'8 %{notechange%} e''8. \mf ~ } e''1 ~ e''8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} gis''4 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 r4 r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4 | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} a'2 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} a'2.\p ~ a'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 \mf | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} b'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 b'4 ~ b'8. %{notechange%} r16 r2 r8 | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} e''4 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 %{notechange%} cis''1\p ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} dih''8. %{notechange%} r16 r4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} r4 \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} dih''8. ~ dih''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} cis''4\p ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} r8. | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf } | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'4 %{notechange%} r8 } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} r8. %{notechange%} geh''16 \p ~ geh''8 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} cis''8. \p ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8. %{notechange%} r8 } r2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 r8 %{notechange%} cis''8 \p ~ | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 r2 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 gis''16 %{notechange%} r8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''8 %{notechange%} r8 r4. | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r2. r8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} r4 } | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} gis''2 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} r4 } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 \p ~ geh''4. ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { gis''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 cis''8 %{notechange%} r8 r2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} r8. r8 | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} b'8. ~ b'2 | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r4 r4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5.ly new file mode 100644 index 0000000..e41e7ea --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''4 %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''4 %{notechange%} fih''8 ~ } fih''4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} geh'4 ~ } geh'4 | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} a2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 a4. %{notechange%} a'4\p | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 b'4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 b'1 b'4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } r4 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'8. %{notechange%} b16 ~ b2 ~ b8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} b'8. \mf ~ b'8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} r16 } r4. | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 e'2 %{notechange%} e''2\mf ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} geh'8 ~ geh'2 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 geh''8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 geh'2 %{notechange%} e''2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} dih'8 ~ } | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { gis''8. %{notechange%} cis''8 \p ~ } cis''2. ~ cis''8 ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} dih'4 ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''8 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''16 %{notechange%} cis'4 \mf } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 fih''4 ~ \tuplet 5/4 { fih''8. %{notechange%} e'8 \p ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8. %{notechange%} r16 r8 | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} cis''4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh'4 \mf | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} b'16 \mf ~ b'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} b'8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} e'8. %{notechange%} r16 r8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { cis''4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 e'4 ~ e'16 %{notechange%} a8. \mf ~ a4. ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} cis'4 \mf ~ } cis'8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2.\p | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 %{notechange%} gis''1\mf ~ gis''1 ~ gis''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} fih'4 \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 a4 ~ \tuplet 5/4 { a4 %{notechange%} e''16 ~ } e''1 ~ e''2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} fih'8. ~ } fih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} cis'8. ~ } cis'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} geh''16 \p ~ } geh''4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} cis'8. \mf ~ } cis'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} dih'4. \p ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} dih'4 %{notechange%} b'4. \mf ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} b4. \p ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 b16 %{notechange%} fih''8. \mf ~ fih''2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} dih''4 ~ } | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} fih'16 \p ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'2. %{notechange%} cis''4 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} fih'16 \p ~ } fih'4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} cis''8 \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { cis''4 %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''8 %{notechange%} a8. } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} cis''16 %{notechange%} dih'8. ~ dih'4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} geh''16 ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4. ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2 | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} geh''16 ~ geh''4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} geh''16 ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} a16 \mf ~ a4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} a'4 \p ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} dih''8. ~ dih''2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} gis''8. \mf ~ gis''4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { gis''8. %{notechange%} fih'8 \p ~ } fih'2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r4. | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r8. %{notechange%} dih''16 \mf ~ dih''1 ~ dih''2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 fih''8 %{notechange%} a4 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} a8. ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} a'4 \p ~ } a'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 a'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} a'4. \p ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'2 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} b'8 \mf ~ } b'2 ~ b'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 e''1 e''2 %{notechange%} dih'4 \p | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 \tuplet 5/4 { r4 %{notechange%} geh''16 ~ } geh''1 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 geh'2 %{notechange%} fih''2 ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} e'16 \p ~ e'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} e''8 \mf ~ e''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'4 %{notechange%} e'8 \p ~ } e'8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 \mf ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''16 %{notechange%} b'4 ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} e''4. ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r4 | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} b'16 %{notechange%} cis'8. ~ cis'8 ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 e'8 %{notechange%} a'4. ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4 | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 fih''4 ~ fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { a'4 %{notechange%} dih'8 ~ } dih'2. ~ dih'8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} dih''8. \mf } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 geh'4 ~ geh'16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} gis''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 gis''8. %{notechange%} cis''16 \p ~ cis''4. | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} e'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 e'2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} geh''8. ~ geh''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. \p | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 ~ geh'16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. \p ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} b16 ~ } b4 | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 fih''8. %{notechange%} r16 r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2.\mf ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 b'4. \hideNotes r4 | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 geh''8. %{notechange%} a'16 ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} geh''8. ~ } geh''8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} geh''16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 cis''4 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 fih'8. %{notechange%} e''16 \mf | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1 | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e''8. \mf ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 cis'2 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 %{notechange%} cis'2 \mf | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 a'8. %{notechange%} e'16 ~ e'8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} b'8. \mf | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 \p ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 b8 %{notechange%} b'8 \mf ~ b'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { b'4 %{notechange%} b8 \p ~ } b2. ~ b8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'2 ~ a'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} a4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a4 %{notechange%} geh''16 \p ~ } geh''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} a4 \mf ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} e''8. \mf ~ e''4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} fih'2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 ~ \tuplet 3/2 { geh'4 %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 cis''8 %{notechange%} r8 | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} a4 ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4 | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} a2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { a8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 dih''8. %{notechange%} e''16 ~ e''4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} e''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8. %{notechange%} dih''8 ~ } dih''4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} e'4 \p } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b'4 \mf ~ | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b'8. %{notechange%} fih'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b8 %{notechange%} dih'8 ~ dih'2. ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} a'4 } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} b2. | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} cis''8. \p ~ } cis''4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } r4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} cis''16 \p ~ } cis''2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} fih'8 ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} e'4 ~ e'16 %{notechange%} cis'8. \mf | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} fih'4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 dih'16 %{notechange%} cis''8. ~ cis''4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} a8. \mf ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} fih''4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} geh'8. ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} e''4. ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r4 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'1 ~ b'1 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} b8. \p ~ } b8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis''4 %{notechange%} fih'4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} dih'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} cis''8 ~ cis''4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 %{notechange%} geh''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} geh''4. \p | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 geh'1 geh'2 %{notechange%} fih''2 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 b'8. %{notechange%} fih''16 ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8 %{notechange%} b'8. \mf ~ } b'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} dih'4 ~ } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} geh''4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 b8 %{notechange%} geh''4. | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 \mf ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 geh'8 %{notechange%} geh''4\p | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 e'8. %{notechange%} b'16 \mf ~ b'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} fih''16 \mf ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} r8. r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a8. %{notechange%} dih'16 \p ~ dih'2 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a2. ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 a16 %{notechange%} dih'8. \p ~ dih'4 | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih'2. \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} b4. \p ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 geh''2 %{notechange%} b2. ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} b4 \p ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} a4 \mf ~ } a8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih''2. ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 dih''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} a'4 \p } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 e''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 fih''16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} fih''4 } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} b'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8 %{notechange%} b8. \p ~ } b4 | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. \mf ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 e''4. %{notechange%} e'8 \p ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e'8. \p ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} b8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 e'2 ~ \tuplet 5/4 { e'8. %{notechange%} r8 } r4. | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh''2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} geh'16 %{notechange%} gis''8. ~ gis''4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} fih''4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} gis''8 ~ gis''4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} dih''8 \mf ~ dih''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} cis''4. \p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 cis''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 dih'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 cis'4. %{notechange%} dih'8 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} dih'8. \p ~ dih'8 | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'4 %{notechange%} a'8 } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 fih'4 ~ fih'16 %{notechange%} gis''8. \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} b4 \p ~ } b8 | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a'2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} b4 } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} geh''4. \p \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} fih''8 \mf ~ } fih''8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih'16 %{notechange%} b'8. \mf ~ | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 b'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 %{notechange%} cis''4. ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''8. %{notechange%} cis'8 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 cis'8. %{notechange%} cis''16 \p ~ cis''2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis''4 %{notechange%} e'8 ~ } e'8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} e'4 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} a8 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} b'8. \mf ~ b'4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} dih'4 \p ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} fih''8 \mf ~ } fih''4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} fih''8 \mf ~ } fih''8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 a1 a4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 cis''8 %{notechange%} e'4. ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } cis'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} gis''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 gis''8 %{notechange%} r8 r4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 geh''8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''8 %{notechange%} b'8 \mf ~ b'2. | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 geh'4 %{notechange%} a8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} fih''4 } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 b4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} a'8 ~ } a'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_down.ly new file mode 100644 index 0000000..a464d8c --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4 | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} a2 ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 a4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r1 \hideNotes r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'8. %{notechange%} b16 ~ b2 ~ b8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} r4 } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} r4. \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} a4 ~ \tuplet 5/4 { a8 %{notechange%} r8. } r8 | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} r8. } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { b4 %{notechange%} r16 } r4. | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 e'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} geh'8 \mf ~ geh'2 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh'4. ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 geh'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} r8 } r8 | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } r8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r4 \tuplet 5/4 { r8. %{notechange%} e'8 \p ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8. %{notechange%} r16 r8 | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh'4 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} r16 r2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 fih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} r8 } r4. | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4. ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} e'8. %{notechange%} r16 r8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 e'4 ~ e'16 %{notechange%} a8. \mf ~ a4. ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a16 %{notechange%} r4 } r8 | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } r2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 %{notechange%} r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih'4. ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'4 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 a4 ~ \tuplet 5/4 { a4 %{notechange%} r16 } r1 r2 | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} r8 r4. | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e'4 %{notechange%} r8 } r4. | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} cis'8. ~ } cis'4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} geh'8. ~ geh'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} dih'4. \p ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} b4. ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 b16 %{notechange%} r8. r2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4 ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} r4 } r8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} r4 r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} r4 } r8 | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 a4 \hideNotes r2 | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8 %{notechange%} a8. } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} dih'8. \p ~ dih'4. ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 dih'8. %{notechange%} r16 r2 | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'4 %{notechange%} r8 } r8 | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'4. ~ | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} fih'8. \p ~ fih'8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} r16 r4. | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} a16 \mf ~ a4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} r8. r4. | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2. ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} b8 ~ } b2 ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r4. | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} a4 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a8 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a8. ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r1 r2 %{notechange%} dih'4 \p | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 \hideNotes r2. r2. r2. | \unHideNotes %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} geh'4 \mf } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 geh'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} e'16 \p ~ e'4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} e'8 ~ } e'8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a8 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} cis'8. \mf ~ cis'8 ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} a8. ~ } a8 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 e'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ dih'8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} r4. \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 geh'4 ~ geh'16 %{notechange%} r8. r8 | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 %{notechange%} b2. \p ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} e'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 e'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} r8. r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. \p | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 b4 ~ b16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 ~ geh'16 %{notechange%} r8. r8 | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} r16 } r4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} b2. ~ b8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} b16 ~ } b4 | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 fih'8. %{notechange%} r16 | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 cis'2 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} cis'2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 r8. %{notechange%} e'16 \p ~ e'8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} r8. | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 b8 %{notechange%} r8 r4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b2. ~ b8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a4 %{notechange%} r16 } r8 | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 e'16 %{notechange%} r8. r4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} fih'2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 ~ \tuplet 3/2 { geh'4 %{notechange%} r8 } r4. | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} geh'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} e'16 \p ~ e'8 ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} e'16 \p ~ e'4 ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b4 %{notechange%} r8 } r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} cis'8. ~ cis'4 ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 cis'4 %{notechange%} a2 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \tuplet 3/2 { a8 %{notechange%} r4 } r2 | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis'8. ~ cis'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'4 %{notechange%} a8 ~ } a8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} e'4. \p ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} r8. } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} e'4 } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8. %{notechange%} fih'8 } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b8 %{notechange%} dih'8 ~ dih'2. ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} b2. | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r4 r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} e'4 ~ e'16 %{notechange%} cis'8. \mf | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 dih'16 %{notechange%} r8. r4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} a8. \mf ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'4 %{notechange%} r16 } r8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh'8 %{notechange%} r8. } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r4 r4 r1 r1 | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih'4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} dih'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 dih'8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r8 | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis'4 ~ \tuplet 5/4 { cis'8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 geh'1 geh'2 \hideNotes r2 | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 a8 %{notechange%} e'4. \p ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } a4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 \mf ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} geh'16 ~ } geh'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 geh'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. \p ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 e'8. %{notechange%} r16 r8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a8. %{notechange%} dih'16 \p ~ dih'2 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a2. ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 a16 %{notechange%} dih'8. \p ~ dih'4 | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 %{notechange%} fih'2. ~ fih'8 ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih'2. \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} b4. \p ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 \hideNotes r4. | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r2 %{notechange%} b2. ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} b4 \p ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} a4 \mf ~ } a8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} r2 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} fih'8. \p ~ fih'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} b8. \p ~ } b4 | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. \mf ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 a8. %{notechange%} cis'16 ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} r8 } r8 | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 dih'8 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 \p ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} b8. %{notechange%} e'16 ~ e'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 e'2 ~ \tuplet 5/4 { e'8. %{notechange%} r8 } r4. | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} geh'16 %{notechange%} r8. r4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} fih'16 %{notechange%} r8. r8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 dih'8 %{notechange%} r8 | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 cis'4. %{notechange%} dih'8 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { dih'4 %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} dih'8. \p ~ dih'8 | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 fih'4 ~ fih'16 %{notechange%} r8. r2 r8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 fih'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b8 \hideNotes r4. | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} b4 } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 b8. %{notechange%} r16 r4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 dih'16 %{notechange%} r8. | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 cis'8. %{notechange%} r16 r2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} e'8 \p ~ } e'8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} e'4 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'4 %{notechange%} a8 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} r8. r4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} a8 } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'4 %{notechange%} geh'2. \mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 a1 a4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} e'4. \p ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 cis'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 geh'4 %{notechange%} a8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} fih'2 ~ fih'8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a2 \mf ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 b4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8. %{notechange%} r8 } r4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_up.ly new file mode 100644 index 0000000..f040f73 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_5_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''4 %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''4 %{notechange%} fih''8 ~ } fih''4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} r8 } r4. | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} a'4 | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 b'4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 b'1 b'4 %{notechange%} e''2 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih''4 ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r2 | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 3/2 { gis''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 gis''8 %{notechange%} dih''4 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b'8. ~ b'8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r4. | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} e''2\mf ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} r8 r2 | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 geh''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} e''2\mf | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} r8 } | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { gis''8. %{notechange%} cis''8 \p ~ } cis''2. ~ cis''8 ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''16 %{notechange%} r4 } | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih''2\mf ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 fih''4 ~ \tuplet 5/4 { fih''8. %{notechange%} r8 } r1 r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} cis''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 a'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} b'16 \mf ~ b'2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e''4. ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} b'8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} r8. } r4. | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { cis''4 %{notechange%} r16 } r2. | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} r8 } | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2.\p | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 %{notechange%} gis''1\mf ~ gis''1 ~ gis''4 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} r4 r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r4 \tuplet 5/4 { r4 %{notechange%} e''16 ~ } e''1 ~ e''2 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 r4. %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''4. ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } r2 | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''4 %{notechange%} geh''16 \p ~ } geh''4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 %{notechange%} gis''4. \mf | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} a'4. \p ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 a'16 %{notechange%} r8. r8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} b'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 b'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 r16 %{notechange%} fih''8. ~ fih''2 ~ | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} dih''4 ~ } | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} r16 } r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} cis''4 \p ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} cis''8 \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { cis''4 %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} r8. } r8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} cis''16 %{notechange%} r8. r4. | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} geh''16 ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis''2 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} r8. r8 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } r4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} fih''16 %{notechange%} r8. r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 ~ geh''4. ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 fih''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} geh''16 \p ~ geh''4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh''8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 fih''16 %{notechange%} dih''8. ~ dih''2 ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'8 | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} gis''8. ~ gis''4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } r2. | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r8. %{notechange%} dih''16 ~ dih''1 ~ dih''2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 fih''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} r8. | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 a'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} a'4. \p ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} r8 r2 | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'2 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 a'16 %{notechange%} r8. | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} b'8 \mf ~ } b'2 ~ b'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 e''1 e''2 \hideNotes r4 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 \tuplet 5/4 { r4 %{notechange%} geh''16 ~ } geh''1 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} r8 r2 | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 \mf ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih''2 ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} r16 r4. | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e''8 ~ e''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'4 %{notechange%} r8 } r8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''16 %{notechange%} b'4 ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} e''4. ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'8 | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} b'16 %{notechange%} r8. r8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 fih''4 ~ fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r2. r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 3/2 { fih''4 %{notechange%} r8 } r2. | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 gis''8. %{notechange%} cis''16 \p ~ cis''4. | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} b'4 ~ } | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r2 %{notechange%} fih''2 ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} geh''8. \p ~ geh''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r4 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r8 | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 %{notechange%} r2. r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 fih''8. %{notechange%} r16 r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2. ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 b'4. \hideNotes r4 | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 geh''8. %{notechange%} a'16 ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''8 %{notechange%} geh''8. ~ } geh''8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} geh''16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 cis''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 r8. %{notechange%} e''16 | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 %{notechange%} b'1 | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 a'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 a'8. %{notechange%} r16 r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b'8. \mf | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} b'8 ~ b'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \tuplet 3/2 { b'4 %{notechange%} r8 } r2. r8 | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 ~ a'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'8 %{notechange%} r4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 e''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} geh''16 \p ~ } geh''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} e''8. \mf ~ e''4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 \tuplet 3/2 { r4 %{notechange%} cis''8 \p ~ } cis''4. ~ | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 cis''8 %{notechange%} r8 | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 \mf ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 dih''8. %{notechange%} e''16 ~ e''4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 dih''8. %{notechange%} e''16 ~ e''4 ~ | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8. %{notechange%} dih''8 ~ } dih''4 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 dih''4. %{notechange%} e''4 ~ | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} b'4 ~ | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { b'8. %{notechange%} r8 } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p } | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} r8 } r8 | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} cis''8. \p ~ } cis''4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} cis''16 ~ } cis''2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 a'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} cis''8. ~ cis''4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} r8. } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''4 %{notechange%} r16 } r8 | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} fih''4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} r8. } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} e''4. ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r4 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'1 ~ b'1 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis''4 \hideNotes r4 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} cis''8 ~ cis''4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 cis''4 %{notechange%} geh''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} geh''4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r1 r2 %{notechange%} fih''2\mf | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 b'8. %{notechange%} fih''16 ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'8. %{notechange%} r8 } r8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} r4 } | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} r4 } r8 | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 r8. %{notechange%} b'16 ~ b'8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2 | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} fih''16 \mf ~ fih''4. ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} r8. r8 | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} gis''4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 geh''2 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih''2.\mf ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 dih''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 e''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 fih''16 %{notechange%} r8. r4. | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} b'4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 e''4. %{notechange%} r8 | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 r2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh''2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} gis''8. ~ gis''4. | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'8. %{notechange%} r8 } r4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} gis''8 ~ gis''4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih''2 ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { gis''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} dih''8 ~ dih''2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} cis''4. \p ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 cis''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} a'8 } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r4 r16 %{notechange%} gis''8. \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} a'2\p ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} gis''8. ~ | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 gis''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} dih''4. ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { geh''8 %{notechange%} r4 } | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} geh''4. \p \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } fih''8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. \p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b'8. \mf ~ | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 b'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} cis''16 \p ~ cis''2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} cis''8. \p ~ cis''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} r16 %{notechange%} b'8. \mf ~ b'4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } r2 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } fih''8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r1 r4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 cis''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 gis''8 %{notechange%} r8 r4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 geh''8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} r8 } r4. | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 geh''8 %{notechange%} b'8 \mf ~ b'2. | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e''8. ~ e''4 ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} fih''4. | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} a'8 \p ~ } a'4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6.ly new file mode 100644 index 0000000..e11e20a --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a8 %{notechange%} cis''4 \p ~ } cis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a8. %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } geh''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 r8. %{notechange%} gis''16 ~ gis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } r4 | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} geh'4 } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } a4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b4 %{notechange%} r16 } r2 | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 a'8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} geh'8 ~ geh'2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8. %{notechange%} geh''8 \p ~ } geh''4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} geh'8 \mf ~ geh'4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} e''4. ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 e''4 ~ \tuplet 5/4 { e''8. %{notechange%} r8 } r4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis''4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } r4 | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. \p ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} e''2\mf ~ e''8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } r4 | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 e'8. %{notechange%} e''16 \mf ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 e''16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 b'1 ~ b'8 %{notechange%} geh'8 ~ geh'4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} b'16 \mf ~ b'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} cis''4 ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 e'8 %{notechange%} a4. \mf | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 %{notechange%} geh''2.\p ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8. %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2. ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b8. ~ b8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b8 %{notechange%} gis''8. \mf ~ } gis''8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 cis''4 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} geh'8. \mf ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 fih'4. %{notechange%} e''4\mf ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \p \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} cis''4 | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8 %{notechange%} fih''8. \mf ~ } fih''4 ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih''2 %{notechange%} e''1 ~ e''1 ~ e''4 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } fih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 \mf | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} dih'8. \p ~ } dih'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'4 %{notechange%} dih'16 \p ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} cis'4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} gis''4 ~ } gis''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } dih''4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} e'2 \p ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} gis''8 \mf ~ } gis''1 ~ gis''4 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} geh''4 \p | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { cis'4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} b4. \p ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} fih''8. \mf ~ fih''2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 fih''8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ a'16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} b'4. ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} cis''8 ~ } cis''4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 cis''4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} fih'16 \p ~ } fih'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} fih'4 %{notechange%} dih'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } r2. | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} gis''4 \mf ~ } gis''8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2. ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a2 ~ a8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} geh''8. ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 fih''8. %{notechange%} geh''16 \p ~ geh''2 ~ geh''8 | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 fih'8 %{notechange%} geh''4. | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} e'8 \p ~ e'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} e'8 ~ e'4. | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} r8 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. \mf ~ dih''4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r8 %{notechange%} dih''8 \mf ~ dih''2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} a16 ~ a2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 a4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 a'1 ~ \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 fih''8 %{notechange%} a4. ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} a4 %{notechange%} a'4 \p ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} b8. \p ~ } b8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} b'8 \mf ~ } b'8 ~ | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} b4 \p ~ } | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b'2.\mf | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih'16 \p ~ } dih'8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis''4. | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } geh''4. ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} geh''4 ~ } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'2. %{notechange%} a'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2. %{notechange%} e'1 ~ e'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { e'8 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} geh'4 ~ } geh'8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} geh'8 %{notechange%} fih''4 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} a8. ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} b2 \p ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 5/4 { e''8. %{notechange%} dih'8 \p ~ } dih'8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'4 | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4 ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} a4 %{notechange%} e'4 \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 geh''4 ~ geh''16 %{notechange%} a'8. ~ a'4 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} fih'4 \p ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 fih'8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4. %{notechange%} gis''8 \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a8. %{notechange%} gis''8 ~ } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 gis''4 ~ gis''16 %{notechange%} cis''8. \p ~ cis''4 | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''4 %{notechange%} e'16 \p ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} geh''8 ~ geh''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 e'4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} e'8. \p ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 \p ~ fih'4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} fih'8. ~ fih'2 | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} dih''8. \mf ~ } dih''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. \p ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 a4 %{notechange%} gis''4 ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} gis''16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} dih'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 a4 %{notechange%} gis''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 gis''16 %{notechange%} e''8. ~ e''2 ~ e''8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 e''8 %{notechange%} a'4. \p ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 geh''8 %{notechange%} a4. \mf ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} a'8. \p ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } geh''8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} a'8 ~ a'4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} geh''8 ~ } geh''8 | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 fih'2 ~ fih'8. %{notechange%} e''16 \mf ~ e''4 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} fih'8. %{notechange%} e''16 \mf ~ e''8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 e''8 %{notechange%} dih''8 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih''4 %{notechange%} dih'8 \p ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} a'4. ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} a'8. \p ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''2 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} a8. \mf ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} a'8 \p ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} dih''16 \mf ~ dih''4 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} gis''4 ~ } gis''4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 gis''4 %{notechange%} dih'2. \p ~ dih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'4 %{notechange%} dih'8 \p ~ } dih'2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 a8. %{notechange%} e'16 \p ~ e'4. | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 \mf ~ | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} a4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} a16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 %{notechange%} cis'1 \mf ~ cis'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} geh''8. \p ~ } geh''4. ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} cis''4 ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 r4 | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} cis''8. %{notechange%} r16 r4 | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { e'8 %{notechange%} b4 ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 a'8. %{notechange%} e'16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e''4 \mf ~ | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 e''4 ~ \tuplet 5/4 { e''4 %{notechange%} gis''16 ~ } gis''1 ~ gis''8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 \p ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 a'8. %{notechange%} r16 r8 | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 r4 | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} geh'2 \mf ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} dih''8 ~ } dih''8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} e''4 %{notechange%} e'4 \p ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} e''4. ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} fih'8 \p ~ } fih'4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} a'8 ~ } a'4 | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2\mf ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis'4 \mf | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis''4 %{notechange%} a2. \mf | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. %{notechange%} fih''4 ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 b'16 %{notechange%} cis''8. \p ~ cis''8 | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 %{notechange%} geh''2 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} geh'8. ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} e''16 %{notechange%} r8. r8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 \p ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} b4 \p } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2 ~ geh''8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 a'1 ~ \tuplet 3/2 { a'4 %{notechange%} fih'8 ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} cis''8. ~ cis''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b2 ~ b8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} b'8 \mf ~ } b'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b'2 ~ \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''1 ~ e''4 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} a'8 %{notechange%} e'4. ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} e'4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} geh''4 \p | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} a4 ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} e''8. \mf ~ } e''4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8. %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} a4 ~ } a8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 a8. %{notechange%} dih'16 \p ~ dih'4. | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 geh'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} b2 \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''4 ~ fih''16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 geh'8. %{notechange%} cis'16 ~ cis'2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 %{notechange%} geh''4. ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} b8 ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} cis'8. ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} e''4. %{notechange%} e'8 \p ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e'8 \p ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 b4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} gis''8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 fih''8 %{notechange%} fih'8 \p ~ fih'2. ~ fih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} a8. \mf ~ a4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } geh''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 e'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} dih'16 \p ~ dih'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 dih'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} cis'4. %{notechange%} dih'4. \p | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a'4. | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} fih''16 %{notechange%} gis''8. | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 a4 ~ \tuplet 5/4 { a8. %{notechange%} e''8 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} dih''8 \mf ~ dih''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 geh''8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 cis'4. %{notechange%} dih'8 \p ~ dih'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} cis'4 \mf | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} geh'8. %{notechange%} dih'16 \p ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} cis''16 ~ cis''4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} cis'8 %{notechange%} cis''4\p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} gis''4 ~ } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e'4 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} geh''8. \p ~ geh''4 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} a4 ~ } a8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} fih''4 \mf } | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 \p ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} fih''2\mf | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} fih''8 \mf ~ } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 \p ~ fih'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} fih'8 %{notechange%} cis''8 ~ cis''4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''4 %{notechange%} e''16 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } r4 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} geh''16 \p ~ geh''8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 geh''4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} cis'16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 cis'2. ~ cis'8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8. %{notechange%} cis'8 ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} geh''16 \p ~ geh''4 | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 e'16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 b'16 %{notechange%} e''8. ~ e''4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} e'4. \p ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} a'8. ~ } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} fih''4 } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} a'8. ~ } a'8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } cis'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} gis''8. ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. r4 | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4\p ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 geh''4 %{notechange%} gis''2\mf | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_down.ly new file mode 100644 index 0000000..8affb7a --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4. ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { a8 %{notechange%} r4 } r2 | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'2 ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} a4 ~ } a4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a8. %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'2 ~ cis'8 ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } a4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b4 %{notechange%} r16 } r2 | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8. %{notechange%} r8 } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} geh'8 ~ geh'2 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh'8 ~ geh'4. ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} dih'4 \p ~ | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 r2. %{notechange%} dih'4 ~ | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 e'2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 e'8. %{notechange%} r16 r8 | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 fih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r1 r8 %{notechange%} geh'8 \mf ~ geh'4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} r4 } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 ~ } e'8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 e'8 %{notechange%} a4. \mf | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'4 | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} dih'4 ~ dih'16 %{notechange%} r8. r8 | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} b8. ~ b8 ~ | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} cis'2 \mf ~ cis'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} geh'8. ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 fih'4. \hideNotes r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 %{notechange%} b2 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } r2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} dih'16 ~ } dih'4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 %{notechange%} r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'4 %{notechange%} dih'16 \p ~ } dih'8 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p } | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} cis'4. | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. \p ~ | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8. %{notechange%} r8 } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a4. \mf ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. \p ~ b4 ~ | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} r8 } r4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} %{notechange%} e'2 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. \p ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 b16 %{notechange%} r8. r2 | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 dih'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} fih'4 %{notechange%} dih'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 dih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'4 %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 cis'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'4 ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a2 ~ a8 ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 fih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e'8 ~ e'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} fih'8. ~ } fih'8 ~ | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8. %{notechange%} r8 } r8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} cis'2. \mf ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} e'8 ~ e'4. | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} r8 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 dih'4 ~ \tuplet 5/4 { dih'16 %{notechange%} r4 } r2 | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} r4 } r8 | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} a16 ~ a2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 a4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r1 \hideNotes r2. | \unHideNotes %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a4. ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} a4 \hideNotes r4 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} b8. \p ~ } b8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} b4 ~ } | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih'8. %{notechange%} r8 } r8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 ~ } | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } fih'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} dih'8 } | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} dih'16 ~ } dih'8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 fih'4 ~ \tuplet 5/4 { fih'16 %{notechange%} r4 } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 fih'2. \hideNotes r1 | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 cis'16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih'2. %{notechange%} e'1 ~ e'2 ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { e'8 %{notechange%} r4 } r2 | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } geh'8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} geh'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a8. ~ | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} b2 \p ~ | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b8 %{notechange%} dih'8. ~ } \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'4 | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih'8 %{notechange%} r4 } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } a4 ~ | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} a4 %{notechange%} e'4 \p | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 a4 %{notechange%} e'2 \p ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 fih'4. %{notechange%} r8 r2 r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 r4 \tuplet 3/2 { r4 %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a8. %{notechange%} r8 } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. \p ~ fih'8 ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 e'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} cis'4 \mf ~ } cis'4 | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} fih'8 \p ~ fih'4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} fih'8. ~ fih'2 | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih'8 %{notechange%} r8. } r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b4. ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 a4 \hideNotes r4 | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} dih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 r16 %{notechange%} r8. r2 r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a4. ~ | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 a16 %{notechange%} r8. | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 fih'2 ~ fih'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} fih'8. %{notechange%} r16 r8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 ~ | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a8. ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} r8 r4. | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} dih'4 \p ~ } dih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r4. | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r4 %{notechange%} dih'2. \p ~ dih'8 ~ | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh'4 %{notechange%} dih'8 \p ~ } dih'2 | %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 a8. %{notechange%} e'16 \p ~ e'4. | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} a16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 %{notechange%} cis'1 ~ cis'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} r8. } r4. | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { e'8 %{notechange%} b4 ~ } b2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 r8. %{notechange%} e'16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r4 r4 r1 r8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 ~ | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { b4 %{notechange%} r8 } r2. | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} r4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 geh'4. %{notechange%} r8 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} fih'8. \p ~ } fih'8 ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} geh'2 \mf ~ \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} e'4 \p ~ | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4. ~ | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis'4 \mf | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} a2. | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. \hideNotes r4 | \unHideNotes %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 %{notechange%} r2. \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 5/4 { geh'8 %{notechange%} r8. } r8 | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'4 %{notechange%} r16 } r4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} b4 } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r1 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'1 ~ fih'4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'4 %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} r8. r8 | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b2 ~ b8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2 r4 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih'8 ~ } dih'8 ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'8. %{notechange%} a8 \mf ~ } | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} r8. r8 | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} fih'8 \p ~ } fih'8 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} e'4. ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} e'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4. ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} geh'16 \mf ~ } geh'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 geh'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 a8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 a8. %{notechange%} dih'16 \p ~ dih'4. | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } a4 | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'4 ~ | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 b4 \hideNotes r2. | \unHideNotes %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'4 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 geh'2 %{notechange%} b4. \p ~ | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} b2 \p ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b8 %{notechange%} a8. \mf ~ } a4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r4 r16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 geh'8. %{notechange%} cis'16 ~ cis'2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} b2 \p ~ b8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 b4 \hideNotes r4. | \unHideNotes %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b8 ~ | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} b8 ~ } b4 ~ \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} cis'16 \mf ~ cis'4. ~ | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} cis'8. ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 cis'4 ~ \tuplet 3/2 { cis'4 %{notechange%} r8 } r8 | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} r4. %{notechange%} e'8 \p ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e'8. ~ e'8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 r4. %{notechange%} e'8 ~ | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } dih'8 ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} b4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 b4 \hideNotes r4 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'8 ~ | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 r8 %{notechange%} fih'8 \p ~ fih'2. ~ fih'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 geh'4 ~ \tuplet 5/4 { geh'8. %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'8. %{notechange%} b8 ~ } b4. ~ | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} b16 %{notechange%} a8. \mf ~ a4. ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'4 %{notechange%} r8 } r4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 b4. %{notechange%} e'4 ~ \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 e'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} dih'16 \p ~ dih'4 ~ | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 dih'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} cis'8. %{notechange%} dih'16 \p ~ dih'8 ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} cis'4. %{notechange%} dih'4. \p | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih'4 %{notechange%} r8 } r4. | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} a4. \mf ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 a4 ~ \tuplet 5/4 { a8. %{notechange%} r8 } r2 r8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} b4 \p ~ } b4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 b8 %{notechange%} r8 r2 | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 cis'4. %{notechange%} dih'8 \p ~ dih'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} cis'4 \mf | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} geh'8. %{notechange%} dih'16 \p ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'4. ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e'8 %{notechange%} r8. } r4. | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} fih'8. ~ fih'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 fih'8. %{notechange%} r16 r4. | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} cis'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} e'4 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 geh'4 ~ geh'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a4 ~ } a8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih'4. \p ~ | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} dih'4 ~ | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 dih'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} r8 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} fih'8 ~ fih'4. ~ | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} fih'8 %{notechange%} r8 r4. | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 cis'4 ~ \tuplet 5/4 { cis'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'2 ~ geh'8 ~ | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 geh'8. %{notechange%} r16 r8 \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} cis'16 %{notechange%} r8. | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 cis'2. ~ cis'8. %{notechange%} r16 r2. r8 | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 cis'8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} a4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} e'4 \p ~ | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 e'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} e'4. ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 e'2 ~ \tuplet 3/2 { e'4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a4. \mf ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a8 %{notechange%} r4 } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 5/4 { fih'8 %{notechange%} r8. } r8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r8 \hideNotes r4 | \unHideNotes %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} r4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_up.ly new file mode 100644 index 0000000..86fdee7 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_6_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } cis''2 ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \tuplet 5/4 { cis''8. %{notechange%} r8 } r2 | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} gis''16 \mf ~ gis''4 ~ | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } geh''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 geh''4. %{notechange%} a'4 | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} geh''8. %{notechange%} a'16 ~ a'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 r8. %{notechange%} gis''16 ~ gis''2. ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''8. %{notechange%} r8 } r4. | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r4 r4 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { a'8 %{notechange%} fih''4 \mf ~ } fih''4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 a'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 e''8 %{notechange%} r8 r2 | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8. %{notechange%} geh''8 \p ~ } geh''4 ~ | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} r8 r4. | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 e''4 ~ \tuplet 5/4 { e''8. %{notechange%} r8 } r4. | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis''4 %{notechange%} r8 } r8 | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 gis''2. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2 %{notechange%} e''2 ~ e''8 | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} r4 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 r8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 e''16 %{notechange%} b'8. ~ b'4 | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b'8. ~ b'4 ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 b'1 ~ b'8 %{notechange%} r8 r4. | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b'8 %{notechange%} r4 } r4. | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { cis''16 %{notechange%} r4 } r8 | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 %{notechange%} geh''2. ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} dih''4 ~ \tuplet 3/2 { dih''4 %{notechange%} r8 } r8 | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''8 ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 cis''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} e''4\mf ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 gis''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} fih''8. ~ } fih''4 ~ | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 fih''2 %{notechange%} e''1 ~ e''1 ~ e''4 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 dih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p ~ | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } dih''4 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r2 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''1 ~ gis''4 ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} gis''4 %{notechange%} geh''4 \p | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ gis''8 | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 r16 %{notechange%} fih''8. ~ fih''2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 fih''8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 a'4 ~ a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b'4. \mf ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e''8 %{notechange%} r4 } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} dih''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} cis''8 \p ~ } cis''4 ~ | %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 cis''4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih''4 %{notechange%} r16 } r4. | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'4 %{notechange%} r16 } r2 | %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } r2. | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} r4. \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 e''16 %{notechange%} r8. r8 | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 %{notechange%} cis''2. ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } r8 | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} gis''4 ~ | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 r8 | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 fih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 fih''8. %{notechange%} geh''16 \p ~ geh''2 ~ geh''8 | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 fih''4 \hideNotes r2 | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. \p | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis''16 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} b'8 ~ } b'8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r8 %{notechange%} dih''8 ~ dih''2. ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 fih''8. %{notechange%} r16 r2 | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 a'1 ~ \tuplet 5/4 { a'16 %{notechange%} fih''4 \mf ~ } fih''2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 fih''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} a'4 \p ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} fih''8 \mf ~ } fih''8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8 %{notechange%} r8. } r8 | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} b'8 ~ } b'8 ~ | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2\p ~ cis''8 | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r4 %{notechange%} b'2.\mf | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis''4. \p | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } geh''4. ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} r8 } r4. | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} geh''4 ~ } | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 geh''16 %{notechange%} r8. r8 | %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2. %{notechange%} a'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} r8 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 \hideNotes r2. r2. r2. | \unHideNotes %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} dih''16 ~ } dih''8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'4 ~ | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} fih''4 ~ | %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 fih''16 %{notechange%} r8. | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 e''4 ~ \tuplet 5/4 { e''8. %{notechange%} r8 } r8 | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 geh''4 ~ geh''16 %{notechange%} a'8. ~ a'4 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih''4. \mf ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r4. | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} a'8. \p ~ a'8 | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} gis''16 ~ gis''4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r4. | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} gis''16 ~ gis''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r4. | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 r4. %{notechange%} gis''8 \mf ~ gis''2 ~ gis''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} cis''8. \p ~ } cis''8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} r8 } r2 | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8. %{notechange%} gis''8 \mf ~ } | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} r8. r8 | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 gis''4 ~ gis''16 %{notechange%} cis''8. \p ~ cis''4 | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. \mf ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''4 %{notechange%} r16 } r2 | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh''8 \p ~ geh''4. ~ | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''4 %{notechange%} b'8 ~ } b'4. ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} r8. } | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} gis''4. ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''4 %{notechange%} r8 } r8 | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 gis''16 %{notechange%} e''8. ~ e''2 ~ e''8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 e''8 %{notechange%} a'4. \p ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 geh''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'4 %{notechange%} geh''16 ~ } geh''8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 geh''8 %{notechange%} a'8 ~ a'4. | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2. ~ cis''8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} geh''8 ~ } geh''8 | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r2 r8. %{notechange%} e''16 ~ e''4 | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} b'1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} r8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 e''8 %{notechange%} dih''8 ~ | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { dih''4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} a'4. \p ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 a'4 ~ \tuplet 5/4 { a'8. %{notechange%} geh''8 ~ } geh''2 ~ | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} a'8 ~ a'4. ~ | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} r8 } | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 a'8. %{notechange%} dih''16 \mf ~ dih''4 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''4. ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 gis''4 %{notechange%} r2. r8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''4 %{notechange%} r8 } r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } a'4. | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''4. ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh''8 %{notechange%} cis''4 ~ } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} cis''4 ~ | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 a'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e''4 \mf ~ | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 e''4 ~ \tuplet 5/4 { e''4 %{notechange%} gis''16 ~ } gis''1 ~ gis''8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'2. ~ | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 a'8. %{notechange%} r16 r8 | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} cis''4 ~ } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''4 ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} dih''4. %{notechange%} e''4. ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 e''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih''8 ~ } dih''8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} dih''8. %{notechange%} e''16 ~ e''8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} b'4. ~ | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8. %{notechange%} r8 } r4. | %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2\mf ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 cis''4 \hideNotes r2. | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r2. %{notechange%} fih''4 \mf ~ | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 %{notechange%} b'2\mf ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} e''8 ~ | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 dih''4 %{notechange%} a'4. \p | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 b'16 %{notechange%} cis''8. \p ~ cis''8 | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 %{notechange%} geh''2 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''8 ~ | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} fih''4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih''8 %{notechange%} r8. } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} e''4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} e''16 %{notechange%} r8. r8 | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { e''16 %{notechange%} r4 } | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 %{notechange%} geh''2\p ~ geh''8 ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4. ~ | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} cis''8 \p ~ cis''4. | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 a'1 ~ \tuplet 3/2 { a'4 %{notechange%} r8 } r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} cis''8. ~ cis''8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4 ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} b'16 %{notechange%} gis''8. ~ gis''4 ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 gis''4 %{notechange%} e''2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''4 %{notechange%} b'16 ~ } b'8 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 b'4. %{notechange%} fih''8 | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 %{notechange%} gis''2 ~ gis''8 ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''8. %{notechange%} e''8 ~ } e''4. ~ | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 cis''4 ~ \tuplet 5/4 { cis''8. %{notechange%} b'8 \mf ~ } b'2 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 b'2 ~ \tuplet 5/4 { b'8. %{notechange%} e''8 ~ } e''1 ~ e''4 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} r8 } r8 | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} a'2 ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} a'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} geh''4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh''4 %{notechange%} r16 } r4. | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e''8. ~ } e''4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'8. %{notechange%} r8 } r8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'4. \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} gis''4 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} gis''2. ~ | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { gis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r2 \hideNotes r4. | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { e''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 fih''4 ~ fih''16 %{notechange%} r8. r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''4 %{notechange%} r8 } r8 | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} gis''8. \mf ~ gis''4 ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh''4 %{notechange%} r8 } r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e''4 \mf ~ } e''8 ~ | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 e''16 %{notechange%} r8. | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} e''4. %{notechange%} r8 | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} r8. r8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 %{notechange%} cis''2.\p ~ cis''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 dih''4. %{notechange%} r8 | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih''4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8. %{notechange%} r8 } r8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 %{notechange%} a'2\p ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { a'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 fih''8 %{notechange%} r8 r2. r8 | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''4. ~ | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh''16 %{notechange%} r4 } | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r4. %{notechange%} r4 \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'8 | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a'4. \p | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} fih''16 %{notechange%} gis''8. | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r4 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''2 ~ e''8 ~ | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 e''8 %{notechange%} geh''4\p ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r4. | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} dih''8 \mf ~ dih''2 ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 dih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 geh''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} cis''16 ~ cis''4. ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { cis''8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} cis''4\p | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2\mf ~ | %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih''8 %{notechange%} gis''4 ~ } | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 r4 r16 %{notechange%} geh''8. \p ~ geh''4 ~ | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''8 %{notechange%} r4 } r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 } | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih''2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} r8 %{notechange%} cis''8 \p ~ cis''4. ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { cis''4 %{notechange%} e''16 \mf ~ } e''2 ~ e''8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 r8. %{notechange%} geh''16 \p ~ geh''8 ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 geh''4 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} gis''2.\mf ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r2. r8. %{notechange%} gis''16 ~ gis''2. ~ gis''8 ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''8. %{notechange%} r8 } | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} geh''16 \p ~ geh''4 | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 b'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b'8. ~ b'4 ~ | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 b'16 %{notechange%} e''8. ~ e''4. ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 e''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r8 %{notechange%} a'8. \p ~ } | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'16 %{notechange%} r4 } r8 | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf } | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} a'8. \p ~ } a'8 | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} dih''2\mf ~ dih''8 ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} geh''4\p ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 geh''4 %{notechange%} gis''2\mf | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7.ly new file mode 100644 index 0000000..9a4c640 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} a'16 ~ a'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} geh''8. %{notechange%} a'16 ~ a'8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 b'4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4. %{notechange%} a'4. ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } r4 | %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} geh'8 ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} a2. \mf ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 cis'2 ~ \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { a16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 dih'8 %{notechange%} gis''4. \mf ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} fih''2 ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} geh''8 \p ~ } geh''4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} geh''16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} e''2 | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} geh''8. ~ } geh''8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} e''8 ~ } e''8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} dih'8 ~ } | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} gis''8. \mf ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 cis''2 ~ cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 gis''2. %{notechange%} dih'4. \p ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} a8. \mf | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh''2\p ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 geh''4 ~ \tuplet 5/4 { geh''8. %{notechange%} e'8 ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} a4 \mf ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} b8. \p ~ | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} gis''4 \mf ~ } gis''8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} a'4 ~ a'16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 fih'4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 e''4 ~ e''16 %{notechange%} b'8. ~ b'2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} fih'4 \p ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} cis''4 ~ } cis''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } fih'4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'16 %{notechange%} fih''4 \mf ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 5/4 { e''8 %{notechange%} dih'8. \p ~ } dih'4 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} cis'4 ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 ~ \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'1 ~ geh'1 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} dih''8 %{notechange%} a4 ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} fih'8. \p ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} e''4 \mf ~ } e''4 | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b'4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'1 ~ b'16 %{notechange%} b8. \p ~ b2. ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} fih''8. \mf ~ fih''4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} fih''8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} a'8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ e''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 dih'4. %{notechange%} a'4 ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} dih''8 \mf ~ } dih''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8. %{notechange%} fih'8 \p ~ } fih'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} cis''8 ~ } cis''8 ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh''8 %{notechange%} cis'8. \mf ~ } cis'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''4 | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} fih'16 ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} e''8. ~ } e''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} dih'8 \p ~ } dih'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} gis''8 \mf ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 geh'4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''4 %{notechange%} geh'16 ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} fih''4 ~ } fih''4. ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} geh''16 ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ fih''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 fih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} b8. ~ } | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis''4. ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} a16 ~ } a2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a4 %{notechange%} cis'8 ~ } cis'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} geh'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. \mf ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} fih''4. ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''8. %{notechange%} a16 ~ a4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} fih''8. %{notechange%} a16 ~ a4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 a4 %{notechange%} a'2.\p ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} a'2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'4 %{notechange%} b16 \p ~ } b2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 fih'1 ~ \tuplet 5/4 { fih'4 %{notechange%} b'16 \mf ~ } b'2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} b8. \p ~ } b4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} fih''8 \mf ~ } fih''4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 fih''8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'8. %{notechange%} fih''8 ~ } fih''8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} geh'4 ~ } geh'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 geh'4 %{notechange%} a'4 \p ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 cis'8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'2 ~ \tuplet 5/4 { fih'8 %{notechange%} geh''8. ~ } geh''4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 fih'8. %{notechange%} e'16 ~ e'2 ~ e'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} fih''8. ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} geh'4 ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 geh'8 %{notechange%} fih''4 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih''1 fih''2 %{notechange%} dih'2. \p ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'4 | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} fih'8 ~ fih'2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8. %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 geh''4 %{notechange%} fih'2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} a'4. ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 gis''4 %{notechange%} e'4. \p ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 dih''16 %{notechange%} geh''8. \p ~ geh''4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh''4 ~ geh''16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2\mf ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} dih'4 \p ~ } dih'4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} fih'4 \p ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 %{notechange%} gis''4\mf ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} cis''2\p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} e'4. \p ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { e'8 %{notechange%} dih''8. \mf ~ } dih''2. ~ dih''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} geh''8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} b'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} dih'8 \p ~ } dih'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} dih''16 \mf ~ } dih''4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 b8 %{notechange%} geh'8 \mf | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} a4 %{notechange%} gis''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 a2 %{notechange%} gis''2 ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} gis''8 ~ } gis''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} e''4. ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 e'8 %{notechange%} geh''4. ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} e'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} geh''8 ~ geh''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 geh''4 %{notechange%} fih''2\mf ~ fih''8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} e''8. \mf ~ e''8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2. ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b'8 %{notechange%} e'4 \p ~ } e'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 cis'8. %{notechange%} a'16 \p ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} cis'8 \mf ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 a4 %{notechange%} geh'4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih''8. %{notechange%} fih'8 \p ~ } fih'2. | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} e''8. \mf | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 b'4 %{notechange%} e'2. \p ~ e'8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 fih''4. \hideNotes r4. | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 \p ~ } \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} cis''8 ~ } cis''8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} r16 r4. | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'8 %{notechange%} dih'8 \p ~ dih'2. ~ dih'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} geh'2 \mf ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} gis''4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} e'8. ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} e''8. \mf ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 \p ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} a'4 ~ } a'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 a'8 \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 geh'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 geh'2 %{notechange%} r8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} geh'2. \mf | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} gis''4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 b8. %{notechange%} b'16 \mf ~ b'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 %{notechange%} b4. | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2.\mf ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} b'4 ~ \tuplet 5/4 { b'16 %{notechange%} fih'4 \p ~ } fih'4 ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} dih'8. ~ dih'8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} a'8 ~ } a'8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} cis''16 \p ~ } cis''4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} a4 \mf } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e''8. ~ | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8. %{notechange%} fih'8 ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 ~ fih'16 %{notechange%} gis''8. \mf ~ gis''2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8 %{notechange%} geh''8. \p ~ } geh''4. ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} a'4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8 %{notechange%} geh''8. \p ~ } geh''4. ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} b8 ~ b2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b8. \p ~ } b4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} fih'8 ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} dih'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'8 %{notechange%} cis''4. | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} a4 ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} dih'4 \p } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis''4 ~ | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 b'8. %{notechange%} gis''16 ~ gis''1 ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 b'4 %{notechange%} dih'4. \p ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 dih'8 %{notechange%} cis''8 ~ cis''2 ~ cis''8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 cis''4 %{notechange%} fih'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} e'4 ~ e'16 %{notechange%} cis'8. \mf ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'16 %{notechange%} e'8. ~ e'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 a'4 ~ a'16 %{notechange%} e'16 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} a'4 %{notechange%} fih'4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 e'2. ~ e'8. %{notechange%} geh''16 ~ geh''1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} geh''4 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} a4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} b'8. %{notechange%} fih''16 ~ fih''4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} a4 ~ | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} b'16 \mf ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} fih'4 \p | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} r8 r4. | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} e'8. ~ e'8 ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { e'4 %{notechange%} b8 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e''8 %{notechange%} a8. ~ } a2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 dih''4 ~ dih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} gis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh''4 %{notechange%} b4. ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 %{notechange%} geh''4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} cis'8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 cis'2 %{notechange%} b2. \p ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} b4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a'8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 fih''4 %{notechange%} e'2 \p ~ e'8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} b'8. \mf ~ b'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r4. %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e'8. \p ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } dih'4 ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} b4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 fih''4 %{notechange%} geh'4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'8 %{notechange%} gis''4. | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} geh''4 \p ~ } geh''4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8 %{notechange%} dih'8. ~ } dih'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 dih'4 ~ dih'8. %{notechange%} cis'16 \mf ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'4 %{notechange%} geh''8 \p ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh''8 %{notechange%} a'4 ~ } a'2. ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} geh'4. \mf | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} fih'8. ~ fih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 \p ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} fih''4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. \p ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 fih'4 %{notechange%} a'2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'4 ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} b4 \p ~ } b8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} dih''8. \mf ~ dih''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} b4 \p ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} dih''8. \mf ~ dih''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} cis'8 \mf } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} cis'2 \mf ~ cis'8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 geh'8. %{notechange%} dih'16 \p ~ dih'4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'4 %{notechange%} a'8 ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} dih''4. ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} cis''8 \p | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} b4. \p ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b4 %{notechange%} e'8 ~ } e'4. ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 cis'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b4 %{notechange%} fih''8 \mf ~ } fih''4 | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 \p ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8. %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 cis'4 \hideNotes r4 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} cis'4 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} b'16 \mf ~ b'4. | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} dih'4 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} dih'4 \p ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} fih''2\mf ~ fih''8 | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 a'16 %{notechange%} b'8. \mf ~ b'4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} e''8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 \p ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'16 %{notechange%} b'8. \mf ~ b'2. ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} e'8 \p ~ e'4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 e'4 ~ e'16 %{notechange%} b'8. \mf ~ b'1 ~ b'4. ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} e''8. ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 e''8 %{notechange%} e'4. \p ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} a'8. ~ } a'4 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} fih''8 ~ } fih''4 | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 b2 %{notechange%} gis''2\mf | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} gis''8. ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. r4 | %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { gis''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 cis''8 %{notechange%} e'8 ~ e'2 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} fih''8 ~ } fih''4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_down.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_down.ly new file mode 100644 index 0000000..b72916e --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_down.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} \hideNotes r2. | \unHideNotes %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} e'8. \p ~ e'4 ~ | %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e'8. %{notechange%} dih'8 ~ } dih'4 ~ | %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 dih'16 %{notechange%} r8. r8 | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} geh'4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} a2. \mf ~ | %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8. %{notechange%} geh'8 ~ } geh'4. | %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. ~ | %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 cis'2 ~ \tuplet 5/4 { cis'16 %{notechange%} geh'4 ~ } geh'1 ~ | %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 geh'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} a4 \mf ~ } | %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { a16 %{notechange%} dih'4 \p ~ } | %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} dih'4 ~ } dih'8 ~ | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 dih'4. %{notechange%} r8 r4. | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 r4 r4 \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 geh'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 %{notechange%} cis'2 ~ cis'8 ~ | %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4. ~ | %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} geh'8. \mf ~ geh'4 ~ | %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } r8 | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 r2 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b4 ~ | %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e'4. ~ | %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'8. %{notechange%} r8 } r8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf ~ | %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'4 %{notechange%} b8 \p ~ } b4 ~ | %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 b4 ~ \tuplet 5/4 { b8. %{notechange%} r8 } r2 | %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} r4 } r8 | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 r2. %{notechange%} dih'4. ~ | %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a8. %{notechange%} r8 } r8 | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 r4 r4 r8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } e'4 ~ | %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} a8. \mf | %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 r4 \tuplet 5/4 { r8. %{notechange%} e'8 \p ~ } e'1 ~ e'8 ~ | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 e'8 %{notechange%} a4 \mf ~ | %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} e'8. \p ~ } e'4. ~ | %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 ~ | %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis'16 %{notechange%} r4 } r2 | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} b8. \p ~ | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} r4 } r8 | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} r4 r16 %{notechange%} geh'8. \mf ~ geh'8 ~ | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { geh'8 %{notechange%} fih'4 \p ~ } fih'4. ~ | %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 fih'4. \hideNotes r4. | \unHideNotes %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'16 %{notechange%} r4 } r8 | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'4 ~ | %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} cis'8 \mf ~ } cis'4 | %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} e'16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } fih'4 | %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 ~ | %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} dih'8. ~ } dih'4 ~ | %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'8 %{notechange%} geh'4 \mf ~ } geh'4 ~ | %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { geh'8 %{notechange%} cis'4 ~ } | %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 cis'4 ~ \tuplet 5/4 { cis'8 %{notechange%} dih'8. \p ~ } | %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 dih'2 ~ \tuplet 3/2 { dih'4 %{notechange%} geh'8 \mf ~ } geh'1 ~ geh'1 ~ | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'8 | %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. ~ b4 ~ | %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b8. %{notechange%} r8 } r8 | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} a4 \mf ~ | %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a4 %{notechange%} r8 } r2 r8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 %{notechange%} b4. \p ~ | %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 5/4 { b8 %{notechange%} r8. } r8 | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r8 %{notechange%} fih'8. ~ } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} r2 \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 r1 r16 %{notechange%} b8. ~ b2. ~ | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r8 | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih'8 \p ~ } dih'4 ~ | %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { dih'8 %{notechange%} dih'4 ~ } | %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 dih'4. %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} fih'16 ~ } fih'2 ~ | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 fih'4 ~ \tuplet 3/2 { fih'4 %{notechange%} r8 } r8 | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } r2 | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8 %{notechange%} cis'8. \mf ~ } cis'4. ~ | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} fih'16 \p ~ } fih'4. ~ | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 fih'4 ~ \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a2 ~ | %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a8 %{notechange%} r8. } r4. | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} dih'4 \p ~ | %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'8 ~ \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { dih'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} a16 \mf ~ } a4 ~ | %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } r8 | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } geh'8 ~ | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 geh'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r4 %{notechange%} geh'16 ~ } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { geh'8 %{notechange%} r4 } r4. | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih'4. \p ~ | %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 fih'8. %{notechange%} r16 r2 | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} r4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. ~ | %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. ~ } geh'8 ~ | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} r8 } r8 | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} a16 ~ } a2 ~ | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a4 %{notechange%} cis'8 ~ } cis'4. ~ \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { cis'8. %{notechange%} r8 } r8 | %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} geh'4 ~ | %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} e'8. \p ~ e'8 | %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 %{notechange%} dih'2. ~ | %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'16 %{notechange%} r4 } r8 | %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 geh'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} a16 ~ a4. ~ | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} r8 } r8 | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} r8. %{notechange%} a16 ~ a4. ~ | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 a4 \hideNotes r2. | \unHideNotes %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} r2 \hideNotes r2 | \unHideNotes %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r4 %{notechange%} b16 \p ~ } b2 ~ | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'2 ~ fih'8 ~ | %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 fih'1 ~ \tuplet 5/4 { fih'4 %{notechange%} r16 } r2 | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b8. %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih'8 %{notechange%} b8. ~ } b8 ~ | %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b16 %{notechange%} fih'4 ~ } | %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'8. %{notechange%} r8 } r8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} geh'4 ~ } geh'8 ~ \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 geh'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} cis'4. ~ | %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 cis'8 %{notechange%} fih'8 \p ~ fih'2 ~ | %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 fih'2 ~ \tuplet 5/4 { fih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih'8. ~ | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} cis'8 \mf ~ } cis'8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 fih'8. %{notechange%} e'16 ~ e'2 ~ e'8 ~ | %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'4. ~ | %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 | %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 geh'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 r1 r2 %{notechange%} dih'2. \p ~ | %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} b2 ~ | %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'8 ~ | %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} dih'16 %{notechange%} a8. \mf ~ a8 ~ | %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { b4 %{notechange%} dih'16 ~ } dih'4 | %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} fih'8 ~ fih'2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} fih'2. ~ | %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 fih'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. ~ fih'4 | %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} r4 \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e'16 %{notechange%} r4 } r2 | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'8 %{notechange%} a8. \mf ~ } | %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} e'4 \p ~ } | %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 | %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'2 ~ | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 fih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} a8 \mf ~ } a4. ~ | %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a4 %{notechange%} e'8 \p ~ } e'8 | %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} fih'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 r8. %{notechange%} cis'16 \mf ~ cis'4 ~ | %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} e'4. ~ | %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { e'8 %{notechange%} r8. } r2. r8 | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 r4 r8 \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'2. ~ | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 e'16 %{notechange%} r8. | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis'4. \mf ~ | %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { cis'8 %{notechange%} e'8. \p ~ } e'8 ~ | %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 e'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 ~ } e'4. ~ | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} r4 } r8 | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} dih'8 ~ } dih'2 ~ | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { dih'4 %{notechange%} r16 } r4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 | %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} fih'4. | %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 %{notechange%} b2 ~ b8 ~ | %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 b8 %{notechange%} geh'8 \mf | %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 b4 ~ \tuplet 3/2 { b4 %{notechange%} a8 \mf ~ } a8 ~ | %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} a4 \hideNotes r4. | \unHideNotes %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 a2 \hideNotes r2 | \unHideNotes %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { a8. %{notechange%} r8 } r8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 e'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'4 ~ | %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis'4 %{notechange%} e'16 \p ~ } e'4. ~ | %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} e'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} e'8. ~ } e'8 ~ | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 e'8 %{notechange%} r8 r4. | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 r4 %{notechange%} r2 r8 \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2 ~ | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'8 %{notechange%} dih'4 ~ } dih'4 | %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'8 ~ | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 fih'4 ~ fih'16 %{notechange%} r8. r8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} e'4 ~ } e'4. ~ | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} cis'4 \mf ~ | %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 cis'8. %{notechange%} r16 r2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} \hideNotes r1 | \unHideNotes %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} cis'16 %{notechange%} r8. r8 | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} cis'8 ~ } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 cis'4 %{notechange%} a2 ~ a8 ~ | %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 a4 %{notechange%} geh'4 ~ | %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'8 %{notechange%} dih'4 \p ~ } dih'8 | %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8. %{notechange%} fih'8 ~ } fih'2. | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} dih'4 ~ | %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 dih'4 %{notechange%} geh'4. \mf | %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } fih'8 ~ | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 fih'16 %{notechange%} r8. | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 r4 %{notechange%} e'2. ~ e'8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} b4 ~ } \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 geh'16 %{notechange%} dih'8. \p ~ dih'4 ~ | %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} fih'8. ~ } fih'4 ~ | %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. ~ | %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 geh'8 %{notechange%} dih'8 \p ~ dih'2. ~ dih'8 ~ | %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 dih'4 %{notechange%} geh'2 \mf ~ geh'8 ~ | %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} r4 } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 r4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 e'16 %{notechange%} r8. r8 | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b2 ~ | %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b8 %{notechange%} r4 } r4. | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} fih'2 ~ | %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 fih'4 %{notechange%} geh'4. \mf ~ | %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 geh'8. %{notechange%} r16 | %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 geh'1 geh'2 %{notechange%} r8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} fih'4 \p ~ } | %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 fih'4 %{notechange%} geh'2. \mf | %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 %{notechange%} b2 \p ~ | %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 b8. %{notechange%} r16 r4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 %{notechange%} b4. ~ | %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 b8. %{notechange%} r16 r2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} fih'8 %{notechange%} b4. | %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} r4 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'4 ~ | %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 fih'8 %{notechange%} b8 ~ b4. ~ | %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 b16 %{notechange%} dih'8. ~ dih'8 ~ | %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { dih'4 %{notechange%} r8 } r8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis'4. \mf | %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a4 } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} cis'2 ~ | %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { cis'8 %{notechange%} r4 } r4. | %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 r4 \hideNotes r2. | \unHideNotes %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} e'4 \p ~ } e'8 ~ | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e'8. %{notechange%} fih'8 ~ } fih'8 ~ | %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 fih'4 ~ fih'16 %{notechange%} r8. r2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8 %{notechange%} r8. } r4. | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b8. \p ~ b4 ~ | %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 b16 %{notechange%} dih'8. ~ | %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 dih'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 \mf ~ | %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { geh'8 %{notechange%} r8. } r4. | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 r8 %{notechange%} b8 \p ~ b2 ~ \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { b16 %{notechange%} r4 } r8 | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b8 %{notechange%} r4 } r8 | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b8 %{notechange%} r4 } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b8. ~ } b4. ~ | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { b4 %{notechange%} fih'8 ~ } | %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 fih'4 %{notechange%} dih'4 ~ | %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} dih'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { a8 %{notechange%} dih'4 \p } | %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 r8. %{notechange%} r16 r1 r1 \hideNotes r4 | \unHideNotes %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} dih'4. ~ | %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 dih'8 %{notechange%} r8 r2 r8 | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 ~ | %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} fih'16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} e'4 ~ e'16 %{notechange%} cis'8. \mf ~ | %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} cis'4 %{notechange%} fih'4 \p ~ | %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 fih'16 %{notechange%} e'8. ~ e'2. ~ | %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 e'4 %{notechange%} fih'4. ~ \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { fih'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 r4 r16 %{notechange%} e'16 ~ | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih'4. | %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 r2 r16 %{notechange%} e'8. ~ e'4 ~ | %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 e'2. ~ e'8. %{notechange%} r16 r1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} b4 | %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} b8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { cis'8 %{notechange%} geh'8. ~ } geh'4 ~ | %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} geh'4 %{notechange%} a4 ~ | %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 a4 ~ a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a4 \mf ~ | %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e'4 %{notechange%} r16 } r4. | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} fih'4 | %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'4 ~ | %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} fih'8 ~ } fih'8 | %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e'8. ~ e'8 ~ \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \tuplet 3/2 { e'4 %{notechange%} b8 ~ } | %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'8 ~ | %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { geh'8 %{notechange%} b4 \p ~ } b4 ~ | %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 b16 %{notechange%} r8. | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} geh'8. \mf ~ } geh'8 ~ | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b4 %{notechange%} geh'16 \mf ~ } geh'4 ~ | %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh'4 %{notechange%} b8 \p ~ } b8 ~ | %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b16 %{notechange%} a4 \mf ~ } a8 ~ | %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 a4 ~ \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { r8 %{notechange%} a8. ~ } a2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. \p ~ | %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} b4 \hideNotes r4. | \unHideNotes %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} cis'8. \mf ~ | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 cis'2 %{notechange%} b2. \p ~ b8 ~ | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b4 %{notechange%} r8 } r4. | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 r4 %{notechange%} b4 ~ | %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b4 %{notechange%} r8 } r8 | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} e'2 ~ e'8 ~ | %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 e'4 ~ e'16 %{notechange%} r8. r8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 r4. %{notechange%} e'8 ~ e'4. ~ | %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 e'4 ~ \tuplet 5/4 { e'8 %{notechange%} r8. } r8 | %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e'8. ~ | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e'8 %{notechange%} dih'8. ~ } dih'4 ~ | %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b4 ~ | %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} b4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8. %{notechange%} geh'8 \mf ~ } geh'4 ~ | %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 geh'16 %{notechange%} r8. r8 | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. ~ | %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 geh'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih'8 %{notechange%} b8. ~ } b8 | %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} a4 \mf ~ | %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 a8. %{notechange%} cis'16 ~ cis'4 ~ | %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { cis'8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r8 %{notechange%} dih'8. \p ~ } dih'4 ~ | %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 dih'4 ~ dih'8. %{notechange%} cis'16 \mf ~ cis'2 ~ cis'8 ~ | %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis'4 %{notechange%} r8 } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} geh'4. | %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih'8. \p ~ fih'4 ~ | %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih'8. %{notechange%} geh'8 \mf ~ } geh'4. | %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} geh'8 ~ } geh'4 ~ | %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 geh'4 %{notechange%} r4. \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 %{notechange%} fih'2 \p ~ | %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'8 %{notechange%} r4 } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { fih'8 %{notechange%} r4 } r8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} fih'4. ~ | %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 fih'4 \hideNotes r2 | \unHideNotes %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b4 ~ } b8 ~ | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 b16 %{notechange%} r8. r4. | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} b4 ~ | %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} b16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { r4 %{notechange%} cis'8 \mf } | %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 %{notechange%} e'4. \p ~ | %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 e'2 %{notechange%} cis'2 \mf ~ cis'8 | %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh'4. ~ | %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 geh'8. %{notechange%} dih'16 \p ~ dih'4. ~ | %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 dih'4 %{notechange%} cis'2 \mf ~ | %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis'16 %{notechange%} e'4 \p ~ } e'4 | %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 %{notechange%} fih'4. ~ | %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih'4 %{notechange%} r8 } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} fih'4 ~ | %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 fih'16 %{notechange%} r8. r8 | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} b4. ~ \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { b4 %{notechange%} e'8 ~ } e'4. ~ | %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 geh'4 ~ \tuplet 3/2 { geh'4 %{notechange%} a8 ~ } a8 ~ | %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} a4 %{notechange%} e'4. \p ~ | %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e'16 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh'16 %{notechange%} cis'4 ~ } cis'8 ~ | %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 %{notechange%} geh'4 | %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 \p ~ | %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih'4 %{notechange%} b16 ~ } b4 ~ | %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 %{notechange%} dih'2 ~ dih'8 ~ | %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 dih'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih'2 ~ | %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih'8 %{notechange%} r4 } r8 | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 geh'16 %{notechange%} r8. | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r8. %{notechange%} cis'8 ~ } cis'2 ~ | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 cis'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} geh'4 ~ } geh'4. ~ | %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { geh'16 %{notechange%} cis'4 } | %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih'4. \p ~ | %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 dih'8. %{notechange%} r16 r4. | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ dih'8 ~ | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 dih'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r8 %{notechange%} dih'4 ~ } dih'2 ~ | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 dih'4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 %{notechange%} r4. \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} e'4 ~ | %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 e'16 %{notechange%} r8. r2. | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 r8 %{notechange%} e'8 ~ e'4. ~ | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 e'4 ~ e'16 %{notechange%} r8. r1 r4. | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} e'4. ~ | %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } geh'8 ~ | %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'4 %{notechange%} dih'16 \p ~ } dih'4 ~ | %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 dih'4 ~ \tuplet 5/4 { dih'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r16 %{notechange%} fih'4 ~ } fih'4. ~ | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { fih'16 %{notechange%} a4 \mf ~ } | %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 %{notechange%} fih'2 \p ~ fih'8 ~ | %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih'4 %{notechange%} b8 ~ } b4 ~ | %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 b2 \hideNotes r2 | \unHideNotes %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r16 %{notechange%} cis'4 \mf ~ } cis'8 ~ | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 cis'16 %{notechange%} r8. | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 r8 %{notechange%} e'8 \p ~ e'2 ~ | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { e'8 %{notechange%} geh'4 \mf ~ } | %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { geh'8. %{notechange%} a8 ~ } a4 ~ | %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 a16 %{notechange%} e'8. \p ~ e'8 ~ | %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 e'4 %{notechange%} geh'2 \mf ~ | %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { geh'16 %{notechange%} a4 ~ } a8 ~ | %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a4 %{notechange%} r8 } r4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_up.ly b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_up.ly new file mode 100644 index 0000000..5ee1802 --- /dev/null +++ b/score/lilypond_v2.24_update/ammann_distributed/includes/ammann_part_7_up.ly @@ -0,0 +1,10 @@ +{ +\set tupletFullLength = ##t + +\tempo \markup { + \concat { + \smaller \general-align #Y #DOWN + \note {4} #1 \normal-text " ≈ 60" +}} +\mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 1 beat: 2.0 %} \numericTimeSignature \time 3/8 geh''8. %{notechange%} a'16 ~ a'8 ~ | %{ noteIndex: 2 beat: 3.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'8 %{notechange%} geh''4 ~ } geh''8 ~ | %{ noteIndex: 3 beat: 5.0 %} %{\numericTimeSignature \time 3/8 %} geh''8. %{notechange%} a'16 ~ a'8 | %{ noteIndex: 4 beat: 6.5 %} \numericTimeSignature \time 5/8 %{notechange%} b'2\mf ~ b'8 ~ | %{ noteIndex: 5 beat: 9.0 %} \numericTimeSignature \time 3/4 b'4 %{notechange%} geh''2\p ~ | %{ noteIndex: 6 beat: 12.0 %} %{\numericTimeSignature \time 3/4 %} geh''4. %{notechange%} a'4. ~ | %{ noteIndex: 7 beat: 15.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} geh''8 ~ } geh''4 ~ | %{ noteIndex: 8 beat: 17.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8 %{notechange%} dih''8. \mf ~ } dih''4 ~ | %{ noteIndex: 9 beat: 19.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { dih''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 10 beat: 21.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 11 beat: 22.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} e''4. ~ | %{ noteIndex: 12 beat: 25.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2 | %{ noteIndex: 13 beat: 28.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 14 beat: 30.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 15 beat: 32.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 16 beat: 33.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { gis''8. %{notechange%} r8 } r4. | %{ noteIndex: 17 beat: 36.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 18 beat: 38.5 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 19 beat: 42.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 20 beat: 45.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 21 beat: 46.5 %} \numericTimeSignature \time 7/4 \hideNotes r1 r2. | \unHideNotes %{ noteIndex: 22 beat: 53.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 23 beat: 55.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 24 beat: 56.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 25 beat: 57.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. ~ | %{ noteIndex: 26 beat: 59.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} geh''4 \p ~ } | %{ noteIndex: 27 beat: 60.5 %} \numericTimeSignature \time 5/8 geh''4 ~ \tuplet 5/4 { geh''16 %{notechange%} r4 } r8 | %{ noteIndex: 28 beat: 63.0 %} \numericTimeSignature \time 7/8 r4. %{notechange%} gis''8 \mf ~ gis''4. ~ | %{ noteIndex: 29 beat: 66.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } | %{ noteIndex: 30 beat: 67.5 %} \numericTimeSignature \time 3/4 e''4 %{notechange%} fih''2 ~ | %{ noteIndex: 31 beat: 70.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''4 %{notechange%} geh''8 \p ~ } geh''4 ~ \bar "||" | %{ noteIndex: 32 beat: 72.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 33 beat: 74.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} e''2\mf | %{ noteIndex: 34 beat: 77.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 35 beat: 80.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 36 beat: 82.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 37 beat: 84.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 38 beat: 86.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''8 ~ | %{ noteIndex: 39 beat: 87.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''8 %{notechange%} geh''8. \p ~ } geh''8 ~ | %{ noteIndex: 40 beat: 89.0 %} \numericTimeSignature \time 2/4 geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} gis''8. \mf ~ } | %{ noteIndex: 41 beat: 91.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { gis''4 %{notechange%} r8 } | %{ noteIndex: 42 beat: 92.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 43 beat: 95.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 44 beat: 96.5 %} \numericTimeSignature \time 2/4 cis''4 ~ \tuplet 3/2 { cis''4 %{notechange%} r8 } | %{ noteIndex: 45 beat: 98.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} gis''8. \mf ~ } gis''8 ~ | %{ noteIndex: 46 beat: 101.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { gis''16 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 47 beat: 103.5 %} \numericTimeSignature \time 7/8 cis''2 ~ cis''8 %{notechange%} dih''4\mf ~ | %{ noteIndex: 48 beat: 107.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''8 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 49 beat: 109.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 50 beat: 113.0 %} \numericTimeSignature \time 3/4 r4. \hideNotes r4. | \unHideNotes %{ noteIndex: 51 beat: 116.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} e''8 ~ } e''8 | %{ noteIndex: 52 beat: 117.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 53 beat: 119.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 54 beat: 121.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 55 beat: 125.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 56 beat: 126.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 57 beat: 127.5 %} \numericTimeSignature \time 2/4 cis''4 ~ cis''16 %{notechange%} dih''8. \mf ~ | %{ noteIndex: 58 beat: 129.5 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 59 beat: 132.5 %} \numericTimeSignature \time 9/8 gis''2. \hideNotes r4. | \unHideNotes %{ noteIndex: 60 beat: 137.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 61 beat: 138.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 62 beat: 139.5 %} \numericTimeSignature \time 2/4 gis''8 %{notechange%} dih''4. ~ | %{ noteIndex: 63 beat: 141.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''8 \bar "||" | %{ noteIndex: 64 beat: 144.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 65 beat: 145.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 66 beat: 147.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 67 beat: 148.5 %} \numericTimeSignature \time 2/4 %{notechange%} geh''2\p ~ | %{ noteIndex: 68 beat: 150.5 %} \numericTimeSignature \time 13/8 geh''4 ~ \tuplet 5/4 { geh''8. %{notechange%} r8 } r1 r8 | %{ noteIndex: 69 beat: 157.0 %} \numericTimeSignature \time 3/8 r8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 70 beat: 158.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 71 beat: 161.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 72 beat: 163.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } | %{ noteIndex: 73 beat: 164.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 74 beat: 166.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 75 beat: 168.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''2 ~ | %{ noteIndex: 76 beat: 171.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { dih''8 %{notechange%} gis''8. ~ } gis''4 ~ | %{ noteIndex: 77 beat: 173.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 78 beat: 176.0 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 79 beat: 177.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 80 beat: 178.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { gis''4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 81 beat: 181.0 %} %{\numericTimeSignature \time 5/8 %} a'4 ~ a'16 %{notechange%} r8. r8 | %{ noteIndex: 82 beat: 183.5 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 83 beat: 186.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 | %{ noteIndex: 84 beat: 187.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 85 beat: 189.0 %} \numericTimeSignature \time 3/4 r4. %{notechange%} e''4. \mf ~ | %{ noteIndex: 86 beat: 192.0 %} \numericTimeSignature \time 4/4 e''4 ~ e''16 %{notechange%} b'8. ~ b'2 ~ | %{ noteIndex: 87 beat: 196.0 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 88 beat: 199.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} cis''4 \p ~ } cis''8 ~ | %{ noteIndex: 89 beat: 201.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 90 beat: 203.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 91 beat: 205.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r8. %{notechange%} cis''8 ~ } cis''4. ~ | %{ noteIndex: 92 beat: 208.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 93 beat: 210.0 %} \numericTimeSignature \time 5/8 %{notechange%} fih''2\mf ~ fih''8 ~ | %{ noteIndex: 94 beat: 212.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 95 beat: 214.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 96 beat: 215.5 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 97 beat: 216.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 98 beat: 218.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 99 beat: 220.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 100 beat: 221.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''2 ~ | %{ noteIndex: 101 beat: 224.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 102 beat: 226.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { r16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 103 beat: 228.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 104 beat: 230.0 %} \numericTimeSignature \time 3/4 e''4 ~ \tuplet 5/4 { e''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 105 beat: 233.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 106 beat: 235.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 107 beat: 236.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 108 beat: 238.0 %} \numericTimeSignature \time 11/4 r2 r4 r1 r1 | %{ noteIndex: 109 beat: 249.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 110 beat: 250.5 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 | %{ noteIndex: 111 beat: 251.5 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 112 beat: 253.0 %} \numericTimeSignature \time 5/8 %{notechange%} cis''2 ~ cis''8 ~ | %{ noteIndex: 113 beat: 255.5 %} \numericTimeSignature \time 2/4 cis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 114 beat: 257.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { r8. %{notechange%} dih''8 \mf ~ } dih''8 ~ | %{ noteIndex: 115 beat: 259.0 %} %{\numericTimeSignature \time 3/8 %} dih''8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 116 beat: 260.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''2 ~ gis''8 | %{ noteIndex: 117 beat: 264.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 \p | %{ noteIndex: 118 beat: 265.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 119 beat: 266.5 %} \numericTimeSignature \time 5/8 r4 \tuplet 5/4 { r8 %{notechange%} dih''8. \mf ~ } dih''8 ~ | %{ noteIndex: 120 beat: 269.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 121 beat: 270.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 | %{ noteIndex: 122 beat: 272.0 %} \numericTimeSignature \time 1/4 %{notechange%} b'4 ~ | %{ noteIndex: 123 beat: 273.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'8 %{notechange%} fih''8. ~ } fih''4. ~ | %{ noteIndex: 124 beat: 275.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { fih''8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 125 beat: 277.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''8 %{notechange%} r8. } | %{ noteIndex: 126 beat: 278.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''4 | %{ noteIndex: 127 beat: 280.5 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} b'2 ~ \bar "||" | %{ noteIndex: 128 beat: 282.5 %} \mark \default %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { b'4 %{notechange%} b'8 ~ } b'4 ~ | %{ noteIndex: 129 beat: 284.5 %} \numericTimeSignature \time 8/4 b'1 ~ b'16 %{notechange%} r8. r2. | %{ noteIndex: 130 beat: 292.5 %} \numericTimeSignature \time 2/4 r16 %{notechange%} fih''8. ~ fih''4 ~ | %{ noteIndex: 131 beat: 294.5 %} %{\numericTimeSignature \time 2/4 %} fih''8. %{notechange%} a'16 \p ~ a'4 ~ | %{ noteIndex: 132 beat: 296.5 %} %{\numericTimeSignature \time 2/4 %} a'8 \hideNotes r4. | \unHideNotes %{ noteIndex: 133 beat: 298.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 134 beat: 300.0 %} \numericTimeSignature \time 7/8 \tuplet 5/4 { b'8 %{notechange%} e''8. ~ } e''2 ~ e''8 ~ | %{ noteIndex: 135 beat: 303.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 136 beat: 305.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 137 beat: 306.5 %} \numericTimeSignature \time 5/8 r4. %{notechange%} a'4\p ~ | %{ noteIndex: 138 beat: 309.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'4 %{notechange%} r16 } r2 | %{ noteIndex: 139 beat: 312.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} dih''8 \mf ~ } dih''4 ~ | %{ noteIndex: 140 beat: 314.0 %} \numericTimeSignature \time 3/4 dih''4 ~ \tuplet 5/4 { dih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 141 beat: 317.0 %} \numericTimeSignature \time 5/8 r4 \tuplet 3/2 { r4 %{notechange%} cis''8 \p ~ } cis''8 ~ | %{ noteIndex: 142 beat: 319.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} dih''4 \mf ~ } dih''8 ~ | %{ noteIndex: 143 beat: 321.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } | %{ noteIndex: 144 beat: 322.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''2 ~ | %{ noteIndex: 145 beat: 325.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8 %{notechange%} geh''8. \p ~ } geh''8 | %{ noteIndex: 146 beat: 326.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 147 beat: 328.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { r4 %{notechange%} gis''8 \mf ~ } gis''2 ~ | %{ noteIndex: 148 beat: 331.5 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} geh''4. \p ~ | %{ noteIndex: 149 beat: 334.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { geh''8 %{notechange%} r8. } r4. | %{ noteIndex: 150 beat: 336.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r8 %{notechange%} gis''4 \mf ~ } gis''4 | %{ noteIndex: 151 beat: 338.5 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 152 beat: 341.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} a'8. \p ~ | %{ noteIndex: 153 beat: 342.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'4 %{notechange%} r16 } r4. | %{ noteIndex: 154 beat: 345.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 155 beat: 349.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} e''8. \mf ~ } e''4. ~ | %{ noteIndex: 156 beat: 351.5 %} \numericTimeSignature \time 2/4 e''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 157 beat: 353.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 158 beat: 355.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { b'16 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 159 beat: 356.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { e''4 %{notechange%} r8 } r8 \bar "||" | %{ noteIndex: 160 beat: 358.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 161 beat: 360.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { gis''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 162 beat: 362.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 163 beat: 363.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} gis''4 ~ } gis''8 ~ | %{ noteIndex: 164 beat: 365.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''4 %{notechange%} r16 } r8 | %{ noteIndex: 165 beat: 366.5 %} \numericTimeSignature \time 3/4 r4 %{notechange%} gis''2 ~ | %{ noteIndex: 166 beat: 369.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } | %{ noteIndex: 167 beat: 370.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { dih''4 %{notechange%} r16 } | %{ noteIndex: 168 beat: 371.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''4. ~ | %{ noteIndex: 169 beat: 374.0 %} %{\numericTimeSignature \time 5/8 %} fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 170 beat: 376.5 %} \numericTimeSignature \time 3/4 r8. %{notechange%} geh''16 \p ~ geh''2 ~ | %{ noteIndex: 171 beat: 379.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { geh''8 %{notechange%} fih''4 \mf ~ } fih''2 ~ fih''8 ~ | %{ noteIndex: 172 beat: 383.0 %} \numericTimeSignature \time 2/4 fih''8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 173 beat: 385.0 %} %{\numericTimeSignature \time 2/4 %} geh''4 ~ \tuplet 5/4 { geh''8 %{notechange%} r8. } | %{ noteIndex: 174 beat: 387.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'4. ~ | %{ noteIndex: 175 beat: 390.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} geh''4 | %{ noteIndex: 176 beat: 392.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} cis''4. ~ | %{ noteIndex: 177 beat: 393.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''4 | %{ noteIndex: 178 beat: 395.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 179 beat: 397.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 180 beat: 400.0 %} \numericTimeSignature \time 7/8 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. | %{ noteIndex: 181 beat: 403.5 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 182 beat: 404.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { cis''8. %{notechange%} e''8 \mf ~ } e''2 ~ | %{ noteIndex: 183 beat: 407.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { e''4 %{notechange%} a'8 \p ~ } a'4 ~ | %{ noteIndex: 184 beat: 409.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { a'4 %{notechange%} gis''8 \mf ~ } gis''8 ~ | %{ noteIndex: 185 beat: 411.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { gis''16 %{notechange%} r4 } r8 | %{ noteIndex: 186 beat: 412.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''4 ~ | %{ noteIndex: 187 beat: 414.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''16 %{notechange%} dih''4 ~ } dih''8 ~ | %{ noteIndex: 188 beat: 416.0 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''8 %{notechange%} r8. } r8 | %{ noteIndex: 189 beat: 418.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} gis''8 ~ } gis''8 ~ | %{ noteIndex: 190 beat: 420.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { gis''4 %{notechange%} r16 } r2 | %{ noteIndex: 191 beat: 423.0 %} \numericTimeSignature \time 5/8 r4 r4. \bar "||" | %{ noteIndex: 192 beat: 425.5 %} \mark \default \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 193 beat: 427.0 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 194 beat: 429.5 %} \numericTimeSignature \time 2/4 dih''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 195 beat: 431.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 196 beat: 433.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 197 beat: 436.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 198 beat: 437.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} dih''4. ~ | %{ noteIndex: 199 beat: 439.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { dih''4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 200 beat: 441.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. ~ | %{ noteIndex: 201 beat: 443.5 %} %{\numericTimeSignature \time 5/8 %} fih''8. %{notechange%} r16 r4. | %{ noteIndex: 202 beat: 446.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 ~ | %{ noteIndex: 203 beat: 447.5 %} \numericTimeSignature \time 5/8 a'4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 204 beat: 450.0 %} %{\numericTimeSignature \time 5/8 %} fih''8. %{notechange%} r16 r4. | %{ noteIndex: 205 beat: 452.5 %} \numericTimeSignature \time 4/4 r4 %{notechange%} a'2.\p ~ | %{ noteIndex: 206 beat: 456.5 %} %{\numericTimeSignature \time 4/4 %} a'2 %{notechange%} fih''2\mf ~ | %{ noteIndex: 207 beat: 460.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { fih''8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 208 beat: 461.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { a'8 %{notechange%} b'8. \mf ~ } b'8 ~ | %{ noteIndex: 209 beat: 463.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { b'4 %{notechange%} r16 } r2 | %{ noteIndex: 210 beat: 466.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 211 beat: 469.5 %} \numericTimeSignature \time 7/4 r1 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'2 ~ | %{ noteIndex: 212 beat: 476.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { b'8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 213 beat: 478.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 214 beat: 480.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 215 beat: 482.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 216 beat: 483.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} fih''8 ~ } fih''4 ~ | %{ noteIndex: 217 beat: 485.0 %} \numericTimeSignature \time 3/8 fih''8. %{notechange%} e''16 ~ e''8 ~ | %{ noteIndex: 218 beat: 486.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 219 beat: 488.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 220 beat: 489.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 | %{ noteIndex: 221 beat: 490.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} fih''8 ~ } fih''8 | %{ noteIndex: 222 beat: 492.0 %} \numericTimeSignature \time 1/4 %{notechange%} dih''4 ~ | %{ noteIndex: 223 beat: 493.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { dih''8 %{notechange%} r4 } r8 \bar "||" | %{ noteIndex: 224 beat: 494.5 %} \mark \default \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 \p ~ | %{ noteIndex: 225 beat: 496.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 226 beat: 499.0 %} \numericTimeSignature \time 3/4 \hideNotes r2. | \unHideNotes %{ noteIndex: 227 beat: 502.0 %} \numericTimeSignature \time 4/4 r2 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''4 ~ | %{ noteIndex: 228 beat: 506.0 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 229 beat: 507.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'8 ~ | %{ noteIndex: 230 beat: 508.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { a'4 %{notechange%} r8 } r8 | %{ noteIndex: 231 beat: 510.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 232 beat: 511.0 %} \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 233 beat: 514.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 234 beat: 517.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 235 beat: 518.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 236 beat: 520.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 237 beat: 521.5 %} \numericTimeSignature \time 7/4 r2 \tuplet 3/2 { r4 %{notechange%} b'8 ~ } b'1 ~ | %{ noteIndex: 238 beat: 528.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 239 beat: 529.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} fih''4 ~ | %{ noteIndex: 240 beat: 531.0 %} \numericTimeSignature \time 9/4 fih''1 fih''2 \hideNotes r2. | \unHideNotes %{ noteIndex: 241 beat: 540.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 242 beat: 543.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 243 beat: 544.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 244 beat: 546.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 245 beat: 548.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 246 beat: 550.0 %} \numericTimeSignature \time 3/8 %{notechange%} cis''4. \p | %{ noteIndex: 247 beat: 551.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 248 beat: 553.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 ~ } | %{ noteIndex: 249 beat: 554.0 %} \numericTimeSignature \time 3/4 a'8 %{notechange%} r8 r2 | %{ noteIndex: 250 beat: 557.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ | %{ noteIndex: 251 beat: 558.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { gis''8. %{notechange%} geh''8 \p ~ } geh''8 ~ | %{ noteIndex: 252 beat: 559.5 %} \numericTimeSignature \time 4/4 geh''4 \hideNotes r2. | \unHideNotes %{ noteIndex: 253 beat: 563.5 %} \numericTimeSignature \time 5/8 r4 %{notechange%} a'4. ~ | %{ noteIndex: 254 beat: 566.0 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 255 beat: 568.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 \mf ~ \bar "||" | %{ noteIndex: 256 beat: 569.0 %} \mark \default \numericTimeSignature \time 5/8 gis''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 257 beat: 571.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { r16 %{notechange%} dih''4 ~ } dih''2 ~ | %{ noteIndex: 258 beat: 574.5 %} \numericTimeSignature \time 2/4 dih''16 %{notechange%} geh''8. \p ~ geh''4 ~ | %{ noteIndex: 259 beat: 576.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r8 | %{ noteIndex: 260 beat: 578.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 261 beat: 579.0 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 262 beat: 580.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 263 beat: 582.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 264 beat: 583.5 %} \numericTimeSignature \time 5/8 geh''4 ~ geh''16 %{notechange%} a'8. ~ a'8 | %{ noteIndex: 265 beat: 586.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 266 beat: 588.0 %} %{\numericTimeSignature \time 2/4 %} %{notechange%} fih''2\mf ~ | %{ noteIndex: 267 beat: 590.0 %} \numericTimeSignature \time 3/8 fih''16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 268 beat: 591.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r4. | %{ noteIndex: 269 beat: 594.0 %} \numericTimeSignature \time 3/4 %{notechange%} fih''2.\mf ~ | %{ noteIndex: 270 beat: 597.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { fih''8 %{notechange%} r4 } r4. | %{ noteIndex: 271 beat: 599.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 272 beat: 600.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''8 %{notechange%} r4 } r2 | %{ noteIndex: 273 beat: 603.5 %} \numericTimeSignature \time 3/8 r8 %{notechange%} gis''4 ~ | %{ noteIndex: 274 beat: 605.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 275 beat: 606.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 276 beat: 609.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 277 beat: 610.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 278 beat: 612.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} gis''4 ~ | %{ noteIndex: 279 beat: 613.5 %} \numericTimeSignature \time 3/4 gis''4 %{notechange%} cis''2\p ~ | %{ noteIndex: 280 beat: 616.5 %} \numericTimeSignature \time 2/4 cis''8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 281 beat: 618.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 282 beat: 620.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 283 beat: 623.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r16 %{notechange%} dih''4 \mf ~ } dih''4 ~ | %{ noteIndex: 284 beat: 625.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ | %{ noteIndex: 285 beat: 626.5 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 286 beat: 629.0 %} \numericTimeSignature \time 9/8 \tuplet 5/4 { r8 %{notechange%} dih''8. ~ } dih''2. ~ dih''8 ~ | %{ noteIndex: 287 beat: 633.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { dih''8 %{notechange%} b'8. ~ } b'8 ~ \bar "||" | %{ noteIndex: 288 beat: 635.0 %} \mark \default \numericTimeSignature \time 4/4 \tuplet 5/4 { b'4 %{notechange%} r16 } r2. | %{ noteIndex: 289 beat: 639.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. \p | %{ noteIndex: 290 beat: 640.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 291 beat: 641.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 292 beat: 643.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 293 beat: 645.5 %} \numericTimeSignature \time 3/4 fih''4 %{notechange%} b'2 ~ | %{ noteIndex: 294 beat: 648.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { b'4 %{notechange%} r16 } r4. | %{ noteIndex: 295 beat: 651.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 ~ } fih''8 ~ | %{ noteIndex: 296 beat: 652.5 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { fih''4 %{notechange%} r8 } r2 | %{ noteIndex: 297 beat: 655.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} dih''16 ~ } dih''4. | %{ noteIndex: 298 beat: 658.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 299 beat: 660.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 300 beat: 662.5 %} \numericTimeSignature \time 2/4 r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 301 beat: 664.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 302 beat: 667.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 303 beat: 668.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 304 beat: 670.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 305 beat: 672.5 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} gis''4. | %{ noteIndex: 306 beat: 675.0 %} \numericTimeSignature \time 1/4 %{notechange%} e''4 ~ | %{ noteIndex: 307 beat: 676.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { e''4 %{notechange%} r8 } r8 | %{ noteIndex: 308 beat: 677.5 %} \numericTimeSignature \time 4/4 r2 %{notechange%} gis''2 ~ | %{ noteIndex: 309 beat: 681.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} r4 } r8 | %{ noteIndex: 310 beat: 683.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { r8. %{notechange%} gis''8 ~ } gis''8 | %{ noteIndex: 311 beat: 684.5 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} e''4. ~ | %{ noteIndex: 312 beat: 686.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''4 %{notechange%} r16 } r4. | %{ noteIndex: 313 beat: 688.5 %} \numericTimeSignature \time 2/4 r8 %{notechange%} geh''4. \p ~ | %{ noteIndex: 314 beat: 690.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 315 beat: 692.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 316 beat: 695.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} fih''4. \mf ~ | %{ noteIndex: 317 beat: 697.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 318 beat: 699.0 %} \numericTimeSignature \time 5/8 r8 %{notechange%} geh''8 \p ~ geh''4. ~ | %{ noteIndex: 319 beat: 701.5 %} \numericTimeSignature \time 7/8 geh''4 %{notechange%} fih''2\mf ~ fih''8 ~ \bar "||" | %{ noteIndex: 320 beat: 705.0 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { fih''16 %{notechange%} fih''4 ~ } fih''4 ~ | %{ noteIndex: 321 beat: 707.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } r2 | %{ noteIndex: 322 beat: 710.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 323 beat: 712.0 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 ~ | %{ noteIndex: 324 beat: 713.0 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { fih''16 %{notechange%} r4 } r8 | %{ noteIndex: 325 beat: 714.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 326 beat: 717.0 %} \numericTimeSignature \time 7/8 %{notechange%} b'2. ~ b'8 ~ | %{ noteIndex: 327 beat: 720.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r4. | %{ noteIndex: 328 beat: 723.0 %} \numericTimeSignature \time 3/8 r16 %{notechange%} a'8. \p ~ a'8 ~ | %{ noteIndex: 329 beat: 724.5 %} \numericTimeSignature \time 2/4 a'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 330 beat: 726.5 %} \numericTimeSignature \time 4/4 r8. %{notechange%} a'16 ~ a'2. | %{ noteIndex: 331 beat: 730.5 %} %{\numericTimeSignature \time 4/4 %} %{notechange%} cis''1 ~ | %{ noteIndex: 332 beat: 734.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { cis''8 %{notechange%} r4 } r8 | %{ noteIndex: 333 beat: 736.0 %} %{\numericTimeSignature \time 3/8 %} r16 %{notechange%} a'8. ~ a'8 ~ | %{ noteIndex: 334 beat: 737.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { a'4 %{notechange%} r8 } | %{ noteIndex: 335 beat: 738.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 336 beat: 742.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 337 beat: 744.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 338 beat: 745.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 339 beat: 746.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { fih''8. %{notechange%} r8 } r2. | %{ noteIndex: 340 beat: 750.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 341 beat: 751.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 342 beat: 754.0 %} \numericTimeSignature \time 1/4 %{notechange%} gis''4 ~ | %{ noteIndex: 343 beat: 755.0 %} \numericTimeSignature \time 3/8 gis''16 %{notechange%} e''8. ~ e''8 | %{ noteIndex: 344 beat: 756.5 %} \numericTimeSignature \time 2/4 %{notechange%} b'2 ~ | %{ noteIndex: 345 beat: 758.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { b'16 %{notechange%} r4 } r8 | %{ noteIndex: 346 beat: 760.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} e''8. | %{ noteIndex: 347 beat: 761.0 %} \numericTimeSignature \time 5/8 %{notechange%} b'2 ~ b'8 ~ | %{ noteIndex: 348 beat: 763.5 %} \numericTimeSignature \time 9/8 b'4 %{notechange%} r2. r8 | %{ noteIndex: 349 beat: 768.0 %} \numericTimeSignature \time 3/8 %{notechange%} fih''4. ~ | %{ noteIndex: 350 beat: 769.5 %} \numericTimeSignature \time 3/4 fih''4. \hideNotes r4. | \unHideNotes %{ noteIndex: 351 beat: 772.5 %} \numericTimeSignature \time 1/4 r4 \bar "||" | %{ noteIndex: 352 beat: 773.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} cis''8 \p ~ } cis''8 ~ | %{ noteIndex: 353 beat: 775.0 %} \numericTimeSignature \time 5/8 cis''8. %{notechange%} r16 r4. | %{ noteIndex: 354 beat: 777.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 355 beat: 778.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 356 beat: 780.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 357 beat: 782.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 358 beat: 785.0 %} \numericTimeSignature \time 9/8 \hideNotes r4. r4. r4.| \unHideNotes %{ noteIndex: 359 beat: 789.5 %} \numericTimeSignature \time 7/8 r4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 360 beat: 793.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { r16 %{notechange%} gis''4 \mf } | %{ noteIndex: 361 beat: 794.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 362 beat: 796.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4. ~ | %{ noteIndex: 363 beat: 798.5 %} \numericTimeSignature \time 2/4 a'4 ~ a'16 %{notechange%} r8. | %{ noteIndex: 364 beat: 800.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} e''8. \mf ~ e''8 ~ | %{ noteIndex: 365 beat: 802.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { e''8 %{notechange%} gis''8. ~ } gis''4 | %{ noteIndex: 366 beat: 804.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 367 beat: 806.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 368 beat: 808.5 %} \numericTimeSignature \time 3/8 a'8 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 369 beat: 810.0 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 370 beat: 813.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 371 beat: 815.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 372 beat: 816.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 373 beat: 817.5 %} \numericTimeSignature \time 13/8 r1 r2 %{notechange%} r8 | %{ noteIndex: 374 beat: 824.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 375 beat: 825.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 376 beat: 829.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 377 beat: 830.5 %} \numericTimeSignature \time 5/8 dih''8 %{notechange%} e''8 ~ e''4. ~ | %{ noteIndex: 378 beat: 833.0 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { e''16 %{notechange%} gis''4 } | %{ noteIndex: 379 beat: 834.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 380 beat: 836.0 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 381 beat: 838.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 | %{ noteIndex: 382 beat: 840.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 383 beat: 842.0 %} \numericTimeSignature \time 3/4 r8. %{notechange%} b'16 ~ b'2 \bar "||" | %{ noteIndex: 384 beat: 845.0 %} \mark \default \numericTimeSignature \time 3/8 %{notechange%} b'4. ~ | %{ noteIndex: 385 beat: 846.5 %} \numericTimeSignature \time 2/4 b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } | %{ noteIndex: 386 beat: 848.5 %} %{\numericTimeSignature \time 2/4 %} r8 \hideNotes r4. | \unHideNotes %{ noteIndex: 387 beat: 850.5 %} \numericTimeSignature \time 3/4 %{notechange%} b'2. ~ | %{ noteIndex: 388 beat: 853.5 %} %{\numericTimeSignature \time 3/4 %} b'4 ~ \tuplet 5/4 { b'16 %{notechange%} r4 } \hideNotes r4 | \unHideNotes %{ noteIndex: 389 beat: 856.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 390 beat: 859.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 391 beat: 860.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'8 | %{ noteIndex: 392 beat: 862.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 393 beat: 863.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 394 beat: 866.0 %} %{\numericTimeSignature \time 5/8 %} \tuplet 5/4 { r4 %{notechange%} cis''16 ~ } cis''4. ~ | %{ noteIndex: 395 beat: 868.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { cis''8 %{notechange%} r4 } | %{ noteIndex: 396 beat: 869.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 397 beat: 871.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 398 beat: 873.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 399 beat: 876.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } | %{ noteIndex: 400 beat: 877.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { fih''8 %{notechange%} dih''8. ~ } | %{ noteIndex: 401 beat: 878.0 %} %{\numericTimeSignature \time 1/4 %} \tuplet 3/2 { dih''4 %{notechange%} a'8 \p } | %{ noteIndex: 402 beat: 879.0 %} \numericTimeSignature \time 3/8 %{notechange%} b'4. \mf ~ | %{ noteIndex: 403 beat: 880.5 %} \numericTimeSignature \time 4/4 b'4 ~ \tuplet 5/4 { b'8 %{notechange%} dih''8. ~ } dih''2 ~ | %{ noteIndex: 404 beat: 884.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} e''8. ~ | %{ noteIndex: 405 beat: 885.5 %} \numericTimeSignature \time 3/8 \tuplet 5/4 { e''16 %{notechange%} r4 } r8 | %{ noteIndex: 406 beat: 887.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 407 beat: 888.5 %} \numericTimeSignature \time 4/4 r4 r16 %{notechange%} gis''8. ~ gis''2 | %{ noteIndex: 408 beat: 892.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 409 beat: 893.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} geh''8. \p ~ } geh''4. ~ | %{ noteIndex: 410 beat: 896.0 %} \numericTimeSignature \time 2/4 geh''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 411 beat: 898.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 412 beat: 899.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} a'4 | %{ noteIndex: 413 beat: 901.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 414 beat: 902.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} geh''8. ~ } geh''4. ~ | %{ noteIndex: 415 beat: 904.5 %} \numericTimeSignature \time 3/4 geh''8 %{notechange%} r8 r2 \bar "||" | %{ noteIndex: 416 beat: 907.5 %} \mark \default \numericTimeSignature \time 3/8 \tuplet 5/4 { r16 %{notechange%} b'4 \mf ~ } b'8 ~ | %{ noteIndex: 417 beat: 909.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''4 ~ | %{ noteIndex: 418 beat: 911.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { e''4 %{notechange%} r16 } \hideNotes r4 | \unHideNotes %{ noteIndex: 419 beat: 913.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 420 beat: 914.5 %} \numericTimeSignature \time 5/8 e''8 %{notechange%} r8 r4. | %{ noteIndex: 421 beat: 917.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 422 beat: 919.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} e''4 ~ } | %{ noteIndex: 423 beat: 920.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} r8. } r4. | %{ noteIndex: 424 beat: 922.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 425 beat: 923.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 426 beat: 925.5 %} %{\numericTimeSignature \time 2/4 %} r8 %{notechange%} cis''4. \p | %{ noteIndex: 427 beat: 927.5 %} \numericTimeSignature \time 3/8 %{notechange%} geh''4. ~ | %{ noteIndex: 428 beat: 929.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { geh''4 %{notechange%} dih''16 \mf ~ } dih''8 ~ | %{ noteIndex: 429 beat: 930.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { dih''16 %{notechange%} r4 } | %{ noteIndex: 430 beat: 931.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 431 beat: 932.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} cis''4 \p ~ | %{ noteIndex: 432 beat: 933.5 %} \numericTimeSignature \time 5/8 cis''4 %{notechange%} e''4. \mf ~ | %{ noteIndex: 433 beat: 936.0 %} \numericTimeSignature \time 7/8 e''8 %{notechange%} r8 r2 r8 | %{ noteIndex: 434 beat: 939.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 435 beat: 942.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 436 beat: 943.5 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { e''8 %{notechange%} b'8. ~ } b'4. ~ | %{ noteIndex: 437 beat: 946.0 %} \numericTimeSignature \time 10/4 b'8. %{notechange%} gis''16 ~ gis''1 ~ gis''1 ~ gis''4 ~ | %{ noteIndex: 438 beat: 956.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { gis''8 %{notechange%} e''4 ~ } e''8 ~ | %{ noteIndex: 439 beat: 957.5 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { e''16 %{notechange%} b'4 ~ } b'8 ~ | %{ noteIndex: 440 beat: 959.0 %} \numericTimeSignature \time 5/8 b'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 441 beat: 961.5 %} \numericTimeSignature \time 7/8 r8 %{notechange%} cis''8 \p ~ cis''2 ~ cis''8 ~ | %{ noteIndex: 442 beat: 965.0 %} \numericTimeSignature \time 2/4 cis''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 443 beat: 967.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 444 beat: 969.0 %} %{\numericTimeSignature \time 2/4 %} r4 \hideNotes r4 | \unHideNotes %{ noteIndex: 445 beat: 971.0 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 446 beat: 973.0 %} \numericTimeSignature \time 4/4 \hideNotes r1 | \unHideNotes %{ noteIndex: 447 beat: 977.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} r4. \bar "||" | %{ noteIndex: 448 beat: 979.5 %} \mark \default \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 449 beat: 981.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 450 beat: 984.0 %} \numericTimeSignature \time 3/8 a'4 ~ a'16 %{notechange%} r16 | %{ noteIndex: 451 beat: 985.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r8. %{notechange%} e''8 \mf ~ } e''4 ~ | %{ noteIndex: 452 beat: 987.5 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { e''8 %{notechange%} a'4 \p ~ } a'4. ~ | %{ noteIndex: 453 beat: 990.0 %} %{\numericTimeSignature \time 5/8 %} a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 454 beat: 992.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. ~ | %{ noteIndex: 455 beat: 994.0 %} \numericTimeSignature \time 4/4 a'2 ~ a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 456 beat: 998.0 %} \numericTimeSignature \time 8/4 r2. r8. %{notechange%} geh''16 ~ geh''1 | %{ noteIndex: 457 beat: 1006.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 458 beat: 1007.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. \mf ~ | %{ noteIndex: 459 beat: 1008.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} geh''8 \p ~ | %{ noteIndex: 460 beat: 1009.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { geh''8 %{notechange%} r4 } r8 | %{ noteIndex: 461 beat: 1011.0 %} %{\numericTimeSignature \time 3/8 %} r8 %{notechange%} geh''4 | %{ noteIndex: 462 beat: 1012.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 463 beat: 1014.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 464 beat: 1016.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 465 beat: 1018.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 466 beat: 1021.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { r4 %{notechange%} b'16 \mf ~ } b'4 ~ | %{ noteIndex: 467 beat: 1023.0 %} %{\numericTimeSignature \time 2/4 %} b'8. %{notechange%} fih''16 ~ fih''4 ~ | %{ noteIndex: 468 beat: 1025.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { fih''4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 469 beat: 1027.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 470 beat: 1029.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 471 beat: 1031.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { r4 %{notechange%} b'16 ~ } b'4. ~ | %{ noteIndex: 472 beat: 1033.5 %} \numericTimeSignature \time 2/4 b'4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 473 beat: 1035.5 %} \numericTimeSignature \time 5/8 %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 474 beat: 1038.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { a'4 %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 475 beat: 1040.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} a'4 ~ } a'4 ~ | %{ noteIndex: 476 beat: 1042.0 %} \numericTimeSignature \time 5/8 a'8 %{notechange%} r8 r4. | %{ noteIndex: 477 beat: 1044.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 478 beat: 1046.0 %} %{\numericTimeSignature \time 3/8 %} %{notechange%} a'4. ~ | %{ noteIndex: 479 beat: 1047.5 %} \numericTimeSignature \time 5/8 a'4 ~ a'16 %{notechange%} r8. r8 \bar "||" | %{ noteIndex: 480 beat: 1050.0 %} \mark \default \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 481 beat: 1051.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 482 beat: 1052.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 483 beat: 1054.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. \mf ~ | %{ noteIndex: 484 beat: 1055.5 %} \numericTimeSignature \time 5/8 gis''4 ~ \tuplet 5/4 { gis''8 %{notechange%} r8. } r8 | %{ noteIndex: 485 beat: 1058.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 486 beat: 1059.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 487 beat: 1061.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 488 beat: 1063.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 489 beat: 1064.5 %} \numericTimeSignature \time 3/4 r4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } a'4 | %{ noteIndex: 490 beat: 1067.5 %} \numericTimeSignature \time 2/4 %{notechange%} e''2\mf ~ | %{ noteIndex: 491 beat: 1069.5 %} \numericTimeSignature \time 4/4 \tuplet 5/4 { e''8 %{notechange%} r8. } r2. | %{ noteIndex: 492 beat: 1073.5 %} \numericTimeSignature \time 2/4 %{notechange%} dih''2 ~ | %{ noteIndex: 493 beat: 1075.5 %} \numericTimeSignature \time 7/8 dih''4 ~ dih''16 %{notechange%} r8. r4. | %{ noteIndex: 494 beat: 1079.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 \p ~ } | %{ noteIndex: 495 beat: 1080.0 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { a'16 %{notechange%} e''4 \mf ~ } e''2 ~ | %{ noteIndex: 496 beat: 1083.0 %} \numericTimeSignature \time 5/8 e''4 %{notechange%} gis''4. ~ | %{ noteIndex: 497 beat: 1085.5 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} geh''4 \p ~ | %{ noteIndex: 498 beat: 1087.5 %} \numericTimeSignature \time 5/8 geh''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 499 beat: 1090.0 %} %{\numericTimeSignature \time 5/8 %} r4 %{notechange%} geh''4. ~ | %{ noteIndex: 500 beat: 1092.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 501 beat: 1093.5 %} \numericTimeSignature \time 11/8 r2 %{notechange%} r2. r8 | %{ noteIndex: 502 beat: 1099.0 %} \numericTimeSignature \time 5/8 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } geh''4. ~ | %{ noteIndex: 503 beat: 1101.5 %} \numericTimeSignature \time 2/4 geh''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 504 beat: 1103.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } a'8 ~ | %{ noteIndex: 505 beat: 1105.0 %} \numericTimeSignature \time 3/4 a'8. %{notechange%} fih''16 \mf ~ fih''2 ~ | %{ noteIndex: 506 beat: 1108.0 %} \numericTimeSignature \time 7/8 fih''4 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 507 beat: 1111.5 %} \numericTimeSignature \time 5/8 r4 r16 %{notechange%} b'8. ~ b'8 | %{ noteIndex: 508 beat: 1114.0 %} \numericTimeSignature \time 3/8 %{notechange%} e''4. | %{ noteIndex: 509 beat: 1115.5 %} \numericTimeSignature \time 2/4 %{notechange%} cis''2\p ~ | %{ noteIndex: 510 beat: 1117.5 %} \numericTimeSignature \time 1/4 cis''16 %{notechange%} fih''8. \mf ~ | %{ noteIndex: 511 beat: 1118.5 %} \numericTimeSignature \time 2/4 fih''16 %{notechange%} r8. r4 \bar "||" | %{ noteIndex: 512 beat: 1120.5 %} \mark \default \numericTimeSignature \time 7/8 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 513 beat: 1124.0 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 514 beat: 1126.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r4 %{notechange%} geh''8 \p ~ } geh''8 | %{ noteIndex: 515 beat: 1128.0 %} \numericTimeSignature \time 1/4 %{notechange%} cis''4 ~ | %{ noteIndex: 516 beat: 1129.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { cis''16 %{notechange%} dih''4 \mf ~ } dih''4. ~ | %{ noteIndex: 517 beat: 1131.5 %} \numericTimeSignature \time 1/4 dih''16 %{notechange%} r8. | %{ noteIndex: 518 beat: 1132.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 519 beat: 1134.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 520 beat: 1136.5 %} %{\numericTimeSignature \time 2/4 %} r4 %{notechange%} fih''4 ~ | %{ noteIndex: 521 beat: 1138.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { fih''8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 522 beat: 1140.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. ~ gis''8 ~ | %{ noteIndex: 523 beat: 1142.0 %} \numericTimeSignature \time 7/8 gis''4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 524 beat: 1145.5 %} \numericTimeSignature \time 5/8 fih''4 \hideNotes r4. | \unHideNotes %{ noteIndex: 525 beat: 1148.0 %} \numericTimeSignature \time 2/4 r8 %{notechange%} gis''4. | %{ noteIndex: 526 beat: 1150.0 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ | %{ noteIndex: 527 beat: 1151.5 %} \numericTimeSignature \time 1/4 \tuplet 5/4 { a'16 %{notechange%} r4 } | %{ noteIndex: 528 beat: 1152.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 529 beat: 1154.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 530 beat: 1156.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 531 beat: 1157.0 %} \numericTimeSignature \time 2/4 r8. %{notechange%} r16 \hideNotes r4 | \unHideNotes %{ noteIndex: 532 beat: 1159.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r8 %{notechange%} geh''4 ~ } geh''4 ~ | %{ noteIndex: 533 beat: 1161.0 %} %{\numericTimeSignature \time 2/4 %} \tuplet 5/4 { geh''8 %{notechange%} r8. } \hideNotes r4 | \unHideNotes %{ noteIndex: 534 beat: 1163.0 %} \numericTimeSignature \time 9/8 r4 \hideNotes r2 r4. | \unHideNotes %{ noteIndex: 535 beat: 1167.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} geh''8 ~ } | %{ noteIndex: 536 beat: 1168.5 %} \numericTimeSignature \time 4/4 \tuplet 3/2 { geh''8 %{notechange%} a'4 ~ } a'2. ~ | %{ noteIndex: 537 beat: 1172.5 %} \numericTimeSignature \time 5/8 a'4 \hideNotes r4. | \unHideNotes %{ noteIndex: 538 beat: 1175.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2 ~ a'8 ~ | %{ noteIndex: 539 beat: 1177.5 %} \numericTimeSignature \time 2/4 a'16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 540 beat: 1179.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 541 beat: 1182.0 %} \numericTimeSignature \time 1/4 %{notechange%} a'4 ~ | %{ noteIndex: 542 beat: 1183.0 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} r8 } \hideNotes r4 | \unHideNotes %{ noteIndex: 543 beat: 1185.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} fih''4. \mf \bar "||" | %{ noteIndex: 544 beat: 1187.5 %} \mark \default \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 545 beat: 1189.5 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } | %{ noteIndex: 546 beat: 1190.5 %} \numericTimeSignature \time 2/4 \tuplet 5/4 { a'8. %{notechange%} b'8 \mf ~ } b'4 | %{ noteIndex: 547 beat: 1192.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 548 beat: 1194.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 3/2 { r8 %{notechange%} a'4 \p ~ } a'8 | %{ noteIndex: 549 beat: 1195.5 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 550 beat: 1197.0 %} \numericTimeSignature \time 3/4 r4 %{notechange%} a'2 ~ | %{ noteIndex: 551 beat: 1200.0 %} %{\numericTimeSignature \time 3/4 %} a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'4 ~ | %{ noteIndex: 552 beat: 1203.0 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { b'8 %{notechange%} r4 } r8 | %{ noteIndex: 553 beat: 1204.5 %} \numericTimeSignature \time 5/8 r16 %{notechange%} dih''8. ~ dih''4. ~ | %{ noteIndex: 554 beat: 1207.0 %} \numericTimeSignature \time 3/8 dih''8 %{notechange%} geh''4\p | %{ noteIndex: 555 beat: 1208.5 %} \numericTimeSignature \time 1/4 %{notechange%} fih''4 \mf ~ | %{ noteIndex: 556 beat: 1209.5 %} \numericTimeSignature \time 5/8 fih''8. %{notechange%} gis''16 ~ gis''4. ~ | %{ noteIndex: 557 beat: 1212.0 %} \numericTimeSignature \time 2/4 gis''4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 558 beat: 1214.0 %} %{\numericTimeSignature \time 2/4 %} r16 %{notechange%} dih''8. ~ dih''4 ~ | %{ noteIndex: 559 beat: 1216.0 %} \numericTimeSignature \time 3/8 dih''16 %{notechange%} geh''8. \p ~ geh''8 ~ | %{ noteIndex: 560 beat: 1217.5 %} \numericTimeSignature \time 1/4 geh''16 %{notechange%} r8. | %{ noteIndex: 561 beat: 1218.5 %} %{\numericTimeSignature \time 1/4 %} \hideNotes r4 | \unHideNotes %{ noteIndex: 562 beat: 1219.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 563 beat: 1221.0 %} \numericTimeSignature \time 9/8 r2 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 564 beat: 1225.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 565 beat: 1227.0 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 566 beat: 1229.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 567 beat: 1232.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 568 beat: 1234.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 569 beat: 1236.0 %} \numericTimeSignature \time 1/4 \tuplet 3/2 { r4 %{notechange%} a'8 ~ } | %{ noteIndex: 570 beat: 1237.0 %} \numericTimeSignature \time 7/8 a'4 ~ \tuplet 5/4 { a'16 %{notechange%} b'4 \mf ~ } b'4. ~ | %{ noteIndex: 571 beat: 1240.5 %} \numericTimeSignature \time 2/4 b'8 %{notechange%} dih''4. ~ | %{ noteIndex: 572 beat: 1242.5 %} \numericTimeSignature \time 1/4 dih''8 %{notechange%} cis''8 \p | %{ noteIndex: 573 beat: 1243.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 574 beat: 1244.5 %} \numericTimeSignature \time 3/8 r16 %{notechange%} gis''8. \mf ~ gis''8 ~ | %{ noteIndex: 575 beat: 1246.0 %} \numericTimeSignature \time 5/8 gis''4 %{notechange%} r4. \bar "||" | %{ noteIndex: 576 beat: 1248.5 %} \mark \default %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 577 beat: 1251.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 578 beat: 1252.5 %} \numericTimeSignature \time 5/8 r4 \hideNotes r4. | \unHideNotes %{ noteIndex: 579 beat: 1255.0 %} %{\numericTimeSignature \time 5/8 %} \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 580 beat: 1257.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 581 beat: 1259.0 %} %{\numericTimeSignature \time 3/8 %} \hideNotes r4. | \unHideNotes %{ noteIndex: 582 beat: 1260.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 583 beat: 1262.5 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 584 beat: 1263.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 585 beat: 1265.5 %} %{\numericTimeSignature \time 2/4 %} \hideNotes r2 | \unHideNotes %{ noteIndex: 586 beat: 1267.5 %} %{\numericTimeSignature \time 2/4 %} \tuplet 3/2 { r4 %{notechange%} fih''8 ~ } fih''4 | %{ noteIndex: 587 beat: 1269.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 588 beat: 1272.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} fih''2 ~ fih''8 ~ | %{ noteIndex: 589 beat: 1275.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { fih''16 %{notechange%} a'4 \p ~ } a'2 | %{ noteIndex: 590 beat: 1278.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 591 beat: 1280.5 %} \numericTimeSignature \time 3/8 \tuplet 3/2 { r8 %{notechange%} fih''4 \mf ~ } fih''8 ~ | %{ noteIndex: 592 beat: 1282.0 %} %{\numericTimeSignature \time 3/8 %} \tuplet 5/4 { fih''8 %{notechange%} r8. } r8 | %{ noteIndex: 593 beat: 1283.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 594 beat: 1285.5 %} \numericTimeSignature \time 1/4 r16 %{notechange%} geh''8. \p ~ | %{ noteIndex: 595 beat: 1286.5 %} %{\numericTimeSignature \time 1/4 %} \tuplet 5/4 { geh''16 %{notechange%} e''4 \mf ~ } | %{ noteIndex: 596 beat: 1287.5 %} \numericTimeSignature \time 3/4 \tuplet 5/4 { e''8. %{notechange%} r8 } r2 | %{ noteIndex: 597 beat: 1290.5 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 598 beat: 1292.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 599 beat: 1295.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 600 beat: 1296.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 601 beat: 1297.5 %} \numericTimeSignature \time 5/8 r8. %{notechange%} b'16 ~ b'4. | %{ noteIndex: 602 beat: 1300.0 %} %{\numericTimeSignature \time 5/8 %} %{notechange%} a'2\p ~ a'8 ~ | %{ noteIndex: 603 beat: 1302.5 %} \numericTimeSignature \time 7/8 \tuplet 3/2 { a'8 %{notechange%} r4 } r2 r8 | %{ noteIndex: 604 beat: 1306.0 %} \numericTimeSignature \time 2/4 r16 %{notechange%} b'8. \mf ~ b'4 ~ | %{ noteIndex: 605 beat: 1308.0 %} \numericTimeSignature \time 3/4 \tuplet 3/2 { b'8 %{notechange%} r4 } r2 | %{ noteIndex: 606 beat: 1311.0 %} \numericTimeSignature \time 7/8 r4 %{notechange%} fih''2 ~ fih''8 | %{ noteIndex: 607 beat: 1314.5 %} \numericTimeSignature \time 3/8 %{notechange%} a'4. \p ~ \bar "||" | %{ noteIndex: 608 beat: 1316.0 %} \mark \default \numericTimeSignature \time 5/8 a'16 %{notechange%} b'8. \mf ~ b'4. ~ | %{ noteIndex: 609 beat: 1318.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} e''8. | %{ noteIndex: 610 beat: 1319.5 %} %{\numericTimeSignature \time 1/4 %} %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 611 beat: 1320.5 %} \numericTimeSignature \time 4/4 r16 %{notechange%} b'8. ~ b'2. ~ | %{ noteIndex: 612 beat: 1324.5 %} \numericTimeSignature \time 5/8 b'8 %{notechange%} r8 r4. | %{ noteIndex: 613 beat: 1327.0 %} \numericTimeSignature \time 15/8 r4 r16 %{notechange%} b'8. ~ b'1 ~ b'4. ~ | %{ noteIndex: 614 beat: 1334.5 %} \numericTimeSignature \time 1/4 b'16 %{notechange%} e''8. ~ | %{ noteIndex: 615 beat: 1335.5 %} \numericTimeSignature \time 2/4 e''8 \hideNotes r4. | \unHideNotes %{ noteIndex: 616 beat: 1337.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 617 beat: 1339.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 618 beat: 1341.0 %} \numericTimeSignature \time 3/4 r4 \tuplet 5/4 { r8 %{notechange%} a'8. \p ~ } a'4 ~ | %{ noteIndex: 619 beat: 1344.0 %} \numericTimeSignature \time 5/8 \tuplet 5/4 { a'16 %{notechange%} r4 } r4. | %{ noteIndex: 620 beat: 1346.5 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 621 beat: 1347.5 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 | %{ noteIndex: 622 beat: 1349.5 %} \numericTimeSignature \time 5/8 \hideNotes r4. r4 | \unHideNotes %{ noteIndex: 623 beat: 1352.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 624 beat: 1354.0 %} \numericTimeSignature \time 4/4 r2 %{notechange%} gis''2 | %{ noteIndex: 625 beat: 1358.0 %} \numericTimeSignature \time 1/4 %{notechange%} \hideNotes r4 | \unHideNotes %{ noteIndex: 626 beat: 1359.0 %} \numericTimeSignature \time 2/4 r4 %{notechange%} gis''4 | %{ noteIndex: 627 beat: 1361.0 %} \numericTimeSignature \time 3/8 %{notechange%} dih''4. ~ | %{ noteIndex: 628 beat: 1362.5 %} \numericTimeSignature \time 5/8 dih''4 ~ \tuplet 5/4 { dih''16 %{notechange%} r4 } r8 | %{ noteIndex: 629 beat: 1365.0 %} \numericTimeSignature \time 1/4 r16 %{notechange%} gis''8. ~ | %{ noteIndex: 630 beat: 1366.0 %} \numericTimeSignature \time 2/4 gis''16 %{notechange%} r8. \hideNotes r4 | \unHideNotes %{ noteIndex: 631 beat: 1368.0 %} \numericTimeSignature \time 5/8 r4 %{notechange%} gis''4. ~ | %{ noteIndex: 632 beat: 1370.5 %} %{\numericTimeSignature \time 5/8 %} \tuplet 3/2 { gis''8 %{notechange%} cis''4 \p ~ } cis''4. ~ | %{ noteIndex: 633 beat: 1373.0 %} \numericTimeSignature \time 3/4 cis''8 %{notechange%} r8 r2 | %{ noteIndex: 634 beat: 1376.0 %} \numericTimeSignature \time 1/4 \hideNotes r4 | \unHideNotes %{ noteIndex: 635 beat: 1377.0 %} \numericTimeSignature \time 2/4 \hideNotes r2 | \unHideNotes %{ noteIndex: 636 beat: 1379.0 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 637 beat: 1380.5 %} \numericTimeSignature \time 3/4 r4 \hideNotes r2 | \unHideNotes %{ noteIndex: 638 beat: 1383.5 %} \numericTimeSignature \time 3/8 \hideNotes r4. | \unHideNotes %{ noteIndex: 639 beat: 1385.0 %} \numericTimeSignature \time 2/4 \tuplet 3/2 { r4 %{notechange%} fih''8 \mf ~ } fih''4 \bar "|." +} \ No newline at end of file diff --git a/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.ly b/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.ly new file mode 100644 index 0000000..3c85c0d --- /dev/null +++ b/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.ly @@ -0,0 +1,208 @@ +\version "2.24.1" + +genStaff = +#(define-music-function (parser location part) + (string?) + (let * ((file (string-append "includes/berger_part_" part ".ly"))) + #{ + \new Staff \with { + instrumentName = #part + shortInstrumentName = #part + } + << + \include #file + >> + #})) + +\paper { + #(set-paper-size "a4" 'portrait) + top-margin = 1 \cm + bottom-margin = 1 \cm + left-margin = 1.75 \cm + + top-system-spacing = + #'((basic-distance . 25 ) + (minimum-distance . 25 ) + (padding . 0 ) + (stretchability . 0)) + + last-bottom-spacing = + #'((basic-distance . 15 ) + (minimum-distance . 15 ) + (padding . 0 ) + (stretchability . 0)) + + systems-per-page = 3 + + print-page-number = ##t + oddHeaderMarkup = \markup { \unless \on-first-page {"(berger-knuth)"}} + evenHeaderMarkup = \markup { \unless \on-first-page {"(berger-knuth)"}} + oddFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} + evenFooterMarkup = \markup { \fill-line { + \concat { + "-" + \fontsize #1.5 + \fromproperty #'page:page-number-string + "-"}}} +} + +\header { + title = \markup { \italic {berger-knuth}} + subtitle = \markup { \normal-text { from \italic{a history of the domino the problem}}} + composer = \markup \right-column {"michael winter" "(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)"} + tagline = "" +} + +#(set-global-staff-size 11) + +\layout { + indent = 0.0\cm + line-width = 17\cm + %ragged-last = ##t + + \context { + \Score + \override BarNumber.extra-offset = #'(0 . 4) + \override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print) + \override RehearsalMark.direction = #DOWN + rehearsalMarkFormatter = #format-mark-box-numbers + } + \context { + \Staff + \override VerticalAxisGroup.staff-staff-spacing = + #'((basic-distance . 16 ) + (minimum-distance . 16 ) + (padding . 0 ) + (stretchability . 0)) + + \override TimeSignature.font-size = #2 + \override TimeSignature.break-align-symbol = #'clef + \override TimeSignature.X-offset = + #ly:self-alignment-interface::x-aligned-on-self + \override TimeSignature.self-alignment-X = #LEFT + %\override TimeSignature.after-line-breaking = + % #shift-right-at-line-begin + \override TimeSignature.Y-offset = #9 + \override TimeSignature.extra-offset = #'(2 . 0) + + } + + \context { + \StaffGroup + \name "SemiStaffGroup" + \consists "Span_bar_engraver" + \override SpanBar.stencil = + #(lambda (grob) + (if (string=? (ly:grob-property grob 'glyph-name) "|") + (set! (ly:grob-property grob 'glyph-name) "")) + (ly:span-bar::print grob)) + } + \context { + \Score + \accepts SemiStaffGroup + } +} + +\score{ +%showLastLength = R1*128 +\new Score +%\with{ proportionalNotationDuration = #(ly:make-moment 1 16) } + << + \new SemiStaffGroup { + << + \new Staff \with { + instrumentName = #"1a" + shortInstrumentName = #"1a" + midiInstrument = #"flute" + } + << + \include "includes/berger_part_3.ly" + >> + + \new Staff \with { + instrumentName = #"2a" + shortInstrumentName = #"2a" + midiInstrument = #"clarinet" + \remove "Time_signature_engraver" + } + << + \include "includes/berger_part_2.ly" + >> + + \new Staff \with { + instrumentName = #"3a" + shortInstrumentName = #"3a" + midiInstrument = #"viola" + \remove "Time_signature_engraver" + } + << + \include "includes/berger_part_1.ly" + >> + >> + } + \new SemiStaffGroup { + << +%{ + \new Staff \with { + instrumentName = #"1b" + shortInstrumentName = #"1b" + midiInstrument = #"cello" + \remove "Time_signature_engraver" + } + << + \include "includes/berger_part_7.ly" + >> + + \new Staff \with { + instrumentName = #"2b" + shortInstrumentName = #"2b" + midiInstrument = #"saxophone" + \remove "Time_signature_engraver" + } + << + \include "includes/berger_part_6.ly" + >> +%} + + \new Staff \with { + instrumentName = #"1b + 2b" + shortInstrumentName = #"1b + 2b" + midiInstrument = #"cello" + \remove "Time_signature_engraver" + } + << + \override DynamicLineSpanner.direction = #UP + \include "includes/berger_part_7.ly" + \\ + \include "includes/berger_part_6.ly" + >> + + \new Staff \with { + instrumentName = #"3b" + shortInstrumentName = #"3b" + midiInstrument = #"bassoon" + \remove "Time_signature_engraver" + } + << + \include "includes/berger_part_5.ly" + >> + + + + %\genStaff #"0" + %\genStaff #"1" + %\genStaff #"2" + %\genStaff #"3" + %\genStaff #"4" + %\genStaff #"5" + >> + } + >> + %\midi{} + \layout{} +} diff --git a/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf b/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf new file mode 100644 index 0000000..99e92ce Binary files /dev/null and b/score/lilypond_v2.24_update/berger_knuth/berger_knuth_merge_for_kali.pdf differ diff --git a/score/lilypond_v2.24_update/jaendel_rao/readme.txt b/score/lilypond_v2.24_update/jaendel_rao/readme.txt new file mode 100644 index 0000000..c135ac8 --- /dev/null +++ b/score/lilypond_v2.24_update/jaendel_rao/readme.txt @@ -0,0 +1 @@ +jaendel-rao is the only score that remains pegged to lilypond 2.19.81, please use the that version. \ No newline at end of file diff --git a/supercollider/ammann_distributed_transcriber.scd b/supercollider/ammann_distributed_transcriber.scd new file mode 100644 index 0000000..c36a3c2 --- /dev/null +++ b/supercollider/ammann_distributed_transcriber.scd @@ -0,0 +1,300 @@ +( +~ammannTranscribe = {arg seqs; + var dir, basePath, subTiling, tileMap, tiles, genTileMap, odds, harms, amps; + + //thisThread.randSeed = 100; + + //dir = thisProcess.nowExecutingPath.dirname; + //basePath = dir +/+ ".." +/+ "score" +/+ "lilypond_v2.24_update" +/+ "ammann_distributed"; + basePath = "/home/mwinter/Portfolio/a_history_of_the_domino_problem/a_history_of_the_domino_problem_source/score/lilypond_v2.24_update/ammann_distributed"; + + seqs.do({arg part, p; + + var lilyFile, lilyString, lastNote, lastTimeSig, lastClef, lastDynamic, beatCountTotal; + + //create file + lilyFile = File(basePath +/+ "includes" +/+ "ammann_" ++ "part_" ++ p.asString ++ ".ly".standardizePath,"w"); + + //start lilypond directives + lilyString = ""; + lilyString = lilyString ++ "{\n\\set tupletFullLength = ##t\n"; //"\\set Score.markFormatter = #format-mark-box-numbers\n"; + //lilyString = lilyString ++ "{\n"; + //lilyString = lilyString + "\\tempo 4 = 60 \n"; + lilyString = lilyString ++ "\n\\tempo \\markup { + \\concat { + \\smaller \\general-align #Y #DOWN + \\note #\"4\" #1 \\normal-text \" ≈ 60\" +}}\n"; + + lastNote = "r"; + lastTimeSig = ""; + lastClef = "\\clef treble "; + lastDynamic = ""; + beatCountTotal = 0; + part.size.do({arg nIndex; + var dirs, del, dur, sustain, harm, amp, quant, note, beatCount, durUnit, measureDur, timeSig, clef, delayGroup, tuplet, dynamic, octFlag = false; + dirs = part[nIndex]; + del = dirs[0][0]; + dur = dirs[0][1]; + sustain = dirs[1, 1]; //not used + harm = dirs[2][1]; + amp = dirs[3][1]; + quant = dirs[4]; + + /* + if(amp != 0, { + note = ["c", "cis", "d", "dis", "e", "f", "fis", "g", "gis", "a", "ais", "b"][((55 * harm).cpsmidi % 12).trunc.asInteger]; + note = note ++ [",,", ",", "", "'", "''"][((55 * if(harm >= 8, {harm / 2}, {harm})).cpsmidi / 12).trunc.asInteger - 2]; + }, {note = "r"}); + */ + + + + if(amp != 0, { + note = ["c", "cih", "cis", "deh", "d", "dih", "dis", "eeh", "e", "eih", "f", "fih", "fis", "geh", "g", "gih", "gis", "aeh", "a", "aih", "ais", "beh", "b", "bih"][((55 * harm).cpsmidi % 12).round(0.5) * 2]; + note = note ++ [",,", ",", "", "'", "''", "'''", "''''"][((55 * if(harm >= 8, {harm /* / 2 */}, {harm})).cpsmidi / 12).trunc.asInteger - 2]; + }, {note = "r"}); + + + + /* + if((amp == 0) || (harm < 8) , {note = "r"}, { + note = ["c", "cih", "cis", "deh", "d", "dih", "dis", "eeh", "e", "eih", "f", "fih", "fis", "geh", "g", "gih", "gis", "aeh", "a", "aih", "ais", "beh", "b", "bih"][((55 * harm).cpsmidi % 12).round(0.5) * 2]; + //if(p == 4, {(harm + " sdfsdfsd").postln}); + note = note ++ [",,", ",", "", "'", "''", "'''", "''''"][((55 * if(harm >= 8, {harm /* / 2 */}, {harm})).cpsmidi / 12).trunc.asInteger - 2]; + }); + */ + + + //tmp note vals + //note = ["c'", "d'", "e'", "f'", "g'", "a'", "b'", "c''", "d''", "e''", "f''", "g''", "a''", "b''", "c'''", "d'''"][harm]; + + beatCount = 0; + durUnit = 0.25; + measureDur = del + dur; + + //put in a tie if there is a delay + if((del > 0) && (nIndex > 0) && (lastNote != "r"), {lilyString = lilyString ++ "~ "}); + if(lilyString.keep(-4) == "} ~ ", {lilyString = lilyString.drop(-4) ++ "~ } "}); + + //double bar + if(((nIndex % 32) == 0) && (nIndex != 0), {lilyString = lilyString ++ "\\bar \"||\" "}); + //bar check + if(nIndex != 0, {lilyString = lilyString ++ " | " ++ "%{ noteIndex: " ++ nIndex.asString ++ " beat: " ++ beatCountTotal ++ " %} "}); + //rehearsal mark + if((nIndex % 32) == 0, {lilyString = lilyString ++ "\\mark \\default "}); + + //set time signature for each measure + timeSig = "\\numericTimeSignature \\time " ++ if((measureDur / 0.5 % 2) == 0, {measureDur.trunc.asInteger.asString ++ "/4 "}, + {(measureDur / 0.5).trunc.asInteger.asString ++ "/8 "}); + if(lastTimeSig != timeSig, {lilyString = lilyString ++ timeSig}, {lilyString = lilyString ++ "%{" ++ timeSig ++ "%} "}); + lastTimeSig = timeSig; + + + tuplet = case + {quant == 0.25} {[1/4, " "]} + {quant == (1/3)} {[1/6, "3\/2 "]} + {quant == (1/5)} {[1/5, "5\/4 "]}; + + //put any quarter notes held from the last measure + if(del.trunc.asInteger >= 1, { + beatCount = beatCount + del.trunc.asInteger; + lilyString = lilyString ++ del.trunc.asInteger.collect({arg index; lastNote ++ "4 " ++ + if(((del.frac / quant) >= 1) && (lastNote != "r"), {"~ "}, {""})}).join + }); + + //transition from last note to new note + if((del.frac / quant) >= 1, {var lastNoteFrac, noteFrac; + + beatCount = beatCount + 1; + //only start a tuplet if necessary + if(quant != 0.25, {lilyString = lilyString ++ "\\tuplet " ++ tuplet[1] + " { "}); + //end of last note + lastNoteFrac = switch((del.frac / tuplet[0]).round.asInteger, 1, {"16 "}, 2, {"8 "}, 3, {"8. "}, 4, {"4 "}); + lilyString = lilyString ++ lastNote ++ lastNoteFrac; + + lilyString = lilyString ++ "%{notechange%} "; + //put clef if necessary + if(amp != 0, { + clef = if((55 * harm).cpsmidi >= 57, {"\\clef treble "}, {"\\clef bass "}); + if(lastClef != clef, {lilyString = lilyString + clef}); + lastClef = clef; + }); + + //beginning of new note + noteFrac = switch(((if(beatCount > measureDur, {measureDur.frac}, {1}) - del.frac) / tuplet[0]).round.asInteger, 1, {"16 "}, 2, {"8 "}, 3, {"8. "}, 4, {"4 "}); + + dynamic = if(amp == 0.06, {"\\mf "}, {"\\p "}); + + lilyString = lilyString ++ note ++ noteFrac ++ + if((note != "r"), {if(harm >= 8, {"upp "}, {"down "})}, {""}) ++ + if((lastDynamic != dynamic) && (note != "r"), {lastDynamic = dynamic; dynamic}, {""}) ++ + if((((measureDur - beatCount) / 0.5).trunc.asInteger > 0) && (note != "r"), {"~ "}, {""}); + + if(quant != 0.25, {lilyString = lilyString ++ " } "}); + octFlag = false; + }, { + + lilyString = lilyString ++ "%{notechange%} "; + + //put clef if necessary + if(amp != 0, { + clef = if((55 * harm).cpsmidi >= 57, {"\\clef treble "}, {"\\clef bass "}); + if(lastClef != clef, {lilyString = lilyString + clef}); + lastClef = clef; + }); + octFlag = true; + + }); + + dynamic = if(amp == 0.06, {"\\mf "}, {"\\p "}); + lilyString = lilyString ++ (measureDur - beatCount).trunc.asInteger.collect({arg b; beatCount = beatCount + 1; note ++ "4 " ++ + if(octFlag && (b == 0) && (note != "r"), {if(harm >= 8, {"upp "}, {"down "})}, {""}) ++ + if((lastDynamic != dynamic) && (note != "r"), {lastDynamic = dynamic; dynamic}, {""}) ++ + if(((measureDur - beatCount) > 0) && (note != "r"), {"~ "}, {""}); + }).join; + if((measureDur - beatCount) > 0, { + lilyString = lilyString ++ ((measureDur - beatCount).frac / 0.5).trunc.asInteger.collect({note ++ "8 "}).join}); + + + beatCountTotal = beatCountTotal + measureDur; + lastNote = note + + }); + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4").clump(16).do({arg match; + if( + [ + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1], + match[10][1] ++ match[11][1], + match[14][1] ++ match[15][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "1" ++ match[3][1] ++ match[4][1]) + }) + }); + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4").clump(12).do({arg match; + if( + [ + + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1], + match[10][1] ++ match[11][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "2." ++ match[3][1] ++ match[4][1]) + }) + }); + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4").clump(8).do({arg match; + if( + [ + + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "2" ++ match[3][1] ++ match[4][1]) + }) + }); + + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)8 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)8").clump(8).do({arg match; + if( + [ + + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "4" ++ match[3][1] ++ match[4][1]) + }) + }); + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)8 ").clump(8).do({arg match; + if( + [ + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "4. " ++ match[3][1] ++ match[4][1]) + }) + }); + + lilyString.findRegexp( + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)8 (upp |down |)(\\\\mf |\\\\p |)(~ )*" ++ + "([a-g]|[a-g]+is|[a-g]+ih|[a-g]+eh|r)(,,|,|'|''|)4 ").clump(8).do({arg match; + if( + [ + + match[1][1] ++ match[2][1], + match[6][1] ++ match[7][1] + ].asSet.size == 1, {lilyString = lilyString.replace(match[0][1], match[1][1] ++ match[2][1] ++ "4. " ++ match[3][1] ++ match[4][1]) + }) + }); + + + //rest consolidation for half parts + lilyString.findRegexp("\\\\tuplet\\h*\\d/\\d\\h*{\\h*r\\d.?\\h*%{notechange%}\\h*r\\d.?\\h*}").do({arg match; + lilyString = lilyString.replace(match[1], "r4") + }); + + lilyString.findRegexp("\\\\time\\h*\\d/\\d\\h*%?}?\\h*((%{notechange%})?\\h*r\\d.?\\h*)*\\|").do({arg match; + if(match[1].contains("time"), { + var repString = "", drop = 10, sig = ""; + case + {match[1].contains("time 1/4")} {repString = "r4 | "} + {match[1].contains("time 2/4")} {repString = "r2 | "} + {match[1].contains("time 3/4")} {repString = "r2. | "} + {match[1].contains("time 4/4")} {repString = "r1 | "} + {match[1].contains("time 5/4")} {repString = "r2 r2. | "} + {match[1].contains("time 6/4")} {repString = "r1. | "} + {match[1].contains("time 7/4")} {repString = "r1 r2. | "} + {match[1].contains("time 8/4")} {repString = "r1 r1 | "} + {match[1].contains("time 9/4")} {repString = "r2. r2. r2. | "} + {match[1].contains("time 10/4")} {repString = "r1 r1 r2 | "} + //{match[1].contains("time 11/4")} {repString = "r1 r1 r2. | "} + {match[1].contains("time 3/8")} {repString = "r4. | "} + {match[1].contains("time 5/8")} {repString = "r4. r4 | "} + {match[1].contains("time 7/8")} {repString = "r2 r4. | "} + {match[1].contains("time 9/8")} {repString = "r4. r4. r4.| "}; + + if(match[1].contains("10/4") || match[1].contains("11/4"), {drop = 11}); + if(match[1].findRegexp("\\d/\\d %}").size > 0, {drop = drop + 3}); + if(match[1].findRegexp("\\d\\d/\\d %}").size > 0, {drop = drop + 1}); + + //if(match[1].contains("11"), { + // [match[1], match[1].drop(drop), repString].postln; + //}); + + lilyString = lilyString.replace(match[1].drop(drop), " \\hideNotes " ++ repString ++ " \\unHideNotes ") + + //sig = match[1].findRegexp("\\d/\\d")[0][1]; + //sig.postln; + //lilyString = lilyString.replace(match[1].drop(drop), (" R1*" ++ sig ++ " | ").postln) + }) + }); + + + //lilyString = lilyString.replace("upp ", "^\\markup{\\bold{\\larger{↑}}}").replace("down", "^\\markup{\\bold{\\larger{↓}}}"); + lilyString = lilyString.replace("upp ", "").replace("down", ""); + + lilyString = lilyString.replace("\\note #\"4\" #1 \\normal-text \" ≈ 60\"", "\\note {4} #1 \\normal-text \" ≈ 60\""); + + + //write file + lilyString = lilyString ++ "\\bar \"|.\"\n}"; + lilyFile.write(lilyString); + lilyFile.close; + }); + +}; + +~ammannTranscribe.value(~ammannMusic) +)