File size: 85,508 Bytes
8135c5c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 |
<svg width="2100px" height="800px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mei="http://www.music-encoding.org/ns/mei" overflow="visible">
<desc>Engraved by Verovio 4.4.0-66ab39c</desc>
<defs>
<symbol id="E08A-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M340 179c-9 24 -56 41 -89 41c-46 0 -81 -28 -100 -58c-17 -28 -25 -78 -25 -150c0 -65 2 -111 8 -135c8 -31 18 -49 40 -67c20 -17 43 -25 70 -25c54 0 92 36 115 75c14 25 23 54 28 88h27c0 -63 -24 -105 -58 -141c-35 -38 -82 -56 -140 -56c-45 0 -83 13 -115 39 c-57 45 -101 130 -101 226c0 59 33 127 68 163c36 37 97 72 160 72c36 0 93 -21 121 -40c11 -8 23 -17 33 -30c19 -23 27 -48 27 -76c0 -51 -35 -88 -86 -88c-43 0 -76 27 -76 68c0 26 7 35 21 51c15 17 32 27 58 32c7 2 14 7 14 11z" />
</symbol>
<symbol id="E262-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M136 186v169h17v-164l44 14v-91l-44 -14v-165l44 12v-91l-44 -13v-155h-17v150l-76 -22v-155h-17v149l-43 -13v90l43 14v167l-43 -14v92l43 13v169h17v-163zM60 73v-167l76 22v168z" />
</symbol>
<symbol id="E4E4-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M0 10v105c0 9 1 10 10 10h280c9 0 10 -1 10 -10v-105c0 -9 -1 -10 -10 -10h-280c-9 0 -10 1 -10 10z" />
</symbol>
<symbol id="E050-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M441 -245c-23 -4 -48 -6 -76 -6c-59 0 -102 7 -130 20c-88 42 -150 93 -187 154c-26 44 -43 103 -48 176c0 6 -1 13 -1 19c0 54 15 111 45 170c29 57 65 106 110 148s96 85 153 127c-3 16 -8 46 -13 92c-4 43 -5 73 -5 89c0 117 16 172 69 257c34 54 64 82 89 82 c21 0 43 -30 69 -92s39 -115 41 -159v-15c0 -109 -21 -162 -67 -241c-13 -20 -63 -90 -98 -118c-13 -9 -25 -19 -37 -29l31 -181c8 1 18 2 28 2c58 0 102 -12 133 -35c59 -43 92 -104 98 -184c1 -7 1 -15 1 -22c0 -123 -87 -209 -181 -248c8 -57 17 -110 25 -162 c5 -31 6 -58 6 -80c0 -30 -5 -53 -14 -70c-35 -64 -88 -99 -158 -103c-5 0 -11 -1 -16 -1c-37 0 -72 10 -108 27c-50 24 -77 59 -80 105v11c0 29 7 55 20 76c18 28 45 42 79 44h6c49 0 93 -42 97 -87v-9c0 -51 -34 -86 -105 -106c17 -24 51 -36 102 -36c62 0 116 43 140 85 c9 16 13 41 13 74c0 20 -1 42 -5 67c-8 53 -18 106 -26 159zM461 939c-95 0 -135 -175 -135 -286c0 -24 2 -48 5 -71c50 39 92 82 127 128c40 53 60 100 60 140v8c-4 53 -22 81 -55 81h-2zM406 119l54 -326c73 25 110 78 110 161c0 7 0 15 -1 23c-7 95 -57 142 -151 142h-12 zM382 117c-72 -2 -128 -47 -128 -120v-7c2 -46 43 -99 75 -115c-3 -2 -7 -5 -10 -10c-70 33 -116 88 -123 172v11c0 68 44 126 88 159c23 17 49 29 78 36l-29 170c-21 -13 -52 -37 -92 -73c-50 -44 -86 -84 -109 -119c-45 -69 -67 -130 -67 -182v-13c5 -68 35 -127 93 -176 s125 -73 203 -73c25 0 50 3 75 9c-19 111 -36 221 -54 331z" />
</symbol>
<symbol id="E0A4-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M0 -39c0 68 73 172 200 172c66 0 114 -37 114 -95c0 -84 -106 -171 -218 -171c-64 0 -96 30 -96 94z" />
</symbol>
<symbol id="E260-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M20 110c32 16 54 27 93 27c26 0 35 -3 54 -13c13 -7 24 -20 27 -38l4 -25c0 -28 -16 -57 -45 -89c-23 -25 -39 -44 -65 -68l-88 -79v644h20v-359zM90 106c-32 0 -48 -10 -70 -29v-194c31 31 54 59 71 84c21 32 32 59 32 84c0 9 1 16 1 20c0 14 -3 21 -11 30l-8 3z" />
</symbol>
<symbol id="E062-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M582 -120c0 32 26 58 58 58s58 -26 58 -58s-26 -58 -58 -58s-58 26 -58 58zM582 120c0 32 26 58 58 58s58 -26 58 -58s-26 -58 -58 -58s-58 26 -58 58zM158 96c51 0 73 -14 88 -49l16 -39c0 -17 -2 -30 -7 -40c-3 -11 -10 -21 -19 -31c-17 -18 -49 -43 -84 -43 c-55 0 -77 13 -112 44c-24 21 -35 55 -35 100c0 46 14 81 32 112c30 52 71 79 137 93l36 6l26 2c154 0 235 -68 274 -182c11 -32 18 -68 18 -107c0 -103 -26 -182 -68 -250c-89 -145 -234 -230 -412 -288l-30 -5c-9 0 -14 3 -14 8c3 10 5 11 10 16c35 15 70 30 96 44l78 43 c96 57 162 136 197 258c9 33 17 60 22 100c3 22 5 35 6 39c-7 69 -16 115 -23 140s-4 22 -16 40c-8 12 -19 23 -31 34c-24 21 -62 44 -118 44c-48 0 -84 -8 -113 -28c-28 -19 -42 -44 -42 -73v-16c2 -5 3 -9 4 -11c24 22 52 39 84 39z" />
</symbol>
<symbol id="E4E6-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M0 123c7 34 33 56 69 60c29 -3 43 -9 53 -29c4 -8 7 -15 10 -22c0 -21 -1 -25 -11 -35c-5 -8 -18 -14 -40 -20l12 -3l15 -1c44 0 97 26 122 56c10 11 18 26 24 42c7 1 15 2 22 3l-140 -424h-36l111 330c-10 -6 -27 -12 -53 -16l-52 -8h-10l-20 1c-1 0 -8 3 -21 6 c-37 9 -55 28 -55 60z" />
</symbol>
<symbol id="E0A3-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M278 64c0 22 -17 39 -43 39c-12 0 -26 -3 -41 -10c-85 -43 -165 -94 -165 -156c5 -25 15 -32 49 -32c67 11 200 95 200 159zM0 -36c0 68 73 174 200 174c66 0 114 -39 114 -97c0 -84 -106 -173 -218 -173c-64 0 -96 32 -96 96z" />
</symbol>
<symbol id="E4E5-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M107 292c-13 24 -30 49 -52 71c-1 1 0 2 0 3l-2 2c3 3 4 4 6 4c12 0 26 -7 40 -20s44 -40 89 -81c26 -24 28 -29 46 -47c4 -4 8 -9 10 -14c6 -8 8 -16 8 -27c0 -19 -12 -40 -36 -61c-28 -23 -49 -38 -61 -73c-4 -11 -7 -27 -10 -50c13 -43 34 -83 59 -121 c31 -47 59 -79 101 -129c-8 0 -26 7 -54 20l-62 29l-21 6l-23 1c-25 0 -45 -10 -60 -30l-4 -14l-1 -12c0 -33 20 -56 39 -78c8 -9 17 -18 26 -26c17 -15 27 -24 28 -30l-3 -3c-11 5 -19 10 -25 15c-9 3 -37 21 -45 26c-24 14 -45 32 -63 51c-19 21 -37 44 -37 71 c0 63 27 95 80 95c41 0 86 -18 136 -52c-19 26 -37 48 -55 66c-23 23 -48 44 -73 65c-28 23 -47 40 -58 53s-17 26 -18 39c75 64 113 125 113 183c0 27 -7 48 -18 68z" />
</symbol>
<symbol id="E261-hf50ds" viewBox="0 0 1000 1000" overflow="visible">
<path transform="scale(1,-1)" d="M0 -188v539h18v-191l139 22v-533h-17v186zM18 -100l122 17v176l-122 -19v-174z" />
</symbol>
</defs>
<style type="text/css">g.page-margin{font-family:Times,serif;} g.ending, g.fing, g.reh, g.tempo{font-weight:bold;} g.dir, g.dynam, g.mNum{font-style:italic;} g.label{font-weight:normal;}</style>
<svg class="definition-scale" color="black" viewBox="0 0 21000 8000">
<g class="page-margin" transform="translate(500, 500)">
<g id="m1a1h1ty" class="mdiv pageMilestone" />
<g id="s1m09lj2" class="score pageMilestone" />
<g id="seycjx5" class="system">
<path d="M22 1019 L22 3185" stroke="currentColor" stroke-width="45" />
<g id="g17btg4l" class="grpSym">
<path d="M-72,3167 C-432,2627 18,2282 -252,2102 C81,2282 -369,2627 -72,3167" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18" />
<path d="M-72,1037 C-369,1577 81,1922 -252,2102 C18,1922 -432,1577 -72,1037" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18" />
</g>
<g id="section-L2F1" class="section systemMilestone" />
<g id="measure-L1" class="measure">
<g id="staff-L2F2" class="staff">
<path d="M0 1019 L6435 1019" stroke="currentColor" stroke-width="18" />
<path d="M0 1199 L6435 1199" stroke="currentColor" stroke-width="18" />
<path d="M0 1379 L6435 1379" stroke="currentColor" stroke-width="18" />
<path d="M0 1559 L6435 1559" stroke="currentColor" stroke-width="18" />
<path d="M0 1739 L6435 1739" stroke="currentColor" stroke-width="18" />
<g id="c152auf5" class="clef">
<use xlink:href="#E050-hf50ds" x="135" y="1559" height="720px" width="720px" />
</g>
<g id="k1glfdsn" class="keySig">
<g id="kiqgozy" class="keyAccid">
<use xlink:href="#E260-hf50ds" x="816" y="1379" height="720px" width="720px" />
</g>
</g>
<g id="mgz7ivb" class="meterSig">
<use xlink:href="#E08A-hf50ds" x="1138" y="1379" height="720px" width="720px" />
</g>
<g class="ledgerLines above">
<path d="M1679 839 L2001 839" stroke="currentColor" stroke-width="22" />
<path d="M4668 839 L4870 839" stroke="currentColor" stroke-width="22" />
<path d="M4608 839 L4930 839" stroke="currentColor" stroke-width="22" />
<path d="M5254 839 L5456 839" stroke="currentColor" stroke-width="22" />
<path d="M5194 839 L5516 839" stroke="currentColor" stroke-width="22" />
<path d="M5840 839 L6042 839" stroke="currentColor" stroke-width="22" />
<path d="M5780 839 L6102 839" stroke="currentColor" stroke-width="22" />
<path d="M4668 659 L4870 659" stroke="currentColor" stroke-width="22" />
<path d="M5254 659 L5456 659" stroke="currentColor" stroke-width="22" />
<path d="M5840 659 L6042 659" stroke="currentColor" stroke-width="22" />
</g>
<g id="layer-L1F2N1" class="layer">
<g id="beam-L8F2-L9F2" class="beam">
<polygon points="1727,1649 2331,1739 2331,1649 1727,1559" />
<g id="chord-L8F2" class="chord">
<g id="sgzovk0" class="stem">
<path d="M1736 867 L1736 1631" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L8F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="1727" y="1019" height="720px" width="720px" />
</g>
<g id="accid-L8F2S1" class="accid" />
</g>
<g id="note-L8F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="1727" y="839" height="720px" width="720px" />
</g>
<g id="accid-L8F2S2" class="accid" />
</g>
</g>
<g id="chord-L9F2" class="chord">
<g id="s2knbsk" class="stem">
<path d="M2322 957 L2322 1721" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L9F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2313" y="1109" height="720px" width="720px" />
</g>
<g id="accid-L9F2S1" class="accid" />
</g>
<g id="note-L9F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2313" y="929" height="720px" width="720px" />
</g>
<g id="accid-L9F2S2" class="accid" />
</g>
</g>
</g>
<g id="chord-L10F2" class="chord">
<g id="s1jacpoy" class="stem">
<path d="M2908 957 L2908 1739" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L10F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2899" y="1109" height="720px" width="720px" />
</g>
<g id="accid-L10F2S1" class="accid" />
</g>
<g id="note-L10F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2899" y="929" height="720px" width="720px" />
</g>
<g id="accid-L10F2S2" class="accid" />
</g>
</g>
<g id="rest-L12F2" class="rest">
<use xlink:href="#E4E6-hf50ds" x="4070" y="1379" height="720px" width="720px" />
</g>
<g id="beam-L13F2-L15F2" class="beam">
<polygon points="4656,1424 5846,1424 5846,1334 4656,1334" />
<g id="chord-L13F2" class="chord">
<g id="s6qlesh" class="stem">
<path d="M4665 687 L4665 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L13F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4656" y="839" height="720px" width="720px" />
</g>
<g id="accid-L13F2S1" class="accid" />
</g>
<g id="note-L13F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4656" y="659" height="720px" width="720px" />
</g>
<g id="accid-L13F2S2" class="accid" />
</g>
</g>
<g id="chord-L14F2" class="chord">
<g id="s1uycztt" class="stem">
<path d="M5251 687 L5251 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L14F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5242" y="839" height="720px" width="720px" />
</g>
<g id="accid-L14F2S1" class="accid" />
</g>
<g id="note-L14F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5242" y="659" height="720px" width="720px" />
</g>
<g id="accid-L14F2S2" class="accid" />
</g>
</g>
<g id="chord-L15F2" class="chord">
<g id="svzlhiz" class="stem">
<path d="M5837 687 L5837 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="note-L15F2S1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5828" y="839" height="720px" width="720px" />
</g>
<g id="accid-L15F2S1" class="accid" />
</g>
<g id="note-L15F2S2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5828" y="659" height="720px" width="720px" />
</g>
<g id="accid-L15F2S2" class="accid" />
</g>
</g>
</g>
</g>
</g>
<g id="staff-L2F1" class="staff">
<path d="M0 2465 L6435 2465" stroke="currentColor" stroke-width="18" />
<path d="M0 2645 L6435 2645" stroke="currentColor" stroke-width="18" />
<path d="M0 2825 L6435 2825" stroke="currentColor" stroke-width="18" />
<path d="M0 3005 L6435 3005" stroke="currentColor" stroke-width="18" />
<path d="M0 3185 L6435 3185" stroke="currentColor" stroke-width="18" />
<g id="cmgaeem" class="clef">
<use xlink:href="#E062-hf50ds" x="135" y="2645" height="720px" width="720px" />
</g>
<g id="k6ecb31" class="keySig">
<g id="k1omwt15" class="keyAccid">
<use xlink:href="#E260-hf50ds" x="816" y="3005" height="720px" width="720px" />
</g>
</g>
<g id="m1xkkawy" class="meterSig">
<use xlink:href="#E08A-hf50ds" x="1138" y="2825" height="720px" width="720px" />
</g>
<g class="ledgerLines above">
<path d="M2265 2285 L2587 2285" stroke="currentColor" stroke-width="22" />
<path d="M3436 2285 L3758 2285" stroke="currentColor" stroke-width="22" />
<path d="M4608 2285 L4930 2285" stroke="currentColor" stroke-width="22" />
<path d="M5780 2285 L6102 2285" stroke="currentColor" stroke-width="22" />
</g>
<g id="layer-L1F1N1" class="layer">
<g id="beam-L8F1-L11F1" class="beam">
<polygon points="1727,3455 3502,3455 3502,3365 1727,3365" />
<g id="note-L8F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="1727" y="2915" height="720px" width="720px" />
</g>
<g id="s2wol3o" class="stem">
<path d="M1736 2943 L1736 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L8F1" class="accid" />
</g>
<g id="note-L9F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2313" y="2285" height="720px" width="720px" />
</g>
<g id="s5cxhpi" class="stem">
<path d="M2322 2313 L2322 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L9F1" class="accid" />
</g>
<g id="note-L10F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2899" y="2915" height="720px" width="720px" />
</g>
<g id="s1a4oqkw" class="stem">
<path d="M2908 2943 L2908 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L10F1" class="accid" />
</g>
<g id="note-L11F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="3484" y="2285" height="720px" width="720px" />
</g>
<g id="sn3k85" class="stem">
<path d="M3493 2313 L3493 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L11F1" class="accid" />
</g>
</g>
<g id="beam-L12F1-L15F1" class="beam">
<polygon points="4070,3455 5846,3455 5846,3365 4070,3365" />
<g id="note-L12F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4070" y="2915" height="720px" width="720px" />
</g>
<g id="s1uig7m2" class="stem">
<path d="M4079 2943 L4079 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L12F1" class="accid" />
</g>
<g id="note-L13F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4656" y="2285" height="720px" width="720px" />
</g>
<g id="so8jk35" class="stem">
<path d="M4665 2313 L4665 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L13F1" class="accid" />
</g>
<g id="note-L14F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5242" y="2915" height="720px" width="720px" />
</g>
<g id="s13tkry1" class="stem">
<path d="M5251 2943 L5251 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L14F1" class="accid" />
</g>
<g id="note-L15F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5828" y="2285" height="720px" width="720px" />
</g>
<g id="s11n6sw8" class="stem">
<path d="M5837 2313 L5837 3437" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L15F1" class="accid" />
</g>
</g>
</g>
</g>
<g id="bhkdoae" class="barLine">
<path d="M6413 1019 L6413 1739" stroke="currentColor" stroke-width="45" />
<path d="M6413 2465 L6413 3185" stroke="currentColor" stroke-width="45" />
<path d="M6413 1739 L6413 2465" stroke="currentColor" stroke-width="45" />
</g>
</g>
<g id="measure-L16" class="measure">
<g id="staff-L16F2N1" class="staff">
<path d="M6435 1019 L13218 1019" stroke="currentColor" stroke-width="18" />
<path d="M6435 1199 L13218 1199" stroke="currentColor" stroke-width="18" />
<path d="M6435 1379 L13218 1379" stroke="currentColor" stroke-width="18" />
<path d="M6435 1559 L13218 1559" stroke="currentColor" stroke-width="18" />
<path d="M6435 1739 L13218 1739" stroke="currentColor" stroke-width="18" />
<g class="ledgerLines above">
<path d="M6588 839 L6910 839" stroke="currentColor" stroke-width="22" />
<path d="M6979 839 L7301 839" stroke="currentColor" stroke-width="22" />
<path d="M7370 839 L7692 839" stroke="currentColor" stroke-width="22" />
<path d="M7761 839 L8083 839" stroke="currentColor" stroke-width="22" />
<path d="M8152 839 L8474 839" stroke="currentColor" stroke-width="22" />
<path d="M8542 839 L8864 839" stroke="currentColor" stroke-width="22" />
<path d="M8933 839 L9255 839" stroke="currentColor" stroke-width="22" />
<path d="M9324 839 L9646 839" stroke="currentColor" stroke-width="22" />
<path d="M11056 839 L11378 839" stroke="currentColor" stroke-width="22" />
<path d="M11447 839 L11769 839" stroke="currentColor" stroke-width="22" />
<path d="M11838 839 L12160 839" stroke="currentColor" stroke-width="22" />
<path d="M7761 659 L8083 659" stroke="currentColor" stroke-width="22" />
<path d="M8152 659 L8474 659" stroke="currentColor" stroke-width="22" />
<path d="M8542 659 L8864 659" stroke="currentColor" stroke-width="22" />
</g>
<g id="layer-L16F2N1" class="layer">
<g id="beam-L17F2-L20F2" class="beam">
<polygon points="6636,1424 7827,1424 7827,1334 6636,1334" />
<polygon points="6636,1289 7036,1289 7036,1199 6636,1199" />
<polygon points="7036,1289 7427,1289 7427,1199 7036,1199" />
<polygon points="7427,1289 7827,1289 7827,1199 7427,1199" />
<g id="note-L17F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="6636" y="749" height="720px" width="720px" />
</g>
<g id="siw7taq" class="stem">
<path d="M6645 777 L6645 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L17F2" class="accid" />
</g>
<g id="note-L18F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7027" y="839" height="720px" width="720px" />
</g>
<g id="s1gqhkeh" class="stem">
<path d="M7036 867 L7036 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L18F2" class="accid" />
</g>
<g id="note-L19F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7418" y="749" height="720px" width="720px" />
</g>
<g id="s16gp5vo" class="stem">
<path d="M7427 777 L7427 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L19F2" class="accid" />
</g>
<g id="note-L20F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7809" y="659" height="720px" width="720px" />
</g>
<g id="si9i827" class="stem">
<path d="M7818 687 L7818 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L20F2" class="accid" />
</g>
</g>
<g id="beam-L21F2-L24F2" class="beam">
<polygon points="8200,1379 9390,1469 9390,1379 8200,1289" />
<polygon points="8200,1244 8599,1274 8599,1184 8200,1154" />
<polygon points="8599,1274 8990,1304 8990,1214 8599,1184" />
<polygon points="8990,1304 9390,1334 9390,1244 8990,1214" />
<g id="note-L21F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8200" y="569" height="720px" width="720px" />
</g>
<g id="sb8274l" class="stem">
<path d="M8209 597 L8209 1361" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L21F2" class="accid" />
</g>
<g id="note-L22F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8590" y="659" height="720px" width="720px" />
</g>
<g id="s9dqi29" class="stem">
<path d="M8599 687 L8599 1391" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L22F2" class="accid" />
</g>
<g id="note-L23F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8981" y="749" height="720px" width="720px" />
</g>
<g id="s1yfon7n" class="stem">
<path d="M8990 777 L8990 1421" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L23F2" class="accid" />
</g>
<g id="note-L24F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="9372" y="839" height="720px" width="720px" />
</g>
<g id="scs070" class="stem">
<path d="M9381 867 L9381 1451" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L24F2" class="accid" />
</g>
</g>
<g id="beam-L25F2-L28F2" class="beam">
<polygon points="9763,1604 11122,1604 11122,1514 9763,1514" />
<polygon points="9763,1469 10331,1469 10331,1379 9763,1379" />
<polygon points="10331,1469 10722,1469 10722,1379 10331,1379" />
<polygon points="10722,1469 11122,1469 11122,1379 10722,1379" />
<g id="note-L25F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="9763" y="929" height="720px" width="720px" />
</g>
<g id="s1lqqok7" class="stem">
<path d="M9772 957 L9772 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L25F2" class="accid" />
</g>
<g id="note-L26F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="10322" y="1019" height="720px" width="720px" />
</g>
<g id="swnbku6" class="stem">
<path d="M10331 1047 L10331 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L26F2" class="accid">
<use xlink:href="#E262-hf50ds" x="10136" y="1019" height="720px" width="720px" />
</g>
</g>
<g id="note-L27F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="10713" y="929" height="720px" width="720px" />
</g>
<g id="s1qa3438" class="stem">
<path d="M10722 957 L10722 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L27F2" class="accid" />
</g>
<g id="note-L28F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="11104" y="839" height="720px" width="720px" />
</g>
<g id="sxn11qi" class="stem">
<path d="M11113 867 L11113 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L28F2" class="accid" />
</g>
</g>
<g id="beam-L29F2-L32F2" class="beam">
<polygon points="11495,1424 12823,1604 12823,1514 11495,1334" />
<polygon points="11495,1289 11895,1343 11895,1253 11495,1199" />
<polygon points="11895,1343 12286,1397 12286,1307 11895,1253" />
<polygon points="12286,1397 12823,1469 12823,1379 12286,1307" />
<g id="note-L29F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="11495" y="749" height="720px" width="720px" />
</g>
<g id="sid36bp" class="stem">
<path d="M11504 777 L11504 1406" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L29F2" class="accid" />
</g>
<g id="note-L30F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="11886" y="839" height="720px" width="720px" />
</g>
<g id="s4fb5yz" class="stem">
<path d="M11895 867 L11895 1460" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L30F2" class="accid" />
</g>
<g id="note-L31F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="12277" y="929" height="720px" width="720px" />
</g>
<g id="sy6uhw7" class="stem">
<path d="M12286 957 L12286 1514" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L31F2" class="accid" />
</g>
<g id="note-L32F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="12805" y="1019" height="720px" width="720px" />
</g>
<g id="skclkv" class="stem">
<path d="M12814 1047 L12814 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L32F2" class="accid">
<use xlink:href="#E261-hf50ds" x="12647" y="1019" height="720px" width="720px" />
</g>
</g>
</g>
</g>
</g>
<g id="staff-L16F1N1" class="staff">
<path d="M6435 2465 L13218 2465" stroke="currentColor" stroke-width="18" />
<path d="M6435 2645 L13218 2645" stroke="currentColor" stroke-width="18" />
<path d="M6435 2825 L13218 2825" stroke="currentColor" stroke-width="18" />
<path d="M6435 3005 L13218 3005" stroke="currentColor" stroke-width="18" />
<path d="M6435 3185 L13218 3185" stroke="currentColor" stroke-width="18" />
<g id="layer-L16F1N1" class="layer">
<g id="note-L17F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="6636" y="2915" height="720px" width="720px" />
</g>
<g id="s1evfse8" class="stem">
<path d="M6853 2887 L6853 2285" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L17F1" class="accid" />
</g>
<g id="rest-L21F1" class="rest">
<use xlink:href="#E4E5-hf50ds" x="8200" y="2825" height="720px" width="720px" />
</g>
<g id="rest-L25F1" class="rest">
<use xlink:href="#E4E4-hf50ds" x="9763" y="2825" height="720px" width="720px" />
<g class="ledgerLines" />
</g>
</g>
</g>
<g id="bgjba1k" class="barLine">
<path d="M13196 1019 L13196 1739" stroke="currentColor" stroke-width="45" />
<path d="M13196 2465 L13196 3185" stroke="currentColor" stroke-width="45" />
<path d="M13196 1739 L13196 2465" stroke="currentColor" stroke-width="45" />
</g>
</g>
<g id="measure-L33" class="measure">
<g id="staff-L33F2N1" class="staff">
<path d="M13218 1019 L20002 1019" stroke="currentColor" stroke-width="18" />
<path d="M13218 1199 L20002 1199" stroke="currentColor" stroke-width="18" />
<path d="M13218 1379 L20002 1379" stroke="currentColor" stroke-width="18" />
<path d="M13218 1559 L20002 1559" stroke="currentColor" stroke-width="18" />
<path d="M13218 1739 L20002 1739" stroke="currentColor" stroke-width="18" />
<g id="layer-L33F2N1" class="layer">
<g id="beam-L34F2-L37F2" class="beam">
<polygon points="13419,1784 14610,1784 14610,1694 13419,1694" />
<polygon points="13419,1649 13819,1649 13819,1559 13419,1559" />
<polygon points="13819,1649 14210,1649 14210,1559 13819,1559" />
<polygon points="14210,1649 14610,1649 14610,1559 14210,1559" />
<g id="note-L34F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="13419" y="1109" height="720px" width="720px" />
</g>
<g id="s12sylut" class="stem">
<path d="M13428 1137 L13428 1766" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L34F2" class="accid" />
</g>
<g id="note-L35F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="13810" y="1199" height="720px" width="720px" />
</g>
<g id="ssgzn5p" class="stem">
<path d="M13819 1227 L13819 1766" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L35F2" class="accid" />
</g>
<g id="note-L36F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14201" y="1109" height="720px" width="720px" />
</g>
<g id="sucib49" class="stem">
<path d="M14210 1137 L14210 1766" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L36F2" class="accid" />
</g>
<g id="note-L37F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14592" y="1019" height="720px" width="720px" />
</g>
<g id="sar27rf" class="stem">
<path d="M14601 1047 L14601 1766" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L37F2" class="accid" />
</g>
</g>
<g id="beam-L38F2-L41F2" class="beam">
<polygon points="14983,1604 16173,1784 16173,1694 14983,1514" />
<polygon points="14983,1469 15382,1529 15382,1439 14983,1379" />
<polygon points="15382,1529 15773,1589 15773,1499 15382,1439" />
<polygon points="15773,1589 16173,1649 16173,1559 15773,1499" />
<g id="note-L38F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14983" y="929" height="720px" width="720px" />
</g>
<g id="s1872qh1" class="stem">
<path d="M14992 957 L14992 1586" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L38F2" class="accid" />
</g>
<g id="note-L39F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="15373" y="1019" height="720px" width="720px" />
</g>
<g id="sb3tx8c" class="stem">
<path d="M15382 1047 L15382 1646" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L39F2" class="accid" />
</g>
<g id="note-L40F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="15764" y="1109" height="720px" width="720px" />
</g>
<g id="s1cirsr6" class="stem">
<path d="M15773 1137 L15773 1706" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L40F2" class="accid" />
</g>
<g id="note-L41F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="16155" y="1199" height="720px" width="720px" />
</g>
<g id="s144m7h1" class="stem">
<path d="M16164 1227 L16164 1766" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L41F2" class="accid" />
</g>
</g>
<g id="beam-L42F2-L45F2" class="beam">
<polygon points="16546,1964 17874,1964 17874,1874 16546,1874" />
<polygon points="16546,1829 17083,1829 17083,1739 16546,1739" />
<polygon points="17083,1829 17474,1829 17474,1739 17083,1739" />
<polygon points="17474,1829 17874,1829 17874,1739 17474,1739" />
<g id="note-L42F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="16546" y="1289" height="720px" width="720px" />
</g>
<g id="s1vz9cxe" class="stem">
<path d="M16555 1317 L16555 1946" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L42F2" class="accid" />
</g>
<g id="note-L43F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17074" y="1379" height="720px" width="720px" />
</g>
<g id="sknsugz" class="stem">
<path d="M17083 1407 L17083 1946" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L43F2" class="accid">
<use xlink:href="#E261-hf50ds" x="16916" y="1379" height="720px" width="720px" />
</g>
</g>
<g id="note-L44F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17465" y="1289" height="720px" width="720px" />
</g>
<g id="sqg9baz" class="stem">
<path d="M17474 1317 L17474 1946" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L44F2" class="accid" />
</g>
<g id="note-L45F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17856" y="1199" height="720px" width="720px" />
</g>
<g id="s1fdn7tp" class="stem">
<path d="M17865 1227 L17865 1946" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L45F2" class="accid" />
</g>
</g>
<g id="beam-L46F2-L49F2" class="beam">
<polygon points="18455,659 19815,839 19815,929 18455,749" />
<polygon points="18455,794 19024,870 19024,960 18455,884" />
<polygon points="19024,870 19415,922 19415,1012 19024,960" />
<polygon points="19415,922 19815,974 19815,1064 19415,1012" />
<g id="note-L46F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="18247" y="1289" height="720px" width="720px" />
</g>
<g id="sh5cb9e" class="stem">
<path d="M18464 1261 L18464 677" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L46F2" class="accid" />
</g>
<g id="note-L47F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="18807" y="1379" height="720px" width="720px" />
</g>
<g id="s1lhjzg8" class="stem">
<path d="M19024 1351 L19024 753" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L47F2" class="accid">
<use xlink:href="#E260-hf50ds" x="18620" y="1379" height="720px" width="720px" />
</g>
</g>
<g id="note-L48F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="19198" y="1469" height="720px" width="720px" />
</g>
<g id="s1d8dbkv" class="stem">
<path d="M19415 1441 L19415 805" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L48F2" class="accid" />
</g>
<g id="note-L49F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="19589" y="1559" height="720px" width="720px" />
</g>
<g id="ssu335r" class="stem">
<path d="M19806 1531 L19806 857" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L49F2" class="accid" />
</g>
</g>
</g>
</g>
<g id="staff-L33F1N1" class="staff">
<path d="M13218 2465 L20002 2465" stroke="currentColor" stroke-width="18" />
<path d="M13218 2645 L20002 2645" stroke="currentColor" stroke-width="18" />
<path d="M13218 2825 L20002 2825" stroke="currentColor" stroke-width="18" />
<path d="M13218 3005 L20002 3005" stroke="currentColor" stroke-width="18" />
<path d="M13218 3185 L20002 3185" stroke="currentColor" stroke-width="18" />
<g class="ledgerLines above">
<path d="M13371 2285 L13693 2285" stroke="currentColor" stroke-width="22" />
<path d="M13762 2285 L14084 2285" stroke="currentColor" stroke-width="22" />
<path d="M14153 2285 L14475 2285" stroke="currentColor" stroke-width="22" />
<path d="M14544 2285 L14866 2285" stroke="currentColor" stroke-width="22" />
<path d="M14935 2285 L15257 2285" stroke="currentColor" stroke-width="22" />
<path d="M15325 2285 L15647 2285" stroke="currentColor" stroke-width="22" />
<path d="M15716 2285 L16038 2285" stroke="currentColor" stroke-width="22" />
<path d="M16107 2285 L16429 2285" stroke="currentColor" stroke-width="22" />
<path d="M16498 2285 L16820 2285" stroke="currentColor" stroke-width="22" />
<path d="M17417 2285 L17739 2285" stroke="currentColor" stroke-width="22" />
<path d="M17808 2285 L18130 2285" stroke="currentColor" stroke-width="22" />
<path d="M18199 2285 L18521 2285" stroke="currentColor" stroke-width="22" />
<path d="M13371 2105 L13693 2105" stroke="currentColor" stroke-width="22" />
<path d="M14153 2105 L14475 2105" stroke="currentColor" stroke-width="22" />
<path d="M14544 2105 L14866 2105" stroke="currentColor" stroke-width="22" />
<path d="M14935 2105 L15257 2105" stroke="currentColor" stroke-width="22" />
<path d="M15325 2105 L15647 2105" stroke="currentColor" stroke-width="22" />
<path d="M15716 2105 L16038 2105" stroke="currentColor" stroke-width="22" />
<path d="M14935 1925 L15257 1925" stroke="currentColor" stroke-width="22" />
</g>
<g id="layer-L33F1N1" class="layer">
<g id="beam-L34F1-L37F1" class="beam">
<polygon points="13419,2825 14610,2825 14610,2735 13419,2735" />
<polygon points="13419,2690 13819,2690 13819,2600 13419,2600" />
<polygon points="13819,2690 14210,2690 14210,2600 13819,2600" />
<polygon points="14210,2690 14610,2690 14610,2600 14210,2600" />
<g id="note-L34F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="13419" y="2105" height="720px" width="720px" />
</g>
<g id="sgez7k0" class="stem">
<path d="M13428 2133 L13428 2807" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L34F1" class="accid" />
</g>
<g id="note-L35F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="13810" y="2195" height="720px" width="720px" />
</g>
<g id="s4fcdwe" class="stem">
<path d="M13819 2223 L13819 2807" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L35F1" class="accid" />
</g>
<g id="note-L36F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14201" y="2105" height="720px" width="720px" />
</g>
<g id="s8p73g7" class="stem">
<path d="M14210 2133 L14210 2807" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L36F1" class="accid" />
</g>
<g id="note-L37F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14592" y="2015" height="720px" width="720px" />
</g>
<g id="sdljyzc" class="stem">
<path d="M14601 2043 L14601 2807" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L37F1" class="accid" />
</g>
</g>
<g id="beam-L38F1-L41F1" class="beam">
<polygon points="14983,2825 16173,3005 16173,2915 14983,2735" />
<polygon points="14983,2690 15382,2750 15382,2660 14983,2600" />
<polygon points="15382,2750 15773,2810 15773,2720 15382,2660" />
<polygon points="15773,2810 16173,2870 16173,2780 15773,2720" />
<g id="note-L38F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="14983" y="1925" height="720px" width="720px" />
</g>
<g id="s102y0ag" class="stem">
<path d="M14992 1953 L14992 2807" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L38F1" class="accid" />
</g>
<g id="note-L39F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="15373" y="2015" height="720px" width="720px" />
</g>
<g id="s17t2tcm" class="stem">
<path d="M15382 2043 L15382 2867" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L39F1" class="accid" />
</g>
<g id="note-L40F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="15764" y="2105" height="720px" width="720px" />
</g>
<g id="s5xcviz" class="stem">
<path d="M15773 2133 L15773 2927" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L40F1" class="accid" />
</g>
<g id="note-L41F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="16155" y="2195" height="720px" width="720px" />
</g>
<g id="s18wzacy" class="stem">
<path d="M16164 2223 L16164 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L41F1" class="accid" />
</g>
</g>
<g id="beam-L42F1-L45F1" class="beam">
<polygon points="16546,3005 17874,3005 17874,2915 16546,2915" />
<polygon points="16546,2870 17083,2870 17083,2780 16546,2780" />
<polygon points="17083,2870 17474,2870 17474,2780 17083,2780" />
<polygon points="17474,2870 17874,2870 17874,2780 17474,2780" />
<g id="note-L42F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="16546" y="2285" height="720px" width="720px" />
</g>
<g id="sj19arv" class="stem">
<path d="M16555 2313 L16555 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L42F1" class="accid" />
</g>
<g id="note-L43F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17074" y="2375" height="720px" width="720px" />
</g>
<g id="shjlkjx" class="stem">
<path d="M17083 2403 L17083 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L43F1" class="accid">
<use xlink:href="#E261-hf50ds" x="16916" y="2375" height="720px" width="720px" />
</g>
</g>
<g id="note-L44F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17465" y="2285" height="720px" width="720px" />
</g>
<g id="s9z9ebr" class="stem">
<path d="M17474 2313 L17474 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L44F1" class="accid" />
</g>
<g id="note-L45F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="17856" y="2195" height="720px" width="720px" />
</g>
<g id="s1axomg7" class="stem">
<path d="M17865 2223 L17865 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L45F1" class="accid" />
</g>
</g>
<g id="beam-L46F1-L49F1" class="beam">
<polygon points="18247,3005 19607,3185 19607,3095 18247,2915" />
<polygon points="18247,2870 18816,2946 18816,2856 18247,2780" />
<polygon points="18816,2946 19207,2998 19207,2908 18816,2856" />
<polygon points="19207,2998 19607,3050 19607,2960 19207,2908" />
<g id="note-L46F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="18247" y="2285" height="720px" width="720px" />
</g>
<g id="s1xiqjj7" class="stem">
<path d="M18256 2313 L18256 2987" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L46F1" class="accid" />
</g>
<g id="note-L47F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="18807" y="2375" height="720px" width="720px" />
</g>
<g id="sx7cmkx" class="stem">
<path d="M18816 2403 L18816 3063" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L47F1" class="accid">
<use xlink:href="#E260-hf50ds" x="18620" y="2375" height="720px" width="720px" />
</g>
</g>
<g id="note-L48F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="19198" y="2465" height="720px" width="720px" />
</g>
<g id="s2tyebb" class="stem">
<path d="M19207 2493 L19207 3115" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L48F1" class="accid" />
</g>
<g id="note-L49F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="19589" y="2555" height="720px" width="720px" />
</g>
<g id="s1m0kli" class="stem">
<path d="M19598 2583 L19598 3167" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L49F1" class="accid" />
</g>
</g>
</g>
</g>
<g id="brxelr" class="barLine">
<path d="M19980 1019 L19980 1739" stroke="currentColor" stroke-width="45" />
<path d="M19980 2465 L19980 3185" stroke="currentColor" stroke-width="45" />
<path d="M19980 1739 L19980 2465" stroke="currentColor" stroke-width="45" />
</g>
</g>
</g>
<g id="swkcnmh" class="system">
<path d="M22 4445 L22 6479" stroke="currentColor" stroke-width="45" />
<g id="gtgba1q" class="grpSym">
<path d="M-72,6461 C-432,5921 18,5642 -252,5462 C81,5642 -369,5921 -72,6461" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18" />
<path d="M-72,4463 C-369,5003 81,5282 -252,5462 C18,5282 -432,5003 -72,4463" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="18" />
</g>
<g id="measure-L50" class="measure">
<g id="staff-L50F2N1" class="staff">
<path d="M0 4445 L5458 4445" stroke="currentColor" stroke-width="18" />
<path d="M0 4625 L5458 4625" stroke="currentColor" stroke-width="18" />
<path d="M0 4805 L5458 4805" stroke="currentColor" stroke-width="18" />
<path d="M0 4985 L5458 4985" stroke="currentColor" stroke-width="18" />
<path d="M0 5165 L5458 5165" stroke="currentColor" stroke-width="18" />
<g id="c1w2tr8a" class="clef">
<use xlink:href="#E050-hf50ds" x="135" y="4985" height="720px" width="720px" />
</g>
<g id="k1w79hv0" class="keySig">
<g id="ktxbcy1" class="keyAccid">
<use xlink:href="#E260-hf50ds" x="816" y="4805" height="720px" width="720px" />
</g>
</g>
<g id="layer-L50F2N1" class="layer">
<g id="note-L52F2" class="note">
<g class="notehead">
<use xlink:href="#E0A3-hf50ds" x="1228" y="5075" height="720px" width="720px" />
</g>
<g id="si06pqc" class="stem">
<path d="M1445 5047 L1445 4445" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L52F2" class="accid" />
</g>
<g id="note-L56F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="3332" y="4985" height="720px" width="720px" />
</g>
<g id="slcipxr" class="stem">
<path d="M3549 4957 L3549 4355" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L56F2" class="accid" />
</g>
<g id="note-L58F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4384" y="4895" height="720px" width="720px" />
</g>
<g id="s1euzf" class="stem">
<path d="M4601 4867 L4601 4265" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L58F2" class="accid" />
</g>
</g>
<g id="layer-L50F3N2" class="layer">
<g id="rest-L52F3" class="rest">
<use xlink:href="#E4E4-hf50ds" x="1228" y="5525" height="720px" width="720px" />
<g class="ledgerLines">
<path d="M1180 5525 L1492 5525" stroke="currentColor" stroke-width="22" />
</g>
</g>
<g id="note-L56F3" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="3332" y="5165" height="720px" width="720px" />
</g>
<g id="s129e899" class="stem">
<path d="M3341 5193 L3341 5645" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L56F3" class="accid" />
</g>
<g id="note-L58F3" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4384" y="5165" height="720px" width="720px" />
</g>
<g id="s1xoh4o1" class="stem">
<path d="M4393 5193 L4393 5645" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L58F3" class="accid">
<use xlink:href="#E260-hf50ds" x="4197" y="5165" height="720px" width="720px" />
</g>
</g>
</g>
</g>
<g id="staff-L50F1N1" class="staff">
<path d="M0 5759 L5458 5759" stroke="currentColor" stroke-width="18" />
<path d="M0 5939 L5458 5939" stroke="currentColor" stroke-width="18" />
<path d="M0 6119 L5458 6119" stroke="currentColor" stroke-width="18" />
<path d="M0 6299 L5458 6299" stroke="currentColor" stroke-width="18" />
<path d="M0 6479 L5458 6479" stroke="currentColor" stroke-width="18" />
<g id="c7szlji" class="clef">
<use xlink:href="#E062-hf50ds" x="135" y="5939" height="720px" width="720px" />
</g>
<g id="k1q6osvn" class="keySig">
<g id="km210tg" class="keyAccid">
<use xlink:href="#E260-hf50ds" x="816" y="6299" height="720px" width="720px" />
</g>
</g>
<g id="layer-L50F1N1" class="layer">
<g id="beam-L52F1-L55F1" class="beam">
<polygon points="1228,6524 2824,6524 2824,6434 1228,6434" />
<g id="note-L52F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="1228" y="5939" height="720px" width="720px" />
</g>
<g id="s1mfdy8k" class="stem">
<path d="M1237 5967 L1237 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L52F1" class="accid" />
</g>
<g id="note-L53F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="1754" y="5939" height="720px" width="720px" />
</g>
<g id="s1a8mwq7" class="stem">
<path d="M1763 5967 L1763 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L53F1" class="accid" />
</g>
<g id="note-L54F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2280" y="5939" height="720px" width="720px" />
</g>
<g id="sz0t7oo" class="stem">
<path d="M2289 5967 L2289 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L54F1" class="accid" />
</g>
<g id="note-L55F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="2806" y="5939" height="720px" width="720px" />
</g>
<g id="sy49zkw" class="stem">
<path d="M2815 5967 L2815 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L55F1" class="accid" />
</g>
</g>
<g id="beam-L56F1-L59F1" class="beam">
<polygon points="3332,6524 4928,6524 4928,6434 3332,6434" />
<g id="note-L56F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="3332" y="5939" height="720px" width="720px" />
</g>
<g id="supg1cj" class="stem">
<path d="M3341 5967 L3341 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L56F1" class="accid" />
</g>
<g id="note-L57F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="3858" y="5939" height="720px" width="720px" />
</g>
<g id="s1gqdlkv" class="stem">
<path d="M3867 5967 L3867 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L57F1" class="accid" />
</g>
<g id="note-L58F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4384" y="5939" height="720px" width="720px" />
</g>
<g id="sjkw3hw" class="stem">
<path d="M4393 5967 L4393 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L58F1" class="accid" />
</g>
<g id="note-L59F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="4910" y="5939" height="720px" width="720px" />
</g>
<g id="s1bqxcth" class="stem">
<path d="M4919 5967 L4919 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L59F1" class="accid" />
</g>
</g>
</g>
</g>
<g id="b1a22rf9" class="barLine">
<path d="M5436 4445 L5436 5165" stroke="currentColor" stroke-width="45" />
<path d="M5436 5759 L5436 6479" stroke="currentColor" stroke-width="45" />
<path d="M5436 5165 L5436 5759" stroke="currentColor" stroke-width="45" />
</g>
</g>
<g id="measure-L60" class="measure">
<g id="staff-L60F2N1" class="staff">
<path d="M5458 4445 L10325 4445" stroke="currentColor" stroke-width="18" />
<path d="M5458 4625 L10325 4625" stroke="currentColor" stroke-width="18" />
<path d="M5458 4805 L10325 4805" stroke="currentColor" stroke-width="18" />
<path d="M5458 4985 L10325 4985" stroke="currentColor" stroke-width="18" />
<path d="M5458 5165 L10325 5165" stroke="currentColor" stroke-width="18" />
<g id="layer-L60F2N1" class="layer">
<g id="beam-L61F2-L64F2" class="beam">
<polygon points="5846,3995 7057,3815 7057,3905 5846,4085" />
<polygon points="6732,3998 7057,3950 7057,4040 6732,4088" />
<polygon points="6732,4133 7057,4085 7057,4175 6732,4223" />
<g id="note-L61F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5638" y="4805" height="720px" width="720px" />
</g>
<g id="d1gefphz" class="dots">
<ellipse cx="5954" cy="4715" rx="36" ry="36" />
</g>
<g id="si5ri30" class="stem">
<path d="M5855 4777 L5855 4013" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L61F2" class="accid" />
</g>
<g id="note-L63F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="6515" y="4715" height="720px" width="720px" />
</g>
<g id="sccjuan" class="stem">
<path d="M6732 4687 L6732 3881" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L63F2" class="accid" />
</g>
<g id="note-L64F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="6831" y="4625" height="720px" width="720px" />
</g>
<g id="sw7gbet" class="stem">
<path d="M7048 4597 L7048 3833" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L64F2" class="accid" />
</g>
</g>
<g id="beam-L65F2-L66F2" class="beam">
<polygon points="7355,4130 7899,4175 7899,4265 7355,4220" />
<g id="note-L65F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7147" y="4715" height="720px" width="720px" />
</g>
<g id="s1ga27bu" class="stem">
<path d="M7364 4687 L7364 4148" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L65F2" class="accid" />
</g>
<g id="note-L66F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7673" y="4805" height="720px" width="720px" />
</g>
<g id="s1fow6il" class="stem">
<path d="M7890 4777 L7890 4193" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L66F2" class="accid" />
</g>
</g>
<g id="note-L67F2" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8199" y="4895" height="720px" width="720px" />
</g>
<g id="s9nqupa" class="stem">
<path d="M8416 4867 L8416 4265" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L67F2" class="accid" />
</g>
<g id="rest-L69F2" class="rest">
<use xlink:href="#E4E5-hf50ds" x="9251" y="4445" height="720px" width="720px" />
</g>
</g>
<g id="layer-L60F3N2" class="layer">
<g id="note-L61F3" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5638" y="5255" height="720px" width="720px" />
</g>
<g id="shq39p3" class="stem">
<path d="M5647 5283 L5647 5705" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L61F3" class="accid" />
</g>
<g id="note-L65F3" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7147" y="5165" height="720px" width="720px" />
</g>
<g id="swgirmj" class="stem">
<path d="M7156 5193 L7156 5645" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L65F3" class="accid" />
</g>
<g id="note-L67F3" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8199" y="5075" height="720px" width="720px" />
</g>
<g id="s1fjye71" class="stem">
<path d="M8208 5103 L8208 5585" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L67F3" class="accid" />
</g>
<g id="rest-L69F3" class="rest">
<use xlink:href="#E4E5-hf50ds" x="9251" y="5165" height="720px" width="720px" />
</g>
</g>
</g>
<g id="staff-L60F1N1" class="staff">
<path d="M5458 5759 L10325 5759" stroke="currentColor" stroke-width="18" />
<path d="M5458 5939 L10325 5939" stroke="currentColor" stroke-width="18" />
<path d="M5458 6119 L10325 6119" stroke="currentColor" stroke-width="18" />
<path d="M5458 6299 L10325 6299" stroke="currentColor" stroke-width="18" />
<path d="M5458 6479 L10325 6479" stroke="currentColor" stroke-width="18" />
<g id="layer-L60F1N1" class="layer">
<g id="beam-L61F1-L66F1" class="beam">
<polygon points="5638,6524 7691,6524 7691,6434 5638,6434" />
<g id="note-L61F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="5638" y="5939" height="720px" width="720px" />
</g>
<g id="smpu7an" class="stem">
<path d="M5647 5967 L5647 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L61F1" class="accid" />
</g>
<g id="note-L62F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="6164" y="5939" height="720px" width="720px" />
</g>
<g id="siwrdfu" class="stem">
<path d="M6173 5967 L6173 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L62F1" class="accid" />
</g>
<g id="note-L65F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7147" y="5939" height="720px" width="720px" />
</g>
<g id="s1baizvv" class="stem">
<path d="M7156 5967 L7156 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L65F1" class="accid" />
</g>
<g id="note-L66F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="7673" y="5939" height="720px" width="720px" />
</g>
<g id="s1lzdyjx" class="stem">
<path d="M7682 5967 L7682 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L66F1" class="accid" />
</g>
</g>
<g id="beam-L67F1-L70F1" class="beam">
<polygon points="8199,6524 9795,6524 9795,6434 8199,6434" />
<g id="note-L67F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8199" y="5939" height="720px" width="720px" />
</g>
<g id="soeah0e" class="stem">
<path d="M8208 5967 L8208 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L67F1" class="accid" />
</g>
<g id="note-L68F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="8725" y="5939" height="720px" width="720px" />
</g>
<g id="s1fmefjx" class="stem">
<path d="M8734 5967 L8734 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L68F1" class="accid" />
</g>
<g id="note-L69F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="9251" y="5939" height="720px" width="720px" />
</g>
<g id="sfyzw8x" class="stem">
<path d="M9260 5967 L9260 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L69F1" class="accid" />
</g>
<g id="note-L70F1" class="note">
<g class="notehead">
<use xlink:href="#E0A4-hf50ds" x="9777" y="5939" height="720px" width="720px" />
</g>
<g id="shyslq6" class="stem">
<path d="M9786 5967 L9786 6506" stroke="currentColor" stroke-width="18" />
</g>
<g id="accid-L70F1" class="accid" />
</g>
</g>
</g>
</g>
<g id="b1aq38ll" class="barLine">
<path d="M10303 4445 L10303 5165" stroke="currentColor" stroke-width="45" />
<path d="M10303 5759 L10303 6479" stroke="currentColor" stroke-width="45" />
<path d="M10303 5165 L10303 5759" stroke="currentColor" stroke-width="45" />
</g>
</g>
<g id="s1jew0rd" class="systemMilestoneEnd section-L2F1" />
</g>
<g id="p1ylxtyj" class="pageMilestoneEnd s1m09lj2" />
<g id="p1ckctm8" class="pageMilestoneEnd m1a1h1ty" />
<g id="p9wauu3" class="pgHead">
<text font-size="0px">
<tspan id="re1x518" class="rend" x="20000" y="223" text-anchor="end">
<tspan id="t1fes93v" class="text">
<tspan font-size="324px">Amber Tetreault</tspan>
</tspan>
</tspan>
</text>
</g>
</g>
</svg>
</svg>
|