Added missing text and set 127 upper limit on reverb/volume etc. info

This commit is contained in:
John Pirie 2014-08-06 14:37:01 +01:00
parent f6ea131b93
commit 005d4f032d
80 changed files with 5059 additions and 324 deletions

View file

@ -647,6 +647,12 @@
"timeSigParensRightSmall": {
"codepoint": "U+E0A3"
},
"timeSigParensLeft": {
"codepoint": "U+E094"
},
"timeSigParensRight": {
"codepoint": "U+E095"
},
"timeSigPlusSmall": {
"codepoint": "U+E09D"
},

Binary file not shown.

View file

@ -16,7 +16,7 @@ OS2Version: 3
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1403170689
ModificationTime: 1407053627
ModificationTime: 1407343636
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
@ -59,7 +59,7 @@ NameList: Adobe Glyph List
DisplaySize: -48
AntiAlias: 1
FitToEm: 1
WinInfo: 60075 15 12
WinInfo: 57465 15 12
BeginPrivate: 7
BlueValues 21 [0 0 256 257 478 478]
OtherBlues 11 [-141 -141]
@ -69,7 +69,7 @@ StdVW 4 [38]
StemSnapH 26 [24 30 34 40 44 55 80 102]
StemSnapV 20 [32 38 44 50 59 100]
EndPrivate
BeginChars: 65539 276
BeginChars: 65539 278
StartChar: .notdef
Encoding: 65536 -1 0
@ -12655,5 +12655,53 @@ SplineSet
-22.5 203.5 -28.5 200.5 -34.5 200.5 c 5
EndSplineSet
EndChar
StartChar: uniE094
Encoding: 57492 57492 276
Width: 138
VWidth: 1000
Flags: HW
LayerCount: 2
Fore
SplineSet
183 -464 m 2
183 -491 l 2
183 -493 182 -497 181 -497 c 0
180 -497 179 -497 178 -496 c 0
53 -374 -1 -199 -1 2 c 0
-1 205 56 379 178 499 c 1
178 499 178 500 179 500 c 0
181 500 183 497 183 492 c 2
183 471 l 1
183 471 183 460 180 455 c 0
105 356 77 223 77 2 c 0
77 -219 107 -350 179 -452 c 0
181 -454 183 -459 183 -464 c 2
EndSplineSet
EndChar
StartChar: uniE095
Encoding: 57493 57493 277
Width: 127
VWidth: 1000
Flags: HW
LayerCount: 2
Fore
SplineSet
-58 -491 m 2
-58 -464 l 2
-58 -459 -56 -454 -54 -452 c 0
18 -350 48 -219 48 2 c 0
48 223 20 356 -55 455 c 0
-58 460 -58 471 -58 471 c 1
-58 492 l 2
-58 497 -56 500 -54 500 c 0
-53 500 -53 499 -53 499 c 1
69 379 126 205 126 2 c 0
126 -199 72 -374 -53 -496 c 0
-54 -497 -55 -497 -56 -497 c 0
-57 -497 -58 -493 -58 -491 c 2
EndSplineSet
EndChar
EndChars
EndSplineFont

Binary file not shown.

View file

@ -448,7 +448,7 @@ void GuitarPro4::readInfo()
composer = readDelphiString();
QString copyright = readDelphiString();
if (!copyright.isEmpty())
score->setMetaTag("copyright", QString("Copyright %1\nAll Rights Reserved - International Copyright Secured").arg(copyright));
score->setMetaTag("copyright", QString("%1").arg(copyright));
transcriber = readDelphiString();
instructions = readDelphiString();

View file

@ -66,7 +66,7 @@ void GuitarPro5::readInfo()
readDelphiString();
QString copyright = readDelphiString();
if (!copyright.isEmpty())
score->setMetaTag("copyright", QString("Copyright %1\nAll Rights Reserved - International Copyright Secured").arg(copyright));
score->setMetaTag("copyright", QString("%1").arg(copyright));
transcriber = readDelphiString();
instructions = readDelphiString();

View file

@ -258,6 +258,8 @@ void GuitarPro6::readScore(QDomNode* scoreNode)
QString nodeName = currentNode.nodeName();
if (!nodeName.compare("Title"))
title = currentNode.toElement().text();
if (!nodeName.compare("Copyright"))
score->setMetaTag("copyright", currentNode.toElement().text());
else if (!nodeName.compare("Subtitle"))
subtitle = currentNode.toElement().text();
else if (!nodeName.compare("Artist"))

View file

