BrookeWestSample.musicxml 147 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
  3. <score-partwise version="3.1">
  4. <movement-title>West Point</movement-title>
  5. <identification>
  6. <creator type="composer">Jonatha Brooke</creator>
  7. <rights>© 1995 Dog Dream Music. All rights reserved.</rights>
  8. <encoding>
  9. <software>Finale v25 for Mac</software>
  10. <encoding-date>2017-12-12</encoding-date>
  11. <supports attribute="new-system" element="print" type="yes" value="yes"/>
  12. <supports attribute="new-page" element="print" type="yes" value="yes"/>
  13. <supports element="accidental" type="yes"/>
  14. <supports element="beam" type="yes"/>
  15. <supports element="stem" type="yes"/>
  16. </encoding>
  17. </identification>
  18. <defaults>
  19. <scaling>
  20. <millimeters>7.2319</millimeters>
  21. <tenths>40</tenths>
  22. </scaling>
  23. <page-layout>
  24. <page-height>1545</page-height>
  25. <page-width>1194</page-width>
  26. <page-margins type="both">
  27. <left-margin>140</left-margin>
  28. <right-margin>70</right-margin>
  29. <top-margin>70</top-margin>
  30. <bottom-margin>70</bottom-margin>
  31. </page-margins>
  32. </page-layout>
  33. <system-layout>
  34. <system-margins>
  35. <left-margin>0</left-margin>
  36. <right-margin>0</right-margin>
  37. </system-margins>
  38. <system-distance>181</system-distance>
  39. <top-system-distance>70</top-system-distance>
  40. </system-layout>
  41. <staff-layout>
  42. <staff-distance>81</staff-distance>
  43. </staff-layout>
  44. <appearance>
  45. <line-width type="stem">0.957</line-width>
  46. <line-width type="beam">5</line-width>
  47. <line-width type="staff">1.4583</line-width>
  48. <line-width type="light barline">1.4583</line-width>
  49. <line-width type="heavy barline">5</line-width>
  50. <line-width type="leger">1.875</line-width>
  51. <line-width type="ending">1.4583</line-width>
  52. <line-width type="wedge">0.9375</line-width>
  53. <line-width type="enclosure">1.4583</line-width>
  54. <line-width type="tuplet bracket">1.4583</line-width>
  55. <note-size type="grace">50</note-size>
  56. <note-size type="cue">50</note-size>
  57. <distance type="hyphen">60</distance>
  58. <distance type="beam">8</distance>
  59. </appearance>
  60. <music-font font-family="Jazz,handwritten" font-size="20.5"/>
  61. <word-font font-family="JazzText" font-size="10.25"/>
  62. <lyric-font font-family="JazzText" font-size="10.25"/>
  63. </defaults>
  64. <credit page="1">
  65. <credit-type>composer</credit-type>
  66. <credit-words default-x="1124" default-y="1393" font-size="12" font-weight="bold" halign="right" justify="center" valign="top" xml:space="preserve">Words and Music by
  67. Jonatha Brooke</credit-words>
  68. </credit>
  69. <credit page="1">
  70. <credit-type>rights</credit-type>
  71. <credit-words default-x="632" default-y="44" font-size="10" justify="center" valign="bottom">© 1995 Dog Dream Music. All rights reserved. Transcription by Ken Temple, Marian Russell, and Michael Good.</credit-words>
  72. </credit>
  73. <credit page="1">
  74. <credit-type>title</credit-type>
  75. <credit-words default-x="632" default-y="1458" font-size="24" font-weight="bold" justify="center" valign="top">West Point</credit-words>
  76. </credit>
  77. <part-list>
  78. <score-part id="P1">
  79. <part-name print-object="no">Voice</part-name>
  80. <score-instrument id="P1-I3">
  81. <instrument-name>Voice</instrument-name>
  82. <instrument-sound>voice.vocals</instrument-sound>
  83. <solo/>
  84. </score-instrument>
  85. <midi-instrument id="P1-I3">
  86. <midi-channel>1</midi-channel>
  87. <midi-program>55</midi-program>
  88. <volume>80</volume>
  89. <pan>0</pan>
  90. </midi-instrument>
  91. </score-part>
  92. <score-part id="P2">
  93. <part-name print-object="no">Guitar</part-name>
  94. <score-instrument id="P2-I2">
  95. <instrument-name>Acoustic Guitar (steel)</instrument-name>
  96. <instrument-sound>pluck.guitar.steel-string</instrument-sound>
  97. </score-instrument>
  98. <midi-instrument id="P2-I2">
  99. <midi-channel>2</midi-channel>
  100. <midi-program>26</midi-program>
  101. <volume>80</volume>
  102. <pan>0</pan>
  103. </midi-instrument>
  104. </score-part>
  105. </part-list>
  106. <!--=========================================================-->
  107. <part id="P1">
  108. <measure number="1">
  109. <print>
  110. <measure-numbering>none</measure-numbering>
  111. </print>
  112. <attributes>
  113. <divisions>4</divisions>
  114. <key>
  115. <fifths>6</fifths>
  116. <mode>major</mode>
  117. </key>
  118. <time symbol="common">
  119. <beats>4</beats>
  120. <beat-type>4</beat-type>
  121. </time>
  122. <clef>
  123. <sign>G</sign>
  124. <line>2</line>
  125. </clef>
  126. <staff-details print-object="no"/>
  127. </attributes>
  128. <sound tempo="84"/>
  129. <note>
  130. <rest measure="yes"/>
  131. <duration>16</duration>
  132. <voice>1</voice>
  133. </note>
  134. </measure>
  135. <!--=======================================================-->
  136. <measure number="2">
  137. <note>
  138. <rest measure="yes"/>
  139. <duration>16</duration>
  140. <voice>1</voice>
  141. </note>
  142. </measure>
  143. <!--=======================================================-->
  144. <measure number="3">
  145. <note>
  146. <rest measure="yes"/>
  147. <duration>16</duration>
  148. <voice>1</voice>
  149. </note>
  150. </measure>
  151. <!--=======================================================-->
  152. <measure number="4">
  153. <note>
  154. <rest measure="yes"/>
  155. <duration>16</duration>
  156. <voice>1</voice>
  157. </note>
  158. </measure>
  159. <!--=======================================================-->
  160. <measure number="5">
  161. <print new-system="yes"/>
  162. <note>
  163. <rest measure="yes"/>
  164. <duration>16</duration>
  165. <voice>1</voice>
  166. </note>
  167. </measure>
  168. <!--=======================================================-->
  169. <measure number="6">
  170. <note>
  171. <rest measure="yes"/>
  172. <duration>16</duration>
  173. <voice>1</voice>
  174. </note>
  175. </measure>
  176. <!--=======================================================-->
  177. <measure number="7">
  178. <note>
  179. <rest measure="yes"/>
  180. <duration>16</duration>
  181. <voice>1</voice>
  182. </note>
  183. </measure>
  184. <!--=======================================================-->
  185. <measure number="8">
  186. <note>
  187. <rest measure="yes"/>
  188. <duration>16</duration>
  189. <voice>1</voice>
  190. </note>
  191. </measure>
  192. <!--=======================================================-->
  193. <measure number="9">
  194. <note>
  195. <rest measure="yes"/>
  196. <duration>16</duration>
  197. <voice>1</voice>
  198. </note>
  199. </measure>
  200. <!--=======================================================-->
  201. <measure number="10" width="313">
  202. <print new-system="yes">
  203. <system-layout>
  204. <system-distance>83</system-distance>
  205. </system-layout>
  206. </print>
  207. <attributes>
  208. <staff-details print-object="yes"/>
  209. </attributes>
  210. <note default-x="140">
  211. <rest/>
  212. <duration>8</duration>
  213. <voice>1</voice>
  214. <type>half</type>
  215. </note>
  216. <note default-x="216">
  217. <rest/>
  218. <duration>4</duration>
  219. <voice>1</voice>
  220. <type>quarter</type>
  221. </note>
  222. <note default-x="257">
  223. <pitch>
  224. <step>F</step>
  225. <alter>1</alter>
  226. <octave>4</octave>
  227. </pitch>
  228. <duration>2</duration>
  229. <voice>1</voice>
  230. <type>eighth</type>
  231. <stem default-y="5">up</stem>
  232. <beam number="1">begin</beam>
  233. <lyric default-y="-97" number="1">
  234. <syllabic>single</syllabic>
  235. <text>I'm</text>
  236. </lyric>
  237. </note>
  238. <note default-x="284">
  239. <pitch>
  240. <step>A</step>
  241. <alter>1</alter>
  242. <octave>4</octave>
  243. </pitch>
  244. <duration>2</duration>
  245. <voice>1</voice>
  246. <type>eighth</type>
  247. <stem default-y="10">up</stem>
  248. <beam number="1">end</beam>
  249. <lyric default-y="-97" number="1">
  250. <syllabic>begin</syllabic>
  251. <text>re</text>
  252. </lyric>
  253. </note>
  254. </measure>
  255. <!--=======================================================-->
  256. <measure number="11" width="357">
  257. <note default-x="16">
  258. <pitch>
  259. <step>G</step>
  260. <alter>1</alter>
  261. <octave>4</octave>
  262. </pitch>
  263. <duration>1</duration>
  264. <voice>1</voice>
  265. <type>16th</type>
  266. <stem default-y="5">up</stem>
  267. <beam number="1">begin</beam>
  268. <beam number="2">forward hook</beam>
  269. <lyric default-y="-97" number="1">
  270. <syllabic>middle</syllabic>
  271. <text>tra</text>
  272. </lyric>
  273. </note>
  274. <note default-x="52">
  275. <pitch>
  276. <step>G</step>
  277. <alter>1</alter>
  278. <octave>4</octave>
  279. </pitch>
  280. <duration>2</duration>
  281. <voice>1</voice>
  282. <type>eighth</type>
  283. <stem default-y="5">up</stem>
  284. <beam number="1">continue</beam>
  285. <lyric default-y="-97" number="1">
  286. <syllabic>middle</syllabic>
  287. <text>vel</text>
  288. </lyric>
  289. </note>
  290. <note default-x="93">
  291. <pitch>
  292. <step>G</step>
  293. <alter>1</alter>
  294. <octave>4</octave>
  295. </pitch>
  296. <duration>2</duration>
  297. <voice>1</voice>
  298. <type>eighth</type>
  299. <stem default-y="5">up</stem>
  300. <beam number="1">continue</beam>
  301. <lyric default-y="-97" number="1">
  302. <syllabic>end</syllabic>
  303. <text>ling</text>
  304. </lyric>
  305. </note>
  306. <note default-x="134">
  307. <pitch>
  308. <step>G</step>
  309. <alter>1</alter>
  310. <octave>4</octave>
  311. </pitch>
  312. <duration>2</duration>
  313. <voice>1</voice>
  314. <type>eighth</type>
  315. <stem default-y="5">up</stem>
  316. <beam number="1">continue</beam>
  317. <lyric default-y="-97" number="1">
  318. <syllabic>single</syllabic>
  319. <text>this</text>
  320. </lyric>
  321. </note>
  322. <note default-x="172">
  323. <pitch>
  324. <step>G</step>
  325. <alter>1</alter>
  326. <octave>4</octave>
  327. </pitch>
  328. <duration>1</duration>
  329. <tie type="start"/>
  330. <voice>1</voice>
  331. <type>16th</type>
  332. <stem default-y="5">up</stem>
  333. <beam number="1">end</beam>
  334. <beam number="2">backward hook</beam>
  335. <notations>
  336. <tied type="start"/>
  337. </notations>
  338. <lyric default-y="-97" number="1">
  339. <syllabic>begin</syllabic>
  340. <text>life</text>
  341. </lyric>
  342. </note>
  343. <note default-x="219">
  344. <pitch>
  345. <step>G</step>
  346. <alter>1</alter>
  347. <octave>4</octave>
  348. </pitch>
  349. <duration>1</duration>
  350. <tie type="stop"/>
  351. <voice>1</voice>
  352. <type>16th</type>
  353. <stem default-y="5">up</stem>
  354. <beam number="1">begin</beam>
  355. <beam number="2">forward hook</beam>
  356. <notations>
  357. <tied type="stop"/>
  358. </notations>
  359. </note>
  360. <note default-x="246">
  361. <pitch>
  362. <step>F</step>
  363. <alter>1</alter>
  364. <octave>4</octave>
  365. </pitch>
  366. <duration>3</duration>
  367. <voice>1</voice>
  368. <type>eighth</type>
  369. <dot/>
  370. <stem default-y="2.5">up</stem>
  371. <beam number="1">end</beam>
  372. <lyric default-y="-97" number="1">
  373. <syllabic>end</syllabic>
  374. <text>line</text>
  375. </lyric>
  376. </note>
  377. <note default-x="293">
  378. <pitch>
  379. <step>F</step>
  380. <alter>1</alter>
  381. <octave>4</octave>
  382. </pitch>
  383. <duration>2</duration>
  384. <voice>1</voice>
  385. <type>eighth</type>
  386. <stem default-y="5">up</stem>
  387. <beam number="1">begin</beam>
  388. <lyric default-y="-97" number="1">
  389. <syllabic>single</syllabic>
  390. <text>that's</text>
  391. </lyric>
  392. </note>
  393. <note default-x="331">
  394. <pitch>
  395. <step>A</step>
  396. <alter>1</alter>
  397. <octave>4</octave>
  398. </pitch>
  399. <duration>2</duration>
  400. <voice>1</voice>
  401. <type>eighth</type>
  402. <stem default-y="10">up</stem>
  403. <beam number="1">end</beam>
  404. <lyric default-y="-97" number="1">
  405. <syllabic>single</syllabic>
  406. <text>so</text>
  407. </lyric>
  408. </note>
  409. </measure>
  410. <!--=======================================================-->
  411. <measure number="12" width="313">
  412. <note default-x="25">
  413. <pitch>
  414. <step>G</step>
  415. <alter>1</alter>
  416. <octave>4</octave>
  417. </pitch>
  418. <duration>3</duration>
  419. <voice>1</voice>
  420. <type>eighth</type>
  421. <dot/>
  422. <stem default-y="5">up</stem>
  423. <beam number="1">begin</beam>
  424. <lyric default-y="-97" number="1">
  425. <syllabic>single</syllabic>
  426. <text>close</text>
  427. </lyric>
  428. </note>
  429. <note default-x="63">
  430. <pitch>
  431. <step>F</step>
  432. <alter>1</alter>
  433. <octave>4</octave>
  434. </pitch>
  435. <duration>1</duration>
  436. <tie type="start"/>
  437. <voice>1</voice>
  438. <type>16th</type>
  439. <stem default-y="2.5">up</stem>
  440. <beam number="1">end</beam>
  441. <beam number="2">backward hook</beam>
  442. <notations>
  443. <tied type="start"/>
  444. </notations>
  445. <lyric default-y="-97" justify="left" number="1">
  446. <syllabic>single</syllabic>
  447. <text>to</text>
  448. <extend/>
  449. </lyric>
  450. </note>
  451. <note default-x="102">
  452. <pitch>
  453. <step>F</step>
  454. <alter>1</alter>
  455. <octave>4</octave>
  456. </pitch>
  457. <duration>2</duration>
  458. <tie type="stop"/>
  459. <voice>1</voice>
  460. <type>eighth</type>
  461. <stem default-y="-5">up</stem>
  462. <beam number="1">begin</beam>
  463. <notations>
  464. <tied type="stop"/>
  465. </notations>
  466. </note>
  467. <note default-x="139">
  468. <pitch>
  469. <step>E</step>
  470. <alter>1</alter>
  471. <octave>4</octave>
  472. </pitch>
  473. <duration>2</duration>
  474. <tie type="start"/>
  475. <voice>1</voice>
  476. <type>eighth</type>
  477. <stem default-y="-7">up</stem>
  478. <beam number="1">end</beam>
  479. <notations>
  480. <tied type="start"/>
  481. </notations>
  482. <lyric default-y="-97" justify="left" number="1">
  483. <syllabic>single</syllabic>
  484. <text>home</text>
  485. <extend/>
  486. </lyric>
  487. </note>
  488. <note default-x="187">
  489. <pitch>
  490. <step>E</step>
  491. <alter>1</alter>
  492. <octave>4</octave>
  493. </pitch>
  494. <duration>4</duration>
  495. <tie type="stop"/>
  496. <voice>1</voice>
  497. <type>quarter</type>
  498. <stem default-y="-4">up</stem>
  499. <notations>
  500. <tied type="stop"/>
  501. </notations>
  502. </note>
  503. <note default-x="228">
  504. <rest/>
  505. <duration>2</duration>
  506. <voice>1</voice>
  507. <type>eighth</type>
  508. </note>
  509. <note default-x="251">
  510. <pitch>
  511. <step>D</step>
  512. <alter>1</alter>
  513. <octave>4</octave>
  514. </pitch>
  515. <duration>1</duration>
  516. <voice>1</voice>
  517. <type>16th</type>
  518. <stem default-y="-10">up</stem>
  519. <beam number="1">begin</beam>
  520. <beam number="2">begin</beam>
  521. <lyric default-y="-97" number="1">
  522. <syllabic>single</syllabic>
  523. <text>We</text>
  524. </lyric>
  525. </note>
  526. <note default-x="283">
  527. <pitch>
  528. <step>E</step>
  529. <alter>1</alter>
  530. <octave>4</octave>
  531. </pitch>
  532. <duration>1</duration>
  533. <voice>1</voice>
  534. <type>16th</type>
  535. <stem default-y="-7">up</stem>
  536. <beam number="1">end</beam>
  537. <beam number="2">end</beam>
  538. <lyric default-y="-97" number="1">
  539. <syllabic>single</syllabic>
  540. <text>are</text>
  541. </lyric>
  542. </note>
  543. </measure>
  544. <!--=======================================================-->
  545. <measure number="13" width="570">
  546. <print new-system="yes">
  547. <system-layout>
  548. <system-distance>83</system-distance>
  549. </system-layout>
  550. </print>
  551. <note default-x="142">
  552. <pitch>
  553. <step>F</step>
  554. <alter>1</alter>
  555. <octave>4</octave>
  556. </pitch>
  557. <duration>1</duration>
  558. <voice>1</voice>
  559. <type>16th</type>
  560. <stem default-y="0">up</stem>
  561. <beam number="1">begin</beam>
  562. <beam number="2">forward hook</beam>
  563. <lyric default-y="-97" number="1">
  564. <syllabic>single</syllabic>
  565. <text>on</text>
  566. </lyric>
  567. </note>
  568. <note default-x="176">
  569. <pitch>
  570. <step>E</step>
  571. <alter>1</alter>
  572. <octave>4</octave>
  573. </pitch>
  574. <duration>2</duration>
  575. <voice>1</voice>
  576. <type>eighth</type>
  577. <stem default-y="0">up</stem>
  578. <beam number="1">continue</beam>
  579. <lyric default-y="-97" number="1">
  580. <syllabic>single</syllabic>
  581. <text>our</text>
  582. </lyric>
  583. </note>
  584. <note default-x="219">
  585. <pitch>
  586. <step>F</step>
  587. <alter>1</alter>
  588. <octave>4</octave>
  589. </pitch>
  590. <duration>2</duration>
  591. <voice>1</voice>
  592. <type>eighth</type>
  593. <stem default-y="0">up</stem>
  594. <beam number="1">continue</beam>
  595. <lyric default-y="-97" number="1">
  596. <syllabic>single</syllabic>
  597. <text>way</text>
  598. </lyric>
  599. </note>
  600. <note default-x="260">
  601. <pitch>
  602. <step>A</step>
  603. <alter>1</alter>
  604. <octave>3</octave>
  605. </pitch>
  606. <duration>2</duration>
  607. <voice>1</voice>
  608. <type>eighth</type>
  609. <stem default-y="0">up</stem>
  610. <beam number="1">continue</beam>
  611. <lyric default-y="-97" number="1">
  612. <syllabic>single</syllabic>
  613. <text>to</text>
  614. </lyric>
  615. </note>
  616. <note default-x="303">
  617. <pitch>
  618. <step>G</step>
  619. <alter>1</alter>
  620. <octave>3</octave>
  621. </pitch>
  622. <duration>1</duration>
  623. <tie type="start"/>
  624. <voice>1</voice>
  625. <type>16th</type>
  626. <stem default-y="0">up</stem>
  627. <beam number="1">end</beam>
  628. <beam number="2">backward hook</beam>
  629. <notations>
  630. <tied type="start"/>
  631. </notations>
  632. <lyric default-y="-97" justify="left" number="1">
  633. <syllabic>single</syllabic>
  634. <text>West</text>
  635. <extend/>
  636. </lyric>
  637. </note>
  638. <note default-x="357">
  639. <pitch>
  640. <step>G</step>
  641. <alter>1</alter>
  642. <octave>3</octave>
  643. </pitch>
  644. <duration>1</duration>
  645. <tie type="stop"/>
  646. <voice>1</voice>
  647. <type>16th</type>
  648. <stem default-y="-15">up</stem>
  649. <beam number="1">begin</beam>
  650. <beam number="2">forward hook</beam>
  651. <notations>
  652. <tied type="stop"/>
  653. </notations>
  654. </note>
  655. <note default-x="393">
  656. <pitch>
  657. <step>F</step>
  658. <alter>1</alter>
  659. <octave>3</octave>
  660. </pitch>
  661. <duration>3</duration>
  662. <voice>1</voice>
  663. <type>eighth</type>
  664. <dot/>
  665. <stem default-y="-17">up</stem>
  666. <beam number="1">end</beam>
  667. <lyric default-y="-97" number="1">
  668. <syllabic>single</syllabic>
  669. <text>Point</text>
  670. </lyric>
  671. </note>
  672. <note default-x="440">
  673. <rest/>
  674. <duration>2</duration>
  675. <voice>1</voice>
  676. <type>eighth</type>
  677. </note>
  678. <note default-x="483">
  679. <pitch>
  680. <step>D</step>
  681. <alter>1</alter>
  682. <octave>4</octave>
  683. </pitch>
  684. <duration>1</duration>
  685. <voice>1</voice>
  686. <type>16th</type>
  687. <stem default-y="-10">up</stem>
  688. <beam number="1">begin</beam>
  689. <beam number="2">begin</beam>
  690. <lyric default-y="-97" number="1">
  691. <syllabic>single</syllabic>
  692. <text>Where</text>
  693. </lyric>
  694. </note>
  695. <note default-x="533">
  696. <pitch>
  697. <step>E</step>
  698. <alter>1</alter>
  699. <octave>4</octave>
  700. </pitch>
  701. <duration>1</duration>
  702. <voice>1</voice>
  703. <type>16th</type>
  704. <stem default-y="-7.5">up</stem>
  705. <beam number="1">end</beam>
  706. <beam number="2">end</beam>
  707. <lyric default-y="-97" number="1">
  708. <syllabic>single</syllabic>
  709. <text>your</text>
  710. </lyric>
  711. </note>
  712. </measure>
  713. <!--=======================================================-->
  714. <measure number="14" width="413">
  715. <note default-x="15">
  716. <pitch>
  717. <step>F</step>
  718. <alter>1</alter>
  719. <octave>4</octave>
  720. </pitch>
  721. <duration>1</duration>
  722. <voice>1</voice>
  723. <type>16th</type>
  724. <stem default-y="-5">up</stem>
  725. <beam number="1">begin</beam>
  726. <beam number="2">begin</beam>
  727. <lyric default-y="-97" number="1">
  728. <syllabic>begin</syllabic>
  729. <text>per</text>
  730. </lyric>
  731. </note>
  732. <note default-x="57">
  733. <pitch>
  734. <step>E</step>
  735. <alter>1</alter>
  736. <octave>4</octave>
  737. </pitch>
  738. <duration>1</duration>
  739. <voice>1</voice>
  740. <type>16th</type>
  741. <stem default-y="-7.5">up</stem>
  742. <beam number="1">end</beam>
  743. <beam number="2">end</beam>
  744. <lyric default-y="-97" number="1">
  745. <syllabic>end</syllabic>
  746. <text>fect,</text>
  747. </lyric>
  748. </note>
  749. <note default-x="93">
  750. <rest/>
  751. <duration>2</duration>
  752. <voice>1</voice>
  753. <type>eighth</type>
  754. </note>
  755. <note default-x="133">
  756. <pitch>
  757. <step>D</step>
  758. <alter>1</alter>
  759. <octave>4</octave>
  760. </pitch>
  761. <duration>4</duration>
  762. <voice>1</voice>
  763. <type>quarter</type>
  764. <stem default-y="-9.5">up</stem>
  765. <lyric default-y="-97" number="1">
  766. <syllabic>single</syllabic>
  767. <text>blond</text>
  768. </lyric>
  769. </note>
  770. <note default-x="195">
  771. <pitch>
  772. <step>A</step>
  773. <alter>1</alter>
  774. <octave>3</octave>
  775. </pitch>
  776. <duration>1</duration>
  777. <voice>1</voice>
  778. <type>16th</type>
  779. <stem default-y="-20">up</stem>
  780. <beam number="1">begin</beam>
  781. <beam number="2">forward hook</beam>
  782. <lyric default-y="-97" number="1">
  783. <syllabic>begin</syllabic>
  784. <text>cou</text>
  785. </lyric>
  786. </note>
  787. <note default-x="233">
  788. <pitch>
  789. <step>G</step>
  790. <alter>1</alter>
  791. <octave>3</octave>
  792. </pitch>
  793. <duration>2</duration>
  794. <voice>1</voice>
  795. <type>eighth</type>
  796. <stem default-y="-20">up</stem>
  797. <beam number="1">continue</beam>
  798. <lyric default-y="-97" number="1">
  799. <syllabic>end</syllabic>
  800. <text>sin</text>
  801. </lyric>
  802. </note>
  803. <note default-x="278">
  804. <pitch>
  805. <step>F</step>
  806. <alter>1</alter>
  807. <octave>3</octave>
  808. </pitch>
  809. <duration>2</duration>
  810. <voice>1</voice>
  811. <type>eighth</type>
  812. <stem default-y="-20">up</stem>
  813. <beam number="1">continue</beam>
  814. <lyric default-y="-97" number="1">
  815. <syllabic>single</syllabic>
  816. <text>will</text>
  817. </lyric>
  818. </note>
  819. <note default-x="333">
  820. <pitch>
  821. <step>B</step>
  822. <octave>3</octave>
  823. </pitch>
  824. <duration>2</duration>
  825. <voice>1</voice>
  826. <type>eighth</type>
  827. <stem default-y="-20">up</stem>
  828. <beam number="1">continue</beam>
  829. <lyric default-y="-97" number="1">
  830. <syllabic>single</syllabic>
  831. <text>throw</text>
  832. </lyric>
  833. </note>
  834. <note default-x="381">
  835. <pitch>
  836. <step>A</step>
  837. <alter>1</alter>
  838. <octave>3</octave>
  839. </pitch>
  840. <duration>1</duration>
  841. <voice>1</voice>
  842. <type>16th</type>
  843. <stem default-y="-20">up</stem>
  844. <beam number="1">end</beam>
  845. <beam number="2">backward hook</beam>
  846. <lyric default-y="-97" number="1">
  847. <syllabic>single</syllabic>
  848. <text>his</text>
  849. </lyric>
  850. </note>
  851. </measure>
  852. <!--=======================================================-->
  853. <measure number="15" width="408">
  854. <print new-system="yes">
  855. <system-layout>
  856. <system-distance>77</system-distance>
  857. </system-layout>
  858. </print>
  859. <note default-x="146">
  860. <pitch>
  861. <step>A</step>
  862. <alter>1</alter>
  863. <octave>3</octave>
  864. </pitch>
  865. <duration>2</duration>
  866. <voice>1</voice>
  867. <type>eighth</type>
  868. <stem default-y="-19">up</stem>
  869. <lyric default-y="-97" number="1">
  870. <syllabic>single</syllabic>
  871. <text>hat</text>
  872. </lyric>
  873. </note>
  874. <note default-x="177">
  875. <rest/>
  876. <duration>2</duration>
  877. <voice>1</voice>
  878. <type>eighth</type>
  879. </note>
  880. <note default-x="209">
  881. <pitch>
  882. <step>F</step>
  883. <alter>1</alter>
  884. <octave>4</octave>
  885. </pitch>
  886. <duration>1</duration>
  887. <voice>1</voice>
  888. <type>16th</type>
  889. <stem default-y="5">up</stem>
  890. <beam number="1">begin</beam>
  891. <beam number="2">begin</beam>
  892. <lyric default-y="-97" number="1">
  893. <syllabic>single</syllabic>
  894. <text>in</text>
  895. </lyric>
  896. </note>
  897. <note default-x="238">
  898. <pitch>
  899. <step>G</step>
  900. <alter>1</alter>
  901. <octave>4</octave>
  902. </pitch>
  903. <duration>1</duration>
  904. <voice>1</voice>
  905. <type>16th</type>
  906. <stem default-y="7.5">up</stem>
  907. <beam number="1">continue</beam>
  908. <beam number="2">end</beam>
  909. <lyric default-y="-97" number="1">
  910. <syllabic>single</syllabic>
  911. <text>the</text>
  912. </lyric>
  913. </note>
  914. <note default-x="268">
  915. <pitch>
  916. <step>A</step>
  917. <alter>1</alter>
  918. <octave>4</octave>
  919. </pitch>
  920. <duration>2</duration>
  921. <tie type="start"/>
  922. <voice>1</voice>
  923. <type>eighth</type>
  924. <stem default-y="10">up</stem>
  925. <beam number="1">end</beam>
  926. <notations>
  927. <tied type="start"/>
  928. </notations>
  929. <lyric default-y="-97" justify="left" number="1">
  930. <syllabic>single</syllabic>
  931. <text>air</text>
  932. <extend/>
  933. </lyric>
  934. </note>
  935. <note default-x="310">
  936. <pitch>
  937. <step>A</step>
  938. <alter>1</alter>
  939. <octave>4</octave>
  940. </pitch>
  941. <duration>8</duration>
  942. <tie type="stop"/>
  943. <tie type="start"/>
  944. <voice>1</voice>
  945. <type>half</type>
  946. <stem default-y="10.5">up</stem>
  947. <notations>
  948. <tied type="stop"/>
  949. <tied type="start"/>
  950. </notations>
  951. </note>
  952. </measure>
  953. <!--=======================================================-->
  954. <measure number="16" width="328">
  955. <note default-x="10">
  956. <pitch>
  957. <step>A</step>
  958. <alter>1</alter>
  959. <octave>4</octave>
  960. </pitch>
  961. <duration>8</duration>
  962. <tie type="stop"/>
  963. <voice>1</voice>
  964. <type>half</type>
  965. <stem default-y="10.5">up</stem>
  966. <notations>
  967. <tied type="stop"/>
  968. </notations>
  969. </note>
  970. <note default-x="104">
  971. <rest/>
  972. <duration>3</duration>
  973. <voice>1</voice>
  974. <type>eighth</type>
  975. <dot/>
  976. </note>
  977. <note default-x="151">
  978. <pitch>
  979. <step>A</step>
  980. <alter>1</alter>
  981. <octave>3</octave>
  982. </pitch>
  983. <duration>1</duration>
  984. <voice>1</voice>
  985. <type>16th</type>
  986. <stem default-y="-19">up</stem>
  987. <lyric default-y="-97" number="1">
  988. <syllabic>single</syllabic>
  989. <text>And</text>
  990. </lyric>
  991. </note>
  992. <note default-x="185">
  993. <pitch>
  994. <step>A</step>
  995. <alter>1</alter>
  996. <octave>3</octave>
  997. </pitch>
  998. <duration>1</duration>
  999. <voice>1</voice>
  1000. <type>16th</type>
  1001. <stem default-y="-20">up</stem>
  1002. <beam number="1">begin</beam>
  1003. <beam number="2">forward hook</beam>
  1004. <lyric default-y="-97" number="1">
  1005. <syllabic>single</syllabic>
  1006. <text>we</text>
  1007. </lyric>
  1008. </note>
  1009. <note default-x="223">
  1010. <pitch>
  1011. <step>A</step>
  1012. <alter>1</alter>
  1013. <octave>3</octave>
  1014. </pitch>
  1015. <duration>2</duration>
  1016. <voice>1</voice>
  1017. <type>eighth</type>
  1018. <stem default-y="-20">up</stem>
  1019. <beam number="1">continue</beam>
  1020. <lyric default-y="-97" number="1">
  1021. <syllabic>single</syllabic>
  1022. <text>will</text>
  1023. </lyric>
  1024. </note>
  1025. <note default-x="273">
  1026. <pitch>
  1027. <step>A</step>
  1028. <alter>1</alter>
  1029. <octave>3</octave>
  1030. </pitch>
  1031. <duration>1</duration>
  1032. <tie type="start"/>
  1033. <voice>1</voice>
  1034. <type>16th</type>
  1035. <stem default-y="-20">up</stem>
  1036. <beam number="1">end</beam>
  1037. <beam number="2">backward hook</beam>
  1038. <notations>
  1039. <tied type="start"/>
  1040. </notations>
  1041. <lyric default-y="-97" justify="left" number="1">
  1042. <syllabic>single</syllabic>
  1043. <text>watch</text>
  1044. <extend/>
  1045. </lyric>
  1046. </note>
  1047. </measure>
  1048. <!--=======================================================-->
  1049. <measure number="17" width="247">
  1050. <note default-x="13">
  1051. <pitch>
  1052. <step>A</step>
  1053. <alter>1</alter>
  1054. <octave>3</octave>
  1055. </pitch>
  1056. <duration>1</duration>
  1057. <tie type="stop"/>
  1058. <voice>1</voice>
  1059. <type>16th</type>
  1060. <stem default-y="-15">up</stem>
  1061. <beam number="1">begin</beam>
  1062. <beam number="2">forward hook</beam>
  1063. <notations>
  1064. <tied type="stop"/>
  1065. </notations>
  1066. </note>
  1067. <note default-x="37">
  1068. <pitch>
  1069. <step>G</step>
  1070. <alter>1</alter>
  1071. <octave>3</octave>
  1072. </pitch>
  1073. <duration>2</duration>
  1074. <voice>1</voice>
  1075. <type>eighth</type>
  1076. <stem default-y="-16">up</stem>
  1077. <beam number="1">continue</beam>
  1078. <lyric default-y="-97" number="1">
  1079. <syllabic>single</syllabic>
  1080. <text>it</text>
  1081. </lyric>
  1082. </note>
  1083. <note default-x="70">
  1084. <pitch>
  1085. <step>F</step>
  1086. <alter>1</alter>
  1087. <octave>3</octave>
  1088. </pitch>
  1089. <duration>1</duration>
  1090. <tie type="start"/>
  1091. <voice>1</voice>
  1092. <type>16th</type>
  1093. <stem default-y="-17.5">up</stem>
  1094. <beam number="1">end</beam>
  1095. <beam number="2">backward hook</beam>
  1096. <notations>
  1097. <tied type="start"/>
  1098. </notations>
  1099. <lyric default-y="-97" justify="left" number="1">
  1100. <syllabic>single</syllabic>
  1101. <text>fall</text>
  1102. <extend/>
  1103. </lyric>
  1104. </note>
  1105. <note default-x="120">
  1106. <pitch>
  1107. <step>F</step>
  1108. <alter>1</alter>
  1109. <octave>3</octave>
  1110. </pitch>
  1111. <duration>12</duration>
  1112. <tie type="stop"/>
  1113. <voice>1</voice>
  1114. <type>half</type>
  1115. <dot/>
  1116. <stem default-y="-19">up</stem>
  1117. <notations>
  1118. <tied type="stop"/>
  1119. </notations>
  1120. </note>
  1121. </measure>
  1122. </part>
  1123. <!--=========================================================-->
  1124. <part id="P2">
  1125. <measure number="1" width="268">
  1126. <print>
  1127. <system-layout>
  1128. <top-system-distance>211</top-system-distance>
  1129. </system-layout>
  1130. <measure-numbering>none</measure-numbering>
  1131. </print>
  1132. <attributes>
  1133. <divisions>4</divisions>
  1134. <key print-object="no">
  1135. <fifths>6</fifths>
  1136. <mode>major</mode>
  1137. </key>
  1138. <clef>
  1139. <sign>TAB</sign>
  1140. <line>5</line>
  1141. </clef>
  1142. <staff-details>
  1143. <staff-lines>6</staff-lines>
  1144. <staff-tuning line="1">
  1145. <tuning-step>D</tuning-step>
  1146. <tuning-octave>2</tuning-octave>
  1147. </staff-tuning>
  1148. <staff-tuning line="2">
  1149. <tuning-step>A</tuning-step>
  1150. <tuning-octave>2</tuning-octave>
  1151. </staff-tuning>
  1152. <staff-tuning line="3">
  1153. <tuning-step>D</tuning-step>
  1154. <tuning-octave>3</tuning-octave>
  1155. </staff-tuning>
  1156. <staff-tuning line="4">
  1157. <tuning-step>G</tuning-step>
  1158. <tuning-octave>3</tuning-octave>
  1159. </staff-tuning>
  1160. <staff-tuning line="5">
  1161. <tuning-step>B</tuning-step>
  1162. <tuning-octave>3</tuning-octave>
  1163. </staff-tuning>
  1164. <staff-tuning line="6">
  1165. <tuning-step>D</tuning-step>
  1166. <tuning-octave>4</tuning-octave>
  1167. </staff-tuning>
  1168. <capo>4</capo>
  1169. <staff-size>183</staff-size>
  1170. </staff-details>
  1171. </attributes>
  1172. <sound tempo="84"/>
  1173. <harmony default-y="40" font-size="15.4">
  1174. <root>
  1175. <root-step>B</root-step>
  1176. </root>
  1177. <kind halign="left" text="Maj7">major-seventh</kind>
  1178. <bass>
  1179. <bass-step>D</bass-step>
  1180. <bass-alter>1</bass-alter>
  1181. </bass>
  1182. </harmony>
  1183. <direction placement="above">
  1184. <direction-type>
  1185. <words default-y="72" relative-x="-22">Tuning D-A-D-G-B-D, Capo 4th fret</words>
  1186. </direction-type>
  1187. </direction>
  1188. <note default-x="41">
  1189. <pitch>
  1190. <step>C</step>
  1191. <alter>1</alter>
  1192. <octave>3</octave>
  1193. </pitch>
  1194. <duration>1</duration>
  1195. <voice>1</voice>
  1196. <type>16th</type>
  1197. <stem>none</stem>
  1198. <notations>
  1199. <technical>
  1200. <string>5</string>
  1201. <fret>0</fret>
  1202. </technical>
  1203. </notations>
  1204. </note>
  1205. <note default-x="58">
  1206. <pitch>
  1207. <step>D</step>
  1208. <alter>1</alter>
  1209. <octave>3</octave>
  1210. </pitch>
  1211. <duration>2</duration>
  1212. <voice>1</voice>
  1213. <type>eighth</type>
  1214. <stem>none</stem>
  1215. <notations>
  1216. <technical>
  1217. <string>5</string>
  1218. <fret>2</fret>
  1219. </technical>
  1220. </notations>
  1221. </note>
  1222. <note default-x="86">
  1223. <pitch>
  1224. <step>B</step>
  1225. <octave>3</octave>
  1226. </pitch>
  1227. <duration>2</duration>
  1228. <voice>1</voice>
  1229. <type>eighth</type>
  1230. <stem>none</stem>
  1231. <notations>
  1232. <technical>
  1233. <string>3</string>
  1234. <fret>0</fret>
  1235. </technical>
  1236. </notations>
  1237. </note>
  1238. <note default-x="114">
  1239. <pitch>
  1240. <step>A</step>
  1241. <alter>1</alter>
  1242. <octave>3</octave>
  1243. </pitch>
  1244. <duration>1</duration>
  1245. <voice>1</voice>
  1246. <type>16th</type>
  1247. <stem>none</stem>
  1248. <notations>
  1249. <technical>
  1250. <string>4</string>
  1251. <fret>4</fret>
  1252. </technical>
  1253. </notations>
  1254. </note>
  1255. <note default-x="131" print-dot="no">
  1256. <pitch>
  1257. <step>D</step>
  1258. <alter>1</alter>
  1259. <octave>3</octave>
  1260. </pitch>
  1261. <duration>3</duration>
  1262. <voice>1</voice>
  1263. <type>eighth</type>
  1264. <dot/>
  1265. <stem>none</stem>
  1266. <notations>
  1267. <technical>
  1268. <string>5</string>
  1269. <fret>2</fret>
  1270. </technical>
  1271. </notations>
  1272. </note>
  1273. <note default-x="168">
  1274. <pitch>
  1275. <step>B</step>
  1276. <octave>3</octave>
  1277. </pitch>
  1278. <duration>2</duration>
  1279. <voice>1</voice>
  1280. <type>eighth</type>
  1281. <stem>none</stem>
  1282. <notations>
  1283. <technical>
  1284. <string>3</string>
  1285. <fret>0</fret>
  1286. </technical>
  1287. </notations>
  1288. </note>
  1289. <note default-x="196">
  1290. <pitch>
  1291. <step>A</step>
  1292. <alter>1</alter>
  1293. <octave>3</octave>
  1294. </pitch>
  1295. <duration>1</duration>
  1296. <voice>1</voice>
  1297. <type>16th</type>
  1298. <stem>none</stem>
  1299. <notations>
  1300. <technical>
  1301. <string>4</string>
  1302. <fret>4</fret>
  1303. </technical>
  1304. </notations>
  1305. </note>
  1306. <note default-x="213">
  1307. <pitch>
  1308. <step>D</step>
  1309. <alter>1</alter>
  1310. <octave>3</octave>
  1311. </pitch>
  1312. <duration>1</duration>
  1313. <voice>1</voice>
  1314. <type>16th</type>
  1315. <stem>none</stem>
  1316. <notations>
  1317. <technical>
  1318. <string>5</string>
  1319. <fret>2</fret>
  1320. </technical>
  1321. </notations>
  1322. </note>
  1323. <note default-x="230" print-dot="no">
  1324. <pitch>
  1325. <step>C</step>
  1326. <alter>1</alter>
  1327. <octave>3</octave>
  1328. </pitch>
  1329. <duration>3</duration>
  1330. <voice>1</voice>
  1331. <type>eighth</type>
  1332. <dot/>
  1333. <stem>none</stem>
  1334. <notations>
  1335. <technical>
  1336. <string>5</string>
  1337. <fret>0</fret>
  1338. </technical>
  1339. </notations>
  1340. </note>
  1341. </measure>
  1342. <!--=======================================================-->
  1343. <measure number="2" width="214">
  1344. <note default-x="11">
  1345. <pitch>
  1346. <step>C</step>
  1347. <alter>1</alter>
  1348. <octave>3</octave>
  1349. </pitch>
  1350. <duration>1</duration>
  1351. <voice>1</voice>
  1352. <type>16th</type>
  1353. <stem>none</stem>
  1354. <notations>
  1355. <technical>
  1356. <string>5</string>
  1357. <fret>0</fret>
  1358. </technical>
  1359. </notations>
  1360. </note>
  1361. <note default-x="26">
  1362. <pitch>
  1363. <step>D</step>
  1364. <alter>1</alter>
  1365. <octave>3</octave>
  1366. </pitch>
  1367. <duration>2</duration>
  1368. <voice>1</voice>
  1369. <type>eighth</type>
  1370. <stem>none</stem>
  1371. <notations>
  1372. <technical>
  1373. <string>5</string>
  1374. <fret>2</fret>
  1375. </technical>
  1376. </notations>
  1377. </note>
  1378. <note default-x="52">
  1379. <pitch>
  1380. <step>B</step>
  1381. <octave>3</octave>
  1382. </pitch>
  1383. <duration>2</duration>
  1384. <voice>1</voice>
  1385. <type>eighth</type>
  1386. <stem>none</stem>
  1387. <notations>
  1388. <technical>
  1389. <string>3</string>
  1390. <fret>0</fret>
  1391. </technical>
  1392. </notations>
  1393. </note>
  1394. <note default-x="76">
  1395. <pitch>
  1396. <step>A</step>
  1397. <alter>1</alter>
  1398. <octave>3</octave>
  1399. </pitch>
  1400. <duration>1</duration>
  1401. <voice>1</voice>
  1402. <type>16th</type>
  1403. <stem>none</stem>
  1404. <notations>
  1405. <technical>
  1406. <string>4</string>
  1407. <fret>4</fret>
  1408. </technical>
  1409. </notations>
  1410. </note>
  1411. <note default-x="91" print-dot="no">
  1412. <pitch>
  1413. <step>D</step>
  1414. <alter>1</alter>
  1415. <octave>3</octave>
  1416. </pitch>
  1417. <duration>3</duration>
  1418. <voice>1</voice>
  1419. <type>eighth</type>
  1420. <dot/>
  1421. <stem>none</stem>
  1422. <notations>
  1423. <technical>
  1424. <string>5</string>
  1425. <fret>2</fret>
  1426. </technical>
  1427. </notations>
  1428. </note>
  1429. <note default-x="125">
  1430. <pitch>
  1431. <step>B</step>
  1432. <octave>3</octave>
  1433. </pitch>
  1434. <duration>2</duration>
  1435. <voice>1</voice>
  1436. <type>eighth</type>
  1437. <stem>none</stem>
  1438. <notations>
  1439. <technical>
  1440. <string>3</string>
  1441. <fret>0</fret>
  1442. </technical>
  1443. </notations>
  1444. </note>
  1445. <note default-x="149">
  1446. <pitch>
  1447. <step>A</step>
  1448. <alter>1</alter>
  1449. <octave>3</octave>
  1450. </pitch>
  1451. <duration>1</duration>
  1452. <voice>1</voice>
  1453. <type>16th</type>
  1454. <stem>none</stem>
  1455. <notations>
  1456. <technical>
  1457. <string>4</string>
  1458. <fret>4</fret>
  1459. </technical>
  1460. </notations>
  1461. </note>
  1462. <note default-x="165">
  1463. <pitch>
  1464. <step>D</step>
  1465. <alter>1</alter>
  1466. <octave>3</octave>
  1467. </pitch>
  1468. <duration>1</duration>
  1469. <voice>1</voice>
  1470. <type>16th</type>
  1471. <stem>none</stem>
  1472. <notations>
  1473. <technical>
  1474. <string>5</string>
  1475. <fret>2</fret>
  1476. </technical>
  1477. </notations>
  1478. </note>
  1479. <note default-x="181" print-dot="no">
  1480. <pitch>
  1481. <step>C</step>
  1482. <alter>1</alter>
  1483. <octave>3</octave>
  1484. </pitch>
  1485. <duration>3</duration>
  1486. <voice>1</voice>
  1487. <type>eighth</type>
  1488. <dot/>
  1489. <stem>none</stem>
  1490. <notations>
  1491. <technical>
  1492. <string>5</string>
  1493. <fret>0</fret>
  1494. </technical>
  1495. </notations>
  1496. </note>
  1497. </measure>
  1498. <!--=======================================================-->
  1499. <measure number="3" width="218">
  1500. <harmony default-y="40" font-size="15.4">
  1501. <root>
  1502. <root-step>B</root-step>
  1503. </root>
  1504. <kind halign="left" text="Maj7">major-seventh</kind>
  1505. </harmony>
  1506. <note default-x="12" print-dot="no">
  1507. <pitch>
  1508. <step>B</step>
  1509. <octave>2</octave>
  1510. </pitch>
  1511. <duration>3</duration>
  1512. <voice>1</voice>
  1513. <type>eighth</type>
  1514. <dot/>
  1515. <stem>none</stem>
  1516. <notations>
  1517. <technical>
  1518. <string>6</string>
  1519. <fret>5</fret>
  1520. </technical>
  1521. </notations>
  1522. </note>
  1523. <note default-x="12" print-dot="no">
  1524. <chord/>
  1525. <pitch>
  1526. <step>F</step>
  1527. <alter>1</alter>
  1528. <octave>3</octave>
  1529. </pitch>
  1530. <duration>3</duration>
  1531. <voice>1</voice>
  1532. <type>eighth</type>
  1533. <dot/>
  1534. <stem>none</stem>
  1535. <notations>
  1536. <technical>
  1537. <string>5</string>
  1538. <fret>5</fret>
  1539. </technical>
  1540. </notations>
  1541. </note>
  1542. <note default-x="11" print-dot="no">
  1543. <chord/>
  1544. <pitch>
  1545. <step>A</step>
  1546. <alter>1</alter>
  1547. <octave>3</octave>
  1548. </pitch>
  1549. <duration>3</duration>
  1550. <voice>1</voice>
  1551. <type>eighth</type>
  1552. <dot/>
  1553. <stem>none</stem>
  1554. <notations>
  1555. <technical>
  1556. <string>4</string>
  1557. <fret>4</fret>
  1558. </technical>
  1559. </notations>
  1560. </note>
  1561. <note default-x="11" print-dot="no">
  1562. <chord/>
  1563. <pitch>
  1564. <step>B</step>
  1565. <octave>3</octave>
  1566. </pitch>
  1567. <duration>3</duration>
  1568. <voice>1</voice>
  1569. <type>eighth</type>
  1570. <dot/>
  1571. <stem>none</stem>
  1572. <notations>
  1573. <technical>
  1574. <string>3</string>
  1575. <fret>0</fret>
  1576. </technical>
  1577. </notations>
  1578. </note>
  1579. <note default-x="50" print-dot="no">
  1580. <pitch>
  1581. <step>F</step>
  1582. <alter>1</alter>
  1583. <octave>4</octave>
  1584. </pitch>
  1585. <duration>3</duration>
  1586. <voice>1</voice>
  1587. <type>eighth</type>
  1588. <dot/>
  1589. <stem>none</stem>
  1590. <notations>
  1591. <technical>
  1592. <string>2</string>
  1593. <fret>3</fret>
  1594. </technical>
  1595. </notations>
  1596. </note>
  1597. <note default-x="49" print-dot="no">
  1598. <chord/>
  1599. <pitch>
  1600. <step>F</step>
  1601. <alter>1</alter>
  1602. <octave>4</octave>
  1603. </pitch>
  1604. <duration>3</duration>
  1605. <voice>1</voice>
  1606. <type>eighth</type>
  1607. <dot/>
  1608. <stem>none</stem>
  1609. <notations>
  1610. <technical>
  1611. <string>1</string>
  1612. <fret>0</fret>
  1613. </technical>
  1614. </notations>
  1615. </note>
  1616. <note default-x="88" print-dot="no">
  1617. <pitch>
  1618. <step>B</step>
  1619. <octave>2</octave>
  1620. </pitch>
  1621. <duration>3</duration>
  1622. <voice>1</voice>
  1623. <type>eighth</type>
  1624. <dot/>
  1625. <stem>none</stem>
  1626. <notations>
  1627. <technical>
  1628. <string>6</string>
  1629. <fret>5</fret>
  1630. </technical>
  1631. </notations>
  1632. </note>
  1633. <note default-x="88" print-dot="no">
  1634. <chord/>
  1635. <pitch>
  1636. <step>F</step>
  1637. <alter>1</alter>
  1638. <octave>3</octave>
  1639. </pitch>
  1640. <duration>3</duration>
  1641. <voice>1</voice>
  1642. <type>eighth</type>
  1643. <dot/>
  1644. <stem>none</stem>
  1645. <notations>
  1646. <technical>
  1647. <string>5</string>
  1648. <fret>5</fret>
  1649. </technical>
  1650. </notations>
  1651. </note>
  1652. <note default-x="86" print-dot="no">
  1653. <chord/>
  1654. <pitch>
  1655. <step>A</step>
  1656. <alter>1</alter>
  1657. <octave>3</octave>
  1658. </pitch>
  1659. <duration>3</duration>
  1660. <voice>1</voice>
  1661. <type>eighth</type>
  1662. <dot/>
  1663. <stem>none</stem>
  1664. <notations>
  1665. <technical>
  1666. <string>4</string>
  1667. <fret>4</fret>
  1668. </technical>
  1669. </notations>
  1670. </note>
  1671. <note default-x="87" print-dot="no">
  1672. <chord/>
  1673. <pitch>
  1674. <step>B</step>
  1675. <octave>3</octave>
  1676. </pitch>
  1677. <duration>3</duration>
  1678. <voice>1</voice>
  1679. <type>eighth</type>
  1680. <dot/>
  1681. <stem>none</stem>
  1682. <notations>
  1683. <technical>
  1684. <string>3</string>
  1685. <fret>0</fret>
  1686. </technical>
  1687. </notations>
  1688. </note>
  1689. <note default-x="125" print-dot="no">
  1690. <pitch>
  1691. <step>F</step>
  1692. <alter>1</alter>
  1693. <octave>4</octave>
  1694. </pitch>
  1695. <duration>3</duration>
  1696. <voice>1</voice>
  1697. <type>eighth</type>
  1698. <dot/>
  1699. <stem>none</stem>
  1700. <notations>
  1701. <technical>
  1702. <string>2</string>
  1703. <fret>3</fret>
  1704. </technical>
  1705. </notations>
  1706. </note>
  1707. <note default-x="125" print-dot="no">
  1708. <chord/>
  1709. <pitch>
  1710. <step>F</step>
  1711. <alter>1</alter>
  1712. <octave>4</octave>
  1713. </pitch>
  1714. <duration>3</duration>
  1715. <voice>1</voice>
  1716. <type>eighth</type>
  1717. <dot/>
  1718. <stem>none</stem>
  1719. <notations>
  1720. <technical>
  1721. <string>1</string>
  1722. <fret>0</fret>
  1723. </technical>
  1724. </notations>
  1725. </note>
  1726. <note default-x="163">
  1727. <pitch>
  1728. <step>B</step>
  1729. <octave>2</octave>
  1730. </pitch>
  1731. <duration>1</duration>
  1732. <voice>1</voice>
  1733. <type>16th</type>
  1734. <stem>none</stem>
  1735. <notations>
  1736. <technical>
  1737. <string>6</string>
  1738. <fret>5</fret>
  1739. </technical>
  1740. </notations>
  1741. </note>
  1742. <note default-x="163">
  1743. <chord/>
  1744. <pitch>
  1745. <step>F</step>
  1746. <alter>1</alter>
  1747. <octave>3</octave>
  1748. </pitch>
  1749. <duration>1</duration>
  1750. <voice>1</voice>
  1751. <type>16th</type>
  1752. <stem>none</stem>
  1753. <notations>
  1754. <technical>
  1755. <string>5</string>
  1756. <fret>5</fret>
  1757. </technical>
  1758. </notations>
  1759. </note>
  1760. <note default-x="162">
  1761. <chord/>
  1762. <pitch>
  1763. <step>A</step>
  1764. <alter>1</alter>
  1765. <octave>3</octave>
  1766. </pitch>
  1767. <duration>1</duration>
  1768. <voice>1</voice>
  1769. <type>16th</type>
  1770. <stem>none</stem>
  1771. <notations>
  1772. <technical>
  1773. <string>4</string>
  1774. <fret>4</fret>
  1775. </technical>
  1776. </notations>
  1777. </note>
  1778. <note default-x="162">
  1779. <chord/>
  1780. <pitch>
  1781. <step>B</step>
  1782. <octave>3</octave>
  1783. </pitch>
  1784. <duration>1</duration>
  1785. <voice>1</voice>
  1786. <type>16th</type>
  1787. <stem>none</stem>
  1788. <notations>
  1789. <technical>
  1790. <string>3</string>
  1791. <fret>0</fret>
  1792. </technical>
  1793. </notations>
  1794. </note>
  1795. <note default-x="180" print-dot="no">
  1796. <pitch>
  1797. <step>D</step>
  1798. <alter>1</alter>
  1799. <octave>4</octave>
  1800. </pitch>
  1801. <duration>3</duration>
  1802. <voice>1</voice>
  1803. <type>eighth</type>
  1804. <dot/>
  1805. <stem>none</stem>
  1806. <notations>
  1807. <technical>
  1808. <string>2</string>
  1809. <fret>0</fret>
  1810. </technical>
  1811. </notations>
  1812. </note>
  1813. </measure>
  1814. <!--=======================================================-->
  1815. <measure number="4" width="284">
  1816. <note default-x="12" print-dot="no">
  1817. <pitch>
  1818. <step>B</step>
  1819. <octave>2</octave>
  1820. </pitch>
  1821. <duration>3</duration>
  1822. <voice>1</voice>
  1823. <type>eighth</type>
  1824. <dot/>
  1825. <stem>none</stem>
  1826. <notations>
  1827. <technical>
  1828. <string>6</string>
  1829. <fret>5</fret>
  1830. </technical>
  1831. </notations>
  1832. </note>
  1833. <note default-x="12" print-dot="no">
  1834. <chord/>
  1835. <pitch>
  1836. <step>F</step>
  1837. <alter>1</alter>
  1838. <octave>3</octave>
  1839. </pitch>
  1840. <duration>3</duration>
  1841. <voice>1</voice>
  1842. <type>eighth</type>
  1843. <dot/>
  1844. <stem>none</stem>
  1845. <notations>
  1846. <technical>
  1847. <string>5</string>
  1848. <fret>5</fret>
  1849. </technical>
  1850. </notations>
  1851. </note>
  1852. <note default-x="11" print-dot="no">
  1853. <chord/>
  1854. <pitch>
  1855. <step>A</step>
  1856. <alter>1</alter>
  1857. <octave>3</octave>
  1858. </pitch>
  1859. <duration>3</duration>
  1860. <voice>1</voice>
  1861. <type>eighth</type>
  1862. <dot/>
  1863. <stem>none</stem>
  1864. <notations>
  1865. <technical>
  1866. <string>4</string>
  1867. <fret>4</fret>
  1868. </technical>
  1869. </notations>
  1870. </note>
  1871. <note default-x="11" print-dot="no">
  1872. <chord/>
  1873. <pitch>
  1874. <step>B</step>
  1875. <octave>3</octave>
  1876. </pitch>
  1877. <duration>3</duration>
  1878. <voice>1</voice>
  1879. <type>eighth</type>
  1880. <dot/>
  1881. <stem>none</stem>
  1882. <notations>
  1883. <technical>
  1884. <string>3</string>
  1885. <fret>0</fret>
  1886. </technical>
  1887. </notations>
  1888. </note>
  1889. <note default-x="58" print-dot="no">
  1890. <pitch>
  1891. <step>F</step>
  1892. <alter>1</alter>
  1893. <octave>4</octave>
  1894. </pitch>
  1895. <duration>3</duration>
  1896. <voice>1</voice>
  1897. <type>eighth</type>
  1898. <dot/>
  1899. <stem>none</stem>
  1900. <notations>
  1901. <technical>
  1902. <string>2</string>
  1903. <fret>3</fret>
  1904. </technical>
  1905. </notations>
  1906. </note>
  1907. <note default-x="58" print-dot="no">
  1908. <chord/>
  1909. <pitch>
  1910. <step>F</step>
  1911. <alter>1</alter>
  1912. <octave>4</octave>
  1913. </pitch>
  1914. <duration>3</duration>
  1915. <voice>1</voice>
  1916. <type>eighth</type>
  1917. <dot/>
  1918. <stem>none</stem>
  1919. <notations>
  1920. <technical>
  1921. <string>1</string>
  1922. <fret>0</fret>
  1923. </technical>
  1924. </notations>
  1925. </note>
  1926. <note default-x="105">
  1927. <pitch>
  1928. <step>B</step>
  1929. <octave>2</octave>
  1930. </pitch>
  1931. <duration>1</duration>
  1932. <voice>1</voice>
  1933. <type>16th</type>
  1934. <stem>none</stem>
  1935. <notations>
  1936. <technical>
  1937. <string>6</string>
  1938. <fret>5</fret>
  1939. </technical>
  1940. </notations>
  1941. </note>
  1942. <note default-x="105">
  1943. <chord/>
  1944. <pitch>
  1945. <step>F</step>
  1946. <alter>1</alter>
  1947. <octave>3</octave>
  1948. </pitch>
  1949. <duration>1</duration>
  1950. <voice>1</voice>
  1951. <type>16th</type>
  1952. <stem>none</stem>
  1953. <notations>
  1954. <technical>
  1955. <string>5</string>
  1956. <fret>5</fret>
  1957. </technical>
  1958. </notations>
  1959. </note>
  1960. <note default-x="103">
  1961. <chord/>
  1962. <pitch>
  1963. <step>A</step>
  1964. <alter>1</alter>
  1965. <octave>3</octave>
  1966. </pitch>
  1967. <duration>1</duration>
  1968. <voice>1</voice>
  1969. <type>16th</type>
  1970. <stem>none</stem>
  1971. <notations>
  1972. <technical>
  1973. <string>4</string>
  1974. <fret>4</fret>
  1975. </technical>
  1976. </notations>
  1977. </note>
  1978. <note default-x="125">
  1979. <pitch>
  1980. <step>F</step>
  1981. <alter>1</alter>
  1982. <octave>3</octave>
  1983. </pitch>
  1984. <duration>2</duration>
  1985. <voice>1</voice>
  1986. <type>eighth</type>
  1987. <stem>none</stem>
  1988. <notations>
  1989. <technical>
  1990. <string>4</string>
  1991. <fret>0</fret>
  1992. </technical>
  1993. </notations>
  1994. </note>
  1995. <note default-x="161">
  1996. <pitch>
  1997. <step>F</step>
  1998. <alter>1</alter>
  1999. <octave>3</octave>
  2000. </pitch>
  2001. <duration>2</duration>
  2002. <voice>1</voice>
  2003. <type>eighth</type>
  2004. <stem>none</stem>
  2005. <notations>
  2006. <technical>
  2007. <string>5</string>
  2008. <fret>5</fret>
  2009. </technical>
  2010. </notations>
  2011. </note>
  2012. <note default-x="196">
  2013. <pitch>
  2014. <step>F</step>
  2015. <alter>1</alter>
  2016. <octave>3</octave>
  2017. </pitch>
  2018. <duration>1</duration>
  2019. <voice>1</voice>
  2020. <type>16th</type>
  2021. <stem>none</stem>
  2022. <notations>
  2023. <technical>
  2024. <string>5</string>
  2025. <fret>5</fret>
  2026. </technical>
  2027. </notations>
  2028. </note>
  2029. <note default-x="216">
  2030. <pitch>
  2031. <step>E</step>
  2032. <alter>1</alter>
  2033. <octave>3</octave>
  2034. </pitch>
  2035. <duration>1</duration>
  2036. <voice>1</voice>
  2037. <type>16th</type>
  2038. <stem>none</stem>
  2039. <notations>
  2040. <technical>
  2041. <pull-off number="1" type="start">P</pull-off>
  2042. <string>5</string>
  2043. <fret>4</fret>
  2044. </technical>
  2045. </notations>
  2046. </note>
  2047. <note default-x="237" print-dot="no">
  2048. <pitch>
  2049. <step>C</step>
  2050. <alter>1</alter>
  2051. <octave>3</octave>
  2052. </pitch>
  2053. <duration>3</duration>
  2054. <voice>1</voice>
  2055. <type>eighth</type>
  2056. <dot/>
  2057. <stem>none</stem>
  2058. <notations>
  2059. <technical>
  2060. <pull-off number="1" type="stop"/>
  2061. <string>5</string>
  2062. <fret>0</fret>
  2063. </technical>
  2064. </notations>
  2065. </note>
  2066. </measure>
  2067. <!--=======================================================-->
  2068. <measure number="5" width="206">
  2069. <print new-system="yes">
  2070. <system-layout>
  2071. <system-distance>83</system-distance>
  2072. </system-layout>
  2073. </print>
  2074. <harmony default-y="40" font-size="15.4">
  2075. <root>
  2076. <root-step>G</root-step>
  2077. <root-alter>1</root-alter>
  2078. </root>
  2079. <kind halign="left" text="m9">minor-ninth</kind>
  2080. </harmony>
  2081. <note default-x="11">
  2082. <pitch>
  2083. <step>F</step>
  2084. <alter>1</alter>
  2085. <octave>2</octave>
  2086. </pitch>
  2087. <duration>1</duration>
  2088. <voice>1</voice>
  2089. <type>16th</type>
  2090. <stem>none</stem>
  2091. <notations>
  2092. <technical>
  2093. <string>6</string>
  2094. <fret>0</fret>
  2095. </technical>
  2096. </notations>
  2097. </note>
  2098. <note default-x="26">
  2099. <pitch>
  2100. <step>G</step>
  2101. <alter>1</alter>
  2102. <octave>2</octave>
  2103. </pitch>
  2104. <duration>2</duration>
  2105. <voice>1</voice>
  2106. <type>eighth</type>
  2107. <stem>none</stem>
  2108. <notations>
  2109. <technical>
  2110. <string>6</string>
  2111. <fret>2</fret>
  2112. </technical>
  2113. </notations>
  2114. </note>
  2115. <note default-x="51" print-dot="no">
  2116. <pitch>
  2117. <step>A</step>
  2118. <alter>1</alter>
  2119. <octave>3</octave>
  2120. </pitch>
  2121. <duration>3</duration>
  2122. <voice>1</voice>
  2123. <type>eighth</type>
  2124. <dot/>
  2125. <stem>none</stem>
  2126. <notations>
  2127. <technical>
  2128. <string>4</string>
  2129. <fret>4</fret>
  2130. </technical>
  2131. </notations>
  2132. </note>
  2133. <note default-x="51" print-dot="no">
  2134. <chord/>
  2135. <pitch>
  2136. <step>B</step>
  2137. <octave>3</octave>
  2138. </pitch>
  2139. <duration>3</duration>
  2140. <voice>1</voice>
  2141. <type>eighth</type>
  2142. <dot/>
  2143. <stem>none</stem>
  2144. <notations>
  2145. <technical>
  2146. <string>3</string>
  2147. <fret>0</fret>
  2148. </technical>
  2149. </notations>
  2150. </note>
  2151. <note default-x="51" print-dot="no">
  2152. <chord/>
  2153. <pitch>
  2154. <step>D</step>
  2155. <alter>1</alter>
  2156. <octave>4</octave>
  2157. </pitch>
  2158. <duration>3</duration>
  2159. <voice>1</voice>
  2160. <type>eighth</type>
  2161. <dot/>
  2162. <stem>none</stem>
  2163. <notations>
  2164. <technical>
  2165. <string>2</string>
  2166. <fret>0</fret>
  2167. </technical>
  2168. </notations>
  2169. </note>
  2170. <note default-x="51" print-dot="no">
  2171. <chord/>
  2172. <pitch>
  2173. <step>F</step>
  2174. <alter>1</alter>
  2175. <octave>4</octave>
  2176. </pitch>
  2177. <duration>3</duration>
  2178. <voice>1</voice>
  2179. <type>eighth</type>
  2180. <dot/>
  2181. <stem>none</stem>
  2182. <notations>
  2183. <technical>
  2184. <string>1</string>
  2185. <fret>0</fret>
  2186. </technical>
  2187. </notations>
  2188. </note>
  2189. <note default-x="83" print-dot="no">
  2190. <pitch>
  2191. <step>G</step>
  2192. <alter>1</alter>
  2193. <octave>2</octave>
  2194. </pitch>
  2195. <duration>3</duration>
  2196. <voice>1</voice>
  2197. <type>eighth</type>
  2198. <dot/>
  2199. <stem>none</stem>
  2200. <notations>
  2201. <technical>
  2202. <string>6</string>
  2203. <fret>2</fret>
  2204. </technical>
  2205. </notations>
  2206. </note>
  2207. <note default-x="83" print-dot="no">
  2208. <chord/>
  2209. <pitch>
  2210. <step>D</step>
  2211. <alter>1</alter>
  2212. <octave>3</octave>
  2213. </pitch>
  2214. <duration>3</duration>
  2215. <voice>1</voice>
  2216. <type>eighth</type>
  2217. <dot/>
  2218. <stem>none</stem>
  2219. <notations>
  2220. <technical>
  2221. <string>5</string>
  2222. <fret>2</fret>
  2223. </technical>
  2224. </notations>
  2225. </note>
  2226. <note default-x="84" print-dot="no">
  2227. <chord/>
  2228. <pitch>
  2229. <step>A</step>
  2230. <alter>1</alter>
  2231. <octave>3</octave>
  2232. </pitch>
  2233. <duration>3</duration>
  2234. <voice>1</voice>
  2235. <type>eighth</type>
  2236. <dot/>
  2237. <stem>none</stem>
  2238. <notations>
  2239. <technical>
  2240. <string>4</string>
  2241. <fret>4</fret>
  2242. </technical>
  2243. </notations>
  2244. </note>
  2245. <note default-x="84" print-dot="no">
  2246. <chord/>
  2247. <pitch>
  2248. <step>B</step>
  2249. <octave>3</octave>
  2250. </pitch>
  2251. <duration>3</duration>
  2252. <voice>1</voice>
  2253. <type>eighth</type>
  2254. <dot/>
  2255. <stem>none</stem>
  2256. <notations>
  2257. <technical>
  2258. <string>3</string>
  2259. <fret>0</fret>
  2260. </technical>
  2261. </notations>
  2262. </note>
  2263. <note default-x="117" print-dot="no">
  2264. <pitch>
  2265. <step>A</step>
  2266. <alter>1</alter>
  2267. <octave>3</octave>
  2268. </pitch>
  2269. <duration>3</duration>
  2270. <voice>1</voice>
  2271. <type>eighth</type>
  2272. <dot/>
  2273. <stem>none</stem>
  2274. <notations>
  2275. <technical>
  2276. <string>4</string>
  2277. <fret>4</fret>
  2278. </technical>
  2279. </notations>
  2280. </note>
  2281. <note default-x="117" print-dot="no">
  2282. <chord/>
  2283. <pitch>
  2284. <step>B</step>
  2285. <octave>3</octave>
  2286. </pitch>
  2287. <duration>3</duration>
  2288. <voice>1</voice>
  2289. <type>eighth</type>
  2290. <dot/>
  2291. <stem>none</stem>
  2292. <notations>
  2293. <technical>
  2294. <string>3</string>
  2295. <fret>0</fret>
  2296. </technical>
  2297. </notations>
  2298. </note>
  2299. <note default-x="117" print-dot="no">
  2300. <chord/>
  2301. <pitch>
  2302. <step>D</step>
  2303. <alter>1</alter>
  2304. <octave>4</octave>
  2305. </pitch>
  2306. <duration>3</duration>
  2307. <voice>1</voice>
  2308. <type>eighth</type>
  2309. <dot/>
  2310. <stem>none</stem>
  2311. <notations>
  2312. <technical>
  2313. <string>2</string>
  2314. <fret>0</fret>
  2315. </technical>
  2316. </notations>
  2317. </note>
  2318. <note default-x="117" print-dot="no">
  2319. <chord/>
  2320. <pitch>
  2321. <step>F</step>
  2322. <alter>1</alter>
  2323. <octave>4</octave>
  2324. </pitch>
  2325. <duration>3</duration>
  2326. <voice>1</voice>
  2327. <type>eighth</type>
  2328. <dot/>
  2329. <stem>none</stem>
  2330. <notations>
  2331. <technical>
  2332. <string>1</string>
  2333. <fret>0</fret>
  2334. </technical>
  2335. </notations>
  2336. </note>
  2337. <note default-x="149">
  2338. <pitch>
  2339. <step>G</step>
  2340. <alter>1</alter>
  2341. <octave>2</octave>
  2342. </pitch>
  2343. <duration>1</duration>
  2344. <voice>1</voice>
  2345. <type>16th</type>
  2346. <stem>none</stem>
  2347. <notations>
  2348. <technical>
  2349. <string>6</string>
  2350. <fret>2</fret>
  2351. </technical>
  2352. </notations>
  2353. </note>
  2354. <note default-x="149">
  2355. <chord/>
  2356. <pitch>
  2357. <step>D</step>
  2358. <alter>1</alter>
  2359. <octave>3</octave>
  2360. </pitch>
  2361. <duration>1</duration>
  2362. <voice>1</voice>
  2363. <type>16th</type>
  2364. <stem>none</stem>
  2365. <notations>
  2366. <technical>
  2367. <string>5</string>
  2368. <fret>2</fret>
  2369. </technical>
  2370. </notations>
  2371. </note>
  2372. <note default-x="150">
  2373. <chord/>
  2374. <pitch>
  2375. <step>A</step>
  2376. <alter>1</alter>
  2377. <octave>3</octave>
  2378. </pitch>
  2379. <duration>1</duration>
  2380. <voice>1</voice>
  2381. <type>16th</type>
  2382. <stem>none</stem>
  2383. <notations>
  2384. <technical>
  2385. <string>4</string>
  2386. <fret>4</fret>
  2387. </technical>
  2388. </notations>
  2389. </note>
  2390. <note default-x="150">
  2391. <chord/>
  2392. <pitch>
  2393. <step>B</step>
  2394. <octave>3</octave>
  2395. </pitch>
  2396. <duration>1</duration>
  2397. <voice>1</voice>
  2398. <type>16th</type>
  2399. <stem>none</stem>
  2400. <notations>
  2401. <technical>
  2402. <string>3</string>
  2403. <fret>0</fret>
  2404. </technical>
  2405. </notations>
  2406. </note>
  2407. <note default-x="165">
  2408. <pitch>
  2409. <step>A</step>
  2410. <alter>1</alter>
  2411. <octave>3</octave>
  2412. </pitch>
  2413. <duration>2</duration>
  2414. <voice>1</voice>
  2415. <type>eighth</type>
  2416. <stem>none</stem>
  2417. <notations>
  2418. <technical>
  2419. <string>4</string>
  2420. <fret>4</fret>
  2421. </technical>
  2422. </notations>
  2423. </note>
  2424. <note default-x="165">
  2425. <chord/>
  2426. <pitch>
  2427. <step>B</step>
  2428. <octave>3</octave>
  2429. </pitch>
  2430. <duration>2</duration>
  2431. <voice>1</voice>
  2432. <type>eighth</type>
  2433. <stem>none</stem>
  2434. <notations>
  2435. <technical>
  2436. <string>3</string>
  2437. <fret>0</fret>
  2438. </technical>
  2439. </notations>
  2440. </note>
  2441. <note default-x="165">
  2442. <chord/>
  2443. <pitch>
  2444. <step>D</step>
  2445. <alter>1</alter>
  2446. <octave>4</octave>
  2447. </pitch>
  2448. <duration>2</duration>
  2449. <voice>1</voice>
  2450. <type>eighth</type>
  2451. <stem>none</stem>
  2452. <notations>
  2453. <technical>
  2454. <string>2</string>
  2455. <fret>0</fret>
  2456. </technical>
  2457. </notations>
  2458. </note>
  2459. <note default-x="165">
  2460. <chord/>
  2461. <pitch>
  2462. <step>F</step>
  2463. <alter>1</alter>
  2464. <octave>4</octave>
  2465. </pitch>
  2466. <duration>2</duration>
  2467. <voice>1</voice>
  2468. <type>eighth</type>
  2469. <stem>none</stem>
  2470. <notations>
  2471. <technical>
  2472. <string>1</string>
  2473. <fret>0</fret>
  2474. </technical>
  2475. </notations>
  2476. </note>
  2477. <note default-x="189">
  2478. <pitch>
  2479. <step>G</step>
  2480. <alter>1</alter>
  2481. <octave>2</octave>
  2482. </pitch>
  2483. <duration>1</duration>
  2484. <voice>1</voice>
  2485. <type>16th</type>
  2486. <stem>none</stem>
  2487. <notations>
  2488. <technical>
  2489. <string>6</string>
  2490. <fret>2</fret>
  2491. </technical>
  2492. </notations>
  2493. </note>
  2494. </measure>
  2495. <!--=======================================================-->
  2496. <measure number="6" width="206">
  2497. <note default-x="12">
  2498. <pitch>
  2499. <step>F</step>
  2500. <alter>1</alter>
  2501. <octave>2</octave>
  2502. </pitch>
  2503. <duration>1</duration>
  2504. <voice>1</voice>
  2505. <type>16th</type>
  2506. <stem>none</stem>
  2507. <notations>
  2508. <technical>
  2509. <string>6</string>
  2510. <fret>0</fret>
  2511. </technical>
  2512. </notations>
  2513. </note>
  2514. <note default-x="27">
  2515. <pitch>
  2516. <step>G</step>
  2517. <alter>1</alter>
  2518. <octave>2</octave>
  2519. </pitch>
  2520. <duration>2</duration>
  2521. <voice>1</voice>
  2522. <type>eighth</type>
  2523. <stem>none</stem>
  2524. <notations>
  2525. <technical>
  2526. <string>6</string>
  2527. <fret>2</fret>
  2528. </technical>
  2529. </notations>
  2530. </note>
  2531. <note default-x="51" print-dot="no">
  2532. <pitch>
  2533. <step>G</step>
  2534. <alter>1</alter>
  2535. <octave>2</octave>
  2536. </pitch>
  2537. <duration>3</duration>
  2538. <voice>1</voice>
  2539. <type>eighth</type>
  2540. <dot/>
  2541. <stem>none</stem>
  2542. <notations>
  2543. <technical>
  2544. <string>6</string>
  2545. <fret>2</fret>
  2546. </technical>
  2547. </notations>
  2548. </note>
  2549. <note default-x="51" print-dot="no">
  2550. <chord/>
  2551. <pitch>
  2552. <step>D</step>
  2553. <alter>1</alter>
  2554. <octave>3</octave>
  2555. </pitch>
  2556. <duration>3</duration>
  2557. <voice>1</voice>
  2558. <type>eighth</type>
  2559. <dot/>
  2560. <stem>none</stem>
  2561. <notations>
  2562. <technical>
  2563. <string>5</string>
  2564. <fret>2</fret>
  2565. </technical>
  2566. </notations>
  2567. </note>
  2568. <note default-x="51" print-dot="no">
  2569. <chord/>
  2570. <pitch>
  2571. <step>A</step>
  2572. <alter>1</alter>
  2573. <octave>3</octave>
  2574. </pitch>
  2575. <duration>3</duration>
  2576. <voice>1</voice>
  2577. <type>eighth</type>
  2578. <dot/>
  2579. <stem>none</stem>
  2580. <notations>
  2581. <technical>
  2582. <string>4</string>
  2583. <fret>4</fret>
  2584. </technical>
  2585. </notations>
  2586. </note>
  2587. <note default-x="84" print-dot="no">
  2588. <pitch>
  2589. <step>G</step>
  2590. <alter>1</alter>
  2591. <octave>2</octave>
  2592. </pitch>
  2593. <duration>3</duration>
  2594. <voice>1</voice>
  2595. <type>eighth</type>
  2596. <dot/>
  2597. <stem>none</stem>
  2598. <notations>
  2599. <technical>
  2600. <string>6</string>
  2601. <fret>2</fret>
  2602. </technical>
  2603. </notations>
  2604. </note>
  2605. <note default-x="84" print-dot="no">
  2606. <chord/>
  2607. <pitch>
  2608. <step>D</step>
  2609. <alter>1</alter>
  2610. <octave>3</octave>
  2611. </pitch>
  2612. <duration>3</duration>
  2613. <voice>1</voice>
  2614. <type>eighth</type>
  2615. <dot/>
  2616. <stem>none</stem>
  2617. <notations>
  2618. <technical>
  2619. <string>5</string>
  2620. <fret>2</fret>
  2621. </technical>
  2622. </notations>
  2623. </note>
  2624. <note default-x="84" print-dot="no">
  2625. <chord/>
  2626. <pitch>
  2627. <step>A</step>
  2628. <alter>1</alter>
  2629. <octave>3</octave>
  2630. </pitch>
  2631. <duration>3</duration>
  2632. <voice>1</voice>
  2633. <type>eighth</type>
  2634. <dot/>
  2635. <stem>none</stem>
  2636. <notations>
  2637. <technical>
  2638. <string>4</string>
  2639. <fret>4</fret>
  2640. </technical>
  2641. </notations>
  2642. </note>
  2643. <note default-x="84" print-dot="no">
  2644. <chord/>
  2645. <pitch>
  2646. <step>B</step>
  2647. <octave>3</octave>
  2648. </pitch>
  2649. <duration>3</duration>
  2650. <voice>1</voice>
  2651. <type>eighth</type>
  2652. <dot/>
  2653. <stem>none</stem>
  2654. <notations>
  2655. <technical>
  2656. <string>3</string>
  2657. <fret>0</fret>
  2658. </technical>
  2659. </notations>
  2660. </note>
  2661. <note default-x="117" print-dot="no">
  2662. <pitch>
  2663. <step>A</step>
  2664. <alter>1</alter>
  2665. <octave>3</octave>
  2666. </pitch>
  2667. <duration>3</duration>
  2668. <voice>1</voice>
  2669. <type>eighth</type>
  2670. <dot/>
  2671. <stem>none</stem>
  2672. <notations>
  2673. <technical>
  2674. <string>4</string>
  2675. <fret>4</fret>
  2676. </technical>
  2677. </notations>
  2678. </note>
  2679. <note default-x="117" print-dot="no">
  2680. <chord/>
  2681. <pitch>
  2682. <step>B</step>
  2683. <octave>3</octave>
  2684. </pitch>
  2685. <duration>3</duration>
  2686. <voice>1</voice>
  2687. <type>eighth</type>
  2688. <dot/>
  2689. <stem>none</stem>
  2690. <notations>
  2691. <technical>
  2692. <string>3</string>
  2693. <fret>0</fret>
  2694. </technical>
  2695. </notations>
  2696. </note>
  2697. <note default-x="117" print-dot="no">
  2698. <chord/>
  2699. <pitch>
  2700. <step>D</step>
  2701. <alter>1</alter>
  2702. <octave>4</octave>
  2703. </pitch>
  2704. <duration>3</duration>
  2705. <voice>1</voice>
  2706. <type>eighth</type>
  2707. <dot/>
  2708. <stem>none</stem>
  2709. <notations>
  2710. <technical>
  2711. <string>2</string>
  2712. <fret>0</fret>
  2713. </technical>
  2714. </notations>
  2715. </note>
  2716. <note default-x="117" print-dot="no">
  2717. <chord/>
  2718. <pitch>
  2719. <step>F</step>
  2720. <alter>1</alter>
  2721. <octave>4</octave>
  2722. </pitch>
  2723. <duration>3</duration>
  2724. <voice>1</voice>
  2725. <type>eighth</type>
  2726. <dot/>
  2727. <stem>none</stem>
  2728. <notations>
  2729. <technical>
  2730. <string>1</string>
  2731. <fret>0</fret>
  2732. </technical>
  2733. </notations>
  2734. </note>
  2735. <note default-x="150">
  2736. <pitch>
  2737. <step>G</step>
  2738. <alter>1</alter>
  2739. <octave>2</octave>
  2740. </pitch>
  2741. <duration>1</duration>
  2742. <voice>1</voice>
  2743. <type>16th</type>
  2744. <stem>none</stem>
  2745. <notations>
  2746. <technical>
  2747. <string>6</string>
  2748. <fret>2</fret>
  2749. </technical>
  2750. </notations>
  2751. </note>
  2752. <note default-x="150">
  2753. <chord/>
  2754. <pitch>
  2755. <step>D</step>
  2756. <alter>1</alter>
  2757. <octave>3</octave>
  2758. </pitch>
  2759. <duration>1</duration>
  2760. <voice>1</voice>
  2761. <type>16th</type>
  2762. <stem>none</stem>
  2763. <notations>
  2764. <technical>
  2765. <string>5</string>
  2766. <fret>2</fret>
  2767. </technical>
  2768. </notations>
  2769. </note>
  2770. <note default-x="150">
  2771. <chord/>
  2772. <pitch>
  2773. <step>A</step>
  2774. <alter>1</alter>
  2775. <octave>3</octave>
  2776. </pitch>
  2777. <duration>1</duration>
  2778. <voice>1</voice>
  2779. <type>16th</type>
  2780. <stem>none</stem>
  2781. <notations>
  2782. <technical>
  2783. <string>4</string>
  2784. <fret>4</fret>
  2785. </technical>
  2786. </notations>
  2787. </note>
  2788. <note default-x="150">
  2789. <chord/>
  2790. <pitch>
  2791. <step>B</step>
  2792. <octave>3</octave>
  2793. </pitch>
  2794. <duration>1</duration>
  2795. <voice>1</voice>
  2796. <type>16th</type>
  2797. <stem>none</stem>
  2798. <notations>
  2799. <technical>
  2800. <string>3</string>
  2801. <fret>0</fret>
  2802. </technical>
  2803. </notations>
  2804. </note>
  2805. <note default-x="165">
  2806. <pitch>
  2807. <step>A</step>
  2808. <alter>1</alter>
  2809. <octave>3</octave>
  2810. </pitch>
  2811. <duration>2</duration>
  2812. <voice>1</voice>
  2813. <type>eighth</type>
  2814. <stem>none</stem>
  2815. <notations>
  2816. <technical>
  2817. <string>4</string>
  2818. <fret>4</fret>
  2819. </technical>
  2820. </notations>
  2821. </note>
  2822. <note default-x="166">
  2823. <chord/>
  2824. <pitch>
  2825. <step>B</step>
  2826. <octave>3</octave>
  2827. </pitch>
  2828. <duration>2</duration>
  2829. <voice>1</voice>
  2830. <type>eighth</type>
  2831. <stem>none</stem>
  2832. <notations>
  2833. <technical>
  2834. <string>3</string>
  2835. <fret>0</fret>
  2836. </technical>
  2837. </notations>
  2838. </note>
  2839. <note default-x="166">
  2840. <chord/>
  2841. <pitch>
  2842. <step>D</step>
  2843. <alter>1</alter>
  2844. <octave>4</octave>
  2845. </pitch>
  2846. <duration>2</duration>
  2847. <voice>1</voice>
  2848. <type>eighth</type>
  2849. <stem>none</stem>
  2850. <notations>
  2851. <technical>
  2852. <string>2</string>
  2853. <fret>0</fret>
  2854. </technical>
  2855. </notations>
  2856. </note>
  2857. <note default-x="166">
  2858. <chord/>
  2859. <pitch>
  2860. <step>F</step>
  2861. <alter>1</alter>
  2862. <octave>4</octave>
  2863. </pitch>
  2864. <duration>2</duration>
  2865. <voice>1</voice>
  2866. <type>eighth</type>
  2867. <stem>none</stem>
  2868. <notations>
  2869. <technical>
  2870. <string>1</string>
  2871. <fret>0</fret>
  2872. </technical>
  2873. </notations>
  2874. </note>
  2875. <note default-x="190">
  2876. <pitch>
  2877. <step>G</step>
  2878. <alter>1</alter>
  2879. <octave>2</octave>
  2880. </pitch>
  2881. <duration>1</duration>
  2882. <voice>1</voice>
  2883. <type>16th</type>
  2884. <stem>none</stem>
  2885. <notations>
  2886. <technical>
  2887. <string>6</string>
  2888. <fret>2</fret>
  2889. </technical>
  2890. </notations>
  2891. </note>
  2892. </measure>
  2893. <!--=======================================================-->
  2894. <measure number="7" width="190">
  2895. <harmony default-y="40" font-size="15.4">
  2896. <root>
  2897. <root-step>F</root-step>
  2898. <root-alter>1</root-alter>
  2899. </root>
  2900. <kind halign="left" text="">major</kind>
  2901. </harmony>
  2902. <note default-x="12" print-dot="no">
  2903. <pitch>
  2904. <step>F</step>
  2905. <alter>1</alter>
  2906. <octave>2</octave>
  2907. </pitch>
  2908. <duration>3</duration>
  2909. <voice>1</voice>
  2910. <type>eighth</type>
  2911. <dot/>
  2912. <stem>none</stem>
  2913. <notations>
  2914. <technical>
  2915. <string>6</string>
  2916. <fret>0</fret>
  2917. </technical>
  2918. </notations>
  2919. </note>
  2920. <note default-x="12" print-dot="no">
  2921. <chord/>
  2922. <pitch>
  2923. <step>C</step>
  2924. <alter>1</alter>
  2925. <octave>3</octave>
  2926. </pitch>
  2927. <duration>3</duration>
  2928. <voice>1</voice>
  2929. <type>eighth</type>
  2930. <dot/>
  2931. <stem>none</stem>
  2932. <notations>
  2933. <technical>
  2934. <string>5</string>
  2935. <fret>0</fret>
  2936. </technical>
  2937. </notations>
  2938. </note>
  2939. <note default-x="44" print-dot="no">
  2940. <pitch>
  2941. <step>A</step>
  2942. <alter>1</alter>
  2943. <octave>3</octave>
  2944. </pitch>
  2945. <duration>3</duration>
  2946. <voice>1</voice>
  2947. <type>eighth</type>
  2948. <dot/>
  2949. <stem>none</stem>
  2950. <notations>
  2951. <technical>
  2952. <string>4</string>
  2953. <fret>4</fret>
  2954. </technical>
  2955. </notations>
  2956. </note>
  2957. <harmony default-y="40" font-size="15.4">
  2958. <root>
  2959. <root-step>C</root-step>
  2960. <root-alter>1</root-alter>
  2961. </root>
  2962. <kind halign="left" text="7sus4">suspended-fourth</kind>
  2963. <degree print-object="no">
  2964. <degree-value>7</degree-value>
  2965. <degree-alter>0</degree-alter>
  2966. <degree-type>add</degree-type>
  2967. </degree>
  2968. </harmony>
  2969. <note default-x="77" print-dot="no">
  2970. <pitch>
  2971. <step>C</step>
  2972. <alter>1</alter>
  2973. <octave>3</octave>
  2974. </pitch>
  2975. <duration>3</duration>
  2976. <voice>1</voice>
  2977. <type>eighth</type>
  2978. <dot/>
  2979. <stem>none</stem>
  2980. <notations>
  2981. <technical>
  2982. <string>5</string>
  2983. <fret>0</fret>
  2984. </technical>
  2985. </notations>
  2986. </note>
  2987. <note default-x="76" print-dot="no">
  2988. <chord/>
  2989. <pitch>
  2990. <step>G</step>
  2991. <alter>1</alter>
  2992. <octave>3</octave>
  2993. </pitch>
  2994. <duration>3</duration>
  2995. <voice>1</voice>
  2996. <type>eighth</type>
  2997. <dot/>
  2998. <stem>none</stem>
  2999. <notations>
  3000. <technical>
  3001. <string>4</string>
  3002. <fret>2</fret>
  3003. </technical>
  3004. </notations>
  3005. </note>
  3006. <note default-x="77" print-dot="no">
  3007. <chord/>
  3008. <pitch>
  3009. <step>B</step>
  3010. <octave>3</octave>
  3011. </pitch>
  3012. <duration>3</duration>
  3013. <voice>1</voice>
  3014. <type>eighth</type>
  3015. <dot/>
  3016. <stem>none</stem>
  3017. <notations>
  3018. <technical>
  3019. <string>3</string>
  3020. <fret>0</fret>
  3021. </technical>
  3022. </notations>
  3023. </note>
  3024. <note default-x="109" print-dot="no">
  3025. <pitch>
  3026. <step>G</step>
  3027. <alter>1</alter>
  3028. <octave>3</octave>
  3029. </pitch>
  3030. <duration>3</duration>
  3031. <voice>1</voice>
  3032. <type>eighth</type>
  3033. <dot/>
  3034. <stem>none</stem>
  3035. <notations>
  3036. <technical>
  3037. <string>4</string>
  3038. <fret>2</fret>
  3039. </technical>
  3040. </notations>
  3041. </note>
  3042. <note default-x="110" print-dot="no">
  3043. <chord/>
  3044. <pitch>
  3045. <step>B</step>
  3046. <octave>3</octave>
  3047. </pitch>
  3048. <duration>3</duration>
  3049. <voice>1</voice>
  3050. <type>eighth</type>
  3051. <dot/>
  3052. <stem>none</stem>
  3053. <notations>
  3054. <technical>
  3055. <string>3</string>
  3056. <fret>0</fret>
  3057. </technical>
  3058. </notations>
  3059. </note>
  3060. <note default-x="110" print-dot="no">
  3061. <chord/>
  3062. <pitch>
  3063. <step>F</step>
  3064. <alter>1</alter>
  3065. <octave>4</octave>
  3066. </pitch>
  3067. <duration>3</duration>
  3068. <voice>1</voice>
  3069. <type>eighth</type>
  3070. <dot/>
  3071. <stem>none</stem>
  3072. <notations>
  3073. <technical>
  3074. <string>2</string>
  3075. <fret>3</fret>
  3076. </technical>
  3077. </notations>
  3078. </note>
  3079. <note default-x="110" print-dot="no">
  3080. <chord/>
  3081. <pitch>
  3082. <step>F</step>
  3083. <alter>1</alter>
  3084. <octave>4</octave>
  3085. </pitch>
  3086. <duration>3</duration>
  3087. <voice>1</voice>
  3088. <type>eighth</type>
  3089. <dot/>
  3090. <stem>none</stem>
  3091. <notations>
  3092. <technical>
  3093. <string>1</string>
  3094. <fret>0</fret>
  3095. </technical>
  3096. </notations>
  3097. </note>
  3098. <note default-x="142">
  3099. <pitch>
  3100. <step>C</step>
  3101. <alter>1</alter>
  3102. <octave>3</octave>
  3103. </pitch>
  3104. <duration>1</duration>
  3105. <voice>1</voice>
  3106. <type>16th</type>
  3107. <stem>none</stem>
  3108. <notations>
  3109. <technical>
  3110. <string>5</string>
  3111. <fret>0</fret>
  3112. </technical>
  3113. </notations>
  3114. </note>
  3115. <note default-x="142">
  3116. <chord/>
  3117. <pitch>
  3118. <step>G</step>
  3119. <alter>1</alter>
  3120. <octave>3</octave>
  3121. </pitch>
  3122. <duration>1</duration>
  3123. <voice>1</voice>
  3124. <type>16th</type>
  3125. <stem>none</stem>
  3126. <notations>
  3127. <technical>
  3128. <string>4</string>
  3129. <fret>2</fret>
  3130. </technical>
  3131. </notations>
  3132. </note>
  3133. <note default-x="142">
  3134. <chord/>
  3135. <pitch>
  3136. <step>B</step>
  3137. <octave>3</octave>
  3138. </pitch>
  3139. <duration>1</duration>
  3140. <voice>1</voice>
  3141. <type>16th</type>
  3142. <stem>none</stem>
  3143. <notations>
  3144. <technical>
  3145. <string>3</string>
  3146. <fret>0</fret>
  3147. </technical>
  3148. </notations>
  3149. </note>
  3150. <note default-x="157" print-dot="no">
  3151. <pitch>
  3152. <step>F</step>
  3153. <alter>1</alter>
  3154. <octave>3</octave>
  3155. </pitch>
  3156. <duration>3</duration>
  3157. <voice>1</voice>
  3158. <type>eighth</type>
  3159. <dot/>
  3160. <stem>none</stem>
  3161. <notations>
  3162. <technical>
  3163. <string>4</string>
  3164. <fret>0</fret>
  3165. </technical>
  3166. </notations>
  3167. </note>
  3168. </measure>
  3169. <!--=======================================================-->
  3170. <measure number="8" width="190">
  3171. <harmony default-y="40" font-size="15.4">
  3172. <root>
  3173. <root-step>F</root-step>
  3174. <root-alter>1</root-alter>
  3175. </root>
  3176. <kind halign="left" text="">major</kind>
  3177. </harmony>
  3178. <note default-x="11" print-dot="no">
  3179. <pitch>
  3180. <step>F</step>
  3181. <alter>1</alter>
  3182. <octave>2</octave>
  3183. </pitch>
  3184. <duration>3</duration>
  3185. <voice>1</voice>
  3186. <type>eighth</type>
  3187. <dot/>
  3188. <stem>none</stem>
  3189. <notations>
  3190. <technical>
  3191. <string>6</string>
  3192. <fret>0</fret>
  3193. </technical>
  3194. </notations>
  3195. </note>
  3196. <note default-x="11" print-dot="no">
  3197. <chord/>
  3198. <pitch>
  3199. <step>C</step>
  3200. <alter>1</alter>
  3201. <octave>3</octave>
  3202. </pitch>
  3203. <duration>3</duration>
  3204. <voice>1</voice>
  3205. <type>eighth</type>
  3206. <dot/>
  3207. <stem>none</stem>
  3208. <notations>
  3209. <technical>
  3210. <string>5</string>
  3211. <fret>0</fret>
  3212. </technical>
  3213. </notations>
  3214. </note>
  3215. <note default-x="44" print-dot="no">
  3216. <pitch>
  3217. <step>A</step>
  3218. <alter>1</alter>
  3219. <octave>3</octave>
  3220. </pitch>
  3221. <duration>3</duration>
  3222. <voice>1</voice>
  3223. <type>eighth</type>
  3224. <dot/>
  3225. <stem>none</stem>
  3226. <notations>
  3227. <technical>
  3228. <string>4</string>
  3229. <fret>4</fret>
  3230. </technical>
  3231. </notations>
  3232. </note>
  3233. <harmony default-y="40" font-size="15.4">
  3234. <root>
  3235. <root-step>C</root-step>
  3236. <root-alter>1</root-alter>
  3237. </root>
  3238. <kind halign="left" text="7sus4">suspended-fourth</kind>
  3239. <degree print-object="no">
  3240. <degree-value>7</degree-value>
  3241. <degree-alter>0</degree-alter>
  3242. <degree-type>add</degree-type>
  3243. </degree>
  3244. </harmony>
  3245. <note default-x="77" print-dot="no">
  3246. <pitch>
  3247. <step>C</step>
  3248. <alter>1</alter>
  3249. <octave>3</octave>
  3250. </pitch>
  3251. <duration>3</duration>
  3252. <voice>1</voice>
  3253. <type>eighth</type>
  3254. <dot/>
  3255. <stem>none</stem>
  3256. <notations>
  3257. <technical>
  3258. <string>5</string>
  3259. <fret>0</fret>
  3260. </technical>
  3261. </notations>
  3262. </note>
  3263. <note default-x="76" print-dot="no">
  3264. <chord/>
  3265. <pitch>
  3266. <step>G</step>
  3267. <alter>1</alter>
  3268. <octave>3</octave>
  3269. </pitch>
  3270. <duration>3</duration>
  3271. <voice>1</voice>
  3272. <type>eighth</type>
  3273. <dot/>
  3274. <stem>none</stem>
  3275. <notations>
  3276. <technical>
  3277. <string>4</string>
  3278. <fret>2</fret>
  3279. </technical>
  3280. </notations>
  3281. </note>
  3282. <note default-x="77" print-dot="no">
  3283. <chord/>
  3284. <pitch>
  3285. <step>B</step>
  3286. <octave>3</octave>
  3287. </pitch>
  3288. <duration>3</duration>
  3289. <voice>1</voice>
  3290. <type>eighth</type>
  3291. <dot/>
  3292. <stem>none</stem>
  3293. <notations>
  3294. <technical>
  3295. <string>3</string>
  3296. <fret>0</fret>
  3297. </technical>
  3298. </notations>
  3299. </note>
  3300. <note default-x="109" print-dot="no">
  3301. <pitch>
  3302. <step>G</step>
  3303. <alter>1</alter>
  3304. <octave>3</octave>
  3305. </pitch>
  3306. <duration>3</duration>
  3307. <voice>1</voice>
  3308. <type>eighth</type>
  3309. <dot/>
  3310. <stem>none</stem>
  3311. <notations>
  3312. <technical>
  3313. <string>4</string>
  3314. <fret>2</fret>
  3315. </technical>
  3316. </notations>
  3317. </note>
  3318. <note default-x="110" print-dot="no">
  3319. <chord/>
  3320. <pitch>
  3321. <step>B</step>
  3322. <octave>3</octave>
  3323. </pitch>
  3324. <duration>3</duration>
  3325. <voice>1</voice>
  3326. <type>eighth</type>
  3327. <dot/>
  3328. <stem>none</stem>
  3329. <notations>
  3330. <technical>
  3331. <string>3</string>
  3332. <fret>0</fret>
  3333. </technical>
  3334. </notations>
  3335. </note>
  3336. <note default-x="110" print-dot="no">
  3337. <chord/>
  3338. <pitch>
  3339. <step>F</step>
  3340. <alter>1</alter>
  3341. <octave>4</octave>
  3342. </pitch>
  3343. <duration>3</duration>
  3344. <voice>1</voice>
  3345. <type>eighth</type>
  3346. <dot/>
  3347. <stem>none</stem>
  3348. <notations>
  3349. <technical>
  3350. <string>2</string>
  3351. <fret>3</fret>
  3352. </technical>
  3353. </notations>
  3354. </note>
  3355. <note default-x="110" print-dot="no">
  3356. <chord/>
  3357. <pitch>
  3358. <step>F</step>
  3359. <alter>1</alter>
  3360. <octave>4</octave>
  3361. </pitch>
  3362. <duration>3</duration>
  3363. <voice>1</voice>
  3364. <type>eighth</type>
  3365. <dot/>
  3366. <stem>none</stem>
  3367. <notations>
  3368. <technical>
  3369. <string>1</string>
  3370. <fret>0</fret>
  3371. </technical>
  3372. </notations>
  3373. </note>
  3374. <note default-x="142">
  3375. <pitch>
  3376. <step>C</step>
  3377. <alter>1</alter>
  3378. <octave>3</octave>
  3379. </pitch>
  3380. <duration>1</duration>
  3381. <voice>1</voice>
  3382. <type>16th</type>
  3383. <stem>none</stem>
  3384. <notations>
  3385. <technical>
  3386. <string>5</string>
  3387. <fret>0</fret>
  3388. </technical>
  3389. </notations>
  3390. </note>
  3391. <note default-x="142">
  3392. <chord/>
  3393. <pitch>
  3394. <step>G</step>
  3395. <alter>1</alter>
  3396. <octave>3</octave>
  3397. </pitch>
  3398. <duration>1</duration>
  3399. <voice>1</voice>
  3400. <type>16th</type>
  3401. <stem>none</stem>
  3402. <notations>
  3403. <technical>
  3404. <string>4</string>
  3405. <fret>2</fret>
  3406. </technical>
  3407. </notations>
  3408. </note>
  3409. <note default-x="142">
  3410. <chord/>
  3411. <pitch>
  3412. <step>B</step>
  3413. <octave>3</octave>
  3414. </pitch>
  3415. <duration>1</duration>
  3416. <voice>1</voice>
  3417. <type>16th</type>
  3418. <stem>none</stem>
  3419. <notations>
  3420. <technical>
  3421. <string>3</string>
  3422. <fret>0</fret>
  3423. </technical>
  3424. </notations>
  3425. </note>
  3426. <note default-x="157" print-dot="no">
  3427. <pitch>
  3428. <step>F</step>
  3429. <alter>1</alter>
  3430. <octave>3</octave>
  3431. </pitch>
  3432. <duration>3</duration>
  3433. <voice>1</voice>
  3434. <type>eighth</type>
  3435. <dot/>
  3436. <stem>none</stem>
  3437. <notations>
  3438. <technical>
  3439. <string>4</string>
  3440. <fret>0</fret>
  3441. </technical>
  3442. </notations>
  3443. </note>
  3444. </measure>
  3445. <!--=======================================================-->
  3446. <measure number="9" width="191">
  3447. <harmony default-y="40" font-size="15.4">
  3448. <root>
  3449. <root-step>F</root-step>
  3450. <root-alter>1</root-alter>
  3451. </root>
  3452. <kind halign="left" text="">major</kind>
  3453. </harmony>
  3454. <note default-x="11" print-dot="no">
  3455. <pitch>
  3456. <step>F</step>
  3457. <alter>1</alter>
  3458. <octave>2</octave>
  3459. </pitch>
  3460. <duration>3</duration>
  3461. <voice>1</voice>
  3462. <type>eighth</type>
  3463. <dot/>
  3464. <stem>none</stem>
  3465. <notations>
  3466. <technical>
  3467. <string>6</string>
  3468. <fret>0</fret>
  3469. </technical>
  3470. </notations>
  3471. </note>
  3472. <note default-x="11" print-dot="no">
  3473. <chord/>
  3474. <pitch>
  3475. <step>C</step>
  3476. <alter>1</alter>
  3477. <octave>3</octave>
  3478. </pitch>
  3479. <duration>3</duration>
  3480. <voice>1</voice>
  3481. <type>eighth</type>
  3482. <dot/>
  3483. <stem>none</stem>
  3484. <notations>
  3485. <technical>
  3486. <string>5</string>
  3487. <fret>0</fret>
  3488. </technical>
  3489. </notations>
  3490. </note>
  3491. <note default-x="44" print-dot="no">
  3492. <pitch>
  3493. <step>A</step>
  3494. <alter>1</alter>
  3495. <octave>3</octave>
  3496. </pitch>
  3497. <duration>3</duration>
  3498. <voice>1</voice>
  3499. <type>eighth</type>
  3500. <dot/>
  3501. <stem>none</stem>
  3502. <notations>
  3503. <technical>
  3504. <string>4</string>
  3505. <fret>4</fret>
  3506. </technical>
  3507. </notations>
  3508. </note>
  3509. <harmony default-y="40" font-size="15.4">
  3510. <root>
  3511. <root-step>C</root-step>
  3512. <root-alter>1</root-alter>
  3513. </root>
  3514. <kind halign="left" text="7sus4">suspended-fourth</kind>
  3515. <degree print-object="no">
  3516. <degree-value>7</degree-value>
  3517. <degree-alter>0</degree-alter>
  3518. <degree-type>add</degree-type>
  3519. </degree>
  3520. </harmony>
  3521. <note default-x="77" print-dot="no">
  3522. <pitch>
  3523. <step>C</step>
  3524. <alter>1</alter>
  3525. <octave>3</octave>
  3526. </pitch>
  3527. <duration>3</duration>
  3528. <voice>1</voice>
  3529. <type>eighth</type>
  3530. <dot/>
  3531. <stem>none</stem>
  3532. <notations>
  3533. <technical>
  3534. <string>5</string>
  3535. <fret>0</fret>
  3536. </technical>
  3537. </notations>
  3538. </note>
  3539. <note default-x="77" print-dot="no">
  3540. <chord/>
  3541. <pitch>
  3542. <step>G</step>
  3543. <alter>1</alter>
  3544. <octave>3</octave>
  3545. </pitch>
  3546. <duration>3</duration>
  3547. <voice>1</voice>
  3548. <type>eighth</type>
  3549. <dot/>
  3550. <stem>none</stem>
  3551. <notations>
  3552. <technical>
  3553. <string>4</string>
  3554. <fret>2</fret>
  3555. </technical>
  3556. </notations>
  3557. </note>
  3558. <note default-x="77" print-dot="no">
  3559. <chord/>
  3560. <pitch>
  3561. <step>B</step>
  3562. <octave>3</octave>
  3563. </pitch>
  3564. <duration>3</duration>
  3565. <voice>1</voice>
  3566. <type>eighth</type>
  3567. <dot/>
  3568. <stem>none</stem>
  3569. <notations>
  3570. <technical>
  3571. <string>3</string>
  3572. <fret>0</fret>
  3573. </technical>
  3574. </notations>
  3575. </note>
  3576. <note default-x="109" print-dot="no">
  3577. <pitch>
  3578. <step>G</step>
  3579. <alter>1</alter>
  3580. <octave>3</octave>
  3581. </pitch>
  3582. <duration>3</duration>
  3583. <voice>1</voice>
  3584. <type>eighth</type>
  3585. <dot/>
  3586. <stem>none</stem>
  3587. <notations>
  3588. <technical>
  3589. <string>4</string>
  3590. <fret>2</fret>
  3591. </technical>
  3592. </notations>
  3593. </note>
  3594. <note default-x="110" print-dot="no">
  3595. <chord/>
  3596. <pitch>
  3597. <step>B</step>
  3598. <octave>3</octave>
  3599. </pitch>
  3600. <duration>3</duration>
  3601. <voice>1</voice>
  3602. <type>eighth</type>
  3603. <dot/>
  3604. <stem>none</stem>
  3605. <notations>
  3606. <technical>
  3607. <string>3</string>
  3608. <fret>0</fret>
  3609. </technical>
  3610. </notations>
  3611. </note>
  3612. <note default-x="110" print-dot="no">
  3613. <chord/>
  3614. <pitch>
  3615. <step>F</step>
  3616. <alter>1</alter>
  3617. <octave>4</octave>
  3618. </pitch>
  3619. <duration>3</duration>
  3620. <voice>1</voice>
  3621. <type>eighth</type>
  3622. <dot/>
  3623. <stem>none</stem>
  3624. <notations>
  3625. <technical>
  3626. <string>2</string>
  3627. <fret>3</fret>
  3628. </technical>
  3629. </notations>
  3630. </note>
  3631. <note default-x="110" print-dot="no">
  3632. <chord/>
  3633. <pitch>
  3634. <step>F</step>
  3635. <alter>1</alter>
  3636. <octave>4</octave>
  3637. </pitch>
  3638. <duration>3</duration>
  3639. <voice>1</voice>
  3640. <type>eighth</type>
  3641. <dot/>
  3642. <stem>none</stem>
  3643. <notations>
  3644. <technical>
  3645. <string>1</string>
  3646. <fret>0</fret>
  3647. </technical>
  3648. </notations>
  3649. </note>
  3650. <note default-x="143">
  3651. <pitch>
  3652. <step>C</step>
  3653. <alter>1</alter>
  3654. <octave>3</octave>
  3655. </pitch>
  3656. <duration>1</duration>
  3657. <voice>1</voice>
  3658. <type>16th</type>
  3659. <stem>none</stem>
  3660. <notations>
  3661. <technical>
  3662. <string>5</string>
  3663. <fret>0</fret>
  3664. </technical>
  3665. </notations>
  3666. </note>
  3667. <note default-x="142">
  3668. <chord/>
  3669. <pitch>
  3670. <step>G</step>
  3671. <alter>1</alter>
  3672. <octave>3</octave>
  3673. </pitch>
  3674. <duration>1</duration>
  3675. <voice>1</voice>
  3676. <type>16th</type>
  3677. <stem>none</stem>
  3678. <notations>
  3679. <technical>
  3680. <string>4</string>
  3681. <fret>2</fret>
  3682. </technical>
  3683. </notations>
  3684. </note>
  3685. <note default-x="143">
  3686. <chord/>
  3687. <pitch>
  3688. <step>B</step>
  3689. <octave>3</octave>
  3690. </pitch>
  3691. <duration>1</duration>
  3692. <voice>1</voice>
  3693. <type>16th</type>
  3694. <stem>none</stem>
  3695. <notations>
  3696. <technical>
  3697. <string>3</string>
  3698. <fret>0</fret>
  3699. </technical>
  3700. </notations>
  3701. </note>
  3702. <note default-x="157" print-dot="no">
  3703. <pitch>
  3704. <step>F</step>
  3705. <alter>1</alter>
  3706. <octave>3</octave>
  3707. </pitch>
  3708. <duration>3</duration>
  3709. <voice>1</voice>
  3710. <type>eighth</type>
  3711. <dot/>
  3712. <stem>none</stem>
  3713. <notations>
  3714. <technical>
  3715. <string>4</string>
  3716. <fret>0</fret>
  3717. </technical>
  3718. </notations>
  3719. </note>
  3720. </measure>
  3721. <!--=======================================================-->
  3722. <measure number="10" width="313">
  3723. <print new-system="yes"/>
  3724. <note default-x="143" print-dot="no">
  3725. <pitch>
  3726. <step>F</step>
  3727. <alter>1</alter>
  3728. <octave>2</octave>
  3729. </pitch>
  3730. <duration>3</duration>
  3731. <voice>1</voice>
  3732. <type>eighth</type>
  3733. <dot/>
  3734. <stem>none</stem>
  3735. <notations>
  3736. <technical>
  3737. <string>6</string>
  3738. <fret>0</fret>
  3739. </technical>
  3740. </notations>
  3741. </note>
  3742. <note default-x="143" print-dot="no">
  3743. <chord/>
  3744. <pitch>
  3745. <step>C</step>
  3746. <alter>1</alter>
  3747. <octave>3</octave>
  3748. </pitch>
  3749. <duration>3</duration>
  3750. <voice>1</voice>
  3751. <type>eighth</type>
  3752. <dot/>
  3753. <stem>none</stem>
  3754. <notations>
  3755. <technical>
  3756. <string>5</string>
  3757. <fret>0</fret>
  3758. </technical>
  3759. </notations>
  3760. </note>
  3761. <note default-x="170" print-dot="no">
  3762. <pitch>
  3763. <step>A</step>
  3764. <alter>1</alter>
  3765. <octave>3</octave>
  3766. </pitch>
  3767. <duration>3</duration>
  3768. <voice>1</voice>
  3769. <type>eighth</type>
  3770. <dot/>
  3771. <stem>none</stem>
  3772. <notations>
  3773. <technical>
  3774. <string>4</string>
  3775. <fret>4</fret>
  3776. </technical>
  3777. </notations>
  3778. </note>
  3779. <note default-x="198" print-dot="no">
  3780. <pitch>
  3781. <step>C</step>
  3782. <alter>1</alter>
  3783. <octave>3</octave>
  3784. </pitch>
  3785. <duration>3</duration>
  3786. <voice>1</voice>
  3787. <type>eighth</type>
  3788. <dot/>
  3789. <stem>none</stem>
  3790. <notations>
  3791. <technical>
  3792. <string>5</string>
  3793. <fret>0</fret>
  3794. </technical>
  3795. </notations>
  3796. </note>
  3797. <note default-x="198" print-dot="no">
  3798. <chord/>
  3799. <pitch>
  3800. <step>G</step>
  3801. <alter>1</alter>
  3802. <octave>3</octave>
  3803. </pitch>
  3804. <duration>3</duration>
  3805. <voice>1</voice>
  3806. <type>eighth</type>
  3807. <dot/>
  3808. <stem>none</stem>
  3809. <notations>
  3810. <technical>
  3811. <string>4</string>
  3812. <fret>2</fret>
  3813. </technical>
  3814. </notations>
  3815. </note>
  3816. <note default-x="198" print-dot="no">
  3817. <chord/>
  3818. <pitch>
  3819. <step>B</step>
  3820. <octave>3</octave>
  3821. </pitch>
  3822. <duration>3</duration>
  3823. <voice>1</voice>
  3824. <type>eighth</type>
  3825. <dot/>
  3826. <stem>none</stem>
  3827. <notations>
  3828. <technical>
  3829. <string>3</string>
  3830. <fret>0</fret>
  3831. </technical>
  3832. </notations>
  3833. </note>
  3834. <note default-x="230" print-dot="no">
  3835. <pitch>
  3836. <step>G</step>
  3837. <alter>1</alter>
  3838. <octave>3</octave>
  3839. </pitch>
  3840. <duration>3</duration>
  3841. <voice>1</voice>
  3842. <type>eighth</type>
  3843. <dot/>
  3844. <stem>none</stem>
  3845. <notations>
  3846. <technical>
  3847. <string>4</string>
  3848. <fret>2</fret>
  3849. </technical>
  3850. </notations>
  3851. </note>
  3852. <note default-x="230" print-dot="no">
  3853. <chord/>
  3854. <pitch>
  3855. <step>B</step>
  3856. <octave>3</octave>
  3857. </pitch>
  3858. <duration>3</duration>
  3859. <voice>1</voice>
  3860. <type>eighth</type>
  3861. <dot/>
  3862. <stem>none</stem>
  3863. <notations>
  3864. <technical>
  3865. <string>3</string>
  3866. <fret>0</fret>
  3867. </technical>
  3868. </notations>
  3869. </note>
  3870. <note default-x="231" print-dot="no">
  3871. <chord/>
  3872. <pitch>
  3873. <step>F</step>
  3874. <alter>1</alter>
  3875. <octave>4</octave>
  3876. </pitch>
  3877. <duration>3</duration>
  3878. <voice>1</voice>
  3879. <type>eighth</type>
  3880. <dot/>
  3881. <stem>none</stem>
  3882. <notations>
  3883. <technical>
  3884. <string>2</string>
  3885. <fret>3</fret>
  3886. </technical>
  3887. </notations>
  3888. </note>
  3889. <note default-x="230" print-dot="no">
  3890. <chord/>
  3891. <pitch>
  3892. <step>F</step>
  3893. <alter>1</alter>
  3894. <octave>4</octave>
  3895. </pitch>
  3896. <duration>3</duration>
  3897. <voice>1</voice>
  3898. <type>eighth</type>
  3899. <dot/>
  3900. <stem>none</stem>
  3901. <notations>
  3902. <technical>
  3903. <string>1</string>
  3904. <fret>0</fret>
  3905. </technical>
  3906. </notations>
  3907. </note>
  3908. <note default-x="258">
  3909. <pitch>
  3910. <step>C</step>
  3911. <alter>1</alter>
  3912. <octave>3</octave>
  3913. </pitch>
  3914. <duration>1</duration>
  3915. <voice>1</voice>
  3916. <type>16th</type>
  3917. <stem>none</stem>
  3918. <notations>
  3919. <technical>
  3920. <string>5</string>
  3921. <fret>0</fret>
  3922. </technical>
  3923. </notations>
  3924. </note>
  3925. <note default-x="258">
  3926. <chord/>
  3927. <pitch>
  3928. <step>G</step>
  3929. <alter>1</alter>
  3930. <octave>3</octave>
  3931. </pitch>
  3932. <duration>1</duration>
  3933. <voice>1</voice>
  3934. <type>16th</type>
  3935. <stem>none</stem>
  3936. <notations>
  3937. <technical>
  3938. <string>4</string>
  3939. <fret>2</fret>
  3940. </technical>
  3941. </notations>
  3942. </note>
  3943. <note default-x="258">
  3944. <chord/>
  3945. <pitch>
  3946. <step>B</step>
  3947. <octave>3</octave>
  3948. </pitch>
  3949. <duration>1</duration>
  3950. <voice>1</voice>
  3951. <type>16th</type>
  3952. <stem>none</stem>
  3953. <notations>
  3954. <technical>
  3955. <string>3</string>
  3956. <fret>0</fret>
  3957. </technical>
  3958. </notations>
  3959. </note>
  3960. <note default-x="272" print-dot="no">
  3961. <pitch>
  3962. <step>F</step>
  3963. <alter>1</alter>
  3964. <octave>3</octave>
  3965. </pitch>
  3966. <duration>3</duration>
  3967. <voice>1</voice>
  3968. <type>eighth</type>
  3969. <dot/>
  3970. <stem>none</stem>
  3971. <notations>
  3972. <technical>
  3973. <string>4</string>
  3974. <fret>0</fret>
  3975. </technical>
  3976. </notations>
  3977. </note>
  3978. </measure>
  3979. <!--=======================================================-->
  3980. <measure number="11" width="357">
  3981. <note default-x="17">
  3982. <pitch>
  3983. <step>C</step>
  3984. <alter>1</alter>
  3985. <octave>3</octave>
  3986. </pitch>
  3987. <duration>1</duration>
  3988. <voice>1</voice>
  3989. <type>16th</type>
  3990. <stem>none</stem>
  3991. <notations>
  3992. <technical>
  3993. <string>5</string>
  3994. <fret>0</fret>
  3995. </technical>
  3996. </notations>
  3997. </note>
  3998. <note default-x="53">
  3999. <pitch>
  4000. <step>D</step>
  4001. <alter>1</alter>
  4002. <octave>3</octave>
  4003. </pitch>
  4004. <duration>2</duration>
  4005. <voice>1</voice>
  4006. <type>eighth</type>
  4007. <stem>none</stem>
  4008. <notations>
  4009. <technical>
  4010. <string>5</string>
  4011. <fret>2</fret>
  4012. </technical>
  4013. </notations>
  4014. </note>
  4015. <note default-x="94">
  4016. <pitch>
  4017. <step>B</step>
  4018. <octave>3</octave>
  4019. </pitch>
  4020. <duration>2</duration>
  4021. <voice>1</voice>
  4022. <type>eighth</type>
  4023. <stem>none</stem>
  4024. <notations>
  4025. <technical>
  4026. <string>3</string>
  4027. <fret>0</fret>
  4028. </technical>
  4029. </notations>
  4030. </note>
  4031. <note default-x="135">
  4032. <pitch>
  4033. <step>A</step>
  4034. <alter>1</alter>
  4035. <octave>3</octave>
  4036. </pitch>
  4037. <duration>1</duration>
  4038. <voice>1</voice>
  4039. <type>16th</type>
  4040. <stem>none</stem>
  4041. <notations>
  4042. <technical>
  4043. <string>4</string>
  4044. <fret>4</fret>
  4045. </technical>
  4046. </notations>
  4047. </note>
  4048. <note default-x="154" print-dot="no">
  4049. <pitch>
  4050. <step>D</step>
  4051. <alter>1</alter>
  4052. <octave>3</octave>
  4053. </pitch>
  4054. <duration>3</duration>
  4055. <voice>1</voice>
  4056. <type>eighth</type>
  4057. <dot/>
  4058. <stem>none</stem>
  4059. <notations>
  4060. <technical>
  4061. <string>5</string>
  4062. <fret>2</fret>
  4063. </technical>
  4064. </notations>
  4065. </note>
  4066. <note default-x="247">
  4067. <pitch>
  4068. <step>B</step>
  4069. <octave>3</octave>
  4070. </pitch>
  4071. <duration>2</duration>
  4072. <voice>1</voice>
  4073. <type>eighth</type>
  4074. <stem>none</stem>
  4075. <notations>
  4076. <technical>
  4077. <string>3</string>
  4078. <fret>0</fret>
  4079. </technical>
  4080. </notations>
  4081. </note>
  4082. <note default-x="278">
  4083. <pitch>
  4084. <step>A</step>
  4085. <alter>1</alter>
  4086. <octave>3</octave>
  4087. </pitch>
  4088. <duration>1</duration>
  4089. <voice>1</voice>
  4090. <type>16th</type>
  4091. <stem>none</stem>
  4092. <notations>
  4093. <technical>
  4094. <string>4</string>
  4095. <fret>4</fret>
  4096. </technical>
  4097. </notations>
  4098. </note>
  4099. <note default-x="293">
  4100. <pitch>
  4101. <step>D</step>
  4102. <alter>1</alter>
  4103. <octave>3</octave>
  4104. </pitch>
  4105. <duration>1</duration>
  4106. <voice>1</voice>
  4107. <type>16th</type>
  4108. <stem>none</stem>
  4109. <notations>
  4110. <technical>
  4111. <string>5</string>
  4112. <fret>2</fret>
  4113. </technical>
  4114. </notations>
  4115. </note>
  4116. <note default-x="313" print-dot="no">
  4117. <pitch>
  4118. <step>C</step>
  4119. <alter>1</alter>
  4120. <octave>3</octave>
  4121. </pitch>
  4122. <duration>3</duration>
  4123. <voice>1</voice>
  4124. <type>eighth</type>
  4125. <dot/>
  4126. <stem>none</stem>
  4127. <notations>
  4128. <technical>
  4129. <string>5</string>
  4130. <fret>0</fret>
  4131. </technical>
  4132. </notations>
  4133. </note>
  4134. </measure>
  4135. <!--=======================================================-->
  4136. <measure number="12" width="313">
  4137. <note default-x="26">
  4138. <pitch>
  4139. <step>C</step>
  4140. <alter>1</alter>
  4141. <octave>3</octave>
  4142. </pitch>
  4143. <duration>1</duration>
  4144. <voice>1</voice>
  4145. <type>16th</type>
  4146. <stem>none</stem>
  4147. <notations>
  4148. <technical>
  4149. <string>5</string>
  4150. <fret>0</fret>
  4151. </technical>
  4152. </notations>
  4153. </note>
  4154. <note default-x="39">
  4155. <pitch>
  4156. <step>D</step>
  4157. <alter>1</alter>
  4158. <octave>3</octave>
  4159. </pitch>
  4160. <duration>2</duration>
  4161. <voice>1</voice>
  4162. <type>eighth</type>
  4163. <stem>none</stem>
  4164. <notations>
  4165. <technical>
  4166. <string>5</string>
  4167. <fret>2</fret>
  4168. </technical>
  4169. </notations>
  4170. </note>
  4171. <note default-x="64">
  4172. <pitch>
  4173. <step>B</step>
  4174. <octave>3</octave>
  4175. </pitch>
  4176. <duration>2</duration>
  4177. <voice>1</voice>
  4178. <type>eighth</type>
  4179. <stem>none</stem>
  4180. <notations>
  4181. <technical>
  4182. <string>3</string>
  4183. <fret>0</fret>
  4184. </technical>
  4185. </notations>
  4186. </note>
  4187. <note default-x="111">
  4188. <pitch>
  4189. <step>A</step>
  4190. <alter>1</alter>
  4191. <octave>3</octave>
  4192. </pitch>
  4193. <duration>1</duration>
  4194. <voice>1</voice>
  4195. <type>16th</type>
  4196. <stem>none</stem>
  4197. <notations>
  4198. <technical>
  4199. <string>4</string>
  4200. <fret>4</fret>
  4201. </technical>
  4202. </notations>
  4203. </note>
  4204. <note default-x="139" print-dot="no">
  4205. <pitch>
  4206. <step>D</step>
  4207. <alter>1</alter>
  4208. <octave>3</octave>
  4209. </pitch>
  4210. <duration>3</duration>
  4211. <voice>1</voice>
  4212. <type>eighth</type>
  4213. <dot/>
  4214. <stem>none</stem>
  4215. <notations>
  4216. <technical>
  4217. <string>5</string>
  4218. <fret>2</fret>
  4219. </technical>
  4220. </notations>
  4221. </note>
  4222. <note default-x="195">
  4223. <pitch>
  4224. <step>B</step>
  4225. <octave>3</octave>
  4226. </pitch>
  4227. <duration>2</duration>
  4228. <voice>1</voice>
  4229. <type>eighth</type>
  4230. <stem>none</stem>
  4231. <notations>
  4232. <technical>
  4233. <string>3</string>
  4234. <fret>0</fret>
  4235. </technical>
  4236. </notations>
  4237. </note>
  4238. <note default-x="214">
  4239. <pitch>
  4240. <step>A</step>
  4241. <alter>1</alter>
  4242. <octave>3</octave>
  4243. </pitch>
  4244. <duration>1</duration>
  4245. <voice>1</voice>
  4246. <type>16th</type>
  4247. <stem>none</stem>
  4248. <notations>
  4249. <technical>
  4250. <string>4</string>
  4251. <fret>4</fret>
  4252. </technical>
  4253. </notations>
  4254. </note>
  4255. <note default-x="228">
  4256. <pitch>
  4257. <step>D</step>
  4258. <alter>1</alter>
  4259. <octave>3</octave>
  4260. </pitch>
  4261. <duration>1</duration>
  4262. <voice>1</voice>
  4263. <type>16th</type>
  4264. <stem>none</stem>
  4265. <notations>
  4266. <technical>
  4267. <string>5</string>
  4268. <fret>2</fret>
  4269. </technical>
  4270. </notations>
  4271. </note>
  4272. <note default-x="243" print-dot="no">
  4273. <pitch>
  4274. <step>C</step>
  4275. <alter>1</alter>
  4276. <octave>3</octave>
  4277. </pitch>
  4278. <duration>3</duration>
  4279. <voice>1</voice>
  4280. <type>eighth</type>
  4281. <dot/>
  4282. <stem>none</stem>
  4283. <notations>
  4284. <technical>
  4285. <string>5</string>
  4286. <fret>0</fret>
  4287. </technical>
  4288. </notations>
  4289. </note>
  4290. </measure>
  4291. <!--=======================================================-->
  4292. <measure number="13" width="570">
  4293. <print new-system="yes"/>
  4294. <note default-x="144" print-dot="no">
  4295. <pitch>
  4296. <step>B</step>
  4297. <octave>2</octave>
  4298. </pitch>
  4299. <duration>3</duration>
  4300. <voice>1</voice>
  4301. <type>eighth</type>
  4302. <dot/>
  4303. <stem>none</stem>
  4304. <notations>
  4305. <technical>
  4306. <string>6</string>
  4307. <fret>5</fret>
  4308. </technical>
  4309. </notations>
  4310. </note>
  4311. <note default-x="144" print-dot="no">
  4312. <chord/>
  4313. <pitch>
  4314. <step>F</step>
  4315. <alter>1</alter>
  4316. <octave>3</octave>
  4317. </pitch>
  4318. <duration>3</duration>
  4319. <voice>1</voice>
  4320. <type>eighth</type>
  4321. <dot/>
  4322. <stem>none</stem>
  4323. <notations>
  4324. <technical>
  4325. <string>5</string>
  4326. <fret>5</fret>
  4327. </technical>
  4328. </notations>
  4329. </note>
  4330. <note default-x="143" print-dot="no">
  4331. <chord/>
  4332. <pitch>
  4333. <step>A</step>
  4334. <alter>1</alter>
  4335. <octave>3</octave>
  4336. </pitch>
  4337. <duration>3</duration>
  4338. <voice>1</voice>
  4339. <type>eighth</type>
  4340. <dot/>
  4341. <stem>none</stem>
  4342. <notations>
  4343. <technical>
  4344. <string>4</string>
  4345. <fret>4</fret>
  4346. </technical>
  4347. </notations>
  4348. </note>
  4349. <note default-x="143" print-dot="no">
  4350. <chord/>
  4351. <pitch>
  4352. <step>B</step>
  4353. <octave>3</octave>
  4354. </pitch>
  4355. <duration>3</duration>
  4356. <voice>1</voice>
  4357. <type>eighth</type>
  4358. <dot/>
  4359. <stem>none</stem>
  4360. <notations>
  4361. <technical>
  4362. <string>3</string>
  4363. <fret>0</fret>
  4364. </technical>
  4365. </notations>
  4366. </note>
  4367. <note default-x="220" print-dot="no">
  4368. <pitch>
  4369. <step>F</step>
  4370. <alter>1</alter>
  4371. <octave>4</octave>
  4372. </pitch>
  4373. <duration>3</duration>
  4374. <voice>1</voice>
  4375. <type>eighth</type>
  4376. <dot/>
  4377. <stem>none</stem>
  4378. <notations>
  4379. <technical>
  4380. <string>2</string>
  4381. <fret>3</fret>
  4382. </technical>
  4383. </notations>
  4384. </note>
  4385. <note default-x="220" print-dot="no">
  4386. <chord/>
  4387. <pitch>
  4388. <step>F</step>
  4389. <alter>1</alter>
  4390. <octave>4</octave>
  4391. </pitch>
  4392. <duration>3</duration>
  4393. <voice>1</voice>
  4394. <type>eighth</type>
  4395. <dot/>
  4396. <stem>none</stem>
  4397. <notations>
  4398. <technical>
  4399. <string>1</string>
  4400. <fret>0</fret>
  4401. </technical>
  4402. </notations>
  4403. </note>
  4404. <note default-x="284" print-dot="no">
  4405. <pitch>
  4406. <step>B</step>
  4407. <octave>2</octave>
  4408. </pitch>
  4409. <duration>3</duration>
  4410. <voice>1</voice>
  4411. <type>eighth</type>
  4412. <dot/>
  4413. <stem>none</stem>
  4414. <notations>
  4415. <technical>
  4416. <string>6</string>
  4417. <fret>5</fret>
  4418. </technical>
  4419. </notations>
  4420. </note>
  4421. <note default-x="284" print-dot="no">
  4422. <chord/>
  4423. <pitch>
  4424. <step>F</step>
  4425. <alter>1</alter>
  4426. <octave>3</octave>
  4427. </pitch>
  4428. <duration>3</duration>
  4429. <voice>1</voice>
  4430. <type>eighth</type>
  4431. <dot/>
  4432. <stem>none</stem>
  4433. <notations>
  4434. <technical>
  4435. <string>5</string>
  4436. <fret>5</fret>
  4437. </technical>
  4438. </notations>
  4439. </note>
  4440. <note default-x="282" print-dot="no">
  4441. <chord/>
  4442. <pitch>
  4443. <step>A</step>
  4444. <alter>1</alter>
  4445. <octave>3</octave>
  4446. </pitch>
  4447. <duration>3</duration>
  4448. <voice>1</voice>
  4449. <type>eighth</type>
  4450. <dot/>
  4451. <stem>none</stem>
  4452. <notations>
  4453. <technical>
  4454. <string>4</string>
  4455. <fret>4</fret>
  4456. </technical>
  4457. </notations>
  4458. </note>
  4459. <note default-x="283" print-dot="no">
  4460. <chord/>
  4461. <pitch>
  4462. <step>B</step>
  4463. <octave>3</octave>
  4464. </pitch>
  4465. <duration>3</duration>
  4466. <voice>1</voice>
  4467. <type>eighth</type>
  4468. <dot/>
  4469. <stem>none</stem>
  4470. <notations>
  4471. <technical>
  4472. <string>3</string>
  4473. <fret>0</fret>
  4474. </technical>
  4475. </notations>
  4476. </note>
  4477. <note default-x="395" print-dot="no">
  4478. <pitch>
  4479. <step>F</step>
  4480. <alter>1</alter>
  4481. <octave>4</octave>
  4482. </pitch>
  4483. <duration>3</duration>
  4484. <voice>1</voice>
  4485. <type>eighth</type>
  4486. <dot/>
  4487. <stem>none</stem>
  4488. <notations>
  4489. <technical>
  4490. <string>2</string>
  4491. <fret>3</fret>
  4492. </technical>
  4493. </notations>
  4494. </note>
  4495. <note default-x="395" print-dot="no">
  4496. <chord/>
  4497. <pitch>
  4498. <step>F</step>
  4499. <alter>1</alter>
  4500. <octave>4</octave>
  4501. </pitch>
  4502. <duration>3</duration>
  4503. <voice>1</voice>
  4504. <type>eighth</type>
  4505. <dot/>
  4506. <stem>none</stem>
  4507. <notations>
  4508. <technical>
  4509. <string>1</string>
  4510. <fret>0</fret>
  4511. </technical>
  4512. </notations>
  4513. </note>
  4514. <note default-x="441">
  4515. <pitch>
  4516. <step>B</step>
  4517. <octave>2</octave>
  4518. </pitch>
  4519. <duration>1</duration>
  4520. <voice>1</voice>
  4521. <type>16th</type>
  4522. <stem>none</stem>
  4523. <notations>
  4524. <technical>
  4525. <string>6</string>
  4526. <fret>5</fret>
  4527. </technical>
  4528. </notations>
  4529. </note>
  4530. <note default-x="441">
  4531. <chord/>
  4532. <pitch>
  4533. <step>F</step>
  4534. <alter>1</alter>
  4535. <octave>3</octave>
  4536. </pitch>
  4537. <duration>1</duration>
  4538. <voice>1</voice>
  4539. <type>16th</type>
  4540. <stem>none</stem>
  4541. <notations>
  4542. <technical>
  4543. <string>5</string>
  4544. <fret>5</fret>
  4545. </technical>
  4546. </notations>
  4547. </note>
  4548. <note default-x="440">
  4549. <chord/>
  4550. <pitch>
  4551. <step>A</step>
  4552. <alter>1</alter>
  4553. <octave>3</octave>
  4554. </pitch>
  4555. <duration>1</duration>
  4556. <voice>1</voice>
  4557. <type>16th</type>
  4558. <stem>none</stem>
  4559. <notations>
  4560. <technical>
  4561. <string>4</string>
  4562. <fret>4</fret>
  4563. </technical>
  4564. </notations>
  4565. </note>
  4566. <note default-x="440">
  4567. <chord/>
  4568. <pitch>
  4569. <step>B</step>
  4570. <octave>3</octave>
  4571. </pitch>
  4572. <duration>1</duration>
  4573. <voice>1</voice>
  4574. <type>16th</type>
  4575. <stem>none</stem>
  4576. <notations>
  4577. <technical>
  4578. <string>3</string>
  4579. <fret>0</fret>
  4580. </technical>
  4581. </notations>
  4582. </note>
  4583. <note default-x="463" print-dot="no">
  4584. <pitch>
  4585. <step>D</step>
  4586. <alter>1</alter>
  4587. <octave>4</octave>
  4588. </pitch>
  4589. <duration>3</duration>
  4590. <voice>1</voice>
  4591. <type>eighth</type>
  4592. <dot/>
  4593. <stem>none</stem>
  4594. <notations>
  4595. <technical>
  4596. <string>2</string>
  4597. <fret>0</fret>
  4598. </technical>
  4599. </notations>
  4600. </note>
  4601. </measure>
  4602. <!--=======================================================-->
  4603. <measure number="14" width="413">
  4604. <note default-x="17" print-dot="no">
  4605. <pitch>
  4606. <step>B</step>
  4607. <octave>2</octave>
  4608. </pitch>
  4609. <duration>3</duration>
  4610. <voice>1</voice>
  4611. <type>eighth</type>
  4612. <dot/>
  4613. <stem>none</stem>
  4614. <notations>
  4615. <technical>
  4616. <string>6</string>
  4617. <fret>5</fret>
  4618. </technical>
  4619. </notations>
  4620. </note>
  4621. <note default-x="17" print-dot="no">
  4622. <chord/>
  4623. <pitch>
  4624. <step>F</step>
  4625. <alter>1</alter>
  4626. <octave>3</octave>
  4627. </pitch>
  4628. <duration>3</duration>
  4629. <voice>1</voice>
  4630. <type>eighth</type>
  4631. <dot/>
  4632. <stem>none</stem>
  4633. <notations>
  4634. <technical>
  4635. <string>5</string>
  4636. <fret>5</fret>
  4637. </technical>
  4638. </notations>
  4639. </note>
  4640. <note default-x="16" print-dot="no">
  4641. <chord/>
  4642. <pitch>
  4643. <step>A</step>
  4644. <alter>1</alter>
  4645. <octave>3</octave>
  4646. </pitch>
  4647. <duration>3</duration>
  4648. <voice>1</voice>
  4649. <type>eighth</type>
  4650. <dot/>
  4651. <stem>none</stem>
  4652. <notations>
  4653. <technical>
  4654. <string>4</string>
  4655. <fret>4</fret>
  4656. </technical>
  4657. </notations>
  4658. </note>
  4659. <note default-x="16" print-dot="no">
  4660. <chord/>
  4661. <pitch>
  4662. <step>B</step>
  4663. <octave>3</octave>
  4664. </pitch>
  4665. <duration>3</duration>
  4666. <voice>1</voice>
  4667. <type>eighth</type>
  4668. <dot/>
  4669. <stem>none</stem>
  4670. <notations>
  4671. <technical>
  4672. <string>3</string>
  4673. <fret>0</fret>
  4674. </technical>
  4675. </notations>
  4676. </note>
  4677. <note default-x="115" print-dot="no">
  4678. <pitch>
  4679. <step>F</step>
  4680. <alter>1</alter>
  4681. <octave>4</octave>
  4682. </pitch>
  4683. <duration>3</duration>
  4684. <voice>1</voice>
  4685. <type>eighth</type>
  4686. <dot/>
  4687. <stem>none</stem>
  4688. <notations>
  4689. <technical>
  4690. <string>2</string>
  4691. <fret>3</fret>
  4692. </technical>
  4693. </notations>
  4694. </note>
  4695. <note default-x="115" print-dot="no">
  4696. <chord/>
  4697. <pitch>
  4698. <step>F</step>
  4699. <alter>1</alter>
  4700. <octave>4</octave>
  4701. </pitch>
  4702. <duration>3</duration>
  4703. <voice>1</voice>
  4704. <type>eighth</type>
  4705. <dot/>
  4706. <stem>none</stem>
  4707. <notations>
  4708. <technical>
  4709. <string>1</string>
  4710. <fret>0</fret>
  4711. </technical>
  4712. </notations>
  4713. </note>
  4714. <note default-x="163">
  4715. <pitch>
  4716. <step>B</step>
  4717. <octave>2</octave>
  4718. </pitch>
  4719. <duration>1</duration>
  4720. <voice>1</voice>
  4721. <type>16th</type>
  4722. <stem>none</stem>
  4723. <notations>
  4724. <technical>
  4725. <string>6</string>
  4726. <fret>5</fret>
  4727. </technical>
  4728. </notations>
  4729. </note>
  4730. <note default-x="163">
  4731. <chord/>
  4732. <pitch>
  4733. <step>F</step>
  4734. <alter>1</alter>
  4735. <octave>3</octave>
  4736. </pitch>
  4737. <duration>1</duration>
  4738. <voice>1</voice>
  4739. <type>16th</type>
  4740. <stem>none</stem>
  4741. <notations>
  4742. <technical>
  4743. <string>5</string>
  4744. <fret>5</fret>
  4745. </technical>
  4746. </notations>
  4747. </note>
  4748. <note default-x="162">
  4749. <chord/>
  4750. <pitch>
  4751. <step>A</step>
  4752. <alter>1</alter>
  4753. <octave>3</octave>
  4754. </pitch>
  4755. <duration>1</duration>
  4756. <voice>1</voice>
  4757. <type>16th</type>
  4758. <stem>none</stem>
  4759. <notations>
  4760. <technical>
  4761. <string>4</string>
  4762. <fret>4</fret>
  4763. </technical>
  4764. </notations>
  4765. </note>
  4766. <note default-x="181">
  4767. <pitch>
  4768. <step>F</step>
  4769. <alter>1</alter>
  4770. <octave>3</octave>
  4771. </pitch>
  4772. <duration>2</duration>
  4773. <voice>1</voice>
  4774. <type>eighth</type>
  4775. <stem>none</stem>
  4776. <notations>
  4777. <technical>
  4778. <string>4</string>
  4779. <fret>0</fret>
  4780. </technical>
  4781. </notations>
  4782. </note>
  4783. <note default-x="235">
  4784. <pitch>
  4785. <step>F</step>
  4786. <alter>1</alter>
  4787. <octave>3</octave>
  4788. </pitch>
  4789. <duration>2</duration>
  4790. <voice>1</voice>
  4791. <type>eighth</type>
  4792. <stem>none</stem>
  4793. <notations>
  4794. <technical>
  4795. <string>5</string>
  4796. <fret>5</fret>
  4797. </technical>
  4798. </notations>
  4799. </note>
  4800. <note default-x="280">
  4801. <pitch>
  4802. <step>F</step>
  4803. <alter>1</alter>
  4804. <octave>3</octave>
  4805. </pitch>
  4806. <duration>1</duration>
  4807. <voice>1</voice>
  4808. <type>16th</type>
  4809. <stem>none</stem>
  4810. <notations>
  4811. <technical>
  4812. <string>5</string>
  4813. <fret>5</fret>
  4814. </technical>
  4815. </notations>
  4816. </note>
  4817. <note default-x="306">
  4818. <pitch>
  4819. <step>E</step>
  4820. <alter>1</alter>
  4821. <octave>3</octave>
  4822. </pitch>
  4823. <duration>1</duration>
  4824. <voice>1</voice>
  4825. <type>16th</type>
  4826. <stem>none</stem>
  4827. <notations>
  4828. <technical>
  4829. <pull-off number="1" type="start">P</pull-off>
  4830. <string>5</string>
  4831. <fret>4</fret>
  4832. </technical>
  4833. </notations>
  4834. </note>
  4835. <note default-x="335" print-dot="no">
  4836. <pitch>
  4837. <step>C</step>
  4838. <alter>1</alter>
  4839. <octave>3</octave>
  4840. </pitch>
  4841. <duration>3</duration>
  4842. <voice>1</voice>
  4843. <type>eighth</type>
  4844. <dot/>
  4845. <stem>none</stem>
  4846. <notations>
  4847. <technical>
  4848. <pull-off number="1" type="stop"/>
  4849. <string>5</string>
  4850. <fret>0</fret>
  4851. </technical>
  4852. </notations>
  4853. </note>
  4854. </measure>
  4855. <!--=======================================================-->
  4856. <measure number="15" width="408">
  4857. <print new-system="yes"/>
  4858. <note default-x="147">
  4859. <pitch>
  4860. <step>F</step>
  4861. <alter>1</alter>
  4862. <octave>2</octave>
  4863. </pitch>
  4864. <duration>1</duration>
  4865. <voice>1</voice>
  4866. <type>16th</type>
  4867. <stem>none</stem>
  4868. <notations>
  4869. <technical>
  4870. <string>6</string>
  4871. <fret>0</fret>
  4872. </technical>
  4873. </notations>
  4874. </note>
  4875. <note default-x="162">
  4876. <pitch>
  4877. <step>G</step>
  4878. <alter>1</alter>
  4879. <octave>2</octave>
  4880. </pitch>
  4881. <duration>2</duration>
  4882. <voice>1</voice>
  4883. <type>eighth</type>
  4884. <stem>none</stem>
  4885. <notations>
  4886. <technical>
  4887. <string>6</string>
  4888. <fret>2</fret>
  4889. </technical>
  4890. </notations>
  4891. </note>
  4892. <note default-x="190" print-dot="no">
  4893. <pitch>
  4894. <step>A</step>
  4895. <alter>1</alter>
  4896. <octave>3</octave>
  4897. </pitch>
  4898. <duration>3</duration>
  4899. <voice>1</voice>
  4900. <type>eighth</type>
  4901. <dot/>
  4902. <stem>none</stem>
  4903. <notations>
  4904. <technical>
  4905. <string>4</string>
  4906. <fret>4</fret>
  4907. </technical>
  4908. </notations>
  4909. </note>
  4910. <note default-x="190" print-dot="no">
  4911. <chord/>
  4912. <pitch>
  4913. <step>B</step>
  4914. <octave>3</octave>
  4915. </pitch>
  4916. <duration>3</duration>
  4917. <voice>1</voice>
  4918. <type>eighth</type>
  4919. <dot/>
  4920. <stem>none</stem>
  4921. <notations>
  4922. <technical>
  4923. <string>3</string>
  4924. <fret>0</fret>
  4925. </technical>
  4926. </notations>
  4927. </note>
  4928. <note default-x="190" print-dot="no">
  4929. <chord/>
  4930. <pitch>
  4931. <step>D</step>
  4932. <alter>1</alter>
  4933. <octave>4</octave>
  4934. </pitch>
  4935. <duration>3</duration>
  4936. <voice>1</voice>
  4937. <type>eighth</type>
  4938. <dot/>
  4939. <stem>none</stem>
  4940. <notations>
  4941. <technical>
  4942. <string>2</string>
  4943. <fret>0</fret>
  4944. </technical>
  4945. </notations>
  4946. </note>
  4947. <note default-x="190" print-dot="no">
  4948. <chord/>
  4949. <pitch>
  4950. <step>F</step>
  4951. <alter>1</alter>
  4952. <octave>4</octave>
  4953. </pitch>
  4954. <duration>3</duration>
  4955. <voice>1</voice>
  4956. <type>eighth</type>
  4957. <dot/>
  4958. <stem>none</stem>
  4959. <notations>
  4960. <technical>
  4961. <string>1</string>
  4962. <fret>0</fret>
  4963. </technical>
  4964. </notations>
  4965. </note>
  4966. <note default-x="269" print-dot="no">
  4967. <pitch>
  4968. <step>G</step>
  4969. <alter>1</alter>
  4970. <octave>2</octave>
  4971. </pitch>
  4972. <duration>3</duration>
  4973. <voice>1</voice>
  4974. <type>eighth</type>
  4975. <dot/>
  4976. <stem>none</stem>
  4977. <notations>
  4978. <technical>
  4979. <string>6</string>
  4980. <fret>2</fret>
  4981. </technical>
  4982. </notations>
  4983. </note>
  4984. <note default-x="269" print-dot="no">
  4985. <chord/>
  4986. <pitch>
  4987. <step>D</step>
  4988. <alter>1</alter>
  4989. <octave>3</octave>
  4990. </pitch>
  4991. <duration>3</duration>
  4992. <voice>1</voice>
  4993. <type>eighth</type>
  4994. <dot/>
  4995. <stem>none</stem>
  4996. <notations>
  4997. <technical>
  4998. <string>5</string>
  4999. <fret>2</fret>
  5000. </technical>
  5001. </notations>
  5002. </note>
  5003. <note default-x="269" print-dot="no">
  5004. <chord/>
  5005. <pitch>
  5006. <step>A</step>
  5007. <alter>1</alter>
  5008. <octave>3</octave>
  5009. </pitch>
  5010. <duration>3</duration>
  5011. <voice>1</voice>
  5012. <type>eighth</type>
  5013. <dot/>
  5014. <stem>none</stem>
  5015. <notations>
  5016. <technical>
  5017. <string>4</string>
  5018. <fret>4</fret>
  5019. </technical>
  5020. </notations>
  5021. </note>
  5022. <note default-x="269" print-dot="no">
  5023. <chord/>
  5024. <pitch>
  5025. <step>B</step>
  5026. <octave>3</octave>
  5027. </pitch>
  5028. <duration>3</duration>
  5029. <voice>1</voice>
  5030. <type>eighth</type>
  5031. <dot/>
  5032. <stem>none</stem>
  5033. <notations>
  5034. <technical>
  5035. <string>3</string>
  5036. <fret>0</fret>
  5037. </technical>
  5038. </notations>
  5039. </note>
  5040. <note default-x="319" print-dot="no">
  5041. <pitch>
  5042. <step>A</step>
  5043. <alter>1</alter>
  5044. <octave>3</octave>
  5045. </pitch>
  5046. <duration>3</duration>
  5047. <voice>1</voice>
  5048. <type>eighth</type>
  5049. <dot/>
  5050. <stem>none</stem>
  5051. <notations>
  5052. <technical>
  5053. <string>4</string>
  5054. <fret>4</fret>
  5055. </technical>
  5056. </notations>
  5057. </note>
  5058. <note default-x="319" print-dot="no">
  5059. <chord/>
  5060. <pitch>
  5061. <step>B</step>
  5062. <octave>3</octave>
  5063. </pitch>
  5064. <duration>3</duration>
  5065. <voice>1</voice>
  5066. <type>eighth</type>
  5067. <dot/>
  5068. <stem>none</stem>
  5069. <notations>
  5070. <technical>
  5071. <string>3</string>
  5072. <fret>0</fret>
  5073. </technical>
  5074. </notations>
  5075. </note>
  5076. <note default-x="319" print-dot="no">
  5077. <chord/>
  5078. <pitch>
  5079. <step>D</step>
  5080. <alter>1</alter>
  5081. <octave>4</octave>
  5082. </pitch>
  5083. <duration>3</duration>
  5084. <voice>1</voice>
  5085. <type>eighth</type>
  5086. <dot/>
  5087. <stem>none</stem>
  5088. <notations>
  5089. <technical>
  5090. <string>2</string>
  5091. <fret>0</fret>
  5092. </technical>
  5093. </notations>
  5094. </note>
  5095. <note default-x="319" print-dot="no">
  5096. <chord/>
  5097. <pitch>
  5098. <step>F</step>
  5099. <alter>1</alter>
  5100. <octave>4</octave>
  5101. </pitch>
  5102. <duration>3</duration>
  5103. <voice>1</voice>
  5104. <type>eighth</type>
  5105. <dot/>
  5106. <stem>none</stem>
  5107. <notations>
  5108. <technical>
  5109. <string>1</string>
  5110. <fret>0</fret>
  5111. </technical>
  5112. </notations>
  5113. </note>
  5114. <note default-x="351">
  5115. <pitch>
  5116. <step>G</step>
  5117. <alter>1</alter>
  5118. <octave>2</octave>
  5119. </pitch>
  5120. <duration>1</duration>
  5121. <voice>1</voice>
  5122. <type>16th</type>
  5123. <stem>none</stem>
  5124. <notations>
  5125. <technical>
  5126. <string>6</string>
  5127. <fret>2</fret>
  5128. </technical>
  5129. </notations>
  5130. </note>
  5131. <note default-x="351">
  5132. <chord/>
  5133. <pitch>
  5134. <step>D</step>
  5135. <alter>1</alter>
  5136. <octave>3</octave>
  5137. </pitch>
  5138. <duration>1</duration>
  5139. <voice>1</voice>
  5140. <type>16th</type>
  5141. <stem>none</stem>
  5142. <notations>
  5143. <technical>
  5144. <string>5</string>
  5145. <fret>2</fret>
  5146. </technical>
  5147. </notations>
  5148. </note>
  5149. <note default-x="351">
  5150. <chord/>
  5151. <pitch>
  5152. <step>A</step>
  5153. <alter>1</alter>
  5154. <octave>3</octave>
  5155. </pitch>
  5156. <duration>1</duration>
  5157. <voice>1</voice>
  5158. <type>16th</type>
  5159. <stem>none</stem>
  5160. <notations>
  5161. <technical>
  5162. <string>4</string>
  5163. <fret>4</fret>
  5164. </technical>
  5165. </notations>
  5166. </note>
  5167. <note default-x="351">
  5168. <chord/>
  5169. <pitch>
  5170. <step>B</step>
  5171. <octave>3</octave>
  5172. </pitch>
  5173. <duration>1</duration>
  5174. <voice>1</voice>
  5175. <type>16th</type>
  5176. <stem>none</stem>
  5177. <notations>
  5178. <technical>
  5179. <string>3</string>
  5180. <fret>0</fret>
  5181. </technical>
  5182. </notations>
  5183. </note>
  5184. <note default-x="367">
  5185. <pitch>
  5186. <step>A</step>
  5187. <alter>1</alter>
  5188. <octave>3</octave>
  5189. </pitch>
  5190. <duration>2</duration>
  5191. <voice>1</voice>
  5192. <type>eighth</type>
  5193. <stem>none</stem>
  5194. <notations>
  5195. <technical>
  5196. <string>4</string>
  5197. <fret>4</fret>
  5198. </technical>
  5199. </notations>
  5200. </note>
  5201. <note default-x="367">
  5202. <chord/>
  5203. <pitch>
  5204. <step>B</step>
  5205. <octave>3</octave>
  5206. </pitch>
  5207. <duration>2</duration>
  5208. <voice>1</voice>
  5209. <type>eighth</type>
  5210. <stem>none</stem>
  5211. <notations>
  5212. <technical>
  5213. <string>3</string>
  5214. <fret>0</fret>
  5215. </technical>
  5216. </notations>
  5217. </note>
  5218. <note default-x="367">
  5219. <chord/>
  5220. <pitch>
  5221. <step>D</step>
  5222. <alter>1</alter>
  5223. <octave>4</octave>
  5224. </pitch>
  5225. <duration>2</duration>
  5226. <voice>1</voice>
  5227. <type>eighth</type>
  5228. <stem>none</stem>
  5229. <notations>
  5230. <technical>
  5231. <string>2</string>
  5232. <fret>0</fret>
  5233. </technical>
  5234. </notations>
  5235. </note>
  5236. <note default-x="367">
  5237. <chord/>
  5238. <pitch>
  5239. <step>F</step>
  5240. <alter>1</alter>
  5241. <octave>4</octave>
  5242. </pitch>
  5243. <duration>2</duration>
  5244. <voice>1</voice>
  5245. <type>eighth</type>
  5246. <stem>none</stem>
  5247. <notations>
  5248. <technical>
  5249. <string>1</string>
  5250. <fret>0</fret>
  5251. </technical>
  5252. </notations>
  5253. </note>
  5254. <note default-x="391">
  5255. <pitch>
  5256. <step>G</step>
  5257. <alter>1</alter>
  5258. <octave>2</octave>
  5259. </pitch>
  5260. <duration>1</duration>
  5261. <voice>1</voice>
  5262. <type>16th</type>
  5263. <stem>none</stem>
  5264. <notations>
  5265. <technical>
  5266. <string>6</string>
  5267. <fret>2</fret>
  5268. </technical>
  5269. </notations>
  5270. </note>
  5271. </measure>
  5272. <!--=======================================================-->
  5273. <measure number="16" width="328">
  5274. <note default-x="11">
  5275. <pitch>
  5276. <step>F</step>
  5277. <alter>1</alter>
  5278. <octave>2</octave>
  5279. </pitch>
  5280. <duration>1</duration>
  5281. <voice>1</voice>
  5282. <type>16th</type>
  5283. <stem>none</stem>
  5284. <notations>
  5285. <technical>
  5286. <string>6</string>
  5287. <fret>0</fret>
  5288. </technical>
  5289. </notations>
  5290. </note>
  5291. <note default-x="26">
  5292. <pitch>
  5293. <step>G</step>
  5294. <alter>1</alter>
  5295. <octave>2</octave>
  5296. </pitch>
  5297. <duration>2</duration>
  5298. <voice>1</voice>
  5299. <type>eighth</type>
  5300. <stem>none</stem>
  5301. <notations>
  5302. <technical>
  5303. <string>6</string>
  5304. <fret>2</fret>
  5305. </technical>
  5306. </notations>
  5307. </note>
  5308. <note default-x="50" print-dot="no">
  5309. <pitch>
  5310. <step>G</step>
  5311. <alter>1</alter>
  5312. <octave>2</octave>
  5313. </pitch>
  5314. <duration>3</duration>
  5315. <voice>1</voice>
  5316. <type>eighth</type>
  5317. <dot/>
  5318. <stem>none</stem>
  5319. <notations>
  5320. <technical>
  5321. <string>6</string>
  5322. <fret>2</fret>
  5323. </technical>
  5324. </notations>
  5325. </note>
  5326. <note default-x="50" print-dot="no">
  5327. <chord/>
  5328. <pitch>
  5329. <step>D</step>
  5330. <alter>1</alter>
  5331. <octave>3</octave>
  5332. </pitch>
  5333. <duration>3</duration>
  5334. <voice>1</voice>
  5335. <type>eighth</type>
  5336. <dot/>
  5337. <stem>none</stem>
  5338. <notations>
  5339. <technical>
  5340. <string>5</string>
  5341. <fret>2</fret>
  5342. </technical>
  5343. </notations>
  5344. </note>
  5345. <note default-x="50" print-dot="no">
  5346. <chord/>
  5347. <pitch>
  5348. <step>A</step>
  5349. <alter>1</alter>
  5350. <octave>3</octave>
  5351. </pitch>
  5352. <duration>3</duration>
  5353. <voice>1</voice>
  5354. <type>eighth</type>
  5355. <dot/>
  5356. <stem>none</stem>
  5357. <notations>
  5358. <technical>
  5359. <string>4</string>
  5360. <fret>4</fret>
  5361. </technical>
  5362. </notations>
  5363. </note>
  5364. <note default-x="83" print-dot="no">
  5365. <pitch>
  5366. <step>G</step>
  5367. <alter>1</alter>
  5368. <octave>2</octave>
  5369. </pitch>
  5370. <duration>3</duration>
  5371. <voice>1</voice>
  5372. <type>eighth</type>
  5373. <dot/>
  5374. <stem>none</stem>
  5375. <notations>
  5376. <technical>
  5377. <string>6</string>
  5378. <fret>2</fret>
  5379. </technical>
  5380. </notations>
  5381. </note>
  5382. <note default-x="83" print-dot="no">
  5383. <chord/>
  5384. <pitch>
  5385. <step>D</step>
  5386. <alter>1</alter>
  5387. <octave>3</octave>
  5388. </pitch>
  5389. <duration>3</duration>
  5390. <voice>1</voice>
  5391. <type>eighth</type>
  5392. <dot/>
  5393. <stem>none</stem>
  5394. <notations>
  5395. <technical>
  5396. <string>5</string>
  5397. <fret>2</fret>
  5398. </technical>
  5399. </notations>
  5400. </note>
  5401. <note default-x="83" print-dot="no">
  5402. <chord/>
  5403. <pitch>
  5404. <step>A</step>
  5405. <alter>1</alter>
  5406. <octave>3</octave>
  5407. </pitch>
  5408. <duration>3</duration>
  5409. <voice>1</voice>
  5410. <type>eighth</type>
  5411. <dot/>
  5412. <stem>none</stem>
  5413. <notations>
  5414. <technical>
  5415. <string>4</string>
  5416. <fret>4</fret>
  5417. </technical>
  5418. </notations>
  5419. </note>
  5420. <note default-x="83" print-dot="no">
  5421. <chord/>
  5422. <pitch>
  5423. <step>B</step>
  5424. <octave>3</octave>
  5425. </pitch>
  5426. <duration>3</duration>
  5427. <voice>1</voice>
  5428. <type>eighth</type>
  5429. <dot/>
  5430. <stem>none</stem>
  5431. <notations>
  5432. <technical>
  5433. <string>3</string>
  5434. <fret>0</fret>
  5435. </technical>
  5436. </notations>
  5437. </note>
  5438. <note default-x="120" print-dot="no">
  5439. <pitch>
  5440. <step>A</step>
  5441. <alter>1</alter>
  5442. <octave>3</octave>
  5443. </pitch>
  5444. <duration>3</duration>
  5445. <voice>1</voice>
  5446. <type>eighth</type>
  5447. <dot/>
  5448. <stem>none</stem>
  5449. <notations>
  5450. <technical>
  5451. <string>4</string>
  5452. <fret>4</fret>
  5453. </technical>
  5454. </notations>
  5455. </note>
  5456. <note default-x="121" print-dot="no">
  5457. <chord/>
  5458. <pitch>
  5459. <step>B</step>
  5460. <octave>3</octave>
  5461. </pitch>
  5462. <duration>3</duration>
  5463. <voice>1</voice>
  5464. <type>eighth</type>
  5465. <dot/>
  5466. <stem>none</stem>
  5467. <notations>
  5468. <technical>
  5469. <string>3</string>
  5470. <fret>0</fret>
  5471. </technical>
  5472. </notations>
  5473. </note>
  5474. <note default-x="121" print-dot="no">
  5475. <chord/>
  5476. <pitch>
  5477. <step>D</step>
  5478. <alter>1</alter>
  5479. <octave>4</octave>
  5480. </pitch>
  5481. <duration>3</duration>
  5482. <voice>1</voice>
  5483. <type>eighth</type>
  5484. <dot/>
  5485. <stem>none</stem>
  5486. <notations>
  5487. <technical>
  5488. <string>2</string>
  5489. <fret>0</fret>
  5490. </technical>
  5491. </notations>
  5492. </note>
  5493. <note default-x="121" print-dot="no">
  5494. <chord/>
  5495. <pitch>
  5496. <step>F</step>
  5497. <alter>1</alter>
  5498. <octave>4</octave>
  5499. </pitch>
  5500. <duration>3</duration>
  5501. <voice>1</voice>
  5502. <type>eighth</type>
  5503. <dot/>
  5504. <stem>none</stem>
  5505. <notations>
  5506. <technical>
  5507. <string>1</string>
  5508. <fret>0</fret>
  5509. </technical>
  5510. </notations>
  5511. </note>
  5512. <note default-x="186">
  5513. <pitch>
  5514. <step>G</step>
  5515. <alter>1</alter>
  5516. <octave>2</octave>
  5517. </pitch>
  5518. <duration>1</duration>
  5519. <voice>1</voice>
  5520. <type>16th</type>
  5521. <stem>none</stem>
  5522. <notations>
  5523. <technical>
  5524. <string>6</string>
  5525. <fret>2</fret>
  5526. </technical>
  5527. </notations>
  5528. </note>
  5529. <note default-x="186">
  5530. <chord/>
  5531. <pitch>
  5532. <step>D</step>
  5533. <alter>1</alter>
  5534. <octave>3</octave>
  5535. </pitch>
  5536. <duration>1</duration>
  5537. <voice>1</voice>
  5538. <type>16th</type>
  5539. <stem>none</stem>
  5540. <notations>
  5541. <technical>
  5542. <string>5</string>
  5543. <fret>2</fret>
  5544. </technical>
  5545. </notations>
  5546. </note>
  5547. <note default-x="186">
  5548. <chord/>
  5549. <pitch>
  5550. <step>A</step>
  5551. <alter>1</alter>
  5552. <octave>3</octave>
  5553. </pitch>
  5554. <duration>1</duration>
  5555. <voice>1</voice>
  5556. <type>16th</type>
  5557. <stem>none</stem>
  5558. <notations>
  5559. <technical>
  5560. <string>4</string>
  5561. <fret>4</fret>
  5562. </technical>
  5563. </notations>
  5564. </note>
  5565. <note default-x="186">
  5566. <chord/>
  5567. <pitch>
  5568. <step>B</step>
  5569. <octave>3</octave>
  5570. </pitch>
  5571. <duration>1</duration>
  5572. <voice>1</voice>
  5573. <type>16th</type>
  5574. <stem>none</stem>
  5575. <notations>
  5576. <technical>
  5577. <string>3</string>
  5578. <fret>0</fret>
  5579. </technical>
  5580. </notations>
  5581. </note>
  5582. <note default-x="224">
  5583. <pitch>
  5584. <step>A</step>
  5585. <alter>1</alter>
  5586. <octave>3</octave>
  5587. </pitch>
  5588. <duration>2</duration>
  5589. <voice>1</voice>
  5590. <type>eighth</type>
  5591. <stem>none</stem>
  5592. <notations>
  5593. <technical>
  5594. <string>4</string>
  5595. <fret>4</fret>
  5596. </technical>
  5597. </notations>
  5598. </note>
  5599. <note default-x="224">
  5600. <chord/>
  5601. <pitch>
  5602. <step>B</step>
  5603. <octave>3</octave>
  5604. </pitch>
  5605. <duration>2</duration>
  5606. <voice>1</voice>
  5607. <type>eighth</type>
  5608. <stem>none</stem>
  5609. <notations>
  5610. <technical>
  5611. <string>3</string>
  5612. <fret>0</fret>
  5613. </technical>
  5614. </notations>
  5615. </note>
  5616. <note default-x="224">
  5617. <chord/>
  5618. <pitch>
  5619. <step>D</step>
  5620. <alter>1</alter>
  5621. <octave>4</octave>
  5622. </pitch>
  5623. <duration>2</duration>
  5624. <voice>1</voice>
  5625. <type>eighth</type>
  5626. <stem>none</stem>
  5627. <notations>
  5628. <technical>
  5629. <string>2</string>
  5630. <fret>0</fret>
  5631. </technical>
  5632. </notations>
  5633. </note>
  5634. <note default-x="224">
  5635. <chord/>
  5636. <pitch>
  5637. <step>F</step>
  5638. <alter>1</alter>
  5639. <octave>4</octave>
  5640. </pitch>
  5641. <duration>2</duration>
  5642. <voice>1</voice>
  5643. <type>eighth</type>
  5644. <stem>none</stem>
  5645. <notations>
  5646. <technical>
  5647. <string>1</string>
  5648. <fret>0</fret>
  5649. </technical>
  5650. </notations>
  5651. </note>
  5652. <note default-x="274">
  5653. <pitch>
  5654. <step>G</step>
  5655. <alter>1</alter>
  5656. <octave>2</octave>
  5657. </pitch>
  5658. <duration>1</duration>
  5659. <voice>1</voice>
  5660. <type>16th</type>
  5661. <stem>none</stem>
  5662. <notations>
  5663. <technical>
  5664. <string>6</string>
  5665. <fret>2</fret>
  5666. </technical>
  5667. </notations>
  5668. </note>
  5669. </measure>
  5670. <!--=======================================================-->
  5671. <measure number="17" width="247">
  5672. <note default-x="14" print-dot="no">
  5673. <pitch>
  5674. <step>F</step>
  5675. <alter>1</alter>
  5676. <octave>2</octave>
  5677. </pitch>
  5678. <duration>3</duration>
  5679. <voice>1</voice>
  5680. <type>eighth</type>
  5681. <dot/>
  5682. <stem>none</stem>
  5683. <notations>
  5684. <technical>
  5685. <string>6</string>
  5686. <fret>0</fret>
  5687. </technical>
  5688. </notations>
  5689. </note>
  5690. <note default-x="14" print-dot="no">
  5691. <chord/>
  5692. <pitch>
  5693. <step>C</step>
  5694. <alter>1</alter>
  5695. <octave>3</octave>
  5696. </pitch>
  5697. <duration>3</duration>
  5698. <voice>1</voice>
  5699. <type>eighth</type>
  5700. <dot/>
  5701. <stem>none</stem>
  5702. <notations>
  5703. <technical>
  5704. <string>5</string>
  5705. <fret>0</fret>
  5706. </technical>
  5707. </notations>
  5708. </note>
  5709. <note default-x="71" print-dot="no">
  5710. <pitch>
  5711. <step>A</step>
  5712. <alter>1</alter>
  5713. <octave>3</octave>
  5714. </pitch>
  5715. <duration>3</duration>
  5716. <voice>1</voice>
  5717. <type>eighth</type>
  5718. <dot/>
  5719. <stem>none</stem>
  5720. <notations>
  5721. <technical>
  5722. <string>4</string>
  5723. <fret>4</fret>
  5724. </technical>
  5725. </notations>
  5726. </note>
  5727. <note default-x="138" print-dot="no">
  5728. <pitch>
  5729. <step>C</step>
  5730. <alter>1</alter>
  5731. <octave>3</octave>
  5732. </pitch>
  5733. <duration>3</duration>
  5734. <voice>1</voice>
  5735. <type>eighth</type>
  5736. <dot/>
  5737. <stem>none</stem>
  5738. <notations>
  5739. <technical>
  5740. <string>5</string>
  5741. <fret>0</fret>
  5742. </technical>
  5743. </notations>
  5744. </note>
  5745. <note default-x="138" print-dot="no">
  5746. <chord/>
  5747. <pitch>
  5748. <step>G</step>
  5749. <alter>1</alter>
  5750. <octave>3</octave>
  5751. </pitch>
  5752. <duration>3</duration>
  5753. <voice>1</voice>
  5754. <type>eighth</type>
  5755. <dot/>
  5756. <stem>none</stem>
  5757. <notations>
  5758. <technical>
  5759. <string>4</string>
  5760. <fret>2</fret>
  5761. </technical>
  5762. </notations>
  5763. </note>
  5764. <note default-x="138" print-dot="no">
  5765. <chord/>
  5766. <pitch>
  5767. <step>B</step>
  5768. <octave>3</octave>
  5769. </pitch>
  5770. <duration>3</duration>
  5771. <voice>1</voice>
  5772. <type>eighth</type>
  5773. <dot/>
  5774. <stem>none</stem>
  5775. <notations>
  5776. <technical>
  5777. <string>3</string>
  5778. <fret>0</fret>
  5779. </technical>
  5780. </notations>
  5781. </note>
  5782. <note default-x="169" print-dot="no">
  5783. <pitch>
  5784. <step>G</step>
  5785. <alter>1</alter>
  5786. <octave>3</octave>
  5787. </pitch>
  5788. <duration>3</duration>
  5789. <voice>1</voice>
  5790. <type>eighth</type>
  5791. <dot/>
  5792. <stem>none</stem>
  5793. <notations>
  5794. <technical>
  5795. <string>4</string>
  5796. <fret>2</fret>
  5797. </technical>
  5798. </notations>
  5799. </note>
  5800. <note default-x="169" print-dot="no">
  5801. <chord/>
  5802. <pitch>
  5803. <step>B</step>
  5804. <octave>3</octave>
  5805. </pitch>
  5806. <duration>3</duration>
  5807. <voice>1</voice>
  5808. <type>eighth</type>
  5809. <dot/>
  5810. <stem>none</stem>
  5811. <notations>
  5812. <technical>
  5813. <string>3</string>
  5814. <fret>0</fret>
  5815. </technical>
  5816. </notations>
  5817. </note>
  5818. <note default-x="170" print-dot="no">
  5819. <chord/>
  5820. <pitch>
  5821. <step>F</step>
  5822. <alter>1</alter>
  5823. <octave>4</octave>
  5824. </pitch>
  5825. <duration>3</duration>
  5826. <voice>1</voice>
  5827. <type>eighth</type>
  5828. <dot/>
  5829. <stem>none</stem>
  5830. <notations>
  5831. <technical>
  5832. <string>2</string>
  5833. <fret>3</fret>
  5834. </technical>
  5835. </notations>
  5836. </note>
  5837. <note default-x="169" print-dot="no">
  5838. <chord/>
  5839. <pitch>
  5840. <step>F</step>
  5841. <alter>1</alter>
  5842. <octave>4</octave>
  5843. </pitch>
  5844. <duration>3</duration>
  5845. <voice>1</voice>
  5846. <type>eighth</type>
  5847. <dot/>
  5848. <stem>none</stem>
  5849. <notations>
  5850. <technical>
  5851. <string>1</string>
  5852. <fret>0</fret>
  5853. </technical>
  5854. </notations>
  5855. </note>
  5856. <note default-x="200">
  5857. <pitch>
  5858. <step>C</step>
  5859. <alter>1</alter>
  5860. <octave>3</octave>
  5861. </pitch>
  5862. <duration>1</duration>
  5863. <voice>1</voice>
  5864. <type>16th</type>
  5865. <stem>none</stem>
  5866. <notations>
  5867. <technical>
  5868. <string>5</string>
  5869. <fret>0</fret>
  5870. </technical>
  5871. </notations>
  5872. </note>
  5873. <note default-x="200">
  5874. <chord/>
  5875. <pitch>
  5876. <step>G</step>
  5877. <alter>1</alter>
  5878. <octave>3</octave>
  5879. </pitch>
  5880. <duration>1</duration>
  5881. <voice>1</voice>
  5882. <type>16th</type>
  5883. <stem>none</stem>
  5884. <notations>
  5885. <technical>
  5886. <string>4</string>
  5887. <fret>2</fret>
  5888. </technical>
  5889. </notations>
  5890. </note>
  5891. <note default-x="200">
  5892. <chord/>
  5893. <pitch>
  5894. <step>B</step>
  5895. <octave>3</octave>
  5896. </pitch>
  5897. <duration>1</duration>
  5898. <voice>1</voice>
  5899. <type>16th</type>
  5900. <stem>none</stem>
  5901. <notations>
  5902. <technical>
  5903. <string>3</string>
  5904. <fret>0</fret>
  5905. </technical>
  5906. </notations>
  5907. </note>
  5908. <note default-x="216" print-dot="no">
  5909. <pitch>
  5910. <step>F</step>
  5911. <alter>1</alter>
  5912. <octave>3</octave>
  5913. </pitch>
  5914. <duration>3</duration>
  5915. <voice>1</voice>
  5916. <type>eighth</type>
  5917. <dot/>
  5918. <stem>none</stem>
  5919. <notations>
  5920. <technical>
  5921. <string>4</string>
  5922. <fret>0</fret>
  5923. </technical>
  5924. </notations>
  5925. </note>
  5926. </measure>
  5927. </part>
  5928. <!--=========================================================-->
  5929. </score-partwise>