-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSM [MU3] v2.4.mss
1286 lines (1284 loc) · 62.8 KB
/
NSM [MU3] v2.4.mss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- NSM [MU3] v2.4 -->
<!-- Page size: Letter / ANSI A -->
<!-- Copyright (C) 2024 XiaoMigros -->
<!-- ToDo:
- further improve auto spacing settings
- vertical spacing around header and footer
- make sure note distances are correct
- check bpm note size
-->
<!-- Changelog:
- tuplet font style is now bold
-->
<museScore version="3.02">
<Style>
<pageWidth>8.5</pageWidth>
<pageHeight>11</pageHeight>
<pagePrintableWidth>7.5</pagePrintableWidth>
<pageEvenLeftMargin>0.5</pageEvenLeftMargin> <!-- MU3 accounts for brace in margins-->
<pageOddLeftMargin>0.5</pageOddLeftMargin>
<pageEvenTopMargin>0.5</pageEvenTopMargin>
<pageEvenBottomMargin>0.5</pageEvenBottomMargin>
<pageOddTopMargin>0.5</pageOddTopMargin>
<pageOddBottomMargin>0.5</pageOddBottomMargin>
<pageTwosided>0</pageTwosided>
<staffUpperBorder>12</staffUpperBorder>
<staffLowerBorder>7</staffLowerBorder>
<staffDistance>7.788</staffDistance>
<akkoladeDistance>7.788</akkoladeDistance>
<minSystemDistance>9</minSystemDistance>
<maxSystemDistance>20</maxSystemDistance>
<enableVerticalSpread>0</enableVerticalSpread>
<spreadSystem>2.5</spreadSystem>
<spreadSquareBracket>1.2</spreadSquareBracket>
<spreadCurlyBracket>1.1</spreadCurlyBracket>
<minSystemSpread>9</minSystemSpread>
<maxSystemSpread>20</maxSystemSpread>
<minSpreadSpread>3.9</minSpreadSpread>
<maxSpreadSpread>9</maxSpreadSpread>
<maxAkkoladeDistance>7.788</maxAkkoladeDistance>
<maxPageFillSpread>6</maxPageFillSpread>
<lyricsPlacement>1</lyricsPlacement>
<lyricsPosAbove x="0" y="-2"/>
<lyricsPosBelow x="0" y="3"/>
<lyricsMinTopDistance>1</lyricsMinTopDistance>
<lyricsMinBottomDistance>2</lyricsMinBottomDistance>
<lyricsMinDistance>0.25</lyricsMinDistance>
<lyricsLineHeight>1</lyricsLineHeight>
<lyricsDashMinLength>0.4</lyricsDashMinLength>
<lyricsDashMaxLength>0.8</lyricsDashMaxLength>
<lyricsDashMaxDistance>16</lyricsDashMaxDistance>
<lyricsDashForce>1</lyricsDashForce>
<lyricsAlignVerseNumber>1</lyricsAlignVerseNumber>
<lyricsLineThickness>0.1</lyricsLineThickness>
<lyricsMelismaAlign>left,baseline</lyricsMelismaAlign>
<lyricsMelismaPad>0.1</lyricsMelismaPad>
<lyricsDashPad>0.05</lyricsDashPad>
<lyricsDashLineThickness>0.075</lyricsDashLineThickness>
<lyricsDashYposRatio>0.6</lyricsDashYposRatio>
<lyricsOddFontFace>Times New Roman</lyricsOddFontFace>
<lyricsOddFontSize>9.25</lyricsOddFontSize>
<lyricsOddLineSpacing>1</lyricsOddLineSpacing>
<lyricsOddFontSpatiumDependent>1</lyricsOddFontSpatiumDependent>
<lyricsOddFontStyle>0</lyricsOddFontStyle>
<lyricsOddColor r="0" g="0" b="0" a="255"/>
<lyricsOddAlign>center,baseline</lyricsOddAlign>
<lyricsOddFrameType>0</lyricsOddFrameType>
<lyricsOddFramePadding>0.2</lyricsOddFramePadding>
<lyricsOddFrameWidth>0.1</lyricsOddFrameWidth>
<lyricsOddFrameRound>0</lyricsOddFrameRound>
<lyricsOddFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricsOddFrameBgColor r="255" g="255" b="255" a="0"/>
<lyricsEvenFontFace>Times New Roman</lyricsEvenFontFace>
<lyricsEvenFontSize>9.25</lyricsEvenFontSize>
<lyricsEvenLineSpacing>1</lyricsEvenLineSpacing>
<lyricsEvenFontSpatiumDependent>1</lyricsEvenFontSpatiumDependent>
<lyricsEvenFontStyle>0</lyricsEvenFontStyle>
<lyricsEvenColor r="0" g="0" b="0" a="255"/>
<lyricsEvenAlign>center,baseline</lyricsEvenAlign>
<lyricsEvenFrameType>0</lyricsEvenFrameType>
<lyricsEvenFramePadding>0.2</lyricsEvenFramePadding>
<lyricsEvenFrameWidth>0.1</lyricsEvenFrameWidth>
<lyricsEvenFrameRound>0</lyricsEvenFrameRound>
<lyricsEvenFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricsEvenFrameBgColor r="255" g="255" b="255" a="0"/>
<figuredBassFontFamily>MScoreBC</figuredBassFontFamily>
<figuredBassYOffset>6</figuredBassYOffset>
<figuredBassLineHeight>1</figuredBassLineHeight>
<figuredBassAlignment>0</figuredBassAlignment>
<figuredBassStyle>0</figuredBassStyle>
<systemFrameDistance>7.25</systemFrameDistance>
<frameSystemDistance>7.25</frameSystemDistance>
<minMeasureWidth>2</minMeasureWidth>
<barWidth>0.075</barWidth>
<doubleBarWidth>0.075</doubleBarWidth>
<endBarWidth>0.5</endBarWidth>
<doubleBarDistance>0.5</doubleBarDistance>
<endBarDistance>0.75</endBarDistance> <!-- has to account for half the thickness of thick barline-->
<repeatBarlineDotSeparation>0.75</repeatBarlineDotSeparation> <!-- has to account for width of the dot itself-->
<repeatBarTips>0</repeatBarTips>
<startBarlineSingle>0</startBarlineSingle>
<startBarlineMultiple>1</startBarlineMultiple>
<bracketWidth>0.5</bracketWidth>
<bracketDistance>0.5</bracketDistance>
<akkoladeWidth>0.5</akkoladeWidth>
<akkoladeBarDistance>0.5</akkoladeBarDistance>
<dividerLeft>0</dividerLeft>
<dividerLeftSym>systemDivider</dividerLeftSym>
<dividerLeftX>0</dividerLeftX>
<dividerLeftY>0</dividerLeftY>
<dividerRight>0</dividerRight>
<dividerRightSym>systemDivider</dividerRightSym>
<dividerRightX>0</dividerRightX>
<dividerRightY>0</dividerRightY>
<clefLeftMargin>1</clefLeftMargin>
<keysigLeftMargin>1</keysigLeftMargin>
<ambitusMargin>0.5</ambitusMargin>
<timesigLeftMargin>1</timesigLeftMargin>
<timesigScale w="1" h="1"/>
<midClefKeyRightMargin>1</midClefKeyRightMargin>
<clefKeyRightMargin>0.8</clefKeyRightMargin>
<clefKeyDistance>1</clefKeyDistance>
<clefTimesigDistance>1</clefTimesigDistance>
<keyTimesigDistance>1.5</keyTimesigDistance>
<keyBarlineDistance>0.5</keyBarlineDistance>
<systemHeaderDistance>1.5</systemHeaderDistance>
<systemHeaderTimeSigDistance>1.5</systemHeaderTimeSigDistance>
<clefBarlineDistance>0.5</clefBarlineDistance>
<timesigBarlineDistance>0.5</timesigBarlineDistance>
<stemWidth>0.075</stemWidth>
<shortenStem>1</shortenStem>
<shortStemProgression>0.25</shortStemProgression>
<shortestStem>3</shortestStem>
<beginRepeatLeftMargin>1</beginRepeatLeftMargin>
<minNoteDistance>0.5</minNoteDistance>
<barNoteDistance>1.25</barNoteDistance>
<barAccidentalDistance>0.5</barAccidentalDistance>
<multiMeasureRestMargin>1.2</multiMeasureRestMargin>
<noteBarDistance>1.5</noteBarDistance>
<measureSpacing>1.5</measureSpacing>
<staffLineWidth>0.075</staffLineWidth>
<ledgerLineWidth>0.075</ledgerLineWidth>
<ledgerLineLength>0.25</ledgerLineLength>
<accidentalDistance>0.292</accidentalDistance>
<accidentalNoteDistance>0.292</accidentalNoteDistance>
<bracketedAccidentalPadding>0.175</bracketedAccidentalPadding>
<alignAccidentalsLeft>0</alignAccidentalsLeft>
<beamWidth>0.5</beamWidth>
<beamDistance>0.5</beamDistance>
<beamMinLen>0.75</beamMinLen>
<beamNoSlope>0</beamNoSlope>
<dotMag>1</dotMag>
<dotNoteDistance>0.333</dotNoteDistance>
<dotRestDistance>0.333</dotRestDistance>
<dotDotDistance>0.833</dotDotDistance>
<propertyDistanceHead>0.5</propertyDistanceHead>
<propertyDistanceStem>0.5</propertyDistanceStem>
<propertyDistance>0.5</propertyDistance>
<articulationMag>1</articulationMag>
<articulationPosAbove x="0" y="0"/>
<articulationAnchorDefault>2</articulationAnchorDefault>
<articulationAnchorLuteFingering>4</articulationAnchorLuteFingering>
<articulationAnchorOther>0</articulationAnchorOther>
<lastSystemFillLimit>0.6</lastSystemFillLimit>
<hairpinPlacement>1</hairpinPlacement>
<hairpinPosAbove x="0" y="-3"/>
<hairpinPosBelow x="0" y="4"/>
<hairpinLinePosAbove x="0" y="-3"/>
<hairpinLinePosBelow x="0" y="4"/>
<hairpinHeight>1.5</hairpinHeight>
<hairpinContHeight>0.5</hairpinContHeight>
<hairpinWidth>0.075</hairpinWidth>
<hairpinFontFace>Times New Roman</hairpinFontFace>
<hairpinFontSize>9.25</hairpinFontSize>
<hairpinLineSpacing>1</hairpinLineSpacing>
<hairpinFontSpatiumDependent>1</hairpinFontSpatiumDependent>
<hairpinFontStyle>2</hairpinFontStyle>
<hairpinColor r="0" g="0" b="0" a="255"/>
<hairpinTextAlign>left,baseline</hairpinTextAlign>
<hairpinFrameType>0</hairpinFrameType>
<hairpinFramePadding>0.2</hairpinFramePadding>
<hairpinFrameWidth>0.1</hairpinFrameWidth>
<hairpinFrameRound>0</hairpinFrameRound>
<hairpinFrameFgColor r="0" g="0" b="0" a="255"/>
<hairpinFrameBgColor r="255" g="255" b="255" a="0"/>
<hairpinText></hairpinText>
<hairpinCrescText>cresc.</hairpinCrescText>
<hairpinDecrescText>dim.</hairpinDecrescText>
<hairpinCrescContText>(cresc.)</hairpinCrescContText>
<hairpinDecrescContText>(dim.)</hairpinDecrescContText>
<hairpinLineStyle>1</hairpinLineStyle>
<hairpinLineLineStyle>6</hairpinLineLineStyle>
<pedalPlacement>1</pedalPlacement>
<pedalPosAbove x="0" y="-1"/>
<pedalPosBelow x="0" y="3"/>
<pedalLineWidth>0.075</pedalLineWidth>
<pedalListStyle>1</pedalListStyle>
<pedalBeginTextOffset x="0" y="0.15"/>
<pedalHookHeight>-1.08</pedalHookHeight>
<pedalFontFace>Times New Roman</pedalFontFace>
<pedalFontSize>10.8</pedalFontSize>
<pedalLineSpacing>1</pedalLineSpacing>
<pedalFontSpatiumDependent>1</pedalFontSpatiumDependent>
<pedalFontStyle>0</pedalFontStyle>
<pedalColor r="0" g="0" b="0" a="255"/>
<pedalTextAlign>left,baseline</pedalTextAlign>
<pedalFrameType>0</pedalFrameType>
<pedalFramePadding>0.2</pedalFramePadding>
<pedalFrameWidth>0.1</pedalFrameWidth>
<pedalFrameRound>0</pedalFrameRound>
<pedalFrameFgColor r="0" g="0" b="0" a="255"/>
<pedalFrameBgColor r="255" g="255" b="255" a="0"/>
<trillPlacement>0</trillPlacement>
<trillPosAbove x="0" y="-0.5"/>
<trillPosBelow x="0" y="2"/>
<vibratoPlacement>0</vibratoPlacement>
<vibratoPosAbove x="0" y="-1"/>
<vibratoPosBelow x="0" y="1"/>
<harmonyFretDist>1</harmonyFretDist>
<minHarmonyDistance>0.5</minHarmonyDistance>
<maxHarmonyBarDistance>3</maxHarmonyBarDistance>
<maxChordShiftAbove>0</maxChordShiftAbove>
<maxChordShiftBelow>0</maxChordShiftBelow>
<harmonyPlacement>0</harmonyPlacement>
<romanNumeralPlacement>1</romanNumeralPlacement>
<nashvilleNumberPlacement>0</nashvilleNumberPlacement>
<harmonyPlay>0</harmonyPlay>
<harmonyVoiceLiteral>1</harmonyVoiceLiteral>
<harmonyVoicing>0</harmonyVoicing>
<harmonyDuration>0</harmonyDuration>
<chordSymbolPosAbove x="0" y="-3"/>
<chordSymbolPosBelow x="0" y="3.5"/>
<chordSymbolBPosAbove x="0" y="-5.5"/>
<chordSymbolBPosBelow x="0" y="3.5"/>
<romanNumeralPosAbove x="0" y="-2.5"/>
<romanNumeralPosBelow x="0" y="3.5"/>
<nashvilleNumberPosAbove x="0" y="-2.5"/>
<nashvilleNumberPosBelow x="0" y="3.5"/>
<chordSymbolAFontFace>Times New Roman</chordSymbolAFontFace>
<chordSymbolAFontSize>10.8</chordSymbolAFontSize>
<chordSymbolALineSpacing>1</chordSymbolALineSpacing>
<chordSymbolAFontSpatiumDependent>1</chordSymbolAFontSpatiumDependent>
<chordSymbolAFontStyle>0</chordSymbolAFontStyle>
<chordSymbolAColor r="0" g="0" b="0" a="255"/>
<chordSymbolAAlign>left,baseline</chordSymbolAAlign>
<chordSymbolAFrameType>0</chordSymbolAFrameType>
<chordSymbolAFramePadding>0.2</chordSymbolAFramePadding>
<chordSymbolAFrameWidth>0.1</chordSymbolAFrameWidth>
<chordSymbolAFrameRound>0</chordSymbolAFrameRound>
<chordSymbolAFrameFgColor r="0" g="0" b="0" a="255"/>
<chordSymbolAFrameBgColor r="255" g="255" b="255" a="0"/>
<chordSymbolBFontFace>Times New Roman</chordSymbolBFontFace>
<chordSymbolBFontSize>11</chordSymbolBFontSize>
<chordSymbolBLineSpacing>1</chordSymbolBLineSpacing>
<chordSymbolBFontSpatiumDependent>1</chordSymbolBFontSpatiumDependent>
<chordSymbolBFontStyle>2</chordSymbolBFontStyle>
<chordSymbolBColor r="0" g="0" b="0" a="255"/>
<chordSymbolBAlign>left,baseline</chordSymbolBAlign>
<chordSymbolBFrameType>0</chordSymbolBFrameType>
<chordSymbolBFramePadding>0.2</chordSymbolBFramePadding>
<chordSymbolBFrameWidth>0.1</chordSymbolBFrameWidth>
<chordSymbolBFrameRound>0</chordSymbolBFrameRound>
<chordSymbolBFrameFgColor r="0" g="0" b="0" a="255"/>
<chordSymbolBFrameBgColor r="255" g="255" b="255" a="0"/>
<romanNumeralFontFace>Times New Roman</romanNumeralFontFace>
<romanNumeralFontSize>9.25</romanNumeralFontSize>
<romanNumeralLineSpacing>1</romanNumeralLineSpacing>
<romanNumeralFontSpatiumDependent>1</romanNumeralFontSpatiumDependent>
<romanNumeralFontStyle>0</romanNumeralFontStyle>
<romanNumeralColor r="0" g="0" b="0" a="255"/>
<romanNumeralAlign>left,baseline</romanNumeralAlign>
<romanNumeralFrameType>0</romanNumeralFrameType>
<romanNumeralFramePadding>0.2</romanNumeralFramePadding>
<romanNumeralFrameWidth>0.1</romanNumeralFrameWidth>
<romanNumeralFrameRound>0</romanNumeralFrameRound>
<romanNumeralFrameFgColor r="0" g="0" b="0" a="255"/>
<romanNumeralFrameBgColor r="255" g="255" b="255" a="0"/>
<nashvilleNumberFontFace>Times New Roman</nashvilleNumberFontFace>
<nashvilleNumberFontSize>9.25</nashvilleNumberFontSize>
<nashvilleNumberLineSpacing>1</nashvilleNumberLineSpacing>
<nashvilleNumberFontSpatiumDependent>1</nashvilleNumberFontSpatiumDependent>
<nashvilleNumberFontStyle>0</nashvilleNumberFontStyle>
<nashvilleNumberColor r="0" g="0" b="0" a="255"/>
<nashvilleNumberAlign>left,baseline</nashvilleNumberAlign>
<nashvilleNumberFrameType>0</nashvilleNumberFrameType>
<nashvilleNumberFramePadding>0.2</nashvilleNumberFramePadding>
<nashvilleNumberFrameWidth>0.1</nashvilleNumberFrameWidth>
<nashvilleNumberFrameRound>0</nashvilleNumberFrameRound>
<nashvilleNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<nashvilleNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<capoPosition>0</capoPosition>
<fretNumMag>2</fretNumMag>
<fretNumPos>0</fretNumPos>
<fretY>1</fretY>
<fretMinDistance>0.5</fretMinDistance>
<fretMag>1</fretMag>
<fretPlacement>0</fretPlacement>
<fretStrings>6</fretStrings>
<fretFrets>5</fretFrets>
<fretNut>1</fretNut>
<fretDotSize>1</fretDotSize>
<fretStringSpacing>0.7</fretStringSpacing>
<fretFretSpacing>0.8</fretFretSpacing>
<fretOrientation>0</fretOrientation>
<maxFretShiftAbove>0</maxFretShiftAbove>
<maxFretShiftBelow>0</maxFretShiftBelow>
<showPageNumber>1</showPageNumber>
<showPageNumberOne>0</showPageNumberOne>
<pageNumberOddEven>1</pageNumberOddEven>
<showMeasureNumber>1</showMeasureNumber>
<showMeasureNumberOne>0</showMeasureNumberOne>
<measureNumberInterval>5</measureNumberInterval>
<measureNumberSystem>1</measureNumberSystem>
<measureNumberAllStaffs>0</measureNumberAllStaffs>
<smallNoteMag>0.7</smallNoteMag>
<graceNoteMag>0.6</graceNoteMag>
<smallStaffMag>0.7</smallStaffMag>
<smallClefMag>0.75</smallClefMag>
<genClef>1</genClef>
<genKeysig>1</genKeysig>
<genCourtesyTimesig>1</genCourtesyTimesig>
<genCourtesyKeysig>1</genCourtesyKeysig>
<genCourtesyClef>1</genCourtesyClef>
<swingRatio>65</swingRatio>
<swingUnit></swingUnit>
<useStandardNoteNames>1</useStandardNoteNames>
<useGermanNoteNames>0</useGermanNoteNames>
<useFullGermanNoteNames>0</useFullGermanNoteNames>
<useSolfeggioNoteNames>0</useSolfeggioNoteNames>
<useFrenchNoteNames>0</useFrenchNoteNames>
<automaticCapitalization>1</automaticCapitalization>
<lowerCaseMinorChords>0</lowerCaseMinorChords>
<lowerCaseBassNotes>0</lowerCaseBassNotes>
<allCapsNoteNames>0</allCapsNoteNames>
<chordStyle>std</chordStyle>
<chordsXmlFile>0</chordsXmlFile>
<chordDescriptionFile>chords_std.xml</chordDescriptionFile>
<chordExtensionMag>1</chordExtensionMag>
<chordExtensionAdjust>0</chordExtensionAdjust>
<chordModifierMag>1</chordModifierMag>
<chordModifierAdjust>0</chordModifierAdjust>
<concertPitch>0</concertPitch>
<createMultiMeasureRests>0</createMultiMeasureRests>
<minEmptyMeasures>2</minEmptyMeasures>
<minMMRestWidth>4</minMMRestWidth>
<mmRestNumberPos>-1.5</mmRestNumberPos>
<hideEmptyStaves>0</hideEmptyStaves>
<dontHidStavesInFirstSystm>0</dontHidStavesInFirstSystm>
<enableIndentationOnFirstSystem>1</enableIndentationOnFirstSystem>
<firstSystemIndentationValue>6</firstSystemIndentationValue>
<alwaysShowBracketsWhenEmptyStavesAreHidden>0</alwaysShowBracketsWhenEmptyStavesAreHidden>
<hideInstrumentNameIfOneInstrument>0</hideInstrumentNameIfOneInstrument>
<gateTime>100</gateTime>
<tenutoGateTime>100</tenutoGateTime>
<staccatoGateTime>50</staccatoGateTime>
<slurGateTime>100</slurGateTime>
<ArpeggioNoteDistance>0.5</ArpeggioNoteDistance>
<ArpeggioLineWidth>0.18</ArpeggioLineWidth>
<ArpeggioHookLen>0.8</ArpeggioHookLen>
<ArpeggioHiddenInStdIfTab>0</ArpeggioHiddenInStdIfTab>
<slurEndWidth>0.0375</slurEndWidth>
<slurMidWidth>0.1875</slurMidWidth>
<slurDottedWidth>0.075</slurDottedWidth>
<minTieLength>1.5</minTieLength>
<slurMinDistance>0.5</slurMinDistance>
<sectionPause>3</sectionPause>
<musicalSymbolFont>Leland</musicalSymbolFont>
<musicalTextFont>Leland Text</musicalTextFont>
<showHeader>1</showHeader>
<headerFirstPage>0</headerFirstPage>
<headerOddEven>1</headerOddEven>
<evenHeaderL><font size="14"/><font face="Times New Roman"/>$p</evenHeaderL>
<evenHeaderC>$:workTitle:</evenHeaderC>
<evenHeaderR></evenHeaderR>
<oddHeaderL></oddHeaderL>
<oddHeaderC>$:workTitle:</oddHeaderC>
<oddHeaderR><font size="14"/><font face="Times New Roman"/>$p</oddHeaderR>
<showFooter>1</showFooter>
<footerFirstPage>1</footerFirstPage>
<footerOddEven>0</footerOddEven>
<evenFooterL></evenFooterL>
<evenFooterC>$:copyright:
Page $P/$n</evenFooterC>
<evenFooterR></evenFooterR>
<oddFooterL></oddFooterL>
<oddFooterC>$C</oddFooterC>
<oddFooterR></oddFooterR>
<voltaPosAbove x="0" y="-4"/>
<voltaHook>3</voltaHook>
<voltaLineWidth>0.075</voltaLineWidth>
<voltaLineStyle>1</voltaLineStyle>
<voltaFontFace>Times New Roman</voltaFontFace>
<voltaFontSize>7.7</voltaFontSize>
<voltaLineSpacing>1</voltaLineSpacing>
<voltaFontSpatiumDependent>1</voltaFontSpatiumDependent>
<voltaFontStyle>0</voltaFontStyle>
<voltaColor r="0" g="0" b="0" a="255"/>
<voltaAlign>left,top</voltaAlign>
<voltaOffset x="1.5" y="1"/>
<voltaFrameType>0</voltaFrameType>
<voltaFramePadding>0.2</voltaFramePadding>
<voltaFrameWidth>0.1</voltaFrameWidth>
<voltaFrameRound>0</voltaFrameRound>
<voltaFrameFgColor r="0" g="0" b="0" a="255"/>
<voltaFrameBgColor r="255" g="255" b="255" a="0"/>
<ottava8VAPlacement>0</ottava8VAPlacement>
<ottava8VBPlacement>1</ottava8VBPlacement>
<ottava15MAPlacement>0</ottava15MAPlacement>
<ottava15MBPlacement>1</ottava15MBPlacement>
<ottava22MAPlacement>0</ottava22MAPlacement>
<ottava22MBPlacement>1</ottava22MBPlacement>
<ottava8VAText><sym>ottavaAlta</sym></ottava8VAText>
<ottava8VAContinueText><sym>octaveParensLeft</sym><sym>ottavaAlta</sym><sym>octaveParensRight</sym></ottava8VAContinueText>
<ottava8VBText><sym>ottavaBassaVb</sym></ottava8VBText>
<ottava8VBContinueText><sym>octaveParensLeft</sym><sym>ottavaBassaVb</sym><sym>octaveParensRight</sym></ottava8VBContinueText>
<ottava15MAText><sym>quindicesimaAlta</sym></ottava15MAText>
<ottava15MAContinueText><sym>octaveParensLeft</sym><sym>quindicesimaAlta</sym><sym>octaveParensRight</sym></ottava15MAContinueText>
<ottava15MBText><sym>quindicesimaBassa</sym></ottava15MBText>
<ottava15MBContinueText><sym>octaveParensLeft</sym><sym>quindicesimaBassa</sym><sym>octaveParensRight</sym></ottava15MBContinueText>
<ottava22MAText><sym>ventiduesimaAlta</sym></ottava22MAText>
<ottava22MAContinueText><sym>octaveParensLeft</sym><sym>ventiduesimaAlta</sym><sym>octaveParensRight</sym></ottava22MAContinueText>
<ottava22MBText><sym>ventiduesimaBassa</sym></ottava22MBText>
<ottava22MBContinueText><sym>octaveParensLeft</sym><sym>ventiduesimaBassa</sym><sym>octaveParensRight</sym></ottava22MBContinueText>
<ottava8VAnoText><sym>ottava</sym></ottava8VAnoText>
<ottava8VAnoContinueText><sym>octaveParensLeft</sym><sym>ottava</sym><sym>octaveParensRight</sym></ottava8VAnoContinueText>
<ottava8VBnoText><sym>ottava</sym></ottava8VBnoText>
<ottava8VBnoContinueText><sym>octaveParensLeft</sym><sym>ottava</sym><sym>octaveParensRight</sym></ottava8VBnoContinueText>
<ottava15MAnoText><sym>quindicesima</sym></ottava15MAnoText>
<ottava15MAnoContinueText><sym>octaveParensLeft</sym><sym>quindicesima</sym><sym>octaveParensRight</sym></ottava15MAnoContinueText>
<ottava15MBnoText><sym>quindicesima</sym></ottava15MBnoText>
<ottava15MBnoContinueText><sym>octaveParensLeft</sym><sym>quindicesima</sym><sym>octaveParensRight</sym></ottava15MBnoContinueText>
<ottava22MAnoText><sym>ventiduesima</sym></ottava22MAnoText>
<ottava22MAnoContinueText><sym>octaveParensLeft</sym><sym>ventiduesima</sym><sym>octaveParensRight</sym></ottava22MAnoContinueText>
<ottava22MBnoText><sym>ventiduesima</sym></ottava22MBnoText>
<ottava22MBnoContinueText><sym>octaveParensLeft</sym><sym>ventiduesima</sym><sym>octaveParensRight</sym></ottava22MBnoContinueText>
<ottavaPosAbove x="-0.33" y="-2"/>
<ottavaPosBelow x="-0.5" y="2"/>
<ottavaHookAbove>0.5</ottavaHookAbove>
<ottavaHookBelow>-0.5</ottavaHookBelow>
<ottavaLineWidth>0.075</ottavaLineWidth>
<ottavaLineStyle>2</ottavaLineStyle>
<ottavaNumbersOnly>0</ottavaNumbersOnly>
<ottavaFontFace>Times New Roman</ottavaFontFace>
<ottavaFontSize>9.25</ottavaFontSize>
<ottavaLineSpacing>1</ottavaLineSpacing>
<ottavaFontSpatiumDependent>1</ottavaFontSpatiumDependent>
<ottavaFontStyle>0</ottavaFontStyle>
<ottavaColor r="0" g="0" b="0" a="255"/>
<ottavaTextAlign>left,center</ottavaTextAlign>
<ottavaFrameType>0</ottavaFrameType>
<ottavaFramePadding>0.2</ottavaFramePadding>
<ottavaFrameWidth>0.1</ottavaFrameWidth>
<ottavaFrameRound>0</ottavaFrameRound>
<ottavaFrameFgColor r="0" g="0" b="0" a="255"/>
<ottavaFrameBgColor r="255" g="255" b="255" a="0"/>
<tabClef>31</tabClef>
<tremoloWidth>1.2</tremoloWidth>
<tremoloBoxHeight>0.65</tremoloBoxHeight>
<tremoloLineWidth>0.5</tremoloLineWidth>
<tremoloDistance>0.8</tremoloDistance>
<tremoloStrokeStyle>1</tremoloStrokeStyle>
<tremoloStrokeLengthMultiplier>0.5</tremoloStrokeLengthMultiplier>
<linearStretch>1.5</linearStretch>
<crossMeasureValues>0</crossMeasureValues>
<keySigNaturals>2</keySigNaturals>
<tupletMaxSlope>0.5</tupletMaxSlope>
<tupletOufOfStaff>1</tupletOufOfStaff>
<tupletVHeadDistance>0.5</tupletVHeadDistance>
<tupletVStemDistance>0.5</tupletVStemDistance>
<tupletStemLeftDistance>0.5</tupletStemLeftDistance>
<tupletStemRightDistance>0.5</tupletStemRightDistance>
<tupletNoteLeftDistance>0.5</tupletNoteLeftDistance>
<tupletNoteRightDistance>0.5</tupletNoteRightDistance>
<tupletBracketWidth>0.075</tupletBracketWidth>
<tupletDirection>0</tupletDirection>
<tupletNumberType>0</tupletNumberType>
<tupletBracketType>0</tupletBracketType>
<tupletFontFace>Times New Roman</tupletFontFace>
<tupletFontSize>7</tupletFontSize>
<tupletLineSpacing>1</tupletLineSpacing>
<tupletFontSpatiumDependent>1</tupletFontSpatiumDependent>
<tupletFontStyle>3</tupletFontStyle>
<tupletColor r="0" g="0" b="0" a="255"/>
<tupletAlign>center,center</tupletAlign>
<tupletBracketHookHeight>0.5</tupletBracketHookHeight>
<tupletOffset x="0" y="0"/>
<tupletFrameType>0</tupletFrameType>
<tupletFramePadding>0.2</tupletFramePadding>
<tupletFrameWidth>0.1</tupletFrameWidth>
<tupletFrameRound>0</tupletFrameRound>
<tupletFrameFgColor r="0" g="0" b="0" a="255"/>
<tupletFrameBgColor r="255" g="255" b="255" a="0"/>
<barreLineWidth>1</barreLineWidth>
<scaleBarlines>1</scaleBarlines>
<barGraceDistance>1</barGraceDistance>
<minVerticalDistance>0.5</minVerticalDistance>
<ornamentStyle>0</ornamentStyle>
<autoplaceHairpinDynamicsDistance>0.5</autoplaceHairpinDynamicsDistance>
<dynamicsPlacement>1</dynamicsPlacement>
<dynamicsPosAbove x="0" y="-2"/>
<dynamicsPosBelow x="0" y="4"/>
<dynamicsMinDistance>0.5</dynamicsMinDistance>
<autoplaceVerticalAlignRange>2</autoplaceVerticalAlignRange>
<textLinePlacement>0</textLinePlacement>
<textLinePosAbove x="0" y="-1"/>
<textLinePosBelow x="0" y="1"/>
<textLineFrameType>0</textLineFrameType>
<textLineFramePadding>0.2</textLineFramePadding>
<textLineFrameWidth>0.1</textLineFrameWidth>
<textLineFrameRound>0</textLineFrameRound>
<textLineFrameFgColor r="0" g="0" b="0" a="255"/>
<textLineFrameBgColor r="255" g="255" b="255" a="0"/>
<systemTextLinePlacement>0</systemTextLinePlacement>
<systemTextLinePosAbove x="0" y="-1"/>
<systemTextLinePosBelow x="0" y="1"/>
<systemTextLineFrameType>0</systemTextLineFrameType>
<systemTextLineFramePadding>0.2</systemTextLineFramePadding>
<systemTextLineFrameWidth>0.1</systemTextLineFrameWidth>
<systemTextLineFrameRound>0</systemTextLineFrameRound>
<systemTextLineFrameFgColor r="0" g="0" b="0" a="255"/>
<systemTextLineFrameBgColor r="255" g="255" b="255" a="0"/>
<tremoloBarLineWidth>0.12</tremoloBarLineWidth>
<jumpPosAbove x="0" y="-3"/>
<markerPosAbove x="0" y="-3"/>
<defaultFontFace>Times New Roman</defaultFontFace>
<defaultFontSize>9.25</defaultFontSize>
<defaultLineSpacing>1</defaultLineSpacing>
<defaultFontSpatiumDependent>1</defaultFontSpatiumDependent>
<defaultFontStyle>0</defaultFontStyle>
<defaultColor r="0" g="0" b="0" a="255"/>
<defaultAlign>left,top</defaultAlign>
<defaultFrameType>0</defaultFrameType>
<defaultFramePadding>0.2</defaultFramePadding>
<defaultFrameWidth>0.1</defaultFrameWidth>
<defaultFrameRound>0</defaultFrameRound>
<defaultFrameFgColor r="0" g="0" b="0" a="255"/>
<defaultFrameBgColor r="255" g="255" b="255" a="0"/>
<defaultOffset x="0" y="0"/>
<defaultOffsetType>1</defaultOffsetType>
<defaultSystemFlag>0</defaultSystemFlag>
<defaultText></defaultText>
<titleFontFace>Times New Roman</titleFontFace>
<titleFontSize>24</titleFontSize>
<titleLineSpacing>1</titleLineSpacing>
<titleFontSpatiumDependent>0</titleFontSpatiumDependent>
<titleFontStyle>1</titleFontStyle>
<titleColor r="0" g="0" b="0" a="255"/>
<titleAlign>center,top</titleAlign>
<titleOffset x="0" y="1.56"/>
<titleOffsetType>0</titleOffsetType>
<titleFrameType>0</titleFrameType>
<titleFramePadding>0.2</titleFramePadding>
<titleFrameWidth>0.1</titleFrameWidth>
<titleFrameRound>0</titleFrameRound>
<titleFrameFgColor r="0" g="0" b="0" a="255"/>
<titleFrameBgColor r="255" g="255" b="255" a="0"/>
<subTitleFontFace>Times New Roman</subTitleFontFace>
<subTitleFontSize>12</subTitleFontSize>
<subTitleLineSpacing>1</subTitleLineSpacing>
<subTitleFontSpatiumDependent>0</subTitleFontSpatiumDependent>
<subTitleFontStyle>2</subTitleFontStyle>
<subTitleColor r="0" g="0" b="0" a="255"/>
<subTitleAlign>center,top</subTitleAlign>
<subTitleOffset x="0" y="12.4"/>
<subTitleOffsetType>0</subTitleOffsetType>
<subTitleFrameType>0</subTitleFrameType>
<subTitleFramePadding>0.2</subTitleFramePadding>
<subTitleFrameWidth>0.1</subTitleFrameWidth>
<subTitleFrameRound>0</subTitleFrameRound>
<subTitleFrameFgColor r="0" g="0" b="0" a="255"/>
<subTitleFrameBgColor r="255" g="255" b="255" a="0"/>
<composerFontFace>Times New Roman</composerFontFace>
<composerFontSize>12</composerFontSize>
<composerLineSpacing>1</composerLineSpacing>
<composerFontSpatiumDependent>0</composerFontSpatiumDependent>
<composerFontStyle>1</composerFontStyle>
<composerColor r="0" g="0" b="0" a="255"/>
<composerAlign>right,top</composerAlign>
<composerOffset x="0" y="18.11"/>
<composerOffsetType>0</composerOffsetType>
<composerFrameType>0</composerFrameType>
<composerFramePadding>0.2</composerFramePadding>
<composerFrameWidth>0.1</composerFrameWidth>
<composerFrameRound>0</composerFrameRound>
<composerFrameFgColor r="0" g="0" b="0" a="255"/>
<composerFrameBgColor r="255" g="255" b="255" a="0"/>
<lyricistFontFace>Times New Roman</lyricistFontFace>
<lyricistFontSize>12</lyricistFontSize>
<lyricistLineSpacing>1</lyricistLineSpacing>
<lyricistFontSpatiumDependent>0</lyricistFontSpatiumDependent>
<lyricistFontStyle>2</lyricistFontStyle>
<lyricistColor r="0" g="0" b="0" a="255"/>
<lyricistAlign>right,top</lyricistAlign>
<lyricistOffset x="0" y="23.66"/>
<lyricistOffsetType>0</lyricistOffsetType>
<lyricistFrameType>0</lyricistFrameType>
<lyricistFramePadding>0.2</lyricistFramePadding>
<lyricistFrameWidth>0.1</lyricistFrameWidth>
<lyricistFrameRound>0</lyricistFrameRound>
<lyricistFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricistFrameBgColor r="255" g="255" b="255" a="0"/>
<fingeringFontFace>Times New Roman</fingeringFontFace>
<fingeringFontSize>8</fingeringFontSize>
<fingeringLineSpacing>1</fingeringLineSpacing>
<fingeringFontSpatiumDependent>1</fingeringFontSpatiumDependent>
<fingeringFontStyle>0</fingeringFontStyle>
<fingeringColor r="0" g="0" b="0" a="255"/>
<fingeringAlign>center,center</fingeringAlign>
<fingeringFrameType>0</fingeringFrameType>
<fingeringFramePadding>0.2</fingeringFramePadding>
<fingeringFrameWidth>0.1</fingeringFrameWidth>
<fingeringFrameRound>0</fingeringFrameRound>
<fingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<fingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<fingeringOffset x="0" y="0"/>
<lhGuitarFingeringFontFace>Times New Roman</lhGuitarFingeringFontFace>
<lhGuitarFingeringFontSize>8</lhGuitarFingeringFontSize>
<lhGuitarFingeringLineSpacing>1</lhGuitarFingeringLineSpacing>
<lhGuitarFingeringFontSpatiumDependent>1</lhGuitarFingeringFontSpatiumDependent>
<lhGuitarFingeringFontStyle>0</lhGuitarFingeringFontStyle>
<lhGuitarFingeringColor r="0" g="0" b="0" a="255"/>
<lhGuitarFingeringAlign>right,center</lhGuitarFingeringAlign>
<lhGuitarFingeringFrameType>0</lhGuitarFingeringFrameType>
<lhGuitarFingeringFramePadding>0.2</lhGuitarFingeringFramePadding>
<lhGuitarFingeringFrameWidth>0.1</lhGuitarFingeringFrameWidth>
<lhGuitarFingeringFrameRound>0</lhGuitarFingeringFrameRound>
<lhGuitarFingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<lhGuitarFingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<lhGuitarFingeringOffset x="-0.5" y="0"/>
<rhGuitarFingeringFontFace>Times New Roman</rhGuitarFingeringFontFace>
<rhGuitarFingeringFontSize>8</rhGuitarFingeringFontSize>
<rhGuitarFingeringLineSpacing>1</rhGuitarFingeringLineSpacing>
<rhGuitarFingeringFontSpatiumDependent>1</rhGuitarFingeringFontSpatiumDependent>
<rhGuitarFingeringFontStyle>2</rhGuitarFingeringFontStyle>
<rhGuitarFingeringColor r="0" g="0" b="0" a="255"/>
<rhGuitarFingeringAlign>center,center</rhGuitarFingeringAlign>
<rhGuitarFingeringFrameType>0</rhGuitarFingeringFrameType>
<rhGuitarFingeringFramePadding>0.2</rhGuitarFingeringFramePadding>
<rhGuitarFingeringFrameWidth>0.1</rhGuitarFingeringFrameWidth>
<rhGuitarFingeringFrameRound>0</rhGuitarFingeringFrameRound>
<rhGuitarFingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<rhGuitarFingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<rhGuitarFingeringOffset x="0" y="0"/>
<stringNumberFontFace>Times New Roman</stringNumberFontFace>
<stringNumberFontSize>8</stringNumberFontSize>
<stringNumberLineSpacing>1</stringNumberLineSpacing>
<stringNumberFontSpatiumDependent>1</stringNumberFontSpatiumDependent>
<stringNumberFontStyle>0</stringNumberFontStyle>
<stringNumberColor r="0" g="0" b="0" a="255"/>
<stringNumberAlign>center,center</stringNumberAlign>
<stringNumberFrameType>2</stringNumberFrameType>
<stringNumberFramePadding>0.2</stringNumberFramePadding>
<stringNumberFrameWidth>0.1</stringNumberFrameWidth>
<stringNumberFrameRound>0</stringNumberFrameRound>
<stringNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<stringNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<stringNumberOffset x="0" y="0"/>
<longInstrumentFontFace>Times New Roman</longInstrumentFontFace>
<longInstrumentFontSize>10.8</longInstrumentFontSize>
<longInstrumentLineSpacing>1</longInstrumentLineSpacing>
<longInstrumentFontSpatiumDependent>1</longInstrumentFontSpatiumDependent>
<longInstrumentFontStyle>0</longInstrumentFontStyle>
<longInstrumentColor r="0" g="0" b="0" a="255"/>
<longInstrumentAlign>right,center</longInstrumentAlign>
<longInstrumentOffset x="0" y="0"/>
<longInstrumentFrameType>0</longInstrumentFrameType>
<longInstrumentFramePadding>0.2</longInstrumentFramePadding>
<longInstrumentFrameWidth>0.1</longInstrumentFrameWidth>
<longInstrumentFrameRound>0</longInstrumentFrameRound>
<longInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<longInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<shortInstrumentFontFace>Times New Roman</shortInstrumentFontFace>
<shortInstrumentFontSize>10.8</shortInstrumentFontSize>
<shortInstrumentLineSpacing>1</shortInstrumentLineSpacing>
<shortInstrumentFontSpatiumDependent>1</shortInstrumentFontSpatiumDependent>
<shortInstrumentFontStyle>0</shortInstrumentFontStyle>
<shortInstrumentColor r="0" g="0" b="0" a="255"/>
<shortInstrumentAlign>right,center</shortInstrumentAlign>
<shortInstrumentOffset x="0" y="0"/>
<shortInstrumentFrameType>0</shortInstrumentFrameType>
<shortInstrumentFramePadding>0.2</shortInstrumentFramePadding>
<shortInstrumentFrameWidth>0.1</shortInstrumentFrameWidth>
<shortInstrumentFrameRound>0</shortInstrumentFrameRound>
<shortInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<shortInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<partInstrumentFontFace>Times New Roman</partInstrumentFontFace>
<partInstrumentFontSize>14</partInstrumentFontSize>
<partInstrumentLineSpacing>1</partInstrumentLineSpacing>
<partInstrumentFontSpatiumDependent>0</partInstrumentFontSpatiumDependent>
<partInstrumentFontStyle>0</partInstrumentFontStyle>
<partInstrumentColor r="0" g="0" b="0" a="255"/>
<partInstrumentAlign>left,top</partInstrumentAlign>
<partInstrumentOffset x="0" y="0"/>
<partInstrumentFrameType>0</partInstrumentFrameType>
<partInstrumentFramePadding>0.2</partInstrumentFramePadding>
<partInstrumentFrameWidth>0.1</partInstrumentFrameWidth>
<partInstrumentFrameRound>0</partInstrumentFrameRound>
<partInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<partInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<dynamicsFontFace>Times New Roman</dynamicsFontFace>
<dynamicsFontSize>11</dynamicsFontSize> <!-- correct due to different SMuFL defaults, here ??? -->
<dynamicsLineSpacing>1</dynamicsLineSpacing>
<dynamicsFontSpatiumDependent>1</dynamicsFontSpatiumDependent>
<dynamicsFontStyle>2</dynamicsFontStyle>
<dynamicsColor r="0" g="0" b="0" a="255"/>
<dynamicsAlign>center,baseline</dynamicsAlign>
<dynamicsFrameType>0</dynamicsFrameType>
<dynamicsFramePadding>0.2</dynamicsFramePadding>
<dynamicsFrameWidth>0.1</dynamicsFrameWidth>
<dynamicsFrameRound>0</dynamicsFrameRound>
<dynamicsFrameFgColor r="0" g="0" b="0" a="255"/>
<dynamicsFrameBgColor r="255" g="255" b="255" a="0"/>
<expressionFontFace>Times New Roman</expressionFontFace>
<expressionFontSize>9.25</expressionFontSize>
<expressionLineSpacing>1</expressionLineSpacing>
<expressionFontSpatiumDependent>1</expressionFontSpatiumDependent>
<expressionFontStyle>2</expressionFontStyle>
<expressionColor r="0" g="0" b="0" a="255"/>
<expressionAlign>left,baseline</expressionAlign>
<expressionPlacement>1</expressionPlacement>
<expressionOffset x="0" y="2.5"/>
<expressionFrameType>0</expressionFrameType>
<expressionFramePadding>0.2</expressionFramePadding>
<expressionFrameWidth>0.1</expressionFrameWidth>
<expressionFrameRound>0</expressionFrameRound>
<expressionFrameFgColor r="0" g="0" b="0" a="255"/>
<expressionFrameBgColor r="255" g="255" b="255" a="0"/>
<tempoFontFace>Times New Roman</tempoFontFace>
<tempoFontSize>10.8</tempoFontSize>
<tempoLineSpacing>1</tempoLineSpacing>
<tempoFontSpatiumDependent>1</tempoFontSpatiumDependent>
<tempoFontStyle>1</tempoFontStyle>
<tempoColor r="0" g="0" b="0" a="255"/>
<tempoAlign>left,baseline</tempoAlign>
<tempoSystemFlag>1</tempoSystemFlag>
<tempoPlacement>0</tempoPlacement>
<tempoPosAbove x="0" y="-3"/>
<tempoPosBelow x="0" y="3"/>
<tempoMinDistance>0.5</tempoMinDistance>
<tempoFrameType>0</tempoFrameType>
<tempoFramePadding>0.2</tempoFramePadding>
<tempoFrameWidth>0.1</tempoFrameWidth>
<tempoFrameRound>0</tempoFrameRound>
<tempoFrameFgColor r="0" g="0" b="0" a="255"/>
<tempoFrameBgColor r="255" g="255" b="255" a="0"/>
<metronomeFontFace>Times New Roman</metronomeFontFace>
<metronomeFontSize>9.25</metronomeFontSize>
<metronomeLineSpacing>1</metronomeLineSpacing>
<metronomeFontSpatiumDependent>1</metronomeFontSpatiumDependent>
<metronomeFontStyle>0</metronomeFontStyle>
<metronomeColor r="0" g="0" b="0" a="255"/>
<metronomePlacement>0</metronomePlacement>
<metronomeAlign>left,top</metronomeAlign>
<metronomeOffset x="0" y="0"/>
<metronomeFrameType>0</metronomeFrameType>
<metronomeFramePadding>0.2</metronomeFramePadding>
<metronomeFrameWidth>0.1</metronomeFrameWidth>
<metronomeFrameRound>0</metronomeFrameRound>
<metronomeFrameFgColor r="0" g="0" b="0" a="255"/>
<metronomeFrameBgColor r="255" g="255" b="255" a="0"/>
<measureNumberFontFace>Times New Roman</measureNumberFontFace>
<measureNumberFontSize>7.7</measureNumberFontSize>
<measureNumberLineSpacing>1</measureNumberLineSpacing>
<measureNumberFontSpatiumDependent>0</measureNumberFontSpatiumDependent>
<measureNumberFontStyle>2</measureNumberFontStyle>
<measureNumberColor r="0" g="0" b="0" a="255"/>
<measureNumberOffset x="0.21" y="-1.94"/>
<measureNumberPosBelow x="0" y="1"/>
<measureNumberOffsetType>1</measureNumberOffsetType>
<measureNumberVPlacement>0</measureNumberVPlacement>
<measureNumberHPlacement>0</measureNumberHPlacement>
<measureNumberAlign>left,baseline</measureNumberAlign>
<measureNumberFrameType>0</measureNumberFrameType>
<measureNumberFramePadding>0.2</measureNumberFramePadding>
<measureNumberFrameWidth>0.1</measureNumberFrameWidth>
<measureNumberFrameRound>0</measureNumberFrameRound>
<measureNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<measureNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<mmRestShowMeasureNumberRange>0</mmRestShowMeasureNumberRange>
<mmRestRangeBracketType>0</mmRestRangeBracketType>
<mmRestRangeFontFace>Times New Roman</mmRestRangeFontFace>
<mmRestRangeFontSize>8</mmRestRangeFontSize>
<mmRestRangeFontSpatiumDependent>0</mmRestRangeFontSpatiumDependent>
<mmRestRangeFontStyle>2</mmRestRangeFontStyle>
<mmRestRangeColor r="0" g="0" b="0" a="255"/>
<measureNumberPosAbove x="0" y="-3"/>
<measureNumberPosBelow x="0" y="1"/>
<mmRestRangeOffsetType>1</mmRestRangeOffsetType>
<mmRestRangeVPlacement>1</mmRestRangeVPlacement>
<mmRestRangeHPlacement>1</mmRestRangeHPlacement>
<mmRestRangeAlign>center,baseline</mmRestRangeAlign>
<mmRestRangeFrameType>0</mmRestRangeFrameType>
<mmRestRangeFramePadding>0.2</mmRestRangeFramePadding>
<mmRestRangeFrameWidth>0.1</mmRestRangeFrameWidth>
<mmRestRangeFrameRound>0</mmRestRangeFrameRound>
<mmRestRangeFrameFgColor r="0" g="0" b="0" a="255"/>
<mmRestRangeFrameBgColor r="255" g="255" b="255" a="0"/>
<translatorFontFace>Times New Roman</translatorFontFace>
<translatorFontSize>12</translatorFontSize>
<translatorLineSpacing>1</translatorLineSpacing>
<translatorFontSpatiumDependent>0</translatorFontSpatiumDependent>
<translatorFontStyle>0</translatorFontStyle>
<translatorColor r="0" g="0" b="0" a="255"/>
<translatorAlign>left,top</translatorAlign>
<translatorOffset x="0" y="0"/>
<translatorFrameType>0</translatorFrameType>
<translatorFramePadding>0.2</translatorFramePadding>
<translatorFrameWidth>0.1</translatorFrameWidth>
<translatorFrameRound>0</translatorFrameRound>
<translatorFrameFgColor r="0" g="0" b="0" a="255"/>
<translatorFrameBgColor r="255" g="255" b="255" a="0"/>
<systemFontFace>Times New Roman</systemFontFace>
<systemFontSize>9.25</systemFontSize>
<systemTextLineSpacing>1</systemTextLineSpacing>
<systemFontSpatiumDependent>1</systemFontSpatiumDependent>
<systemFontStyle>0</systemFontStyle>
<systemTextColor r="0" g="0" b="0" a="255"/>
<systemAlign>left,baseline</systemAlign>
<systemOffsetType>1</systemOffsetType>
<systemPlacement>0</systemPlacement>
<systemPosAbove x="0" y="-2"/>
<systemPosBelow x="0" y="3.5"/>
<systemMinDistance>0.5</systemMinDistance>
<systemFrameType>0</systemFrameType>
<systemFramePadding>0.2</systemFramePadding>
<systemFrameWidth>0.1</systemFrameWidth>
<systemFrameRound>0</systemFrameRound>
<systemFrameFgColor r="0" g="0" b="0" a="255"/>
<systemFrameBgColor r="255" g="255" b="255" a="0"/>
<staffFontFace>Times New Roman</staffFontFace>
<staffFontSize>9.25</staffFontSize>
<staffTextLineSpacing>1</staffTextLineSpacing>
<staffFontSpatiumDependent>1</staffFontSpatiumDependent>
<staffFontStyle>0</staffFontStyle>
<staffTextColor r="0" g="0" b="0" a="255"/>
<staffAlign>left,baseline</staffAlign>
<systemOffsetType>1</systemOffsetType>
<staffPlacement>0</staffPlacement>
<staffPosAbove x="0" y="-1"/>
<staffPosBelow x="0" y="2.5"/>
<staffMinDistance>0.5</staffMinDistance>
<staffFrameType>0</staffFrameType>
<staffFramePadding>0.2</staffFramePadding>
<staffFrameWidth>0.1</staffFrameWidth>
<staffFrameRound>0</staffFrameRound>
<staffFrameFgColor r="0" g="0" b="0" a="255"/>
<staffFrameBgColor r="255" g="255" b="255" a="0"/>
<rehearsalMarkFontFace>Times New Roman</rehearsalMarkFontFace>
<rehearsalMarkFontSize>10.8</rehearsalMarkFontSize>
<rehearsalMarkLineSpacing>1</rehearsalMarkLineSpacing>
<rehearsalMarkFontSpatiumDependent>1</rehearsalMarkFontSpatiumDependent>
<rehearsalMarkFontStyle>1</rehearsalMarkFontStyle>
<rehearsalMarkColor r="0" g="0" b="0" a="255"/>
<rehearsalMarkAlign>center,baseline</rehearsalMarkAlign>
<rehearsalMarkFrameType>1</rehearsalMarkFrameType>
<rehearsalMarkFramePadding>0.5</rehearsalMarkFramePadding>
<rehearsalMarkFrameWidth>0.075</rehearsalMarkFrameWidth>
<rehearsalMarkFrameRound>0</rehearsalMarkFrameRound>
<rehearsalMarkFrameFgColor r="0" g="0" b="0" a="255"/>
<rehearsalMarkFrameBgColor r="255" g="255" b="255" a="0"/>
<rehearsalMarkPlacement>0</rehearsalMarkPlacement>
<rehearsalMarkPosAbove x="0" y="-3"/>
<rehearsalMarkPosBelow x="0" y="4"/>
<rehearsalMarkMinDistance>0.5</rehearsalMarkMinDistance>
<repeatLeftFontFace>Times New Roman</repeatLeftFontFace>
<repeatLeftFontSize>17</repeatLeftFontSize>
<repeatLeftLineSpacing>1</repeatLeftLineSpacing>
<repeatLeftFontSpatiumDependent>1</repeatLeftFontSpatiumDependent>
<repeatLeftFontStyle>0</repeatLeftFontStyle>
<repeatLeftColor r="0" g="0" b="0" a="255"/>
<repeatLeftAlign>left,baseline</repeatLeftAlign>
<repeatLeftPlacement>0</repeatLeftPlacement>
<repeatLeftFrameType>0</repeatLeftFrameType>
<repeatLeftFramePadding>0.2</repeatLeftFramePadding>
<repeatLeftFrameWidth>0.1</repeatLeftFrameWidth>
<repeatLeftFrameRound>0</repeatLeftFrameRound>
<repeatLeftFrameFgColor r="0" g="0" b="0" a="255"/>
<repeatLeftFrameBgColor r="255" g="255" b="255" a="0"/>
<repeatRightFontFace>Times New Roman</repeatRightFontFace>
<repeatRightFontSize>10.8</repeatRightFontSize>
<repeatRightLineSpacing>1</repeatRightLineSpacing>
<repeatRightFontSpatiumDependent>1</repeatRightFontSpatiumDependent>
<repeatRightFontStyle>1</repeatRightFontStyle>
<repeatRightColor r="0" g="0" b="0" a="255"/>
<repeatRightAlign>right,baseline</repeatRightAlign>
<repeatRightPlacement>0</repeatRightPlacement>
<repeatRightFrameType>0</repeatRightFrameType>
<repeatRightFramePadding>0.2</repeatRightFramePadding>
<repeatRightFrameWidth>0.1</repeatRightFrameWidth>
<repeatRightFrameRound>0</repeatRightFrameRound>
<repeatRightFrameFgColor r="0" g="0" b="0" a="255"/>
<repeatRightFrameBgColor r="255" g="255" b="255" a="0"/>
<frameFontFace>Times New Roman</frameFontFace>
<frameFontSize>12</frameFontSize>
<frameLineSpacing>1</frameLineSpacing>
<frameFontSpatiumDependent>0</frameFontSpatiumDependent>
<frameFontStyle>0</frameFontStyle>
<frameColor r="0" g="0" b="0" a="255"/>
<frameAlign>left,top</frameAlign>
<frameOffset x="0" y="0"/>
<frameFrameType>0</frameFrameType>
<frameFramePadding>0.2</frameFramePadding>
<frameFrameWidth>0.1</frameFrameWidth>
<frameFrameRound>0</frameFrameRound>
<frameFrameFgColor r="0" g="0" b="0" a="255"/>
<frameFrameBgColor r="255" g="255" b="255" a="0"/>
<textLineFontFace>Times New Roman</textLineFontFace>
<textLineFontSize>9.25</textLineFontSize>
<textLineLineSpacing>1</textLineLineSpacing>
<textLineFontSpatiumDependent>1</textLineFontSpatiumDependent>
<textLineFontStyle>0</textLineFontStyle>
<textLineColor r="0" g="0" b="0" a="255"/>
<textLineTextAlign>left,center</textLineTextAlign>
<textLineSystemFlag>0</textLineSystemFlag>
<systemTextLineFontFace>Times New Roman</systemTextLineFontFace>
<systemTextLineFontSize>9.25</systemTextLineFontSize>
<systemTextLineFontSpatiumDependent>1</systemTextLineFontSpatiumDependent>
<systemTextLineFontStyle>0</systemTextLineFontStyle>
<systemTextLineColor r="0" g="0" b="0" a="255"/>
<systemTextLineTextAlign>left,center</systemTextLineTextAlign>
<systemTextLineSystemFlag>1</systemTextLineSystemFlag>
<glissandoFontFace>Times New Roman</glissandoFontFace>
<glissandoFontSize>7</glissandoFontSize>
<glissandoLineSpacing>1</glissandoLineSpacing>
<glissandoFontSpatiumDependent>1</glissandoFontSpatiumDependent>
<glissandoFontStyle>2</glissandoFontStyle>
<glissandoColor r="0" g="0" b="0" a="255"/>
<glissandoAlign>left,top</glissandoAlign>
<glissandoOffset x="0" y="0"/>
<glissandoFrameType>0</glissandoFrameType>
<glissandoFramePadding>0.2</glissandoFramePadding>
<glissandoFrameWidth>0.1</glissandoFrameWidth>
<glissandoFrameRound>0</glissandoFrameRound>
<glissandoFrameFgColor r="0" g="0" b="0" a="255"/>
<glissandoFrameBgColor r="255" g="255" b="255" a="0"/>
<glissandoLineWidth>0.075</glissandoLineWidth>
<glissandoText></glissandoText>
<bendFontFace>Times New Roman</bendFontFace>
<bendFontSize>8</bendFontSize>
<bendLineSpacing>1</bendLineSpacing>
<bendFontSpatiumDependent>1</bendFontSpatiumDependent>
<bendFontStyle>0</bendFontStyle>
<bendColor r="0" g="0" b="0" a="255"/>
<bendAlign>left,baseline</bendAlign>
<bendOffset x="0" y="0"/>
<bendFrameType>0</bendFrameType>
<bendFramePadding>0.2</bendFramePadding>
<bendFrameWidth>0.1</bendFrameWidth>
<bendFrameRound>0</bendFrameRound>
<bendFrameFgColor r="0" g="0" b="0" a="255"/>
<bendFrameBgColor r="255" g="255" b="255" a="0"/>
<bendLineWidth>0.075</bendLineWidth>
<bendArrowWidth>0.5</bendArrowWidth>
<headerFontFace>Times New Roman</headerFontFace>
<headerFontSize>12</headerFontSize>
<headerLineSpacing>1</headerLineSpacing>
<headerFontSpatiumDependent>0</headerFontSpatiumDependent>
<headerFontStyle>0</headerFontStyle>
<headerColor r="0" g="0" b="0" a="255"/>
<headerAlign>center,center</headerAlign>
<headerOffset x="0" y="0"/>
<headerFrameType>0</headerFrameType>
<headerFramePadding>0.2</headerFramePadding>
<headerFrameWidth>0.1</headerFrameWidth>
<headerFrameRound>0</headerFrameRound>
<headerFrameFgColor r="0" g="0" b="0" a="255"/>
<headerFrameBgColor r="255" g="255" b="255" a="0"/>
<footerFontFace>Times New Roman</footerFontFace>
<footerFontSize>10</footerFontSize>
<footerLineSpacing>1</footerLineSpacing>
<footerFontSpatiumDependent>0</footerFontSpatiumDependent>
<footerFontStyle>0</footerFontStyle>
<footerColor r="0" g="0" b="0" a="255"/>
<footerAlign>center,center</footerAlign>
<footerOffset x="0" y="0"/>
<footerFrameType>0</footerFrameType>
<footerFramePadding>0.2</footerFramePadding>
<footerFrameWidth>0.1</footerFrameWidth>
<footerFrameRound>0</footerFrameRound>
<footerFrameFgColor r="0" g="0" b="0" a="255"/>
<footerFrameBgColor r="255" g="255" b="255" a="0"/>
<instrumentChangeFontFace>Times New Roman</instrumentChangeFontFace>
<instrumentChangeFontSize>9.25</instrumentChangeFontSize>
<instrumentChangeLineSpacing>1</instrumentChangeLineSpacing>
<instrumentChangeFontSpatiumDependent>1</instrumentChangeFontSpatiumDependent>
<instrumentChangeFontStyle>1</instrumentChangeFontStyle>
<instrumentChangeColor r="0" g="0" b="0" a="255"/>
<instrumentChangeAlign>left,baseline</instrumentChangeAlign>
<instrumentChangeOffset x="0" y="0"/>
<instrumentChangePlacement>0</instrumentChangePlacement>
<instrumentChangePosAbove x="0" y="-3"/>
<instrumentChangePosBelow x="0" y="3.5"/>
<instrumentChangeMinDistance>0.5</instrumentChangeMinDistance>
<instrumentChangeFrameType>0</instrumentChangeFrameType>
<instrumentChangeFramePadding>0.2</instrumentChangeFramePadding>
<instrumentChangeFrameWidth>0.1</instrumentChangeFrameWidth>
<instrumentChangeFrameRound>0</instrumentChangeFrameRound>
<instrumentChangeFrameFgColor r="0" g="0" b="0" a="255"/>