@ -607,9 +607,18 @@ void GuitarPro::readChannels()
channelDefaults[i].pan = readUChar() * 8 - 1;
channelDefaults[i].chorus = readUChar() * 8 - 1;
channelDefaults[i].reverb = readUChar() * 8 - 1;
//qDebug("default: %d", channelDefaults[i].reverb);
channelDefaults[i].phase = readUChar() * 8 - 1;
channelDefaults[i].tremolo = readUChar() * 8 - 1;
// defaults of 255, or any value above 127, are set to 0. */
if (channelDefaults[i].patch > 127) { channelDefaults[i].patch = 0; }
if (channelDefaults[i].volume > 127) { channelDefaults[i].volume = 0; }
if (channelDefaults[i].pan > 127) { channelDefaults[i].pan = 0; }
if (channelDefaults[i].chorus > 127) { channelDefaults[i].chorus = 0; }
if (channelDefaults[i].reverb > 127) { channelDefaults[i].reverb = 0; }
if (channelDefaults[i].phase > 127) { channelDefaults[i].phase = 0; }
if (channelDefaults[i].tremolo > 127) { channelDefaults[i].tremolo = 0; }
// skip over blank information included for backwards compatibility with 3.0
skip(2);
}
@ -1084,7 +1093,7 @@ void GuitarPro2::read(QFile* fp)
composer = readDelphiString();
QString copyright = readDelphiString();
if (!copyright.isEmpty())
score->setMetaTag("copyright", QString("Copyright %1\nAll Rights Reserved - International Copyright Secured").arg(copyright));
score->setMetaTag("copyright", QString("%1").arg(copyright));
transcriber = readDelphiString();
instructions = readDelphiString();
@ -1625,7 +1634,7 @@ void GuitarPro3::read(QFile* fp)
composer = readDelphiString();
QString copyright = readDelphiString();
if (!copyright.isEmpty())
score->setMetaTag("copyright", QString("Copyright %1\nAll Rights Reserved - International Copyright Secured").arg(copyright));
score->setMetaTag("copyright", QString("%1").arg(copyright));
transcriber = readDelphiString();
instructions = readDelphiString();

View file

@ -503,8 +503,6 @@
<program value="0"/>
<controller ctrl="7" value="71"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -1792,8 +1790,6 @@
<program value="0"/>
<controller ctrl="7" value="71"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

Binary file not shown.

View file

@ -0,0 +1,489 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>S-Gt</trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>1</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>2</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Acoustic Guitar</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>1</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>2</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>1</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>2</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>S-Gt</name>
</Score>
</Score>
</museScore>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -226,8 +224,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -1027,8 +1025,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="29"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -327,8 +325,6 @@
<program value="29"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="29"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -327,8 +325,6 @@
<program value="29"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -255,8 +253,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

BIN
mtest/guitarpro/brush.gp5 Normal file

Binary file not shown.

View file

@ -0,0 +1,429 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>Track 1</trackName>
<Instrument>
<longName pos="0">Track 1</longName>
<trackName></trackName>
<StringData>
<frets>32</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Channel>
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Tempo>
<tempo>2</tempo>
<lid>4</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>5</lid>
<durationType>whole</durationType>
<Note>
<lid>7</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>6</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>8</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>9</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<Chord>
<lid>11</lid>
<durationType>whole</durationType>
<Note>
<lid>12</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>13</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>14</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>15</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Track 1</longName>
<trackName></trackName>
<StringData>
<frets>32</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Channel>
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Track 1</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Tempo>
<tempo>2</tempo>
<lid>4</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>5</lid>
<durationType>whole</durationType>
<Note>
<lid>7</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>6</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>8</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>9</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<Chord>
<lid>11</lid>
<durationType>whole</durationType>
<Note>
<lid>12</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>13</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>14</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>15</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>5</lid>
<durationType>whole</durationType>
<Note>
<lid>7</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>6</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>8</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>9</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<Chord>
<lid>11</lid>
<durationType>whole</durationType>
<Note>
<lid>12</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>13</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>14</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>15</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>Track 1</name>
</Score>
</Score>
</museScore>

BIN
mtest/guitarpro/brush.gpx Normal file

Binary file not shown.

View file

@ -0,0 +1,489 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>S-Gt</trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Acoustic Guitar</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>6</lid>
<durationType>whole</durationType>
<Note>
<lid>8</lid>
<pitch>50</pitch>
<tpc>16</tpc>
<fret>0</fret>
<string>3</string>
</Note>
<Note>
<lid>7</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>8</fret>
<string>4</string>
</Note>
<Note>
<lid>9</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>10</lid>
<subtype>4</subtype>
</Arpeggio>
</Chord>
</Measure>
<Measure number="2">
<KeySig>
<lid>12</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>13</lid>
<durationType>whole</durationType>
<Note>
<lid>14</lid>
<pitch>48</pitch>
<tpc>14</tpc>
<fret>3</fret>
<string>4</string>
</Note>
<Note>
<lid>15</lid>
<pitch>53</pitch>
<tpc>13</tpc>
<fret>3</fret>
<string>3</string>
</Note>
<Note>
<lid>16</lid>
<pitch>57</pitch>
<tpc>17</tpc>
<fret>2</fret>
<string>2</string>
</Note>
<Arpeggio>
<lid>17</lid>
<subtype>5</subtype>
</Arpeggio>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>S-Gt</name>
</Score>
</Score>
</museScore>

View file

@ -29,8 +29,7 @@
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright">Copyright GP3 copyright information text
All Rights Reserved - International Copyright Secured</metaTag>
<metaTag name="copyright">GP3 copyright information text</metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>

View file

@ -29,8 +29,7 @@
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright">Copyright Some copyright text for a GP4 file
All Rights Reserved - International Copyright Secured</metaTag>
<metaTag name="copyright">Some copyright text for a GP4 file</metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
@ -69,8 +68,6 @@ All Rights Reserved - International Copyright Secured</metaTag>
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -216,8 +213,6 @@ All Rights Reserved - International Copyright Secured</metaTag>
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -29,8 +29,7 @@
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright">Copyright Guitar Pro 5 copyright text
All Rights Reserved - International Copyright Secured</metaTag>
<metaTag name="copyright">Guitar Pro 5 copyright text</metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
@ -69,8 +68,6 @@ All Rights Reserved - International Copyright Secured</metaTag>
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -216,8 +213,6 @@ All Rights Reserved - International Copyright Secured</metaTag>
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -132,11 +132,6 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="2">
<subtype>0</subtype>
<veloChange>10</veloChange>
<lid>21</lid>
</HairPin>
<Chord>
<lid>8</lid>
<durationType>half</durationType>
@ -148,7 +143,6 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="2"/>
<Chord>
<lid>10</lid>
<durationType>quarter</durationType>
@ -160,10 +154,6 @@
<string>4</string>
</Note>
</Chord>
<tick>1440</tick>
<endSpanner id="2"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
</Measure>
<Measure number="2">
<KeySig>
@ -181,7 +171,7 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="3">
<HairPin id="2">
<subtype>1</subtype>
<veloChange>10</veloChange>
<lid>22</lid>
@ -197,7 +187,7 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="3"/>
<endSpanner id="2"/>
<Chord>
<lid>18</lid>
<durationType>quarter</durationType>
@ -214,9 +204,9 @@
<span>1</span>
</BarLine>
<tick>3360</tick>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
</Measure>
</Staff>
<Score>
@ -372,11 +362,6 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="4">
<subtype>0</subtype>
<veloChange>10</veloChange>
<lid>21</lid>
</HairPin>
<Chord>
<lid>8</lid>
<durationType>half</durationType>
@ -388,7 +373,6 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="4"/>
<Chord>
<lid>10</lid>
<durationType>quarter</durationType>
@ -400,11 +384,6 @@
<string>4</string>
</Note>
</Chord>
<tick>1440</tick>
<endSpanner id="4"/>
<endSpanner id="4"/>
<endSpanner id="4"/>
<endSpanner id="5"/>
</Measure>
<Measure number="2">
<KeySig>
@ -422,7 +401,7 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="6">
<HairPin id="3">
<subtype>1</subtype>
<veloChange>10</veloChange>
<lid>22</lid>
@ -438,7 +417,7 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="6"/>
<endSpanner id="3"/>
<Chord>
<lid>18</lid>
<durationType>quarter</durationType>
@ -455,10 +434,10 @@
<span>1</span>
</BarLine>
<tick>3360</tick>
<endSpanner id="6"/>
<endSpanner id="6"/>
<endSpanner id="6"/>
<endSpanner id="7"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="4"/>
</Measure>
</Staff>
<Staff id="2">
@ -482,11 +461,6 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="5">
<subtype>0</subtype>
<veloChange>10</veloChange>
<lid>21</lid>
</HairPin>
<Chord>
<lid>8</lid>
<durationType>half</durationType>
@ -498,7 +472,6 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="4"/>
<Chord>
<lid>10</lid>
<durationType>quarter</durationType>
@ -510,10 +483,6 @@
<string>4</string>
</Note>
</Chord>
<tick>1440</tick>
<endSpanner id="4"/>
<endSpanner id="4"/>
<endSpanner id="4"/>
</Measure>
<Measure number="2">
<KeySig>
@ -531,7 +500,7 @@
<string>2</string>
</Note>
</Chord>
<HairPin id="7">
<HairPin id="4">
<subtype>1</subtype>
<veloChange>10</veloChange>
<lid>22</lid>
@ -547,7 +516,7 @@
<string>3</string>
</Note>
</Chord>
<endSpanner id="6"/>
<endSpanner id="3"/>
<Chord>
<lid>18</lid>
<durationType>quarter</durationType>
@ -564,9 +533,9 @@
<span>1</span>
</BarLine>
<tick>3360</tick>
<endSpanner id="6"/>
<endSpanner id="6"/>
<endSpanner id="6"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
</Measure>
</Staff>
<name>S-Gt</name>

File diff suppressed because it is too large Load diff

View file

@ -68,8 +68,6 @@
<program value="12"/>
<controller ctrl="7" value="95"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -273,8 +271,6 @@
<program value="12"/>
<controller ctrl="7" value="95"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -320,8 +318,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -222,8 +220,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -243,8 +241,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -369,8 +367,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -369,8 +367,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -71,8 +71,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -1135,8 +1133,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -71,8 +71,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -1131,8 +1129,6 @@
<program value="25"/>
<controller ctrl="7" value="79"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -222,8 +220,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -82,8 +82,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -2001,8 +1999,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -82,8 +82,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -2001,8 +1999,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -240,8 +238,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -261,8 +259,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -249,8 +247,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -249,8 +247,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -248,8 +246,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -248,8 +246,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -247,8 +245,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -247,8 +245,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -220,8 +218,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -218,8 +216,6 @@
<program value="27"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -229,8 +227,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -234,8 +232,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -255,8 +253,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -259,8 +265,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -312,6 +316,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -328,6 +334,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -344,6 +352,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -360,6 +370,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -388,6 +400,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -404,6 +418,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -420,6 +436,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -436,6 +454,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -280,8 +286,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -333,6 +337,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -349,6 +355,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -365,6 +373,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -381,6 +391,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -430,6 +442,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -446,6 +460,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -462,6 +478,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -478,6 +496,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -134,6 +134,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -150,6 +152,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -166,6 +170,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -182,6 +188,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -346,6 +354,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -362,6 +372,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -378,6 +390,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -394,6 +408,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -422,6 +438,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -438,6 +456,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -454,6 +474,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -470,6 +492,8 @@
<ChordLine>
<subtype>4</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -259,8 +265,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -312,6 +316,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -328,6 +334,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -344,6 +352,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -360,6 +370,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -388,6 +400,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -404,6 +418,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -420,6 +436,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -436,6 +454,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -280,8 +286,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -333,6 +337,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -349,6 +355,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -365,6 +373,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -381,6 +391,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -430,6 +442,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -446,6 +460,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -462,6 +478,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -478,6 +496,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -134,6 +134,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -150,6 +152,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -166,6 +170,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -182,6 +188,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -346,6 +354,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -362,6 +372,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -378,6 +390,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -394,6 +408,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -422,6 +438,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -438,6 +456,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -454,6 +474,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -470,6 +492,8 @@
<ChordLine>
<subtype>3</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -259,8 +265,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -312,6 +316,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -328,6 +334,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -344,6 +352,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -360,6 +370,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -388,6 +400,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -404,6 +418,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -420,6 +436,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -436,6 +454,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -280,8 +286,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -333,6 +337,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -349,6 +355,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -365,6 +373,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -381,6 +391,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -430,6 +442,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -446,6 +460,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -462,6 +478,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -478,6 +496,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -134,6 +134,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -150,6 +152,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -166,6 +170,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -182,6 +188,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -346,6 +354,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -362,6 +372,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -378,6 +390,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -394,6 +408,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -422,6 +438,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -438,6 +456,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -454,6 +474,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -470,6 +492,8 @@
<ChordLine>
<subtype>1</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -267,8 +273,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -320,6 +324,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -336,6 +342,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -352,6 +360,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -368,6 +378,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -404,6 +416,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -420,6 +434,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -436,6 +452,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -452,6 +470,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -117,6 +115,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -133,6 +133,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -149,6 +151,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -165,6 +169,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -288,8 +294,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -341,6 +345,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -357,6 +363,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -373,6 +381,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -389,6 +399,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -446,6 +458,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -462,6 +476,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -478,6 +494,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -494,6 +512,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -134,6 +134,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -150,6 +152,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -166,6 +170,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -182,6 +188,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -356,6 +364,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -372,6 +382,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -388,6 +400,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -404,6 +418,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>
@ -442,6 +458,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>8</lid>
</ChordLine>
</Chord>
@ -458,6 +476,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>11</lid>
</ChordLine>
</Chord>
@ -474,6 +494,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>14</lid>
</ChordLine>
</Chord>
@ -490,6 +512,8 @@
<ChordLine>
<subtype>2</subtype>
<straight>1</straight>
<lengthX>10</lengthX>
<lengthY>10</lengthY>
<lid>17</lid>
</ChordLine>
</Chord>

View file

@ -66,8 +66,6 @@
<program value="36"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="79"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -430,8 +428,6 @@
<program value="36"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="79"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -231,8 +229,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

BIN
mtest/guitarpro/slur.gpx Normal file

Binary file not shown.

View file

@ -0,0 +1,457 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>S-Gt</trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Slur id="2">
<lid>16</lid>
<track>0</track>
</Slur>
<Chord>
<lid>6</lid>
<durationType>quarter</durationType>
<Note>
<lid>7</lid>
<pitch>62</pitch>
<tpc>16</tpc>
<fret>3</fret>
<string>1</string>
</Note>
<Slur type="start" id="2"/>
</Chord>
<Chord>
<lid>8</lid>
<durationType>quarter</durationType>
<Note>
<lid>9</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Dynamic>
<subtype>mf</subtype>
<velocity>80</velocity>
<lid>10</lid>
</Dynamic>
<Chord>
<lid>11</lid>
<durationType>quarter</durationType>
<Note>
<lid>12</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>1</fret>
<string>1</string>
</Note>
<Slur type="stop" id="2"/>
</Chord>
<Chord>
<lid>13</lid>
<durationType>quarter</durationType>
<Note>
<lid>14</lid>
<pitch>55</pitch>
<tpc>15</tpc>
<fret>0</fret>
<string>2</string>
</Note>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Acoustic Guitar</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>f</subtype>
<velocity>96</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Slur id="3">
<lid>16</lid>
<track>0</track>
</Slur>
<Chord>
<lid>6</lid>
<durationType>quarter</durationType>
<Note>
<lid>7</lid>
<pitch>62</pitch>
<tpc>16</tpc>
<fret>3</fret>
<string>1</string>
</Note>
<Slur type="start" id="3"/>
</Chord>
<Chord>
<lid>8</lid>
<durationType>quarter</durationType>
<Note>
<lid>9</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Dynamic>
<subtype>mf</subtype>
<velocity>80</velocity>
<lid>10</lid>
</Dynamic>
<Chord>
<lid>11</lid>
<durationType>quarter</durationType>
<Note>
<lid>12</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>1</fret>
<string>1</string>
</Note>
<Slur type="stop" id="3"/>
</Chord>
<Chord>
<lid>13</lid>
<durationType>quarter</durationType>
<Note>
<lid>14</lid>
<pitch>55</pitch>
<tpc>15</tpc>
<fret>0</fret>
<string>2</string>
</Note>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Slur id="4">
<lid>16</lid>
<track>4</track>
</Slur>
<Chord>
<lid>6</lid>
<durationType>quarter</durationType>
<Note>
<lid>7</lid>
<pitch>62</pitch>
<tpc>16</tpc>
<fret>3</fret>
<string>1</string>
</Note>
<Slur type="start" id="4"/>
</Chord>
<Chord>
<lid>8</lid>
<durationType>quarter</durationType>
<Note>
<lid>9</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Chord>
<lid>11</lid>
<durationType>quarter</durationType>
<Note>
<lid>12</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>1</fret>
<string>1</string>
</Note>
<Slur type="stop" id="4"/>
</Chord>
<Chord>
<lid>13</lid>
<durationType>quarter</durationType>
<Note>
<lid>14</lid>
<pitch>55</pitch>
<tpc>15</tpc>
<fret>0</fret>
<string>2</string>
</Note>
</Chord>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>S-Gt</name>
</Score>
</Score>
</museScore>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -259,8 +257,6 @@
<program value="25"/>
<controller ctrl="7" value="119"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -340,8 +338,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -340,8 +338,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="29"/>
<controller ctrl="7" value="63"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -267,8 +265,6 @@
<program value="29"/>
<controller ctrl="7" value="63"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -233,8 +231,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -68,8 +68,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -222,8 +220,6 @@
<program value="25"/>
<controller ctrl="7" value="127"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -131,6 +131,7 @@ private slots:
void gpxVibrato() { gpReadTest("vibrato", "gpx"); }
void gpxVolumeSwell() { gpReadTest("volume-swell", "gpx"); }
void gpxTremoloBar() { gpReadTest("tremolo-bar", "gpx"); }
void gpxCopyright() { gpReadTest("copyright", "gpx"); }
};
//---------------------------------------------------------

View file

@ -68,8 +68,6 @@
<program value="29"/>
<controller ctrl="7" value="63"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -267,8 +265,6 @@
<program value="29"/>
<controller ctrl="7" value="63"/>
<controller ctrl="10" value="31"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

BIN
mtest/guitarpro/vibrato.gpx Normal file

Binary file not shown.

View file

@ -0,0 +1,675 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>E-Gt</trackName>
<Instrument>
<longName pos="0">Electric Guitar</longName>
<shortName pos="0">El. Guit.</shortName>
<trackName>Electric Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>86</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>86</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="27"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>mf</subtype>
<velocity>80</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>7</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargefaster</subtype>
<lid>6</lid>
</Articulation>
<Note>
<lid>8</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>9</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>10</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="2">
<KeySig>
<lid>13</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>15</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargeslowest</subtype>
<lid>14</lid>
</Articulation>
<Note>
<lid>16</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>17</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>18</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>19</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="3">
<KeySig>
<lid>21</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>23</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtooth</subtype>
<lid>22</lid>
</Articulation>
<Note>
<lid>24</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>25</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>26</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>27</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="4">
<KeySig>
<lid>29</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>31</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtoothwide</subtype>
<lid>30</lid>
</Articulation>
<Note>
<lid>32</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>33</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>34</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>35</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Electric Guitar</longName>
<shortName pos="0">El. Guit.</shortName>
<trackName>Electric Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>86</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>86</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="27"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Electric Guitar</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Dynamic>
<subtype>mf</subtype>
<velocity>80</velocity>
<lid>4</lid>
</Dynamic>
<Tempo>
<tempo>2</tempo>
<lid>5</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Chord>
<lid>7</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargefaster</subtype>
<lid>6</lid>
</Articulation>
<Note>
<lid>8</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>9</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>10</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="2">
<KeySig>
<lid>13</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>15</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargeslowest</subtype>
<lid>14</lid>
</Articulation>
<Note>
<lid>16</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>17</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>18</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>19</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="3">
<KeySig>
<lid>21</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>23</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtooth</subtype>
<lid>22</lid>
</Articulation>
<Note>
<lid>24</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>25</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>26</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>27</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="4">
<KeySig>
<lid>29</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>31</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtoothwide</subtype>
<lid>30</lid>
</Articulation>
<Note>
<lid>32</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>33</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>34</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>35</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>7</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargefaster</subtype>
<lid>6</lid>
</Articulation>
<Note>
<lid>8</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>9</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>10</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="2">
<KeySig>
<lid>13</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>15</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglevibratolargeslowest</subtype>
<lid>14</lid>
</Articulation>
<Note>
<lid>16</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>17</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>18</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>19</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="3">
<KeySig>
<lid>21</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>23</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtooth</subtype>
<lid>22</lid>
</Articulation>
<Note>
<lid>24</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>25</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>26</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>27</lid>
<durationType>quarter</durationType>
</Rest>
</Measure>
<Measure number="4">
<KeySig>
<lid>29</lid>
<accidental>0</accidental>
</KeySig>
<Chord>
<lid>31</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>wigglesawtoothwide</subtype>
<lid>30</lid>
</Articulation>
<Note>
<lid>32</lid>
<pitch>60</pitch>
<tpc>14</tpc>
<fret>5</fret>
<string>2</string>
</Note>
</Chord>
<Rest>
<lid>33</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>34</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>35</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>E-Gt</name>
</Score>
</Score>
</museScore>

View file

@ -70,8 +70,6 @@
<program value="25"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -765,8 +763,6 @@
<program value="25"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -70,8 +70,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>
@ -1564,8 +1562,6 @@
<program value="24"/>
<controller ctrl="7" value="103"/>
<controller ctrl="10" value="63"/>
<controller ctrl="93" value="255"/>
<controller ctrl="91" value="255"/>
</Channel>
</Instrument>
</Part>

View file

@ -153,14 +153,6 @@
<lid>11</lid>
<accidental>0</accidental>
</KeySig>
<Volta id="2">
<lid>27</lid>
<beginText>
<style>Volta</style>
<text>1,2</text>
</beginText>
<endings></endings>
</Volta>
<Chord>
<lid>12</lid>
<durationType>whole</durationType>
@ -192,15 +184,6 @@
<lid>17</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="2"/>
<Volta id="3">
<lid>28</lid>
<beginText>
<style>Volta</style>
<text>3</text>
</beginText>
<endings></endings>
</Volta>
<Chord>
<lid>18</lid>
<durationType>whole</durationType>
@ -226,17 +209,13 @@
<string>2</string>
</Note>
</Chord>
<tick>3840</tick>
<endSpanner id="2"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
</Measure>
<Measure number="4">
<KeySig>
<lid>23</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="3"/>
<endSpanner id="2"/>
<Chord>
<lid>24</lid>
<durationType>whole</durationType>
@ -253,9 +232,9 @@
<span>1</span>
</BarLine>
<tick>5760</tick>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
<endSpanner id="2"/>
</Measure>
</Staff>
<Score>
@ -432,14 +411,6 @@
<lid>11</lid>
<accidental>0</accidental>
</KeySig>
<Volta id="4">
<lid>27</lid>
<beginText>
<style>Volta</style>
<text>1,2</text>
</beginText>
<endings></endings>
</Volta>
<Chord>
<lid>12</lid>
<durationType>whole</durationType>
@ -471,15 +442,6 @@
<lid>17</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="4"/>
<Volta id="5">
<lid>28</lid>
<beginText>
<style>Volta</style>
<text>3</text>
</beginText>
<endings></endings>
</Volta>
<Chord>
<lid>18</lid>
<durationType>whole</durationType>
@ -505,17 +467,13 @@
<string>2</string>
</Note>
</Chord>
<tick>3840</tick>
<endSpanner id="4"/>
<endSpanner id="4"/>
<endSpanner id="4"/>
</Measure>
<Measure number="4">
<KeySig>
<lid>23</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="5"/>
<endSpanner id="3"/>
<Chord>
<lid>24</lid>
<durationType>whole</durationType>
@ -532,9 +490,9 @@
<span>1</span>
</BarLine>
<tick>5760</tick>
<endSpanner id="5"/>
<endSpanner id="5"/>
<endSpanner id="5"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
</Measure>
</Staff>
<Staff id="2">
@ -609,7 +567,6 @@
<lid>17</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="4"/>
<Chord>
<lid>18</lid>
<durationType>whole</durationType>
@ -635,17 +592,13 @@
<string>2</string>
</Note>
</Chord>
<tick>3840</tick>
<endSpanner id="4"/>
<endSpanner id="4"/>
<endSpanner id="4"/>
</Measure>
<Measure number="4">
<KeySig>
<lid>23</lid>
<accidental>0</accidental>
</KeySig>
<endSpanner id="5"/>
<endSpanner id="3"/>
<Chord>
<lid>24</lid>
<durationType>whole</durationType>
@ -662,9 +615,9 @@
<span>1</span>
</BarLine>
<tick>5760</tick>
<endSpanner id="5"/>
<endSpanner id="5"/>
<endSpanner id="5"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
<endSpanner id="3"/>
</Measure>
</Staff>
<name>S-Gt</name>

Binary file not shown.

View file

@ -0,0 +1,378 @@
<?xml version="1.0" encoding="UTF-8"?>
<museScore version="1.24">
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<metaTag name="arranger"></metaTag>
<metaTag name="composer"></metaTag>
<metaTag name="copyright"></metaTag>
<metaTag name="lyricist"></metaTag>
<metaTag name="movementNumber"></metaTag>
<metaTag name="movementTitle"></metaTag>
<metaTag name="poet"></metaTag>
<metaTag name="source"></metaTag>
<metaTag name="translator"></metaTag>
<metaTag name="workNumber"></metaTag>
<metaTag name="workTitle"></metaTag>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<StaffType group="pitched">
</StaffType>
</Staff>
<trackName>S-Gt</trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Tempo>
<tempo>2</tempo>
<lid>4</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Rest>
<lid>5</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>6</lid>
<durationType>quarter</durationType>
</Rest>
<Dynamic>
<subtype>mp</subtype>
<velocity>64</velocity>
<lid>7</lid>
</Dynamic>
<Chord>
<lid>9</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>volumeswell</subtype>
<lid>8</lid>
</Articulation>
<Note>
<lid>10</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Score>
<LayerTag id="0" tag="default"></LayerTag>
<currentLayer>0</currentLayer>
<Division>480</Division>
<Style>
<createMultiMeasureRests>1</createMultiMeasureRests>
<page-layout>
<page-height>1683.78</page-height>
<page-width>1190.55</page-width>
<page-margins type="even">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
<page-margins type="odd">
<left-margin>56.6929</left-margin>
<right-margin>56.6929</right-margin>
<top-margin>56.6929</top-margin>
<bottom-margin>113.386</bottom-margin>
</page-margins>
</page-layout>
<Spatium>1.76389</Spatium>
</Style>
<showInvisible>1</showInvisible>
<showUnprintable>1</showUnprintable>
<showFrames>1</showFrames>
<showMargins>0</showMargins>
<PageList>
<Page>
<System>
</System>
<System>
</System>
</Page>
</PageList>
<Part>
<Staff id="1">
<linkedTo>1</linkedTo>
<StaffType group="pitched">
</StaffType>
<bracket type="0" span="2"/>
</Staff>
<Staff id="2">
<linkedTo>1</linkedTo>
<StaffType group="tablature">
<name>Tab. 6-str common</name>
<lines>6</lines>
<lineDistance>1.5</lineDistance>
<timesig>0</timesig>
<durations>0</durations>
<durationFontName>MuseScore Tab Modern</durationFontName>
<durationFontSize>15</durationFontSize>
<durationFontY>0</durationFontY>
<fretFontName>MuseScore Tab Serif</fretFontName>
<fretFontSize>9</fretFontSize>
<fretFontY>0</fretFontY>
<linesThrough>0</linesThrough>
<minimStyle>1</minimStyle>
<onLines>1</onLines>
<showRests>0</showRests>
<stemsDown>1</stemsDown>
<stemsThrough>0</stemsThrough>
<upsideDown>0</upsideDown>
<useNumbers>1</useNumbers>
</StaffType>
<bracket type="-1" span="0"/>
</Staff>
<trackName></trackName>
<Instrument>
<longName pos="0">Acoustic Guitar</longName>
<shortName pos="0">Guit.</shortName>
<trackName>Acoustic Guitar</trackName>
<minPitchP>40</minPitchP>
<maxPitchP>83</maxPitchP>
<minPitchA>40</minPitchA>
<maxPitchA>83</maxPitchA>
<StringData>
<frets>21</frets>
<string>40</string>
<string>45</string>
<string>50</string>
<string>55</string>
<string>59</string>
<string>64</string>
</StringData>
<Articulation>
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="staccato">
<velocity>100</velocity>
<gateTime>50</gateTime>
</Articulation>
<Articulation name="tenuto">
<velocity>100</velocity>
<gateTime>100</gateTime>
</Articulation>
<Articulation name="sforzato">
<velocity>120</velocity>
<gateTime>100</gateTime>
</Articulation>
<Channel>
<program value="25"/>
</Channel>
</Instrument>
</Part>
<Staff id="1">
<VBox>
<height>10</height>
<lid>0</lid>
<Text>
<style>Instrument Name (Part)</style>
<text>Acoustic Guitar</text>
</Text>
</VBox>
<Measure number="1">
<Clef>
<concertClefType>G8vb</concertClefType>
<transposingClefType>G8vb</transposingClefType>
<lid>1</lid>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<TimeSig>
<lid>3</lid>
<sigN>4</sigN>
<sigD>4</sigD>
<showCourtesySig>1</showCourtesySig>
</TimeSig>
<Tempo>
<tempo>2</tempo>
<lid>4</lid>
<text><sym>noteQuarterUp</sym> = 120</text>
</Tempo>
<Rest>
<lid>5</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>6</lid>
<durationType>quarter</durationType>
</Rest>
<Dynamic>
<subtype>mp</subtype>
<velocity>64</velocity>
<lid>7</lid>
</Dynamic>
<Chord>
<lid>9</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>volumeswell</subtype>
<lid>8</lid>
</Articulation>
<Note>
<lid>10</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<Staff id="2">
<Measure number="1">
<Clef>
<concertClefType>TAB</concertClefType>
<transposingClefType>TAB</transposingClefType>
</Clef>
<KeySig>
<lid>2</lid>
<accidental>0</accidental>
</KeySig>
<Rest>
<lid>5</lid>
<durationType>quarter</durationType>
</Rest>
<Rest>
<lid>6</lid>
<durationType>quarter</durationType>
</Rest>
<Chord>
<lid>9</lid>
<durationType>quarter</durationType>
<Articulation>
<subtype>volumeswell</subtype>
<lid>8</lid>
</Articulation>
<Note>
<lid>10</lid>
<pitch>59</pitch>
<tpc>19</tpc>
<fret>0</fret>
<string>1</string>
</Note>
</Chord>
<Rest>
<lid>11</lid>
<durationType>quarter</durationType>
</Rest>
<BarLine>
<subtype>end</subtype>
<span>1</span>
</BarLine>
</Measure>
</Staff>
<name>S-Gt</name>
</Score>
</Score>
</museScore>