From 28b32f15ccaac2d8389e4e60a34a2338c578af9b Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Sun, 21 Jun 2026 10:17:05 +0000 Subject: [PATCH 1/8] test: register segno/coda synthetic fixtures in the api file-walking suite Closes #204. Registers segno.{3.0,3.1}.xml and coda.{3.0,3.1}.xml (under data/synthetic/) in MxFileRepository::initializeNameSubdirectoryMap() so the api file-walking suite (ApiLoadSurvivalTest) exercises the public DocumentManager read path over them. The 3.1 variants additionally carry id and smufl; all four load and yield a part. segno/coda write fidelity is already covered at the impl layer by the segnoAndCodaRoundTrip DirectionWriter test (#203). --- src/private/mxtest/file/MxFileRepositoy.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/private/mxtest/file/MxFileRepositoy.cpp b/src/private/mxtest/file/MxFileRepositoy.cpp index 5792bdd1d..302fe9557 100644 --- a/src/private/mxtest/file/MxFileRepositoy.cpp +++ b/src/private/mxtest/file/MxFileRepositoy.cpp @@ -467,5 +467,11 @@ void MxFileRepository::initializeNameSubdirectoryMap() // mxl myNameSubdirectoryMap.emplace("Dichterliebe01.mxl", "mxl"); + + // synthetic (audit-generated single-feature fixtures) + myNameSubdirectoryMap.emplace("segno.3.0.xml", "synthetic"); + myNameSubdirectoryMap.emplace("segno.3.1.xml", "synthetic"); + myNameSubdirectoryMap.emplace("coda.3.0.xml", "synthetic"); + myNameSubdirectoryMap.emplace("coda.3.1.xml", "synthetic"); } } // namespace mxtest From 8121c1f888f2325ff32542149417a8aa0ba5ac5b Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Sun, 21 Jun 2026 12:06:22 +0000 Subject: [PATCH 2/8] test: pin segno/coda fixtures in the api read->write->read gate Adds dedicated minimal fixtures custom/segno_coda_roundtrip.{3.0,3.1}.xml that isolate the segno/coda surface (3.0 base attributes; 3.1 adds id + smufl) in a score that round-trips losslessly through the public DocumentManager createFromFile -> getData -> createFromScore -> writeToStream path, and pins them in roundtrip-baseline.txt so the test-api-roundtrip CI gate enforces strict DOM-equal read->write->read for segno and coda. The audit synthetic/segno.*.xml and synthetic/coda.*.xml probes cannot serve this gate: they carry editorial part-group/direction children (footnote/level/voice) the api omits and have no notes (so the api synthesizes ), diverging for reasons unrelated to segno/coda. Those remain covered for load survival via the file-walking suite (previous commit). Also registers the two fixtures in MxFileRepository and adds their audit *.features.xml sidecars. --- .../segno_coda_roundtrip.3.0.features.xml | 107 +++++++++++++++++ data/custom/segno_coda_roundtrip.3.0.xml | 36 ++++++ .../segno_coda_roundtrip.3.1.features.xml | 111 ++++++++++++++++++ data/custom/segno_coda_roundtrip.3.1.xml | 36 ++++++ src/private/mxtest/api/roundtrip-baseline.txt | 10 ++ src/private/mxtest/file/MxFileRepositoy.cpp | 2 + 6 files changed, 302 insertions(+) create mode 100644 data/custom/segno_coda_roundtrip.3.0.features.xml create mode 100644 data/custom/segno_coda_roundtrip.3.0.xml create mode 100644 data/custom/segno_coda_roundtrip.3.1.features.xml create mode 100644 data/custom/segno_coda_roundtrip.3.1.xml diff --git a/data/custom/segno_coda_roundtrip.3.0.features.xml b/data/custom/segno_coda_roundtrip.3.0.features.xml new file mode 100644 index 000000000..6f53e1dd5 --- /dev/null +++ b/data/custom/segno_coda_roundtrip.3.0.features.xml @@ -0,0 +1,107 @@ + + + + custom/segno_coda_roundtrip.3.0.xml + 3.0 + + + attributes + + + coda + + color + default-x + default-y + font-family + font-size + font-style + font-weight + halign + relative-x + relative-y + valign + + + + direction + + + direction-type + + + divisions + + + duration + + + measure + + number + + + + note + + + octave + + + part + + id + + + + part-list + + + part-name + + + pitch + + + score-part + + id + + + + score-partwise + + version + + + + segno + + color + default-x + default-y + font-family + font-size + font-style + font-weight + halign + relative-x + relative-y + valign + + + + staff + + + step + + + type + + + voice + + + diff --git a/data/custom/segno_coda_roundtrip.3.0.xml b/data/custom/segno_coda_roundtrip.3.0.xml new file mode 100644 index 000000000..3dfc2198b --- /dev/null +++ b/data/custom/segno_coda_roundtrip.3.0.xml @@ -0,0 +1,36 @@ + + + + + x + + + + + + 1 + + + + + + 1 + + + + + + 1 + + + + C + 4 + + 1 + 1 + quarter + + + + diff --git a/data/custom/segno_coda_roundtrip.3.1.features.xml b/data/custom/segno_coda_roundtrip.3.1.features.xml new file mode 100644 index 000000000..0f8e93252 --- /dev/null +++ b/data/custom/segno_coda_roundtrip.3.1.features.xml @@ -0,0 +1,111 @@ + + + + custom/segno_coda_roundtrip.3.1.xml + 3.0 + + + attributes + + + coda + + color + default-x + default-y + font-family + font-size + font-style + font-weight + halign + id + relative-x + relative-y + smufl + valign + + + + direction + + + direction-type + + + divisions + + + duration + + + measure + + number + + + + note + + + octave + + + part + + id + + + + part-list + + + part-name + + + pitch + + + score-part + + id + + + + score-partwise + + version + + + + segno + + color + default-x + default-y + font-family + font-size + font-style + font-weight + halign + id + relative-x + relative-y + smufl + valign + + + + staff + + + step + + + type + + + voice + + + diff --git a/data/custom/segno_coda_roundtrip.3.1.xml b/data/custom/segno_coda_roundtrip.3.1.xml new file mode 100644 index 000000000..f40a31236 --- /dev/null +++ b/data/custom/segno_coda_roundtrip.3.1.xml @@ -0,0 +1,36 @@ + + + + + x + + + + + + 1 + + + + + + 1 + + + + + + 1 + + + + C + 4 + + 1 + 1 + quarter + + + + diff --git a/src/private/mxtest/api/roundtrip-baseline.txt b/src/private/mxtest/api/roundtrip-baseline.txt index 176f41384..473bae59f 100644 --- a/src/private/mxtest/api/roundtrip-baseline.txt +++ b/src/private/mxtest/api/roundtrip-baseline.txt @@ -59,3 +59,13 @@ lysuite/ly46f_IncompleteMeasures.xml lysuite/ly71a_Chordnames.xml lysuite/ly72a_TransposingInstruments.xml lysuite/ly72b_TransposingInstruments_Full.xml + +# Dedicated segno/coda api read->write->read fixtures (#204). The audit's +# synthetic/segno.*.xml and synthetic/coda.*.xml probes carry editorial +# part-group/direction children (footnote/level/voice) and no notes, so the +# api -- which omits those and synthesizes -- cannot round-trip +# them through the strict DOM compare for reasons unrelated to segno/coda. +# These two fixtures isolate the segno/coda surface (3.0 base attributes; 3.1 +# adds id + smufl) in a minimal score that round-trips losslessly. +custom/segno_coda_roundtrip.3.0.xml +custom/segno_coda_roundtrip.3.1.xml diff --git a/src/private/mxtest/file/MxFileRepositoy.cpp b/src/private/mxtest/file/MxFileRepositoy.cpp index 302fe9557..56187ca18 100644 --- a/src/private/mxtest/file/MxFileRepositoy.cpp +++ b/src/private/mxtest/file/MxFileRepositoy.cpp @@ -464,6 +464,8 @@ void MxFileRepository::initializeNameSubdirectoryMap() myNameSubdirectoryMap.emplace("musescore-slur-start-stop.musicxml", "custom"); myNameSubdirectoryMap.emplace("systems-and-pages.xml", "custom"); myNameSubdirectoryMap.emplace("transposition.musicxml", "custom"); + myNameSubdirectoryMap.emplace("segno_coda_roundtrip.3.0.xml", "custom"); + myNameSubdirectoryMap.emplace("segno_coda_roundtrip.3.1.xml", "custom"); // mxl myNameSubdirectoryMap.emplace("Dichterliebe01.mxl", "mxl"); From 374efd1ff78294c28061802da4ec42d5edc06782 Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Sun, 21 Jun 2026 12:32:53 +0000 Subject: [PATCH 3/8] test: bump pinned corpus count 829 -> 831 for new segno/coda fixtures The two custom/segno_coda_roundtrip.{3.0,3.1}.xml fixtures are eligible corpus files, so the corert pinned-counts case (intentionally fails on count drift) must be updated. Both round-trip through mx::core cleanly (832 corert cases pass). Also regenerates the audit data/corpus.xml aggregate (831 total, 442 wild) via 'python3 -m audit all'. --- data/corpus.xml | 336 +++++++++--------- .../mxtest/corert/CoreRoundtripTest.cpp | 4 +- 2 files changed, 172 insertions(+), 168 deletions(-) diff --git a/data/corpus.xml b/data/corpus.xml index eaf201793..26fe63724 100644 --- a/data/corpus.xml +++ b/data/corpus.xml @@ -4,21 +4,23 @@ usage (descending). Do not edit by hand; regenerate with the tool. --> - + - + - + - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -28,9 +30,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -424,12 +424,14 @@ synthetic/work-title.3.0.xml - + - + - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -439,9 +441,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -835,9 +835,11 @@ synthetic/work-title.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -847,9 +849,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -1243,7 +1243,7 @@ synthetic/work-title.3.0.xml - + @@ -1257,8 +1257,10 @@ - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -1268,9 +1270,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -1664,12 +1664,14 @@ synthetic/work-title.3.0.xml - + - + - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -1679,9 +1681,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -2075,12 +2075,14 @@ synthetic/work-title.3.0.xml - + - + - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -2090,9 +2092,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -2486,9 +2486,11 @@ synthetic/work-title.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -2498,9 +2500,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/cancel.location.3.0.xml @@ -2514,9 +2514,11 @@ synthetic/suffix.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -2526,9 +2528,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/beat-repeat.3.0.xml @@ -2569,9 +2569,11 @@ synthetic/transpose.3.1.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -2581,9 +2583,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/cancel.location.3.0.xml @@ -2591,7 +2591,7 @@ synthetic/key-accidental.smufl.3.1.xml - + @@ -2615,8 +2615,10 @@ - + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -2626,9 +2628,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -2851,6 +2851,31 @@ synthetic/work-title.3.0.xml + + + + + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml + custom/systems-and-pages.xml + custom/transposition.musicxml + foundsuite/12 Horn Duets.xml + foundsuite/ARBEAU Belle qui tiens ma vie.xml + foundsuite/Adagio and Fugue in C minor, K.546.xml + foundsuite/An Chloe.xml + foundsuite/Berlioz_Le_Corsaire.xml + foundsuite/Black Note Study Op 10 no 5.xml + foundsuite/Deutscher Tanz D.820.1.xml + + + + synthetic/cancel.location.3.0.xml + synthetic/key-accidental.3.0.xml + synthetic/key-accidental.smufl.3.1.xml + + @@ -2939,31 +2964,6 @@ synthetic/part-clef.4.0.xml - - - - - - custom/musescore-slur-start-stop.musicxml - custom/systems-and-pages.xml - custom/transposition.musicxml - foundsuite/12 Horn Duets.xml - foundsuite/ARBEAU Belle qui tiens ma vie.xml - foundsuite/Adagio and Fugue in C minor, K.546.xml - foundsuite/An Chloe.xml - foundsuite/Berlioz_Le_Corsaire.xml - foundsuite/Black Note Study Op 10 no 5.xml - foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - - - - synthetic/cancel.location.3.0.xml - synthetic/key-accidental.3.0.xml - synthetic/key-accidental.smufl.3.1.xml - - @@ -3067,9 +3067,11 @@ synthetic/time.3.1.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -3079,9 +3081,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -3304,9 +3304,11 @@ synthetic/work-title.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -3316,9 +3318,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -3541,9 +3541,11 @@ synthetic/work-title.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -3553,9 +3555,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -3778,9 +3778,11 @@ synthetic/work-title.3.0.xml - - + + custom/musescore-slur-start-stop.musicxml + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml custom/systems-and-pages.xml custom/transposition.musicxml foundsuite/12 Horn Duets.xml @@ -3790,9 +3792,7 @@ foundsuite/Berlioz_Le_Corsaire.xml foundsuite/Black Note Study Op 10 no 5.xml foundsuite/Deutscher Tanz D.820.1.xml - foundsuite/Invention 1.xml - foundsuite/Invention 2.xml - + synthetic/accent.3.0.xml @@ -4849,14 +4849,16 @@ synthetic/dot.3.0.xml - + - + + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml foundsuite/12 Horn Duets.xml foundsuite/Adagio and Fugue in C minor, K.546.xml foundsuite/An Chloe.xml @@ -4867,9 +4869,7 @@ foundsuite/Moments Musicaux Op16 No4.xml foundsuite/PepAiraSco.xml foundsuite/PezR44Sco.xml - foundsuite/Rimsky-Korsakov Op11 No4.xml - foundsuite/RonCLunSco.xml - + synthetic/accordion-registration.3.0.xml @@ -4965,11 +4965,13 @@ synthetic/words.3.1.xml - + - + + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml foundsuite/12 Horn Duets.xml foundsuite/Adagio and Fugue in C minor, K.546.xml foundsuite/An Chloe.xml @@ -4980,9 +4982,7 @@ foundsuite/Moments Musicaux Op16 No4.xml foundsuite/PepAiraSco.xml foundsuite/PezR44Sco.xml - foundsuite/Rimsky-Korsakov Op11 No4.xml - foundsuite/RonCLunSco.xml - + synthetic/accordion-registration.3.0.xml @@ -5775,8 +5775,10 @@ synthetic/word-font.3.0.xml - - + + + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml foundsuite/ARBEAU Belle qui tiens ma vie.xml foundsuite/An Chloe.xml foundsuite/Black Note Study Op 10 no 5.xml @@ -5787,9 +5789,7 @@ foundsuite/Invention_10.xml foundsuite/Invention_11.xml foundsuite/Invention_12.xml - foundsuite/Invention_13.xml - foundsuite/Invention_14.xml - + synthetic/accent.3.0.xml @@ -10341,6 +10341,34 @@ + + + + + + + + + + + + + + + + + + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml + lysuite/ly21f_Chord_ElementInBetween.xml + lysuite/ly31a_Directions.xml + musuite/testDalSegno.xml + + + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml + + ksuite/k007a_Notations_Dynamics.xml @@ -10453,6 +10481,33 @@ synthetic/accidental-text.3.1.xml + + + + + + + + + + + + + + + + + + custom/segno_coda_roundtrip.3.0.xml + custom/segno_coda_roundtrip.3.1.xml + lysuite/ly31a_Directions.xml + musuite/testDCalCoda.xml + + + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml + + mjbsuite/krz_v40.xml @@ -11156,32 +11211,6 @@ - - - - - - - - - - - - - - - - - - lysuite/ly21f_Chord_ElementInBetween.xml - lysuite/ly31a_Directions.xml - musuite/testDalSegno.xml - - - synthetic/segno.3.0.xml - synthetic/segno.3.1.xml - - @@ -11257,31 +11286,6 @@ synthetic/accordion-registration.3.1.xml - - - - - - - - - - - - - - - - - - lysuite/ly31a_Directions.xml - musuite/testDCalCoda.xml - - - synthetic/coda.3.0.xml - synthetic/coda.3.1.xml - - diff --git a/src/private/mxtest/corert/CoreRoundtripTest.cpp b/src/private/mxtest/corert/CoreRoundtripTest.cpp index ce3040a6f..f673e30b6 100644 --- a/src/private/mxtest/corert/CoreRoundtripTest.cpp +++ b/src/private/mxtest/corert/CoreRoundtripTest.cpp @@ -127,12 +127,12 @@ const CoreRoundtripRegistrar g_coreRoundtripRegistrar; } // namespace -// Pinned counts: 829 eligible files, none skipped. Count drift is a failure +// Pinned counts: 831 eligible files, none skipped. Count drift is a failure // even with zero individual fails, so a corpus or version-gate change is a // conscious decision, not silent decay. Registered last (registration is // discovery order; "zz" keeps it last alphabetically for shuffled runs too). TEST_CASE("zz-corert-pinned-counts", "[core-roundtrip]") { - CHECK(mxtest::corert::discoverInputFiles().size() == 829); + CHECK(mxtest::corert::discoverInputFiles().size() == 831); CHECK(g_skippedCount == 0); } From 56a76019fb0f1658a10b4c046038aa2e7828296e Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Mon, 22 Jun 2026 06:00:07 +0000 Subject: [PATCH 4/8] docs: corpus-file invariants; rename load-survival to smoke test Renames ApiLoadSurvivalTest -> ApiLoadSmokeTest (class, file, display name) and documents that it only proves a file imports without crashing, not that the data is correct -- the read->write->read gate is the correctness check. Also adds, in the fewest lines possible, the data/ corpus invariants that bit this PR's CI: adding/removing a corpus file requires bumping the CoreRoundtripTest.cpp pinned count and running 'make audit', and 'make check' is clang-format only. --- AGENTS.md | 8 ++++---- ...ApiLoadSurvivalTest.cpp => ApiLoadSmokeTest.cpp} | 13 ++++++++----- 2 files changed, 12 insertions(+), 9 deletions(-) rename src/private/mxtest/api/{ApiLoadSurvivalTest.cpp => ApiLoadSmokeTest.cpp} (70%) diff --git a/AGENTS.md b/AGENTS.md index c97defa6e..aa426a1b1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -100,10 +100,10 @@ What you need to know right now is that `gen/cpp` is where our MusicXML types ar ## Quality gates -Run `make fmt` for a stable version of clang format. -Run `make check` to see if you will pass in CI -Run `make test-core-dev` to run the `corert` tests, especially if you are working in `mx/core`. -Run `make test` to run all the tests. (Slow and heavy on the local machine) +Run `make fmt` to format. `make check` is the clang-format gate **only** — it builds and tests nothing. +Run `make test-core-dev` for corert (especially `mx/core` work); `make test` for everything (slow). +Adding/removing a `data/` file: bump the pinned count in `CoreRoundtripTest.cpp`, run `make audit` (regenerates `corpus.xml` + `*.features.xml`), confirm round-trip via `make test-core-dev`. +`ApiLoadSmokeTest` proves a file imports without crashing, not that the data is correct; the read→write→read gate (`make test-api-roundtrip` / `roundtrip-baseline.txt`) is the correctness check — pin a fixture there to defend a feature. Look at what will run in CI `.github/workflows/ci.yaml` and anticipate issues there when coding locally. diff --git a/src/private/mxtest/api/ApiLoadSurvivalTest.cpp b/src/private/mxtest/api/ApiLoadSmokeTest.cpp similarity index 70% rename from src/private/mxtest/api/ApiLoadSurvivalTest.cpp rename to src/private/mxtest/api/ApiLoadSmokeTest.cpp index 7d3fcee3f..76beebeba 100644 --- a/src/private/mxtest/api/ApiLoadSurvivalTest.cpp +++ b/src/private/mxtest/api/ApiLoadSmokeTest.cpp @@ -12,11 +12,14 @@ namespace mxtest { -class ApiLoadSurvivalTest : public mxtest::MxFileTest +// Smoke test: proves each registered file imports (createFromFile -> getData +// yields a part), NOT that the data is correct -- dropped or mistranslated +// elements still pass. Fidelity is the round-trip gate (roundtrip-baseline.txt). +class ApiLoadSmokeTest : public mxtest::MxFileTest { public: - ApiLoadSurvivalTest(mxtest::MxFile inTestFile, std::string inTestName, std::string inTestCppFileName, - int inTestCppFileLineNumber) + ApiLoadSmokeTest(mxtest::MxFile inTestFile, std::string inTestName, std::string inTestCppFileName, + int inTestCppFileLineNumber) : mxtest::MxFileTest(inTestFile, inTestName, inTestCppFileName, inTestCppFileLineNumber) { } @@ -51,8 +54,8 @@ class ApiLoadSurvivalTest : public mxtest::MxFileTest } }; -MxFileTestGroup instance{MX_COMPILE_MAX_FILE_SIZE_BYTES, // maxFileSizeBytes - "Api Load Survival Test", __FILE__, __LINE__}; +MxFileTestGroup instance{MX_COMPILE_MAX_FILE_SIZE_BYTES, // maxFileSizeBytes + "Api Load Smoke Test", __FILE__, __LINE__}; } // namespace mxtest #endif From 1a251676b9a2ec217132cddec785b85537e896bf Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Mon, 22 Jun 2026 06:00:14 +0000 Subject: [PATCH 5/8] test: give segno/coda fixtures distinct non-default attribute values Per review: every numeric/color attribute now carries a distinct, non-default value (default-x=1.1, default-y=2.2, relative-x=3.3, relative-y=4.4, font-size differs per element, color=#12345678 / #9ABCDEF0, halign/valign differ) so a writer or reader that assigns a value to the wrong attribute is caught instead of hiding behind uniform 1s and #FF000000. Colors are uppercase per the MusicXML color schema type. Both variants still round-trip exactly. --- data/custom/segno_coda_roundtrip.3.0.xml | 4 ++-- data/custom/segno_coda_roundtrip.3.1.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/data/custom/segno_coda_roundtrip.3.0.xml b/data/custom/segno_coda_roundtrip.3.0.xml index 3dfc2198b..96e8b888f 100644 --- a/data/custom/segno_coda_roundtrip.3.0.xml +++ b/data/custom/segno_coda_roundtrip.3.0.xml @@ -12,13 +12,13 @@ - + 1 - + 1 diff --git a/data/custom/segno_coda_roundtrip.3.1.xml b/data/custom/segno_coda_roundtrip.3.1.xml index f40a31236..53c8a0cee 100644 --- a/data/custom/segno_coda_roundtrip.3.1.xml +++ b/data/custom/segno_coda_roundtrip.3.1.xml @@ -1,5 +1,5 @@ - + x @@ -12,13 +12,13 @@ - + 1 - + 1 From 2db60282d4c27dfeca396acc1ca70bbf4f68ab98 Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Mon, 22 Jun 2026 18:38:42 +0000 Subject: [PATCH 6/8] docs: clarify api smoke-test and segno/coda fixture comments Address review feedback: reword the ApiLoadSmokeTest comment so it no longer says the import 'yields a part' (it asserts a non-empty parts list), and trim the segno/coda baseline comment to state what the fixtures are rather than transitory context about other files. --- src/private/mxtest/api/ApiLoadSmokeTest.cpp | 7 ++++--- src/private/mxtest/api/roundtrip-baseline.txt | 10 +++------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/private/mxtest/api/ApiLoadSmokeTest.cpp b/src/private/mxtest/api/ApiLoadSmokeTest.cpp index 76beebeba..feba0bf3d 100644 --- a/src/private/mxtest/api/ApiLoadSmokeTest.cpp +++ b/src/private/mxtest/api/ApiLoadSmokeTest.cpp @@ -12,9 +12,10 @@ namespace mxtest { -// Smoke test: proves each registered file imports (createFromFile -> getData -// yields a part), NOT that the data is correct -- dropped or mistranslated -// elements still pass. Fidelity is the round-trip gate (roundtrip-baseline.txt). +// Smoke test: proves each registered file imports and produces at least one part +// (createFromFile -> getData succeeds with a non-empty ScoreData::parts), NOT that the +// data is correct -- dropped or mistranslated elements still pass. Fidelity is the +// round-trip gate (roundtrip-baseline.txt). class ApiLoadSmokeTest : public mxtest::MxFileTest { public: diff --git a/src/private/mxtest/api/roundtrip-baseline.txt b/src/private/mxtest/api/roundtrip-baseline.txt index 473bae59f..79f2ad25e 100644 --- a/src/private/mxtest/api/roundtrip-baseline.txt +++ b/src/private/mxtest/api/roundtrip-baseline.txt @@ -60,12 +60,8 @@ lysuite/ly71a_Chordnames.xml lysuite/ly72a_TransposingInstruments.xml lysuite/ly72b_TransposingInstruments_Full.xml -# Dedicated segno/coda api read->write->read fixtures (#204). The audit's -# synthetic/segno.*.xml and synthetic/coda.*.xml probes carry editorial -# part-group/direction children (footnote/level/voice) and no notes, so the -# api -- which omits those and synthesizes -- cannot round-trip -# them through the strict DOM compare for reasons unrelated to segno/coda. -# These two fixtures isolate the segno/coda surface (3.0 base attributes; 3.1 -# adds id + smufl) in a minimal score that round-trips losslessly. +# Dedicated segno/coda api read->write->read fixtures (#204): a minimal score that +# isolates the segno/coda surface (3.0 base attributes; 3.1 adds id + smufl) and +# round-trips losslessly. custom/segno_coda_roundtrip.3.0.xml custom/segno_coda_roundtrip.3.1.xml From 86e5978df27b294d011f29c6d9bf3678739dfddb Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Mon, 22 Jun 2026 19:37:55 +0000 Subject: [PATCH 7/8] feat: round-trip direction ; pin synthetic segno/coda fixtures Read and write the editorial-voice on a so a direction's voice assignment survives the api round-trip. It is emitted only when the direction also writes direction-type content, so a voice carried in from a figured-bass or harmony element never produces an empty . Strip the footnote/level editorial boilerplate from the synthetic segno/coda fixtures -- no file in the wild corpus uses editorial, so the api does not model it -- and give each measure a divisions plus a note so it round-trips. Pin the four fixtures in the api read->write->read gate. --- data/corpus.xml | 80 ++++++++++++------- data/synthetic/coda.3.0.features.xml | 22 ++++- data/synthetic/coda.3.0.xml | 24 +++--- data/synthetic/coda.3.1.features.xml | 22 ++++- data/synthetic/coda.3.1.xml | 24 +++--- data/synthetic/segno.3.0.features.xml | 22 ++++- data/synthetic/segno.3.0.xml | 24 +++--- data/synthetic/segno.3.1.features.xml | 22 ++++- data/synthetic/segno.3.1.xml | 24 +++--- src/private/mx/impl/DirectionReader.cpp | 12 +++ src/private/mx/impl/DirectionWriter.cpp | 12 +++ src/private/mxtest/api/roundtrip-baseline.txt | 8 ++ 12 files changed, 220 insertions(+), 76 deletions(-) diff --git a/data/corpus.xml b/data/corpus.xml index 26fe63724..eda4bafe9 100644 --- a/data/corpus.xml +++ b/data/corpus.xml @@ -2486,7 +2486,7 @@ synthetic/work-title.3.0.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -2502,8 +2502,10 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/cancel.location.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/figure-number.3.0.xml synthetic/figured-bass.3.0.xml synthetic/figured-bass.3.1.xml @@ -2511,10 +2513,12 @@ synthetic/key-accidental.3.0.xml synthetic/key-accidental.smufl.3.1.xml synthetic/prefix.3.0.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/suffix.3.0.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -2530,13 +2534,15 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/beat-repeat.3.0.xml synthetic/beat-type.3.0.xml synthetic/beats.3.0.xml synthetic/cancel.location.3.0.xml synthetic/clef.3.0.xml synthetic/clef.3.1.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/directive.3.0.xml synthetic/double.3.0.xml synthetic/double.4.0.xml @@ -2556,6 +2562,8 @@ synthetic/part-clef.4.0.xml synthetic/part-symbol.3.0.xml synthetic/part-transpose.4.0.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/senza-misura.3.0.xml synthetic/slash-dot.3.0.xml synthetic/slash-type.3.0.xml @@ -2569,7 +2577,7 @@ synthetic/transpose.3.1.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -2585,13 +2593,17 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/cancel.location.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/key-accidental.3.0.xml synthetic/key-accidental.smufl.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml - + @@ -2630,7 +2642,7 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -2657,6 +2669,8 @@ synthetic/caesura.3.0.xml synthetic/cancel.location.3.0.xml synthetic/circular-arrow.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -2795,6 +2809,8 @@ synthetic/schleifer.3.0.xml synthetic/scoop.3.0.xml synthetic/scoop.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/sfzp.3.1.xml synthetic/shake.3.0.xml @@ -2851,7 +2867,7 @@ synthetic/work-title.3.0.xml - + @@ -2870,10 +2886,14 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/cancel.location.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/key-accidental.3.0.xml synthetic/key-accidental.smufl.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml @@ -3067,7 +3087,7 @@ synthetic/time.3.1.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -3083,7 +3103,7 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -3110,6 +3130,8 @@ synthetic/caesura.3.0.xml synthetic/cancel.location.3.0.xml synthetic/circular-arrow.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -3248,6 +3270,8 @@ synthetic/schleifer.3.0.xml synthetic/scoop.3.0.xml synthetic/scoop.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/sfzp.3.1.xml synthetic/shake.3.0.xml @@ -3304,7 +3328,7 @@ synthetic/work-title.3.0.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -3320,7 +3344,7 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -3347,6 +3371,8 @@ synthetic/caesura.3.0.xml synthetic/cancel.location.3.0.xml synthetic/circular-arrow.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -3485,6 +3511,8 @@ synthetic/schleifer.3.0.xml synthetic/scoop.3.0.xml synthetic/scoop.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/sfzp.3.1.xml synthetic/shake.3.0.xml @@ -3541,7 +3569,7 @@ synthetic/work-title.3.0.xml - + custom/musescore-slur-start-stop.musicxml custom/segno_coda_roundtrip.3.0.xml @@ -3557,7 +3585,7 @@ foundsuite/Deutscher Tanz D.820.1.xml - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -3584,6 +3612,8 @@ synthetic/caesura.3.0.xml synthetic/cancel.location.3.0.xml synthetic/circular-arrow.3.0.xml + synthetic/coda.3.0.xml + synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -3722,6 +3752,8 @@ synthetic/schleifer.3.0.xml synthetic/scoop.3.0.xml synthetic/scoop.3.1.xml + synthetic/segno.3.0.xml + synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/sfzp.3.1.xml synthetic/shake.3.0.xml @@ -12572,7 +12604,7 @@ synthetic/flip.3.1.xml - + @@ -12599,7 +12631,7 @@ - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -12644,8 +12676,6 @@ synthetic/circular-arrow.3.0.xml synthetic/clef.3.0.xml synthetic/clef.3.1.xml - synthetic/coda.3.0.xml - synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -12894,8 +12924,6 @@ synthetic/scoop.3.1.xml synthetic/scordatura.3.1.xml synthetic/second.4.0.xml - synthetic/segno.3.0.xml - synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/senza-misura.3.0.xml synthetic/sfzp.3.1.xml @@ -13264,7 +13292,7 @@ synthetic/laughing.3.0.xml - + @@ -13274,7 +13302,7 @@ - + synthetic/accent.3.0.xml synthetic/accidental-mark.3.0.xml synthetic/accidental-mark.3.1.xml @@ -13319,8 +13347,6 @@ synthetic/circular-arrow.3.0.xml synthetic/clef.3.0.xml synthetic/clef.3.1.xml - synthetic/coda.3.0.xml - synthetic/coda.3.1.xml synthetic/concert-score.4.0.xml synthetic/creator.3.0.xml synthetic/credit-image.3.0.xml @@ -13569,8 +13595,6 @@ synthetic/scoop.3.1.xml synthetic/scordatura.3.1.xml synthetic/second.4.0.xml - synthetic/segno.3.0.xml - synthetic/segno.3.1.xml synthetic/semi-pitched.3.0.xml synthetic/senza-misura.3.0.xml synthetic/sfzp.3.1.xml diff --git a/data/synthetic/coda.3.0.features.xml b/data/synthetic/coda.3.0.features.xml index e76ad0f4f..952f57972 100644 --- a/data/synthetic/coda.3.0.features.xml +++ b/data/synthetic/coda.3.0.features.xml @@ -5,6 +5,9 @@ synthetic/coda.3.0.xml 3.0 + + attributes + coda @@ -28,10 +31,10 @@ direction-type - footnote + divisions - level + duration measure @@ -39,6 +42,12 @@ number + + note + + + octave + part @@ -57,6 +66,9 @@ part-name + + pitch + score-part @@ -72,6 +84,12 @@ staff + + step + + + type + voice diff --git a/data/synthetic/coda.3.0.xml b/data/synthetic/coda.3.0.xml index ed43bd690..271a58c3d 100644 --- a/data/synthetic/coda.3.0.xml +++ b/data/synthetic/coda.3.0.xml @@ -1,29 +1,33 @@ - - x - x - + x - - x - x - + + + 1 + - x - x 1 1 + + + C + 4 + + 1 + 1 + quarter + diff --git a/data/synthetic/coda.3.1.features.xml b/data/synthetic/coda.3.1.features.xml index 737b847a2..560b346c4 100644 --- a/data/synthetic/coda.3.1.features.xml +++ b/data/synthetic/coda.3.1.features.xml @@ -5,6 +5,9 @@ synthetic/coda.3.1.xml 3.1 + + attributes + coda @@ -30,10 +33,10 @@ direction-type - footnote + divisions - level + duration measure @@ -41,6 +44,12 @@ number + + note + + + octave + part @@ -59,6 +68,9 @@ part-name + + pitch + score-part @@ -74,6 +86,12 @@ staff + + step + + + type + voice diff --git a/data/synthetic/coda.3.1.xml b/data/synthetic/coda.3.1.xml index 42a935afa..2069f264e 100644 --- a/data/synthetic/coda.3.1.xml +++ b/data/synthetic/coda.3.1.xml @@ -1,29 +1,33 @@ - - x - x - + x - - x - x - + + + 1 + - x - x 1 1 + + + C + 4 + + 1 + 1 + quarter + diff --git a/data/synthetic/segno.3.0.features.xml b/data/synthetic/segno.3.0.features.xml index 4af018bff..f96d1443a 100644 --- a/data/synthetic/segno.3.0.features.xml +++ b/data/synthetic/segno.3.0.features.xml @@ -5,6 +5,9 @@ synthetic/segno.3.0.xml 3.0 + + attributes + direction @@ -12,10 +15,10 @@ direction-type - footnote + divisions - level + duration measure @@ -23,6 +26,12 @@ number + + note + + + octave + part @@ -41,6 +50,9 @@ part-name + + pitch + score-part @@ -72,6 +84,12 @@ staff + + step + + + type + voice diff --git a/data/synthetic/segno.3.0.xml b/data/synthetic/segno.3.0.xml index 32036efd7..28ac82198 100644 --- a/data/synthetic/segno.3.0.xml +++ b/data/synthetic/segno.3.0.xml @@ -1,29 +1,33 @@ - - x - x - + x - - x - x - + + + 1 + - x - x 1 1 + + + C + 4 + + 1 + 1 + quarter + diff --git a/data/synthetic/segno.3.1.features.xml b/data/synthetic/segno.3.1.features.xml index e753345f2..f1caa09f6 100644 --- a/data/synthetic/segno.3.1.features.xml +++ b/data/synthetic/segno.3.1.features.xml @@ -5,6 +5,9 @@ synthetic/segno.3.1.xml 3.1 + + attributes + direction @@ -12,10 +15,10 @@ direction-type - footnote + divisions - level + duration measure @@ -23,6 +26,12 @@ number + + note + + + octave + part @@ -41,6 +50,9 @@ part-name + + pitch + score-part @@ -74,6 +86,12 @@ staff + + step + + + type + voice diff --git a/data/synthetic/segno.3.1.xml b/data/synthetic/segno.3.1.xml index 33b3e5b69..b367649e4 100644 --- a/data/synthetic/segno.3.1.xml +++ b/data/synthetic/segno.3.1.xml @@ -1,29 +1,33 @@ - - x - x - + x - - x - x - + + + 1 + - x - x 1 1 + + + C + 4 + + 1 + 1 + quarter + diff --git a/src/private/mx/impl/DirectionReader.cpp b/src/private/mx/impl/DirectionReader.cpp index 4241b4efb..ebf04df26 100644 --- a/src/private/mx/impl/DirectionReader.cpp +++ b/src/private/mx/impl/DirectionReader.cpp @@ -68,6 +68,7 @@ #include "mx/impl/SoundFunctions.h" #include "mx/impl/SpannerFunctions.h" #include "mx/utility/Round.h" +#include "mx/utility/StringToInt.h" #include "mx/utility/Unused.h" namespace mx @@ -171,6 +172,17 @@ void DirectionReader::parseValues() myOutDirectionData.soundData = std::move(soundData); } } + + // The 's editorial-voice assigns the direction to a voice. A value of + // -1 on DirectionData::voice means none was present. + if (myDirection->editorialVoiceDirection().voice().has_value()) + { + int parsedVoice = -1; + if (utility::stringToInt(myDirection->editorialVoiceDirection().voice()->c_str(), parsedVoice)) + { + myOutDirectionData.voice = parsedVoice; + } + } } else if (myHarmony) { diff --git a/src/private/mx/impl/DirectionWriter.cpp b/src/private/mx/impl/DirectionWriter.cpp index 3b86c1a30..c7d56fa63 100644 --- a/src/private/mx/impl/DirectionWriter.cpp +++ b/src/private/mx/impl/DirectionWriter.cpp @@ -21,6 +21,7 @@ #include "mx/core/generated/DirectionTypeChoiceChoice.h" #include "mx/core/generated/Divisions.h" #include "mx/core/generated/Dynamics.h" +#include "mx/core/generated/EditorialVoiceDirectionGroup.h" #include "mx/core/generated/Empty.h" #include "mx/core/generated/Figure.h" #include "mx/core/generated/FiguredBass.h" @@ -112,6 +113,17 @@ std::vector DirectionWriter::getDirectionLikeThings() direction.setOffset(coreOffset); } + // Assign the direction to a voice via the editorial-voice . Only emitted when this + // direction also writes direction-type content (guarded by myIsFirstDirectionTypeAdded below), + // so a voice carried in from a figured-bass or harmony element never produces an empty + // . + if (myDirectionData.voice >= 0) + { + core::EditorialVoiceDirectionGroup editorialVoice{}; + editorialVoice.setVoice(std::to_string(myDirectionData.voice)); + direction.setEditorialVoiceDirection(std::move(editorialVoice)); + } + for (auto mark : myDirectionData.marks) { mark.tickTimePosition = myDirectionData.tickTimePosition; diff --git a/src/private/mxtest/api/roundtrip-baseline.txt b/src/private/mxtest/api/roundtrip-baseline.txt index 79f2ad25e..87c9511fa 100644 --- a/src/private/mxtest/api/roundtrip-baseline.txt +++ b/src/private/mxtest/api/roundtrip-baseline.txt @@ -65,3 +65,11 @@ lysuite/ly72b_TransposingInstruments_Full.xml # round-trips losslessly. custom/segno_coda_roundtrip.3.0.xml custom/segno_coda_roundtrip.3.1.xml + +# The audit's synthetic single-feature segno/coda fixtures. Each is a minimal score +# with one part-group, a direction carrying the segno/coda plus a and , +# and a single note; all round-trip losslessly. +synthetic/segno.3.0.xml +synthetic/segno.3.1.xml +synthetic/coda.3.0.xml +synthetic/coda.3.1.xml From 892418e015496cc30f46a5c9f1b0cdc69829c081 Mon Sep 17 00:00:00 2001 From: Matthew James Briggs Date: Mon, 22 Jun 2026 19:44:46 +0000 Subject: [PATCH 8/8] chore: strip editorial boilerplate from synthetic feature fixtures The audit generator stamps / onto nearly every synthetic single-feature fixture, even though editorial appears in zero real-world corpus files. That noise implied mx::api needed editorial support it does not (see #236, closed). Remove the x/x boilerplate from every synthetic file except the dedicated footnote/level probes, which keep only their own attributed target. Regenerate the *.features.xml sidecars and corpus.xml. --- data/corpus.xml | 1009 ++--------------- data/synthetic/accent.3.0.features.xml | 6 - data/synthetic/accent.3.0.xml | 8 - .../accidental-mark.3.0.features.xml | 6 - data/synthetic/accidental-mark.3.0.xml | 8 - .../accidental-mark.3.1.features.xml | 6 - data/synthetic/accidental-mark.3.1.xml | 8 - .../accidental-text.3.0.features.xml | 6 - data/synthetic/accidental-text.3.0.xml | 6 - .../accidental-text.3.1.features.xml | 6 - data/synthetic/accidental-text.3.1.xml | 6 - data/synthetic/accidental.3.0.features.xml | 6 - data/synthetic/accidental.3.0.xml | 6 - data/synthetic/accidental.3.1.features.xml | 6 - data/synthetic/accidental.3.1.xml | 6 - .../accordion-registration.3.0.features.xml | 6 - data/synthetic/accordion-registration.3.0.xml | 6 - .../accordion-registration.3.1.features.xml | 6 - data/synthetic/accordion-registration.3.1.xml | 6 - data/synthetic/arpeggiate.3.0.features.xml | 6 - data/synthetic/arpeggiate.3.0.xml | 8 - data/synthetic/arpeggiate.3.1.features.xml | 6 - data/synthetic/arpeggiate.3.1.xml | 8 - data/synthetic/arpeggiate.4.0.features.xml | 6 - data/synthetic/arpeggiate.4.0.xml | 8 - data/synthetic/arrow-style.3.0.features.xml | 6 - data/synthetic/arrow-style.3.0.xml | 8 - data/synthetic/arrow.3.0.features.xml | 6 - data/synthetic/arrow.3.0.xml | 8 - data/synthetic/arrow.3.1.features.xml | 6 - data/synthetic/arrow.3.1.xml | 8 - data/synthetic/arrowhead.3.1.features.xml | 6 - data/synthetic/arrowhead.3.1.xml | 8 - data/synthetic/articulations.3.1.features.xml | 6 - data/synthetic/articulations.3.1.xml | 8 - data/synthetic/assess.4.0.features.xml | 6 - data/synthetic/assess.4.0.xml | 6 - data/synthetic/bar-style.3.0.features.xml | 6 - data/synthetic/bar-style.3.0.xml | 6 - data/synthetic/barline.3.0.features.xml | 6 - data/synthetic/barline.3.0.xml | 6 - data/synthetic/barline.3.1.features.xml | 6 - data/synthetic/barline.3.1.xml | 6 - data/synthetic/barre.3.0.features.xml | 6 - data/synthetic/barre.3.0.xml | 6 - data/synthetic/bass-alter.3.0.features.xml | 6 - data/synthetic/bass-alter.3.0.xml | 6 - .../synthetic/bass-separator.4.0.features.xml | 6 - data/synthetic/bass-separator.4.0.xml | 6 - data/synthetic/bass-step.3.0.features.xml | 6 - data/synthetic/bass-step.3.0.xml | 6 - data/synthetic/bass.4.0.features.xml | 6 - data/synthetic/bass.4.0.xml | 6 - data/synthetic/beam.3.0.features.xml | 6 - data/synthetic/beam.3.0.xml | 6 - data/synthetic/beam.3.1.features.xml | 6 - data/synthetic/beam.3.1.xml | 6 - data/synthetic/beat-repeat.3.0.features.xml | 6 - data/synthetic/beat-repeat.3.0.xml | 6 - data/synthetic/beat-type.3.0.features.xml | 6 - data/synthetic/beat-type.3.0.xml | 6 - .../synthetic/beat-unit-tied.3.1.features.xml | 6 - data/synthetic/beat-unit-tied.3.1.xml | 6 - data/synthetic/beater.3.0.features.xml | 6 - data/synthetic/beater.3.0.xml | 6 - data/synthetic/beats.3.0.features.xml | 6 - data/synthetic/beats.3.0.xml | 6 - data/synthetic/bend.3.0.features.xml | 6 - data/synthetic/bend.3.0.xml | 8 - data/synthetic/bend.4.0.features.xml | 6 - data/synthetic/bend.4.0.xml | 8 - data/synthetic/bookmark.3.0.features.xml | 6 - data/synthetic/bookmark.3.0.xml | 6 - data/synthetic/bracket.3.0.features.xml | 6 - data/synthetic/bracket.3.0.xml | 6 - data/synthetic/bracket.3.1.features.xml | 6 - data/synthetic/bracket.3.1.xml | 6 - data/synthetic/brass-bend.3.1.features.xml | 6 - data/synthetic/brass-bend.3.1.xml | 8 - data/synthetic/breath-mark.3.0.features.xml | 6 - data/synthetic/breath-mark.3.0.xml | 8 - data/synthetic/caesura.3.0.features.xml | 6 - data/synthetic/caesura.3.0.xml | 8 - .../synthetic/circular-arrow.3.0.features.xml | 6 - data/synthetic/circular-arrow.3.0.xml | 8 - data/synthetic/clef.3.0.features.xml | 6 - data/synthetic/clef.3.0.xml | 6 - data/synthetic/clef.3.1.features.xml | 6 - data/synthetic/clef.3.1.xml | 6 - data/synthetic/concert-score.4.0.features.xml | 6 - data/synthetic/concert-score.4.0.xml | 6 - data/synthetic/creator.3.0.features.xml | 6 - data/synthetic/creator.3.0.xml | 6 - data/synthetic/credit-image.3.0.features.xml | 6 - data/synthetic/credit-image.3.0.xml | 6 - data/synthetic/credit-image.3.1.features.xml | 6 - data/synthetic/credit-image.3.1.xml | 6 - data/synthetic/credit-symbol.3.1.features.xml | 6 - data/synthetic/credit-symbol.3.1.xml | 6 - data/synthetic/credit-type.3.0.features.xml | 6 - data/synthetic/credit-type.3.0.xml | 6 - data/synthetic/credit-words.3.0.features.xml | 6 - data/synthetic/credit-words.3.0.xml | 6 - data/synthetic/credit-words.3.1.features.xml | 6 - data/synthetic/credit-words.3.1.xml | 6 - data/synthetic/credit.3.1.features.xml | 6 - data/synthetic/credit.3.1.xml | 6 - data/synthetic/damp-all.3.0.features.xml | 6 - data/synthetic/damp-all.3.0.xml | 6 - data/synthetic/damp-all.3.1.features.xml | 6 - data/synthetic/damp-all.3.1.xml | 6 - data/synthetic/damp.3.0.features.xml | 6 - data/synthetic/damp.3.0.xml | 6 - data/synthetic/damp.3.1.features.xml | 6 - data/synthetic/damp.3.1.xml | 6 - data/synthetic/dashes.3.0.features.xml | 6 - data/synthetic/dashes.3.0.xml | 6 - data/synthetic/dashes.3.1.features.xml | 6 - data/synthetic/dashes.3.1.xml | 6 - data/synthetic/degree-alter.3.0.features.xml | 6 - data/synthetic/degree-alter.3.0.xml | 6 - data/synthetic/degree-type.3.0.features.xml | 6 - data/synthetic/degree-type.3.0.xml | 6 - data/synthetic/degree-value.3.0.features.xml | 6 - data/synthetic/degree-value.3.0.xml | 6 - .../delayed-inverted-turn.3.0.features.xml | 6 - data/synthetic/delayed-inverted-turn.3.0.xml | 8 - data/synthetic/delayed-turn.3.0.features.xml | 6 - data/synthetic/delayed-turn.3.0.xml | 8 - .../detached-legato.3.0.features.xml | 6 - data/synthetic/detached-legato.3.0.xml | 8 - .../synthetic/direction-type.3.1.features.xml | 6 - data/synthetic/direction-type.3.1.xml | 6 - data/synthetic/direction.3.1.features.xml | 6 - data/synthetic/direction.3.1.xml | 6 - data/synthetic/direction.4.0.features.xml | 6 - data/synthetic/direction.4.0.xml | 6 - data/synthetic/directive.3.0.features.xml | 6 - data/synthetic/directive.3.0.xml | 6 - data/synthetic/display-text.3.0.features.xml | 6 - data/synthetic/display-text.3.0.xml | 6 - data/synthetic/doit.3.0.features.xml | 6 - data/synthetic/doit.3.0.xml | 8 - data/synthetic/doit.3.1.features.xml | 6 - data/synthetic/doit.3.1.xml | 8 - data/synthetic/dot.3.0.features.xml | 6 - data/synthetic/dot.3.0.xml | 6 - data/synthetic/double-tongue.3.0.features.xml | 6 - data/synthetic/double-tongue.3.0.xml | 8 - data/synthetic/double.3.0.features.xml | 6 - data/synthetic/double.3.0.xml | 6 - data/synthetic/double.4.0.features.xml | 6 - data/synthetic/double.4.0.xml | 6 - data/synthetic/down-bow.3.0.features.xml | 6 - data/synthetic/down-bow.3.0.xml | 8 - data/synthetic/dynamics.3.1.features.xml | 6 - data/synthetic/dynamics.3.1.xml | 8 - data/synthetic/effect.3.0.features.xml | 6 - data/synthetic/effect.3.0.xml | 6 - data/synthetic/effect.4.0.features.xml | 6 - data/synthetic/effect.4.0.xml | 6 - data/synthetic/elevation.3.0.features.xml | 6 - data/synthetic/elevation.3.0.xml | 6 - data/synthetic/elision.3.0.features.xml | 6 - data/synthetic/elision.3.0.xml | 8 - data/synthetic/elision.3.1.features.xml | 6 - data/synthetic/elision.3.1.xml | 8 - data/synthetic/encoder.3.0.features.xml | 6 - data/synthetic/encoder.3.0.xml | 6 - .../encoding-description.3.0.features.xml | 6 - data/synthetic/encoding-description.3.0.xml | 6 - data/synthetic/ending.3.0.features.xml | 6 - data/synthetic/ending.3.0.xml | 6 - data/synthetic/ending.4.0.features.xml | 6 - data/synthetic/ending.4.0.xml | 6 - data/synthetic/except-voice.3.1.features.xml | 6 - data/synthetic/except-voice.3.1.xml | 6 - data/synthetic/extend.3.0.features.xml | 6 - data/synthetic/extend.3.0.xml | 8 - data/synthetic/eyeglasses.3.0.features.xml | 6 - data/synthetic/eyeglasses.3.0.xml | 6 - data/synthetic/eyeglasses.3.1.features.xml | 6 - data/synthetic/eyeglasses.3.1.xml | 6 - data/synthetic/falloff.3.0.features.xml | 6 - data/synthetic/falloff.3.0.xml | 8 - data/synthetic/falloff.3.1.features.xml | 6 - data/synthetic/falloff.3.1.xml | 8 - data/synthetic/feature.3.0.features.xml | 6 - data/synthetic/feature.3.0.xml | 4 - data/synthetic/fermata.3.1.features.xml | 6 - data/synthetic/fermata.3.1.xml | 8 - data/synthetic/figure-number.3.0.features.xml | 6 - data/synthetic/figure-number.3.0.xml | 6 - data/synthetic/figured-bass.3.0.features.xml | 6 - data/synthetic/figured-bass.3.0.xml | 6 - data/synthetic/figured-bass.3.1.features.xml | 6 - data/synthetic/figured-bass.3.1.xml | 8 - data/synthetic/figured-bass.4.0.features.xml | 6 - data/synthetic/figured-bass.4.0.xml | 8 - data/synthetic/fingering.3.0.features.xml | 6 - data/synthetic/fingering.3.0.xml | 8 - data/synthetic/fingernails.3.0.features.xml | 6 - data/synthetic/fingernails.3.0.xml | 8 - data/synthetic/first-fret.3.0.features.xml | 6 - data/synthetic/first-fret.3.0.xml | 6 - data/synthetic/first.4.0.features.xml | 6 - data/synthetic/first.4.0.xml | 6 - data/synthetic/flip.3.1.features.xml | 6 - data/synthetic/flip.3.1.xml | 8 - data/synthetic/footnote.3.0.features.xml | 3 - data/synthetic/footnote.3.0.xml | 5 - data/synthetic/for-part.4.0.features.xml | 6 - data/synthetic/for-part.4.0.xml | 6 - data/synthetic/frame.3.0.features.xml | 6 - data/synthetic/frame.3.0.xml | 6 - data/synthetic/frame.3.1.features.xml | 6 - data/synthetic/frame.3.1.xml | 6 - data/synthetic/fret.3.0.features.xml | 6 - data/synthetic/fret.3.0.xml | 8 - data/synthetic/function.3.0.features.xml | 6 - data/synthetic/function.3.0.xml | 6 - data/synthetic/glass.3.0.features.xml | 6 - data/synthetic/glass.3.0.xml | 6 - data/synthetic/glass.3.1.features.xml | 6 - data/synthetic/glass.3.1.xml | 6 - data/synthetic/glissando.3.0.features.xml | 6 - data/synthetic/glissando.3.0.xml | 8 - data/synthetic/glissando.3.1.features.xml | 6 - data/synthetic/glissando.3.1.xml | 8 - data/synthetic/glyph.3.1.features.xml | 6 - data/synthetic/glyph.3.1.xml | 6 - data/synthetic/golpe.3.1.features.xml | 6 - data/synthetic/golpe.3.1.xml | 8 - data/synthetic/grace.3.0.features.xml | 6 - data/synthetic/grace.3.0.xml | 6 - ...roup-abbreviation-display.3.0.features.xml | 6 - .../group-abbreviation-display.3.0.xml | 6 - .../group-abbreviation.3.0.features.xml | 6 - data/synthetic/group-abbreviation.3.0.xml | 6 - data/synthetic/group-barline.3.0.features.xml | 6 - data/synthetic/group-barline.3.0.xml | 6 - data/synthetic/group-link.4.0.features.xml | 6 - data/synthetic/group-link.4.0.xml | 6 - .../group-name-display.3.0.features.xml | 6 - data/synthetic/group-name-display.3.0.xml | 6 - data/synthetic/group-name.3.0.features.xml | 6 - data/synthetic/group-name.3.0.xml | 6 - data/synthetic/group-symbol.3.0.features.xml | 6 - data/synthetic/group-symbol.3.0.xml | 6 - data/synthetic/group-time.3.0.features.xml | 6 - data/synthetic/group-time.3.0.xml | 6 - data/synthetic/group.3.0.features.xml | 6 - data/synthetic/group.3.0.xml | 6 - data/synthetic/grouping.3.0.features.xml | 6 - data/synthetic/grouping.3.0.xml | 4 - data/synthetic/grouping.3.1.features.xml | 6 - data/synthetic/grouping.3.1.xml | 4 - data/synthetic/half-muted.3.1.features.xml | 6 - data/synthetic/half-muted.3.1.xml | 8 - data/synthetic/hammer-on.3.0.features.xml | 6 - data/synthetic/hammer-on.3.0.xml | 8 - data/synthetic/handbell.3.0.features.xml | 6 - data/synthetic/handbell.3.0.xml | 8 - data/synthetic/harmon-closed.3.1.features.xml | 6 - data/synthetic/harmon-closed.3.1.xml | 8 - data/synthetic/harmon-mute.3.1.features.xml | 6 - data/synthetic/harmon-mute.3.1.xml | 8 - data/synthetic/harmonic.3.0.features.xml | 6 - data/synthetic/harmonic.3.0.xml | 8 - data/synthetic/harmony.3.0.features.xml | 6 - data/synthetic/harmony.3.0.xml | 6 - data/synthetic/harmony.3.1.features.xml | 6 - data/synthetic/harmony.3.1.xml | 6 - data/synthetic/harmony.4.0.features.xml | 6 - data/synthetic/harmony.4.0.xml | 6 - data/synthetic/harp-pedals.3.0.features.xml | 6 - data/synthetic/harp-pedals.3.0.xml | 6 - data/synthetic/harp-pedals.3.1.features.xml | 6 - data/synthetic/harp-pedals.3.1.xml | 6 - data/synthetic/haydn.3.1.features.xml | 6 - data/synthetic/haydn.3.1.xml | 8 - data/synthetic/heel.3.0.features.xml | 6 - data/synthetic/heel.3.0.xml | 8 - data/synthetic/hole-closed.3.0.features.xml | 6 - data/synthetic/hole-closed.3.0.xml | 8 - data/synthetic/hole-shape.3.0.features.xml | 6 - data/synthetic/hole-shape.3.0.xml | 8 - data/synthetic/hole-type.3.0.features.xml | 6 - data/synthetic/hole-type.3.0.xml | 8 - data/synthetic/hole.3.0.features.xml | 6 - data/synthetic/hole.3.0.xml | 8 - data/synthetic/humming.3.0.features.xml | 6 - data/synthetic/humming.3.0.xml | 8 - data/synthetic/image.3.0.features.xml | 6 - data/synthetic/image.3.0.xml | 6 - data/synthetic/image.3.1.features.xml | 6 - data/synthetic/image.3.1.xml | 6 - .../instrument-abbreviation.3.0.features.xml | 6 - .../synthetic/instrument-abbreviation.3.0.xml | 6 - .../instrument-change.4.0.features.xml | 6 - data/synthetic/instrument-change.4.0.xml | 6 - .../instrument-link.4.0.features.xml | 6 - data/synthetic/instrument-link.4.0.xml | 6 - .../instrument-name.3.0.features.xml | 6 - data/synthetic/instrument-name.3.0.xml | 6 - .../instrument-sound-enum.3.0.features.xml | 6 - data/synthetic/instrument-sound-enum.3.0.xml | 6 - .../instrument-sound.3.0.features.xml | 6 - data/synthetic/instrument-sound.3.0.xml | 6 - .../interchangeable.3.0.features.xml | 6 - data/synthetic/interchangeable.3.0.xml | 6 - data/synthetic/inversion.3.0.features.xml | 6 - data/synthetic/inversion.3.0.xml | 6 - data/synthetic/inversion.4.0.features.xml | 6 - data/synthetic/inversion.4.0.xml | 6 - .../inverted-mordent.3.0.features.xml | 6 - data/synthetic/inverted-mordent.3.0.xml | 8 - data/synthetic/inverted-turn.3.0.features.xml | 6 - data/synthetic/inverted-turn.3.0.xml | 8 - .../inverted-vertical-turn.3.1.features.xml | 6 - data/synthetic/inverted-vertical-turn.3.1.xml | 8 - data/synthetic/ipa.3.0.features.xml | 6 - data/synthetic/ipa.3.0.xml | 6 - data/synthetic/key-octave.3.0.features.xml | 6 - data/synthetic/key-octave.3.0.xml | 6 - data/synthetic/key.3.0.features.xml | 6 - data/synthetic/key.3.0.xml | 6 - data/synthetic/key.3.1.features.xml | 6 - data/synthetic/key.3.1.xml | 6 - data/synthetic/kind.3.0.features.xml | 6 - data/synthetic/kind.3.0.xml | 6 - data/synthetic/laughing.3.0.features.xml | 6 - data/synthetic/laughing.3.0.xml | 8 - data/synthetic/left-divider.3.0.features.xml | 6 - data/synthetic/left-divider.3.0.xml | 6 - data/synthetic/level.3.0.features.xml | 3 - data/synthetic/level.3.0.xml | 5 - data/synthetic/level.4.0.features.xml | 3 - data/synthetic/level.4.0.xml | 5 - data/synthetic/line-detail.4.0.features.xml | 6 - data/synthetic/line-detail.4.0.xml | 6 - data/synthetic/link.3.0.features.xml | 6 - data/synthetic/link.3.0.xml | 6 - data/synthetic/listen.4.0.features.xml | 6 - data/synthetic/listen.4.0.xml | 6 - data/synthetic/listening.4.0.features.xml | 6 - data/synthetic/listening.4.0.xml | 6 - data/synthetic/lyric-font.3.0.features.xml | 6 - data/synthetic/lyric-font.3.0.xml | 6 - .../synthetic/lyric-language.3.0.features.xml | 6 - data/synthetic/lyric-language.3.0.xml | 6 - data/synthetic/lyric.3.0.features.xml | 6 - data/synthetic/lyric.3.0.xml | 8 - data/synthetic/lyric.3.1.features.xml | 6 - data/synthetic/lyric.3.1.xml | 8 - .../measure-distance.3.0.features.xml | 6 - data/synthetic/measure-distance.3.0.xml | 4 - .../synthetic/measure-layout.3.0.features.xml | 6 - data/synthetic/measure-layout.3.0.xml | 4 - .../measure-numbering.3.0.features.xml | 6 - data/synthetic/measure-numbering.3.0.xml | 4 - .../measure-numbering.4.0.features.xml | 6 - data/synthetic/measure-numbering.4.0.xml | 4 - .../synthetic/measure-repeat.3.0.features.xml | 6 - data/synthetic/measure-repeat.3.0.xml | 6 - data/synthetic/measure-style.3.0.features.xml | 6 - data/synthetic/measure-style.3.0.xml | 6 - data/synthetic/measure-style.3.1.features.xml | 6 - data/synthetic/measure-style.3.1.xml | 6 - data/synthetic/measure.3.0.features.xml | 6 - data/synthetic/measure.3.0.xml | 6 - data/synthetic/measure.3.1.features.xml | 6 - data/synthetic/measure.3.1.xml | 6 - data/synthetic/membrane.3.0.features.xml | 6 - data/synthetic/membrane.3.0.xml | 6 - data/synthetic/membrane.4.0.features.xml | 6 - data/synthetic/membrane.4.0.xml | 6 - data/synthetic/metal.3.0.features.xml | 6 - data/synthetic/metal.3.0.xml | 6 - data/synthetic/metal.4.0.features.xml | 6 - data/synthetic/metal.4.0.xml | 6 - .../metronome-arrows.3.1.features.xml | 6 - data/synthetic/metronome-arrows.3.1.xml | 6 - .../synthetic/metronome-beam.3.0.features.xml | 6 - data/synthetic/metronome-beam.3.0.xml | 6 - data/synthetic/metronome-dot.3.0.features.xml | 6 - data/synthetic/metronome-dot.3.0.xml | 6 - .../synthetic/metronome-note.3.0.features.xml | 6 - data/synthetic/metronome-note.3.0.xml | 6 - .../metronome-relation.3.0.features.xml | 6 - data/synthetic/metronome-relation.3.0.xml | 6 - .../synthetic/metronome-tied.3.1.features.xml | 6 - data/synthetic/metronome-tied.3.1.xml | 6 - .../metronome-tuplet.3.0.features.xml | 6 - data/synthetic/metronome-tuplet.3.0.xml | 6 - .../synthetic/metronome-type.3.0.features.xml | 6 - data/synthetic/metronome-type.3.0.xml | 6 - data/synthetic/metronome.3.0.features.xml | 6 - data/synthetic/metronome.3.0.xml | 6 - data/synthetic/metronome.3.1.features.xml | 6 - data/synthetic/metronome.3.1.xml | 6 - data/synthetic/metronome.4.0.features.xml | 6 - data/synthetic/metronome.4.0.xml | 6 - data/synthetic/midi-device.3.0.features.xml | 6 - data/synthetic/midi-device.3.0.xml | 6 - data/synthetic/midi-name.3.0.features.xml | 6 - data/synthetic/midi-name.3.0.xml | 6 - .../miscellaneous-field.3.0.features.xml | 6 - data/synthetic/miscellaneous-field.3.0.xml | 6 - data/synthetic/mordent.3.0.features.xml | 6 - data/synthetic/mordent.3.0.xml | 8 - .../movement-number.3.0.features.xml | 6 - data/synthetic/movement-number.3.0.xml | 6 - .../synthetic/movement-title.3.0.features.xml | 6 - data/synthetic/movement-title.3.0.xml | 6 - data/synthetic/multiple-rest.3.0.features.xml | 6 - data/synthetic/multiple-rest.3.0.xml | 6 - data/synthetic/music-font.3.0.features.xml | 6 - data/synthetic/music-font.3.0.xml | 6 - data/synthetic/mute.3.0.features.xml | 6 - data/synthetic/mute.3.0.xml | 6 - data/synthetic/n.3.1.features.xml | 6 - data/synthetic/n.3.1.xml | 8 - .../synthetic/non-arpeggiate.3.0.features.xml | 6 - data/synthetic/non-arpeggiate.3.0.xml | 8 - .../synthetic/non-arpeggiate.3.1.features.xml | 6 - data/synthetic/non-arpeggiate.3.1.xml | 8 - data/synthetic/notations.3.0.features.xml | 6 - data/synthetic/notations.3.0.xml | 8 - data/synthetic/notations.3.1.features.xml | 6 - data/synthetic/notations.3.1.xml | 8 - data/synthetic/note.3.0.features.xml | 6 - data/synthetic/note.3.0.xml | 6 - data/synthetic/note.3.1.features.xml | 6 - data/synthetic/note.3.1.xml | 6 - data/synthetic/notehead-text.3.0.features.xml | 6 - data/synthetic/notehead-text.3.0.xml | 6 - data/synthetic/notehead.3.0.features.xml | 6 - data/synthetic/notehead.3.0.xml | 6 - data/synthetic/notehead.3.1.features.xml | 6 - data/synthetic/notehead.3.1.xml | 6 - data/synthetic/numeral-alter.4.0.features.xml | 6 - data/synthetic/numeral-alter.4.0.xml | 6 - .../synthetic/numeral-fifths.4.0.features.xml | 6 - data/synthetic/numeral-fifths.4.0.xml | 6 - data/synthetic/numeral-key.4.0.features.xml | 6 - data/synthetic/numeral-key.4.0.xml | 6 - data/synthetic/numeral-mode.4.0.features.xml | 6 - data/synthetic/numeral-mode.4.0.xml | 6 - data/synthetic/numeral-root.4.0.features.xml | 6 - data/synthetic/numeral-root.4.0.xml | 6 - data/synthetic/numeral.4.0.features.xml | 6 - data/synthetic/numeral.4.0.xml | 6 - data/synthetic/octave-shift.3.0.features.xml | 6 - data/synthetic/octave-shift.3.0.xml | 6 - data/synthetic/octave-shift.3.1.features.xml | 6 - data/synthetic/octave-shift.3.1.xml | 6 - data/synthetic/open-string.3.0.features.xml | 6 - data/synthetic/open-string.3.0.xml | 8 - data/synthetic/open.3.1.features.xml | 6 - data/synthetic/open.3.1.xml | 8 - data/synthetic/opus.3.0.features.xml | 6 - data/synthetic/opus.3.0.xml | 6 - data/synthetic/ornaments.3.1.features.xml | 6 - data/synthetic/ornaments.3.1.xml | 8 - .../other-appearance.3.0.features.xml | 6 - data/synthetic/other-appearance.3.0.xml | 6 - .../other-articulation.3.0.features.xml | 6 - data/synthetic/other-articulation.3.0.xml | 8 - .../other-articulation.3.1.features.xml | 6 - data/synthetic/other-articulation.3.1.xml | 8 - .../other-direction.3.0.features.xml | 6 - data/synthetic/other-direction.3.0.xml | 6 - .../other-direction.3.1.features.xml | 6 - data/synthetic/other-direction.3.1.xml | 6 - .../synthetic/other-dynamics.3.0.features.xml | 6 - data/synthetic/other-dynamics.3.0.xml | 8 - .../synthetic/other-dynamics.3.1.features.xml | 6 - data/synthetic/other-dynamics.3.1.xml | 8 - data/synthetic/other-listen.4.0.features.xml | 6 - data/synthetic/other-listen.4.0.xml | 6 - .../other-listening.4.0.features.xml | 6 - data/synthetic/other-listening.4.0.xml | 6 - .../synthetic/other-notation.3.0.features.xml | 6 - data/synthetic/other-notation.3.0.xml | 8 - .../synthetic/other-notation.3.1.features.xml | 6 - data/synthetic/other-notation.3.1.xml | 8 - .../synthetic/other-ornament.3.0.features.xml | 6 - data/synthetic/other-ornament.3.0.xml | 8 - .../synthetic/other-ornament.3.1.features.xml | 6 - data/synthetic/other-ornament.3.1.xml | 8 - .../other-percussion.3.0.features.xml | 6 - data/synthetic/other-percussion.3.0.xml | 6 - .../other-percussion.3.1.features.xml | 6 - data/synthetic/other-percussion.3.1.xml | 6 - data/synthetic/other-play.3.0.features.xml | 6 - data/synthetic/other-play.3.0.xml | 6 - .../other-technical.3.0.features.xml | 6 - data/synthetic/other-technical.3.0.xml | 8 - .../other-technical.3.1.features.xml | 6 - data/synthetic/other-technical.3.1.xml | 8 - ...part-abbreviation-display.3.0.features.xml | 6 - .../part-abbreviation-display.3.0.xml | 6 - .../part-abbreviation.3.0.features.xml | 6 - data/synthetic/part-abbreviation.3.0.xml | 6 - data/synthetic/part-clef.4.0.features.xml | 6 - data/synthetic/part-clef.4.0.xml | 6 - data/synthetic/part-link.4.0.features.xml | 6 - data/synthetic/part-link.4.0.xml | 6 - .../part-name-display.3.0.features.xml | 6 - data/synthetic/part-name-display.3.0.xml | 6 - data/synthetic/part-name.3.0.features.xml | 6 - data/synthetic/part-name.3.0.xml | 6 - data/synthetic/part-symbol.3.0.features.xml | 6 - data/synthetic/part-symbol.3.0.xml | 6 - .../synthetic/part-transpose.4.0.features.xml | 6 - data/synthetic/part-transpose.4.0.xml | 6 - data/synthetic/pedal.3.0.features.xml | 6 - data/synthetic/pedal.3.0.xml | 6 - data/synthetic/pedal.3.1.features.xml | 6 - data/synthetic/pedal.3.1.xml | 6 - data/synthetic/per-minute.3.0.features.xml | 6 - data/synthetic/per-minute.3.0.xml | 6 - data/synthetic/percussion.3.0.features.xml | 6 - data/synthetic/percussion.3.0.xml | 6 - data/synthetic/percussion.3.1.features.xml | 6 - data/synthetic/percussion.3.1.xml | 6 - data/synthetic/pf.3.1.features.xml | 6 - data/synthetic/pf.3.1.xml | 8 - data/synthetic/pitched.3.0.features.xml | 6 - data/synthetic/pitched.3.0.xml | 6 - data/synthetic/pitched.3.1.features.xml | 6 - data/synthetic/pitched.3.1.xml | 6 - data/synthetic/play.3.0.features.xml | 6 - data/synthetic/play.3.0.xml | 6 - data/synthetic/player-name.4.0.features.xml | 6 - data/synthetic/player-name.4.0.xml | 6 - data/synthetic/player.4.0.features.xml | 6 - data/synthetic/player.4.0.xml | 6 - data/synthetic/plop.3.0.features.xml | 6 - data/synthetic/plop.3.0.xml | 8 - data/synthetic/plop.3.1.features.xml | 6 - data/synthetic/plop.3.1.xml | 8 - data/synthetic/pluck.3.0.features.xml | 6 - data/synthetic/pluck.3.0.xml | 8 - data/synthetic/prefix.3.0.features.xml | 6 - data/synthetic/prefix.3.0.xml | 6 - .../principal-voice.3.0.features.xml | 6 - data/synthetic/principal-voice.3.0.xml | 6 - .../principal-voice.3.1.features.xml | 6 - data/synthetic/principal-voice.3.1.xml | 6 - data/synthetic/print.3.0.features.xml | 6 - data/synthetic/print.3.0.xml | 4 - data/synthetic/print.3.1.features.xml | 6 - data/synthetic/print.3.1.xml | 4 - data/synthetic/pull-off.3.0.features.xml | 6 - data/synthetic/pull-off.3.0.xml | 8 - data/synthetic/rehearsal.3.0.features.xml | 6 - data/synthetic/rehearsal.3.0.xml | 6 - data/synthetic/rehearsal.3.1.features.xml | 6 - data/synthetic/rehearsal.3.1.xml | 6 - data/synthetic/relation.3.0.features.xml | 6 - data/synthetic/relation.3.0.xml | 6 - data/synthetic/release.4.0.features.xml | 6 - data/synthetic/release.4.0.xml | 8 - data/synthetic/repeat.4.0.features.xml | 6 - data/synthetic/repeat.4.0.xml | 6 - data/synthetic/right-divider.3.0.features.xml | 6 - data/synthetic/right-divider.3.0.xml | 6 - data/synthetic/rights.3.0.features.xml | 6 - data/synthetic/rights.3.0.xml | 6 - data/synthetic/root-alter.3.0.features.xml | 6 - data/synthetic/root-alter.3.0.xml | 6 - data/synthetic/root-step.3.0.features.xml | 6 - data/synthetic/root-step.3.0.xml | 6 - data/synthetic/schleifer.3.0.features.xml | 6 - data/synthetic/schleifer.3.0.xml | 8 - data/synthetic/scoop.3.0.features.xml | 6 - data/synthetic/scoop.3.0.xml | 8 - data/synthetic/scoop.3.1.features.xml | 6 - data/synthetic/scoop.3.1.xml | 8 - data/synthetic/scordatura.3.1.features.xml | 6 - data/synthetic/scordatura.3.1.xml | 6 - data/synthetic/second.4.0.features.xml | 6 - data/synthetic/second.4.0.xml | 6 - data/synthetic/semi-pitched.3.0.features.xml | 6 - data/synthetic/semi-pitched.3.0.xml | 6 - data/synthetic/senza-misura.3.0.features.xml | 6 - data/synthetic/senza-misura.3.0.xml | 6 - data/synthetic/sfzp.3.1.features.xml | 6 - data/synthetic/sfzp.3.1.xml | 8 - data/synthetic/shake.3.0.features.xml | 6 - data/synthetic/shake.3.0.xml | 8 - data/synthetic/slash-dot.3.0.features.xml | 6 - data/synthetic/slash-dot.3.0.xml | 6 - data/synthetic/slash-type.3.0.features.xml | 6 - data/synthetic/slash-type.3.0.xml | 6 - data/synthetic/slash.3.0.features.xml | 6 - data/synthetic/slash.3.0.xml | 6 - data/synthetic/slide.3.0.features.xml | 6 - data/synthetic/slide.3.0.xml | 8 - data/synthetic/slide.3.1.features.xml | 6 - data/synthetic/slide.3.1.xml | 8 - data/synthetic/slur.3.0.features.xml | 6 - data/synthetic/slur.3.0.xml | 8 - data/synthetic/slur.3.1.features.xml | 6 - data/synthetic/slur.3.1.xml | 8 - data/synthetic/smear.3.1.features.xml | 6 - data/synthetic/smear.3.1.xml | 8 - .../synthetic/snap-pizzicato.3.0.features.xml | 6 - data/synthetic/snap-pizzicato.3.0.xml | 8 - data/synthetic/soft-accent.3.1.features.xml | 6 - data/synthetic/soft-accent.3.1.xml | 8 - data/synthetic/software.3.0.features.xml | 6 - data/synthetic/software.3.0.xml | 6 - data/synthetic/sound.3.0.features.xml | 6 - data/synthetic/sound.3.0.xml | 6 - data/synthetic/sound.3.1.features.xml | 6 - data/synthetic/sound.3.1.xml | 6 - data/synthetic/source.3.0.features.xml | 6 - data/synthetic/source.3.0.xml | 6 - data/synthetic/spiccato.3.0.features.xml | 6 - data/synthetic/spiccato.3.0.xml | 8 - data/synthetic/staccatissimo.3.0.features.xml | 6 - data/synthetic/staccatissimo.3.0.xml | 8 - data/synthetic/staccato.3.0.features.xml | 6 - data/synthetic/staccato.3.0.xml | 8 - data/synthetic/staff-divide.3.1.features.xml | 6 - data/synthetic/staff-divide.3.1.xml | 6 - data/synthetic/staff-size.4.0.features.xml | 6 - data/synthetic/staff-size.4.0.xml | 6 - data/synthetic/staff-type.3.0.features.xml | 6 - data/synthetic/staff-type.3.0.xml | 6 - data/synthetic/stem.3.0.features.xml | 6 - data/synthetic/stem.3.0.xml | 6 - .../synthetic/stick-location.3.0.features.xml | 6 - data/synthetic/stick-location.3.0.xml | 6 - .../synthetic/stick-material.3.0.features.xml | 6 - data/synthetic/stick-material.3.0.xml | 6 - data/synthetic/stick-type.3.0.features.xml | 6 - data/synthetic/stick-type.3.0.xml | 6 - data/synthetic/stick.3.0.features.xml | 6 - data/synthetic/stick.3.0.xml | 6 - data/synthetic/stick.3.1.features.xml | 6 - data/synthetic/stick.3.1.xml | 6 - data/synthetic/stopped.3.0.features.xml | 6 - data/synthetic/stopped.3.0.xml | 8 - data/synthetic/stopped.3.1.features.xml | 6 - data/synthetic/stopped.3.1.xml | 8 - data/synthetic/straight.4.0.features.xml | 6 - data/synthetic/straight.4.0.xml | 6 - data/synthetic/stress.3.0.features.xml | 6 - data/synthetic/stress.3.0.xml | 8 - data/synthetic/string-mute.3.0.features.xml | 6 - data/synthetic/string-mute.3.0.xml | 6 - data/synthetic/string-mute.3.1.features.xml | 6 - data/synthetic/string-mute.3.1.xml | 6 - data/synthetic/string.3.0.features.xml | 6 - data/synthetic/string.3.0.xml | 8 - data/synthetic/strong-accent.3.0.features.xml | 6 - data/synthetic/strong-accent.3.0.xml | 8 - data/synthetic/suffix.3.0.features.xml | 6 - data/synthetic/suffix.3.0.xml | 6 - data/synthetic/swing-style.4.0.features.xml | 6 - data/synthetic/swing-style.4.0.xml | 6 - data/synthetic/swing-type.4.0.features.xml | 6 - data/synthetic/swing-type.4.0.xml | 6 - data/synthetic/swing.4.0.features.xml | 6 - data/synthetic/swing.4.0.xml | 6 - data/synthetic/symbol.3.1.features.xml | 6 - data/synthetic/symbol.3.1.xml | 6 - data/synthetic/sync.4.0.features.xml | 6 - data/synthetic/sync.4.0.xml | 6 - data/synthetic/tap.3.0.features.xml | 6 - data/synthetic/tap.3.0.xml | 8 - data/synthetic/tap.3.1.features.xml | 6 - data/synthetic/tap.3.1.xml | 8 - data/synthetic/technical.3.1.features.xml | 6 - data/synthetic/technical.3.1.xml | 8 - data/synthetic/tenuto.3.0.features.xml | 6 - data/synthetic/tenuto.3.0.xml | 8 - data/synthetic/text.3.0.features.xml | 6 - data/synthetic/text.3.0.xml | 8 - .../synthetic/thumb-position.3.0.features.xml | 6 - data/synthetic/thumb-position.3.0.xml | 8 - data/synthetic/tie.3.0.features.xml | 6 - data/synthetic/tie.3.0.xml | 6 - data/synthetic/tied.3.0.features.xml | 6 - data/synthetic/tied.3.0.xml | 8 - data/synthetic/tied.3.1.features.xml | 6 - data/synthetic/tied.3.1.xml | 8 - data/synthetic/time-relation.3.0.features.xml | 6 - data/synthetic/time-relation.3.0.xml | 6 - data/synthetic/time.3.0.features.xml | 6 - data/synthetic/time.3.0.xml | 6 - data/synthetic/time.3.1.features.xml | 6 - data/synthetic/time.3.1.xml | 6 - data/synthetic/timpani.3.0.features.xml | 6 - data/synthetic/timpani.3.0.xml | 6 - data/synthetic/timpani.4.0.features.xml | 6 - data/synthetic/timpani.4.0.xml | 6 - data/synthetic/toe.3.0.features.xml | 6 - data/synthetic/toe.3.0.xml | 8 - data/synthetic/transpose.3.0.features.xml | 6 - data/synthetic/transpose.3.0.xml | 6 - data/synthetic/transpose.3.1.features.xml | 6 - data/synthetic/transpose.3.1.xml | 6 - data/synthetic/tremolo.3.0.features.xml | 6 - data/synthetic/tremolo.3.0.xml | 8 - data/synthetic/tremolo.3.1.features.xml | 6 - data/synthetic/tremolo.3.1.xml | 8 - data/synthetic/trill-mark.3.0.features.xml | 6 - data/synthetic/trill-mark.3.0.xml | 8 - data/synthetic/triple-tongue.3.0.features.xml | 6 - data/synthetic/triple-tongue.3.0.xml | 8 - data/synthetic/tuplet-dot.3.0.features.xml | 6 - data/synthetic/tuplet-dot.3.0.xml | 8 - data/synthetic/tuplet-number.3.0.features.xml | 6 - data/synthetic/tuplet-number.3.0.xml | 8 - data/synthetic/tuplet-type.3.0.features.xml | 6 - data/synthetic/tuplet-type.3.0.xml | 8 - data/synthetic/tuplet.3.0.features.xml | 6 - data/synthetic/tuplet.3.0.xml | 8 - data/synthetic/tuplet.3.1.features.xml | 6 - data/synthetic/tuplet.3.1.xml | 8 - data/synthetic/turn.3.0.features.xml | 6 - data/synthetic/turn.3.0.xml | 8 - data/synthetic/unstress.3.0.features.xml | 6 - data/synthetic/unstress.3.0.xml | 8 - data/synthetic/up-bow.3.0.features.xml | 6 - data/synthetic/up-bow.3.0.xml | 8 - data/synthetic/vertical-turn.3.0.features.xml | 6 - data/synthetic/vertical-turn.3.0.xml | 8 - .../virtual-library.3.0.features.xml | 6 - data/synthetic/virtual-library.3.0.xml | 6 - data/synthetic/virtual-name.3.0.features.xml | 6 - data/synthetic/virtual-name.3.0.xml | 6 - data/synthetic/voice.3.0.features.xml | 6 - data/synthetic/voice.3.0.xml | 6 - data/synthetic/wait.4.0.features.xml | 6 - data/synthetic/wait.4.0.xml | 6 - data/synthetic/wavy-line.3.0.features.xml | 6 - data/synthetic/wavy-line.3.0.xml | 8 - data/synthetic/wavy-line.4.0.features.xml | 6 - data/synthetic/wavy-line.4.0.xml | 8 - data/synthetic/wedge.3.0.features.xml | 6 - data/synthetic/wedge.3.0.xml | 6 - data/synthetic/wedge.3.1.features.xml | 6 - data/synthetic/wedge.3.1.xml | 6 - data/synthetic/with-bar.3.0.features.xml | 6 - data/synthetic/with-bar.3.0.xml | 8 - data/synthetic/wood.3.0.features.xml | 6 - data/synthetic/wood.3.0.xml | 6 - data/synthetic/wood.4.0.features.xml | 6 - data/synthetic/wood.4.0.xml | 6 - data/synthetic/word-font.3.0.features.xml | 6 - data/synthetic/word-font.3.0.xml | 6 - data/synthetic/words.3.0.features.xml | 6 - data/synthetic/words.3.0.xml | 6 - data/synthetic/words.3.1.features.xml | 6 - data/synthetic/words.3.1.xml | 6 - data/synthetic/work-number.3.0.features.xml | 6 - data/synthetic/work-number.3.0.xml | 6 - data/synthetic/work-title.3.0.features.xml | 6 - data/synthetic/work-title.3.0.xml | 6 - 765 files changed, 124 insertions(+), 5697 deletions(-) diff --git a/data/corpus.xml b/data/corpus.xml index eda4bafe9..1ea12829e 100644 --- a/data/corpus.xml +++ b/data/corpus.xml @@ -12604,7 +12604,7 @@ synthetic/flip.3.1.xml - + @@ -12631,405 +12631,136 @@ - - synthetic/accent.3.0.xml - synthetic/accidental-mark.3.0.xml - synthetic/accidental-mark.3.1.xml - synthetic/accidental-text.3.0.xml - synthetic/accidental-text.3.1.xml - synthetic/accidental.3.0.xml - synthetic/accidental.3.1.xml - synthetic/accordion-registration.3.0.xml - synthetic/accordion-registration.3.1.xml - synthetic/arpeggiate.3.0.xml - synthetic/arpeggiate.3.1.xml - synthetic/arpeggiate.4.0.xml - synthetic/arrow-style.3.0.xml - synthetic/arrow.3.0.xml - synthetic/arrow.3.1.xml - synthetic/arrowhead.3.1.xml - synthetic/articulations.3.1.xml - synthetic/assess.4.0.xml - synthetic/bar-style.3.0.xml - synthetic/barline.3.0.xml - synthetic/barline.3.1.xml - synthetic/barre.3.0.xml - synthetic/bass-alter.3.0.xml - synthetic/bass-separator.4.0.xml - synthetic/bass-step.3.0.xml - synthetic/bass.4.0.xml - synthetic/beam.3.0.xml - synthetic/beam.3.1.xml - synthetic/beat-repeat.3.0.xml - synthetic/beat-type.3.0.xml - synthetic/beat-unit-tied.3.1.xml - synthetic/beater.3.0.xml - synthetic/beats.3.0.xml - synthetic/bend.3.0.xml - synthetic/bend.4.0.xml - synthetic/bookmark.3.0.xml - synthetic/bracket.3.0.xml - synthetic/bracket.3.1.xml - synthetic/brass-bend.3.1.xml - synthetic/breath-mark.3.0.xml - synthetic/caesura.3.0.xml - synthetic/circular-arrow.3.0.xml - synthetic/clef.3.0.xml - synthetic/clef.3.1.xml - synthetic/concert-score.4.0.xml - synthetic/creator.3.0.xml - synthetic/credit-image.3.0.xml - synthetic/credit-image.3.1.xml - synthetic/credit-symbol.3.1.xml - synthetic/credit-type.3.0.xml - synthetic/credit-words.3.0.xml - synthetic/credit-words.3.1.xml - synthetic/credit.3.1.xml - synthetic/damp-all.3.0.xml - synthetic/damp-all.3.1.xml - synthetic/damp.3.0.xml - synthetic/damp.3.1.xml - synthetic/dashes.3.0.xml - synthetic/dashes.3.1.xml - synthetic/degree-alter.3.0.xml - synthetic/degree-type.3.0.xml - synthetic/degree-value.3.0.xml - synthetic/delayed-inverted-turn.3.0.xml - synthetic/delayed-turn.3.0.xml - synthetic/detached-legato.3.0.xml - synthetic/direction-type.3.1.xml - synthetic/direction.3.1.xml - synthetic/direction.4.0.xml - synthetic/directive.3.0.xml - synthetic/display-text.3.0.xml - synthetic/doit.3.0.xml - synthetic/doit.3.1.xml - synthetic/dot.3.0.xml - synthetic/double-tongue.3.0.xml - synthetic/double.3.0.xml - synthetic/double.4.0.xml - synthetic/down-bow.3.0.xml - synthetic/dynamics.3.1.xml - synthetic/effect.3.0.xml - synthetic/effect.4.0.xml - synthetic/elevation.3.0.xml - synthetic/elision.3.0.xml - synthetic/elision.3.1.xml - synthetic/encoder.3.0.xml - synthetic/encoding-description.3.0.xml - synthetic/ending.3.0.xml - synthetic/ending.4.0.xml - synthetic/except-voice.3.1.xml - synthetic/extend.3.0.xml - synthetic/eyeglasses.3.0.xml - synthetic/eyeglasses.3.1.xml - synthetic/falloff.3.0.xml - synthetic/falloff.3.1.xml - synthetic/feature.3.0.xml - synthetic/fermata.3.1.xml - synthetic/figure-number.3.0.xml - synthetic/figured-bass.3.0.xml - synthetic/figured-bass.3.1.xml - synthetic/figured-bass.4.0.xml - synthetic/fingering.3.0.xml - synthetic/fingernails.3.0.xml - synthetic/first-fret.3.0.xml - synthetic/first.4.0.xml - synthetic/flip.3.1.xml + synthetic/footnote.3.0.xml + + + + + + + + + + synthetic/for-part.4.0.xml - synthetic/frame.3.0.xml - synthetic/frame.3.1.xml - synthetic/fret.3.0.xml + synthetic/part-clef.4.0.xml + synthetic/part-transpose.4.0.xml + + + + + + + + + + + + + + + + + synthetic/function.3.0.xml + + + + + + + + + synthetic/glass.3.0.xml synthetic/glass.3.1.xml - synthetic/glissando.3.0.xml - synthetic/glissando.3.1.xml + synthetic/percussion.3.0.xml + synthetic/percussion.3.1.xml + + + + + + + + + synthetic/glyph.3.1.xml + + + + + + + + + + + + + + + + + + synthetic/golpe.3.1.xml - synthetic/grace.3.0.xml - synthetic/group-abbreviation-display.3.0.xml - synthetic/group-abbreviation.3.0.xml - synthetic/group-barline.3.0.xml + + + + + + + synthetic/group.3.0.xml + + + + + + synthetic/group-link.4.0.xml - synthetic/group-name-display.3.0.xml - synthetic/group-name.3.0.xml - synthetic/group-symbol.3.0.xml + + + + + + synthetic/group-time.3.0.xml - synthetic/group.3.0.xml - synthetic/grouping.3.0.xml - synthetic/grouping.3.1.xml + + + + + + + + + + + + + + + + + + + synthetic/half-muted.3.1.xml - synthetic/hammer-on.3.0.xml - synthetic/handbell.3.0.xml + + + + + + + + + synthetic/harmon-closed.3.1.xml synthetic/harmon-mute.3.1.xml - synthetic/harmonic.3.0.xml - synthetic/harmony.3.0.xml - synthetic/harmony.3.1.xml - synthetic/harmony.4.0.xml - synthetic/harp-pedals.3.0.xml - synthetic/harp-pedals.3.1.xml - synthetic/haydn.3.1.xml - synthetic/heel.3.0.xml - synthetic/hole-closed.3.0.xml - synthetic/hole-shape.3.0.xml - synthetic/hole-type.3.0.xml - synthetic/hole.3.0.xml - synthetic/humming.3.0.xml - synthetic/image.3.0.xml - synthetic/image.3.1.xml - synthetic/instrument-abbreviation.3.0.xml - synthetic/instrument-change.4.0.xml - synthetic/instrument-link.4.0.xml - synthetic/instrument-name.3.0.xml - synthetic/instrument-sound-enum.3.0.xml - synthetic/instrument-sound.3.0.xml - synthetic/interchangeable.3.0.xml - synthetic/inversion.3.0.xml - synthetic/inversion.4.0.xml - synthetic/inverted-mordent.3.0.xml - synthetic/inverted-turn.3.0.xml - synthetic/inverted-vertical-turn.3.1.xml - synthetic/ipa.3.0.xml - synthetic/key-octave.3.0.xml - synthetic/key.3.0.xml - synthetic/key.3.1.xml - synthetic/kind.3.0.xml - synthetic/laughing.3.0.xml - synthetic/left-divider.3.0.xml - synthetic/level.3.0.xml - synthetic/level.4.0.xml - synthetic/line-detail.4.0.xml - synthetic/link.3.0.xml - synthetic/listen.4.0.xml - synthetic/listening.4.0.xml - synthetic/lyric-font.3.0.xml - synthetic/lyric-language.3.0.xml - synthetic/lyric.3.0.xml - synthetic/lyric.3.1.xml - synthetic/measure-distance.3.0.xml - synthetic/measure-layout.3.0.xml - synthetic/measure-numbering.3.0.xml - synthetic/measure-numbering.4.0.xml - synthetic/measure-repeat.3.0.xml - synthetic/measure-style.3.0.xml - synthetic/measure-style.3.1.xml - synthetic/measure.3.0.xml - synthetic/measure.3.1.xml - synthetic/membrane.3.0.xml - synthetic/membrane.4.0.xml - synthetic/metal.3.0.xml - synthetic/metal.4.0.xml - synthetic/metronome-arrows.3.1.xml - synthetic/metronome-beam.3.0.xml - synthetic/metronome-dot.3.0.xml - synthetic/metronome-note.3.0.xml - synthetic/metronome-relation.3.0.xml - synthetic/metronome-tied.3.1.xml - synthetic/metronome-tuplet.3.0.xml - synthetic/metronome-type.3.0.xml - synthetic/metronome.3.0.xml - synthetic/metronome.3.1.xml - synthetic/metronome.4.0.xml - synthetic/midi-device.3.0.xml - synthetic/midi-name.3.0.xml - synthetic/miscellaneous-field.3.0.xml - synthetic/mordent.3.0.xml - synthetic/movement-number.3.0.xml - synthetic/movement-title.3.0.xml - synthetic/multiple-rest.3.0.xml - synthetic/music-font.3.0.xml - synthetic/mute.3.0.xml - synthetic/n.3.1.xml - synthetic/non-arpeggiate.3.0.xml - synthetic/non-arpeggiate.3.1.xml - synthetic/notations.3.0.xml - synthetic/notations.3.1.xml - synthetic/note.3.0.xml - synthetic/note.3.1.xml - synthetic/notehead-text.3.0.xml - synthetic/notehead.3.0.xml - synthetic/notehead.3.1.xml - synthetic/numeral-alter.4.0.xml - synthetic/numeral-fifths.4.0.xml - synthetic/numeral-key.4.0.xml - synthetic/numeral-mode.4.0.xml - synthetic/numeral-root.4.0.xml - synthetic/numeral.4.0.xml - synthetic/octave-shift.3.0.xml - synthetic/octave-shift.3.1.xml - synthetic/open-string.3.0.xml - synthetic/open.3.1.xml - synthetic/opus.3.0.xml - synthetic/ornaments.3.1.xml - synthetic/other-appearance.3.0.xml - synthetic/other-articulation.3.0.xml - synthetic/other-articulation.3.1.xml - synthetic/other-direction.3.0.xml - synthetic/other-direction.3.1.xml - synthetic/other-dynamics.3.0.xml - synthetic/other-dynamics.3.1.xml - synthetic/other-listen.4.0.xml - synthetic/other-listening.4.0.xml - synthetic/other-notation.3.0.xml - synthetic/other-notation.3.1.xml - synthetic/other-ornament.3.0.xml - synthetic/other-ornament.3.1.xml - synthetic/other-percussion.3.0.xml - synthetic/other-percussion.3.1.xml - synthetic/other-play.3.0.xml - synthetic/other-technical.3.0.xml - synthetic/other-technical.3.1.xml - synthetic/part-abbreviation-display.3.0.xml - synthetic/part-abbreviation.3.0.xml - synthetic/part-clef.4.0.xml - synthetic/part-link.4.0.xml - synthetic/part-name-display.3.0.xml - synthetic/part-name.3.0.xml - synthetic/part-symbol.3.0.xml - synthetic/part-transpose.4.0.xml - synthetic/pedal.3.0.xml - synthetic/pedal.3.1.xml - synthetic/per-minute.3.0.xml - synthetic/percussion.3.0.xml - synthetic/percussion.3.1.xml - synthetic/pf.3.1.xml - synthetic/pitched.3.0.xml - synthetic/pitched.3.1.xml - synthetic/play.3.0.xml - synthetic/player-name.4.0.xml - synthetic/player.4.0.xml - synthetic/plop.3.0.xml - synthetic/plop.3.1.xml - synthetic/pluck.3.0.xml - synthetic/prefix.3.0.xml - synthetic/principal-voice.3.0.xml - synthetic/principal-voice.3.1.xml - synthetic/print.3.0.xml - synthetic/print.3.1.xml - synthetic/pull-off.3.0.xml - synthetic/rehearsal.3.0.xml - synthetic/rehearsal.3.1.xml - synthetic/relation.3.0.xml - synthetic/release.4.0.xml - synthetic/repeat.4.0.xml - synthetic/right-divider.3.0.xml - synthetic/rights.3.0.xml - synthetic/root-alter.3.0.xml - synthetic/root-step.3.0.xml - synthetic/schleifer.3.0.xml - synthetic/scoop.3.0.xml - synthetic/scoop.3.1.xml - synthetic/scordatura.3.1.xml - synthetic/second.4.0.xml - synthetic/semi-pitched.3.0.xml - synthetic/senza-misura.3.0.xml - synthetic/sfzp.3.1.xml - synthetic/shake.3.0.xml - synthetic/slash-dot.3.0.xml - synthetic/slash-type.3.0.xml - synthetic/slash.3.0.xml - synthetic/slide.3.0.xml - synthetic/slide.3.1.xml - synthetic/slur.3.0.xml - synthetic/slur.3.1.xml - synthetic/smear.3.1.xml - synthetic/snap-pizzicato.3.0.xml - synthetic/soft-accent.3.1.xml - synthetic/software.3.0.xml - synthetic/sound.3.0.xml - synthetic/sound.3.1.xml - synthetic/source.3.0.xml - synthetic/spiccato.3.0.xml - synthetic/staccatissimo.3.0.xml - synthetic/staccato.3.0.xml - synthetic/staff-divide.3.1.xml - synthetic/staff-size.4.0.xml - synthetic/staff-type.3.0.xml - synthetic/stem.3.0.xml - synthetic/stick-location.3.0.xml - synthetic/stick-material.3.0.xml - synthetic/stick-type.3.0.xml - synthetic/stick.3.0.xml - synthetic/stick.3.1.xml - synthetic/stopped.3.0.xml - synthetic/stopped.3.1.xml - synthetic/straight.4.0.xml - synthetic/stress.3.0.xml - synthetic/string-mute.3.0.xml - synthetic/string-mute.3.1.xml - synthetic/string.3.0.xml - synthetic/strong-accent.3.0.xml - synthetic/suffix.3.0.xml - synthetic/swing-style.4.0.xml - synthetic/swing-type.4.0.xml - synthetic/swing.4.0.xml - synthetic/symbol.3.1.xml - synthetic/sync.4.0.xml - synthetic/tap.3.0.xml - synthetic/tap.3.1.xml - synthetic/technical.3.1.xml - synthetic/tenuto.3.0.xml - synthetic/text.3.0.xml - synthetic/thumb-position.3.0.xml - synthetic/tie.3.0.xml - synthetic/tied.3.0.xml - synthetic/tied.3.1.xml - synthetic/time-relation.3.0.xml - synthetic/time.3.0.xml - synthetic/time.3.1.xml - synthetic/timpani.3.0.xml - synthetic/timpani.4.0.xml - synthetic/toe.3.0.xml - synthetic/transpose.3.0.xml - synthetic/transpose.3.1.xml - synthetic/tremolo.3.0.xml - synthetic/tremolo.3.1.xml - synthetic/trill-mark.3.0.xml - synthetic/triple-tongue.3.0.xml - synthetic/tuplet-dot.3.0.xml - synthetic/tuplet-number.3.0.xml - synthetic/tuplet-type.3.0.xml - synthetic/tuplet.3.0.xml - synthetic/tuplet.3.1.xml - synthetic/turn.3.0.xml - synthetic/unstress.3.0.xml - synthetic/up-bow.3.0.xml - synthetic/vertical-turn.3.0.xml - synthetic/virtual-library.3.0.xml - synthetic/virtual-name.3.0.xml - synthetic/voice.3.0.xml - synthetic/wait.4.0.xml - synthetic/wavy-line.3.0.xml - synthetic/wavy-line.4.0.xml - synthetic/wedge.3.0.xml - synthetic/wedge.3.1.xml - synthetic/with-bar.3.0.xml - synthetic/wood.3.0.xml - synthetic/wood.4.0.xml - synthetic/word-font.3.0.xml - synthetic/words.3.0.xml - synthetic/words.3.1.xml - synthetic/work-number.3.0.xml - synthetic/work-title.3.0.xml - - - - - - - - - - - synthetic/for-part.4.0.xml - synthetic/part-clef.4.0.xml - synthetic/part-transpose.4.0.xml - + @@ -13038,130 +12769,18 @@ + - - synthetic/function.3.0.xml + + synthetic/harmon-closed.3.1.xml + synthetic/harmon-mute.3.1.xml - - - - - - - - synthetic/glass.3.0.xml - synthetic/glass.3.1.xml - synthetic/percussion.3.0.xml - synthetic/percussion.3.1.xml - - - - - - - - - - synthetic/glyph.3.1.xml - - - - - - - - - - - - - - - - - - - synthetic/golpe.3.1.xml - - - - - - - synthetic/group.3.0.xml - - - - - - - synthetic/group-link.4.0.xml - - - - - - - synthetic/group-time.3.0.xml - - - - - - - - - - - - - - - - - - - - synthetic/half-muted.3.1.xml - - - - - - - - - - synthetic/harmon-closed.3.1.xml - synthetic/harmon-mute.3.1.xml - - - - - - - - - - - - - - - - - - - synthetic/harmon-closed.3.1.xml - synthetic/harmon-mute.3.1.xml - - - + @@ -13292,7 +12911,7 @@ synthetic/laughing.3.0.xml - + @@ -13302,389 +12921,9 @@ - - synthetic/accent.3.0.xml - synthetic/accidental-mark.3.0.xml - synthetic/accidental-mark.3.1.xml - synthetic/accidental-text.3.0.xml - synthetic/accidental-text.3.1.xml - synthetic/accidental.3.0.xml - synthetic/accidental.3.1.xml - synthetic/accordion-registration.3.0.xml - synthetic/accordion-registration.3.1.xml - synthetic/arpeggiate.3.0.xml - synthetic/arpeggiate.3.1.xml - synthetic/arpeggiate.4.0.xml - synthetic/arrow-style.3.0.xml - synthetic/arrow.3.0.xml - synthetic/arrow.3.1.xml - synthetic/arrowhead.3.1.xml - synthetic/articulations.3.1.xml - synthetic/assess.4.0.xml - synthetic/bar-style.3.0.xml - synthetic/barline.3.0.xml - synthetic/barline.3.1.xml - synthetic/barre.3.0.xml - synthetic/bass-alter.3.0.xml - synthetic/bass-separator.4.0.xml - synthetic/bass-step.3.0.xml - synthetic/bass.4.0.xml - synthetic/beam.3.0.xml - synthetic/beam.3.1.xml - synthetic/beat-repeat.3.0.xml - synthetic/beat-type.3.0.xml - synthetic/beat-unit-tied.3.1.xml - synthetic/beater.3.0.xml - synthetic/beats.3.0.xml - synthetic/bend.3.0.xml - synthetic/bend.4.0.xml - synthetic/bookmark.3.0.xml - synthetic/bracket.3.0.xml - synthetic/bracket.3.1.xml - synthetic/brass-bend.3.1.xml - synthetic/breath-mark.3.0.xml - synthetic/caesura.3.0.xml - synthetic/circular-arrow.3.0.xml - synthetic/clef.3.0.xml - synthetic/clef.3.1.xml - synthetic/concert-score.4.0.xml - synthetic/creator.3.0.xml - synthetic/credit-image.3.0.xml - synthetic/credit-image.3.1.xml - synthetic/credit-symbol.3.1.xml - synthetic/credit-type.3.0.xml - synthetic/credit-words.3.0.xml - synthetic/credit-words.3.1.xml - synthetic/credit.3.1.xml - synthetic/damp-all.3.0.xml - synthetic/damp-all.3.1.xml - synthetic/damp.3.0.xml - synthetic/damp.3.1.xml - synthetic/dashes.3.0.xml - synthetic/dashes.3.1.xml - synthetic/degree-alter.3.0.xml - synthetic/degree-type.3.0.xml - synthetic/degree-value.3.0.xml - synthetic/delayed-inverted-turn.3.0.xml - synthetic/delayed-turn.3.0.xml - synthetic/detached-legato.3.0.xml - synthetic/direction-type.3.1.xml - synthetic/direction.3.1.xml - synthetic/direction.4.0.xml - synthetic/directive.3.0.xml - synthetic/display-text.3.0.xml - synthetic/doit.3.0.xml - synthetic/doit.3.1.xml - synthetic/dot.3.0.xml - synthetic/double-tongue.3.0.xml - synthetic/double.3.0.xml - synthetic/double.4.0.xml - synthetic/down-bow.3.0.xml - synthetic/dynamics.3.1.xml - synthetic/effect.3.0.xml - synthetic/effect.4.0.xml - synthetic/elevation.3.0.xml - synthetic/elision.3.0.xml - synthetic/elision.3.1.xml - synthetic/encoder.3.0.xml - synthetic/encoding-description.3.0.xml - synthetic/ending.3.0.xml - synthetic/ending.4.0.xml - synthetic/except-voice.3.1.xml - synthetic/extend.3.0.xml - synthetic/eyeglasses.3.0.xml - synthetic/eyeglasses.3.1.xml - synthetic/falloff.3.0.xml - synthetic/falloff.3.1.xml - synthetic/feature.3.0.xml - synthetic/fermata.3.1.xml - synthetic/figure-number.3.0.xml - synthetic/figured-bass.3.0.xml - synthetic/figured-bass.3.1.xml - synthetic/figured-bass.4.0.xml - synthetic/fingering.3.0.xml - synthetic/fingernails.3.0.xml - synthetic/first-fret.3.0.xml - synthetic/first.4.0.xml - synthetic/flip.3.1.xml - synthetic/footnote.3.0.xml - synthetic/for-part.4.0.xml - synthetic/frame.3.0.xml - synthetic/frame.3.1.xml - synthetic/fret.3.0.xml - synthetic/function.3.0.xml - synthetic/glass.3.0.xml - synthetic/glass.3.1.xml - synthetic/glissando.3.0.xml - synthetic/glissando.3.1.xml - synthetic/glyph.3.1.xml - synthetic/golpe.3.1.xml - synthetic/grace.3.0.xml - synthetic/group-abbreviation-display.3.0.xml - synthetic/group-abbreviation.3.0.xml - synthetic/group-barline.3.0.xml - synthetic/group-link.4.0.xml - synthetic/group-name-display.3.0.xml - synthetic/group-name.3.0.xml - synthetic/group-symbol.3.0.xml - synthetic/group-time.3.0.xml - synthetic/group.3.0.xml - synthetic/grouping.3.0.xml - synthetic/grouping.3.1.xml - synthetic/half-muted.3.1.xml - synthetic/hammer-on.3.0.xml - synthetic/handbell.3.0.xml - synthetic/harmon-closed.3.1.xml - synthetic/harmon-mute.3.1.xml - synthetic/harmonic.3.0.xml - synthetic/harmony.3.0.xml - synthetic/harmony.3.1.xml - synthetic/harmony.4.0.xml - synthetic/harp-pedals.3.0.xml - synthetic/harp-pedals.3.1.xml - synthetic/haydn.3.1.xml - synthetic/heel.3.0.xml - synthetic/hole-closed.3.0.xml - synthetic/hole-shape.3.0.xml - synthetic/hole-type.3.0.xml - synthetic/hole.3.0.xml - synthetic/humming.3.0.xml - synthetic/image.3.0.xml - synthetic/image.3.1.xml - synthetic/instrument-abbreviation.3.0.xml - synthetic/instrument-change.4.0.xml - synthetic/instrument-link.4.0.xml - synthetic/instrument-name.3.0.xml - synthetic/instrument-sound-enum.3.0.xml - synthetic/instrument-sound.3.0.xml - synthetic/interchangeable.3.0.xml - synthetic/inversion.3.0.xml - synthetic/inversion.4.0.xml - synthetic/inverted-mordent.3.0.xml - synthetic/inverted-turn.3.0.xml - synthetic/inverted-vertical-turn.3.1.xml - synthetic/ipa.3.0.xml - synthetic/key-octave.3.0.xml - synthetic/key.3.0.xml - synthetic/key.3.1.xml - synthetic/kind.3.0.xml - synthetic/laughing.3.0.xml - synthetic/left-divider.3.0.xml + synthetic/level.3.0.xml synthetic/level.4.0.xml - synthetic/line-detail.4.0.xml - synthetic/link.3.0.xml - synthetic/listen.4.0.xml - synthetic/listening.4.0.xml - synthetic/lyric-font.3.0.xml - synthetic/lyric-language.3.0.xml - synthetic/lyric.3.0.xml - synthetic/lyric.3.1.xml - synthetic/measure-distance.3.0.xml - synthetic/measure-layout.3.0.xml - synthetic/measure-numbering.3.0.xml - synthetic/measure-numbering.4.0.xml - synthetic/measure-repeat.3.0.xml - synthetic/measure-style.3.0.xml - synthetic/measure-style.3.1.xml - synthetic/measure.3.0.xml - synthetic/measure.3.1.xml - synthetic/membrane.3.0.xml - synthetic/membrane.4.0.xml - synthetic/metal.3.0.xml - synthetic/metal.4.0.xml - synthetic/metronome-arrows.3.1.xml - synthetic/metronome-beam.3.0.xml - synthetic/metronome-dot.3.0.xml - synthetic/metronome-note.3.0.xml - synthetic/metronome-relation.3.0.xml - synthetic/metronome-tied.3.1.xml - synthetic/metronome-tuplet.3.0.xml - synthetic/metronome-type.3.0.xml - synthetic/metronome.3.0.xml - synthetic/metronome.3.1.xml - synthetic/metronome.4.0.xml - synthetic/midi-device.3.0.xml - synthetic/midi-name.3.0.xml - synthetic/miscellaneous-field.3.0.xml - synthetic/mordent.3.0.xml - synthetic/movement-number.3.0.xml - synthetic/movement-title.3.0.xml - synthetic/multiple-rest.3.0.xml - synthetic/music-font.3.0.xml - synthetic/mute.3.0.xml - synthetic/n.3.1.xml - synthetic/non-arpeggiate.3.0.xml - synthetic/non-arpeggiate.3.1.xml - synthetic/notations.3.0.xml - synthetic/notations.3.1.xml - synthetic/note.3.0.xml - synthetic/note.3.1.xml - synthetic/notehead-text.3.0.xml - synthetic/notehead.3.0.xml - synthetic/notehead.3.1.xml - synthetic/numeral-alter.4.0.xml - synthetic/numeral-fifths.4.0.xml - synthetic/numeral-key.4.0.xml - synthetic/numeral-mode.4.0.xml - synthetic/numeral-root.4.0.xml - synthetic/numeral.4.0.xml - synthetic/octave-shift.3.0.xml - synthetic/octave-shift.3.1.xml - synthetic/open-string.3.0.xml - synthetic/open.3.1.xml - synthetic/opus.3.0.xml - synthetic/ornaments.3.1.xml - synthetic/other-appearance.3.0.xml - synthetic/other-articulation.3.0.xml - synthetic/other-articulation.3.1.xml - synthetic/other-direction.3.0.xml - synthetic/other-direction.3.1.xml - synthetic/other-dynamics.3.0.xml - synthetic/other-dynamics.3.1.xml - synthetic/other-listen.4.0.xml - synthetic/other-listening.4.0.xml - synthetic/other-notation.3.0.xml - synthetic/other-notation.3.1.xml - synthetic/other-ornament.3.0.xml - synthetic/other-ornament.3.1.xml - synthetic/other-percussion.3.0.xml - synthetic/other-percussion.3.1.xml - synthetic/other-play.3.0.xml - synthetic/other-technical.3.0.xml - synthetic/other-technical.3.1.xml - synthetic/part-abbreviation-display.3.0.xml - synthetic/part-abbreviation.3.0.xml - synthetic/part-clef.4.0.xml - synthetic/part-link.4.0.xml - synthetic/part-name-display.3.0.xml - synthetic/part-name.3.0.xml - synthetic/part-symbol.3.0.xml - synthetic/part-transpose.4.0.xml - synthetic/pedal.3.0.xml - synthetic/pedal.3.1.xml - synthetic/per-minute.3.0.xml - synthetic/percussion.3.0.xml - synthetic/percussion.3.1.xml - synthetic/pf.3.1.xml - synthetic/pitched.3.0.xml - synthetic/pitched.3.1.xml - synthetic/play.3.0.xml - synthetic/player-name.4.0.xml - synthetic/player.4.0.xml - synthetic/plop.3.0.xml - synthetic/plop.3.1.xml - synthetic/pluck.3.0.xml - synthetic/prefix.3.0.xml - synthetic/principal-voice.3.0.xml - synthetic/principal-voice.3.1.xml - synthetic/print.3.0.xml - synthetic/print.3.1.xml - synthetic/pull-off.3.0.xml - synthetic/rehearsal.3.0.xml - synthetic/rehearsal.3.1.xml - synthetic/relation.3.0.xml - synthetic/release.4.0.xml - synthetic/repeat.4.0.xml - synthetic/right-divider.3.0.xml - synthetic/rights.3.0.xml - synthetic/root-alter.3.0.xml - synthetic/root-step.3.0.xml - synthetic/schleifer.3.0.xml - synthetic/scoop.3.0.xml - synthetic/scoop.3.1.xml - synthetic/scordatura.3.1.xml - synthetic/second.4.0.xml - synthetic/semi-pitched.3.0.xml - synthetic/senza-misura.3.0.xml - synthetic/sfzp.3.1.xml - synthetic/shake.3.0.xml - synthetic/slash-dot.3.0.xml - synthetic/slash-type.3.0.xml - synthetic/slash.3.0.xml - synthetic/slide.3.0.xml - synthetic/slide.3.1.xml - synthetic/slur.3.0.xml - synthetic/slur.3.1.xml - synthetic/smear.3.1.xml - synthetic/snap-pizzicato.3.0.xml - synthetic/soft-accent.3.1.xml - synthetic/software.3.0.xml - synthetic/sound.3.0.xml - synthetic/sound.3.1.xml - synthetic/source.3.0.xml - synthetic/spiccato.3.0.xml - synthetic/staccatissimo.3.0.xml - synthetic/staccato.3.0.xml - synthetic/staff-divide.3.1.xml - synthetic/staff-size.4.0.xml - synthetic/staff-type.3.0.xml - synthetic/stem.3.0.xml - synthetic/stick-location.3.0.xml - synthetic/stick-material.3.0.xml - synthetic/stick-type.3.0.xml - synthetic/stick.3.0.xml - synthetic/stick.3.1.xml - synthetic/stopped.3.0.xml - synthetic/stopped.3.1.xml - synthetic/straight.4.0.xml - synthetic/stress.3.0.xml - synthetic/string-mute.3.0.xml - synthetic/string-mute.3.1.xml - synthetic/string.3.0.xml - synthetic/strong-accent.3.0.xml - synthetic/suffix.3.0.xml - synthetic/swing-style.4.0.xml - synthetic/swing-type.4.0.xml - synthetic/swing.4.0.xml - synthetic/symbol.3.1.xml - synthetic/sync.4.0.xml - synthetic/tap.3.0.xml - synthetic/tap.3.1.xml - synthetic/technical.3.1.xml - synthetic/tenuto.3.0.xml - synthetic/text.3.0.xml - synthetic/thumb-position.3.0.xml - synthetic/tie.3.0.xml - synthetic/tied.3.0.xml - synthetic/tied.3.1.xml - synthetic/time-relation.3.0.xml - synthetic/time.3.0.xml - synthetic/time.3.1.xml - synthetic/timpani.3.0.xml - synthetic/timpani.4.0.xml - synthetic/toe.3.0.xml - synthetic/transpose.3.0.xml - synthetic/transpose.3.1.xml - synthetic/tremolo.3.0.xml - synthetic/tremolo.3.1.xml - synthetic/trill-mark.3.0.xml - synthetic/triple-tongue.3.0.xml - synthetic/tuplet-dot.3.0.xml - synthetic/tuplet-number.3.0.xml - synthetic/tuplet-type.3.0.xml - synthetic/tuplet.3.0.xml - synthetic/tuplet.3.1.xml - synthetic/turn.3.0.xml - synthetic/unstress.3.0.xml - synthetic/up-bow.3.0.xml - synthetic/vertical-turn.3.0.xml - synthetic/virtual-library.3.0.xml - synthetic/virtual-name.3.0.xml - synthetic/voice.3.0.xml - synthetic/wait.4.0.xml - synthetic/wavy-line.3.0.xml - synthetic/wavy-line.4.0.xml - synthetic/wedge.3.0.xml - synthetic/wedge.3.1.xml - synthetic/with-bar.3.0.xml - synthetic/wood.3.0.xml - synthetic/wood.4.0.xml - synthetic/word-font.3.0.xml - synthetic/words.3.0.xml - synthetic/words.3.1.xml - synthetic/work-number.3.0.xml - synthetic/work-title.3.0.xml diff --git a/data/synthetic/accent.3.0.features.xml b/data/synthetic/accent.3.0.features.xml index 32679f714..0500ec7d0 100644 --- a/data/synthetic/accent.3.0.features.xml +++ b/data/synthetic/accent.3.0.features.xml @@ -23,15 +23,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/accent.3.0.xml b/data/synthetic/accent.3.0.xml index 9c35cd4ca..1b5b1e136 100644 --- a/data/synthetic/accent.3.0.xml +++ b/data/synthetic/accent.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/accidental-mark.3.0.features.xml b/data/synthetic/accidental-mark.3.0.features.xml index 462a1ad75..5bd6e78bf 100644 --- a/data/synthetic/accidental-mark.3.0.features.xml +++ b/data/synthetic/accidental-mark.3.0.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/accidental-mark.3.0.xml b/data/synthetic/accidental-mark.3.0.xml index 4e4c24bf6..bdbee00be 100644 --- a/data/synthetic/accidental-mark.3.0.xml +++ b/data/synthetic/accidental-mark.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x sharp diff --git a/data/synthetic/accidental-mark.3.1.features.xml b/data/synthetic/accidental-mark.3.1.features.xml index d5e53e645..d776e4fd1 100644 --- a/data/synthetic/accidental-mark.3.1.features.xml +++ b/data/synthetic/accidental-mark.3.1.features.xml @@ -25,15 +25,9 @@ smufl - - footnote - grace - - level - measure diff --git a/data/synthetic/accidental-mark.3.1.xml b/data/synthetic/accidental-mark.3.1.xml index c7ce8c052..a707a1605 100644 --- a/data/synthetic/accidental-mark.3.1.xml +++ b/data/synthetic/accidental-mark.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x sharp diff --git a/data/synthetic/accidental-text.3.0.features.xml b/data/synthetic/accidental-text.3.0.features.xml index e8028a0fd..f05b004e5 100644 --- a/data/synthetic/accidental-text.3.0.features.xml +++ b/data/synthetic/accidental-text.3.0.features.xml @@ -32,18 +32,12 @@ xml:space - - footnote - grace group-name-display - - level - measure diff --git a/data/synthetic/accidental-text.3.0.xml b/data/synthetic/accidental-text.3.0.xml index 523b3b3fc..aa5b4ec8e 100644 --- a/data/synthetic/accidental-text.3.0.xml +++ b/data/synthetic/accidental-text.3.0.xml @@ -5,15 +5,11 @@ sharp - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/accidental-text.3.1.features.xml b/data/synthetic/accidental-text.3.1.features.xml index dd77c0013..a853da084 100644 --- a/data/synthetic/accidental-text.3.1.features.xml +++ b/data/synthetic/accidental-text.3.1.features.xml @@ -33,18 +33,12 @@ xml:space - - footnote - grace group-name-display - - level - measure diff --git a/data/synthetic/accidental-text.3.1.xml b/data/synthetic/accidental-text.3.1.xml index 672a2af06..f3d39283e 100644 --- a/data/synthetic/accidental-text.3.1.xml +++ b/data/synthetic/accidental-text.3.1.xml @@ -5,15 +5,11 @@ sharp - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/accidental.3.0.features.xml b/data/synthetic/accidental.3.0.features.xml index 24cbd4d95..afbc2c0d3 100644 --- a/data/synthetic/accidental.3.0.features.xml +++ b/data/synthetic/accidental.3.0.features.xml @@ -24,15 +24,9 @@ size - - footnote - grace - - level - measure diff --git a/data/synthetic/accidental.3.0.xml b/data/synthetic/accidental.3.0.xml index 05cb48670..e31e76b2b 100644 --- a/data/synthetic/accidental.3.0.xml +++ b/data/synthetic/accidental.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 sharp 1 diff --git a/data/synthetic/accidental.3.1.features.xml b/data/synthetic/accidental.3.1.features.xml index 5956a20bc..d26b9fe74 100644 --- a/data/synthetic/accidental.3.1.features.xml +++ b/data/synthetic/accidental.3.1.features.xml @@ -25,15 +25,9 @@ smufl - - footnote - grace - - level - measure diff --git a/data/synthetic/accidental.3.1.xml b/data/synthetic/accidental.3.1.xml index 99aa4044e..a7ce5f147 100644 --- a/data/synthetic/accidental.3.1.xml +++ b/data/synthetic/accidental.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 sharp 1 diff --git a/data/synthetic/accordion-registration.3.0.features.xml b/data/synthetic/accordion-registration.3.0.features.xml index 197e68e8e..0919b3ac4 100644 --- a/data/synthetic/accordion-registration.3.0.features.xml +++ b/data/synthetic/accordion-registration.3.0.features.xml @@ -27,12 +27,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/accordion-registration.3.0.xml b/data/synthetic/accordion-registration.3.0.xml index e55ad8c0a..a996f75a2 100644 --- a/data/synthetic/accordion-registration.3.0.xml +++ b/data/synthetic/accordion-registration.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/accordion-registration.3.1.features.xml b/data/synthetic/accordion-registration.3.1.features.xml index 10ba11d09..646981bed 100644 --- a/data/synthetic/accordion-registration.3.1.features.xml +++ b/data/synthetic/accordion-registration.3.1.features.xml @@ -28,12 +28,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/accordion-registration.3.1.xml b/data/synthetic/accordion-registration.3.1.xml index d695b3a39..6a8911df3 100644 --- a/data/synthetic/accordion-registration.3.1.xml +++ b/data/synthetic/accordion-registration.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/arpeggiate.3.0.features.xml b/data/synthetic/arpeggiate.3.0.features.xml index bbea713b7..595b5ac1f 100644 --- a/data/synthetic/arpeggiate.3.0.features.xml +++ b/data/synthetic/arpeggiate.3.0.features.xml @@ -18,15 +18,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/arpeggiate.3.0.xml b/data/synthetic/arpeggiate.3.0.xml index 99f2a1dc4..d9b26827e 100644 --- a/data/synthetic/arpeggiate.3.0.xml +++ b/data/synthetic/arpeggiate.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/arpeggiate.3.1.features.xml b/data/synthetic/arpeggiate.3.1.features.xml index 5c2cf99bb..e9ad5ebce 100644 --- a/data/synthetic/arpeggiate.3.1.features.xml +++ b/data/synthetic/arpeggiate.3.1.features.xml @@ -19,15 +19,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/arpeggiate.3.1.xml b/data/synthetic/arpeggiate.3.1.xml index 87f38e71d..c7d221f9c 100644 --- a/data/synthetic/arpeggiate.3.1.xml +++ b/data/synthetic/arpeggiate.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/arpeggiate.4.0.features.xml b/data/synthetic/arpeggiate.4.0.features.xml index 223d78cf0..99e0d885b 100644 --- a/data/synthetic/arpeggiate.4.0.features.xml +++ b/data/synthetic/arpeggiate.4.0.features.xml @@ -20,15 +20,9 @@ unbroken - - footnote - grace - - level - measure diff --git a/data/synthetic/arpeggiate.4.0.xml b/data/synthetic/arpeggiate.4.0.xml index 5d1b4c436..b5531c923 100644 --- a/data/synthetic/arpeggiate.4.0.xml +++ b/data/synthetic/arpeggiate.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/arrow-style.3.0.features.xml b/data/synthetic/arrow-style.3.0.features.xml index ef1bbfe47..6b8605407 100644 --- a/data/synthetic/arrow-style.3.0.features.xml +++ b/data/synthetic/arrow-style.3.0.features.xml @@ -14,15 +14,9 @@ arrow-style - - footnote - grace - - level - measure diff --git a/data/synthetic/arrow-style.3.0.xml b/data/synthetic/arrow-style.3.0.xml index f9e779849..6a41e2ee5 100644 --- a/data/synthetic/arrow-style.3.0.xml +++ b/data/synthetic/arrow-style.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x left diff --git a/data/synthetic/arrow.3.0.features.xml b/data/synthetic/arrow.3.0.features.xml index f39241c87..808e3916e 100644 --- a/data/synthetic/arrow.3.0.features.xml +++ b/data/synthetic/arrow.3.0.features.xml @@ -23,15 +23,9 @@ arrow-direction - - footnote - grace - - level - measure diff --git a/data/synthetic/arrow.3.0.xml b/data/synthetic/arrow.3.0.xml index ae4c80504..1e570f89b 100644 --- a/data/synthetic/arrow.3.0.xml +++ b/data/synthetic/arrow.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x left diff --git a/data/synthetic/arrow.3.1.features.xml b/data/synthetic/arrow.3.1.features.xml index 9a486a747..8b80a706a 100644 --- a/data/synthetic/arrow.3.1.features.xml +++ b/data/synthetic/arrow.3.1.features.xml @@ -24,15 +24,9 @@ arrow-direction - - footnote - grace - - level - measure diff --git a/data/synthetic/arrow.3.1.xml b/data/synthetic/arrow.3.1.xml index 3c1df1d49..6c8c6245b 100644 --- a/data/synthetic/arrow.3.1.xml +++ b/data/synthetic/arrow.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x left diff --git a/data/synthetic/arrowhead.3.1.features.xml b/data/synthetic/arrowhead.3.1.features.xml index e7474261e..7047243cc 100644 --- a/data/synthetic/arrowhead.3.1.features.xml +++ b/data/synthetic/arrowhead.3.1.features.xml @@ -14,15 +14,9 @@ arrowhead - - footnote - grace - - level - measure diff --git a/data/synthetic/arrowhead.3.1.xml b/data/synthetic/arrowhead.3.1.xml index 693514b74..38fb44e23 100644 --- a/data/synthetic/arrowhead.3.1.xml +++ b/data/synthetic/arrowhead.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x left diff --git a/data/synthetic/articulations.3.1.features.xml b/data/synthetic/articulations.3.1.features.xml index 33ac34465..669b157b1 100644 --- a/data/synthetic/articulations.3.1.features.xml +++ b/data/synthetic/articulations.3.1.features.xml @@ -14,15 +14,9 @@ id - - footnote - grace - - level - measure diff --git a/data/synthetic/articulations.3.1.xml b/data/synthetic/articulations.3.1.xml index 3a1775e61..3f8e3df1e 100644 --- a/data/synthetic/articulations.3.1.xml +++ b/data/synthetic/articulations.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/assess.4.0.features.xml b/data/synthetic/assess.4.0.features.xml index 9e10f565b..032094536 100644 --- a/data/synthetic/assess.4.0.features.xml +++ b/data/synthetic/assess.4.0.features.xml @@ -13,15 +13,9 @@ type - - footnote - grace - - level - listen diff --git a/data/synthetic/assess.4.0.xml b/data/synthetic/assess.4.0.xml index d0c60d634..65c9ecfc9 100644 --- a/data/synthetic/assess.4.0.xml +++ b/data/synthetic/assess.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/bar-style.3.0.features.xml b/data/synthetic/bar-style.3.0.features.xml index 19f04b7ee..5e6e2d295 100644 --- a/data/synthetic/bar-style.3.0.features.xml +++ b/data/synthetic/bar-style.3.0.features.xml @@ -14,12 +14,6 @@ barline - - footnote - - - level - measure diff --git a/data/synthetic/bar-style.3.0.xml b/data/synthetic/bar-style.3.0.xml index 6f71eaf2e..3b4239d01 100644 --- a/data/synthetic/bar-style.3.0.xml +++ b/data/synthetic/bar-style.3.0.xml @@ -2,23 +2,17 @@ - x - x x - x - x regular - x - x diff --git a/data/synthetic/barline.3.0.features.xml b/data/synthetic/barline.3.0.features.xml index 06f333188..8977bc857 100644 --- a/data/synthetic/barline.3.0.features.xml +++ b/data/synthetic/barline.3.0.features.xml @@ -14,12 +14,6 @@ segno - - footnote - - - level - measure diff --git a/data/synthetic/barline.3.0.xml b/data/synthetic/barline.3.0.xml index e6178ad0a..2a3ff62a2 100644 --- a/data/synthetic/barline.3.0.xml +++ b/data/synthetic/barline.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/barline.3.1.features.xml b/data/synthetic/barline.3.1.features.xml index 5b29b92e0..6bf3725ae 100644 --- a/data/synthetic/barline.3.1.features.xml +++ b/data/synthetic/barline.3.1.features.xml @@ -15,12 +15,6 @@ segno - - footnote - - - level - measure diff --git a/data/synthetic/barline.3.1.xml b/data/synthetic/barline.3.1.xml index b4db0af23..c20744ed4 100644 --- a/data/synthetic/barline.3.1.xml +++ b/data/synthetic/barline.3.1.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/barre.3.0.features.xml b/data/synthetic/barre.3.0.features.xml index 643b05e5e..74ec26a49 100644 --- a/data/synthetic/barre.3.0.features.xml +++ b/data/synthetic/barre.3.0.features.xml @@ -12,9 +12,6 @@ type - - footnote - frame @@ -36,9 +33,6 @@ kind - - level - measure diff --git a/data/synthetic/barre.3.0.xml b/data/synthetic/barre.3.0.xml index 3b22c9d71..a40c9ce86 100644 --- a/data/synthetic/barre.3.0.xml +++ b/data/synthetic/barre.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -29,8 +25,6 @@ - x - x 1 diff --git a/data/synthetic/bass-alter.3.0.features.xml b/data/synthetic/bass-alter.3.0.features.xml index 4de9070c3..f0e1c3755 100644 --- a/data/synthetic/bass-alter.3.0.features.xml +++ b/data/synthetic/bass-alter.3.0.features.xml @@ -27,18 +27,12 @@ bass-step - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/bass-alter.3.0.xml b/data/synthetic/bass-alter.3.0.xml index 46b367332..c5cc5f497 100644 --- a/data/synthetic/bass-alter.3.0.xml +++ b/data/synthetic/bass-alter.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 diff --git a/data/synthetic/bass-separator.4.0.features.xml b/data/synthetic/bass-separator.4.0.features.xml index 0012f76fe..d0fb4fec6 100644 --- a/data/synthetic/bass-separator.4.0.features.xml +++ b/data/synthetic/bass-separator.4.0.features.xml @@ -25,18 +25,12 @@ bass-step - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/bass-separator.4.0.xml b/data/synthetic/bass-separator.4.0.xml index ae68b6075..8ce09814d 100644 --- a/data/synthetic/bass-separator.4.0.xml +++ b/data/synthetic/bass-separator.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ x A - x - x 1 diff --git a/data/synthetic/bass-step.3.0.features.xml b/data/synthetic/bass-step.3.0.features.xml index 4e20056b6..89a656f76 100644 --- a/data/synthetic/bass-step.3.0.features.xml +++ b/data/synthetic/bass-step.3.0.features.xml @@ -23,18 +23,12 @@ text - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/bass-step.3.0.xml b/data/synthetic/bass-step.3.0.xml index 9ceb4bf88..af1e426d7 100644 --- a/data/synthetic/bass-step.3.0.xml +++ b/data/synthetic/bass-step.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -23,8 +19,6 @@ A - x - x 1 diff --git a/data/synthetic/bass.4.0.features.xml b/data/synthetic/bass.4.0.features.xml index 6178c8b4a..cc7c520b6 100644 --- a/data/synthetic/bass.4.0.features.xml +++ b/data/synthetic/bass.4.0.features.xml @@ -14,18 +14,12 @@ bass-step - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/bass.4.0.xml b/data/synthetic/bass.4.0.xml index ee09f2b8f..46123e5b8 100644 --- a/data/synthetic/bass.4.0.xml +++ b/data/synthetic/bass.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -23,8 +19,6 @@ A - x - x 1 diff --git a/data/synthetic/beam.3.0.features.xml b/data/synthetic/beam.3.0.features.xml index f98e62523..26992f03d 100644 --- a/data/synthetic/beam.3.0.features.xml +++ b/data/synthetic/beam.3.0.features.xml @@ -14,15 +14,9 @@ repeater - - footnote - grace - - level - measure diff --git a/data/synthetic/beam.3.0.xml b/data/synthetic/beam.3.0.xml index 90c3ff173..b51f94d75 100644 --- a/data/synthetic/beam.3.0.xml +++ b/data/synthetic/beam.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 begin diff --git a/data/synthetic/beam.3.1.features.xml b/data/synthetic/beam.3.1.features.xml index 702dc670b..27577663b 100644 --- a/data/synthetic/beam.3.1.features.xml +++ b/data/synthetic/beam.3.1.features.xml @@ -15,15 +15,9 @@ repeater - - footnote - grace - - level - measure diff --git a/data/synthetic/beam.3.1.xml b/data/synthetic/beam.3.1.xml index 2b440eef9..bea63e88d 100644 --- a/data/synthetic/beam.3.1.xml +++ b/data/synthetic/beam.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 begin diff --git a/data/synthetic/beat-repeat.3.0.features.xml b/data/synthetic/beat-repeat.3.0.features.xml index d8144bc11..06685b64f 100644 --- a/data/synthetic/beat-repeat.3.0.features.xml +++ b/data/synthetic/beat-repeat.3.0.features.xml @@ -16,12 +16,6 @@ use-dots - - footnote - - - level - measure diff --git a/data/synthetic/beat-repeat.3.0.xml b/data/synthetic/beat-repeat.3.0.xml index 27d38edba..81e65e68b 100644 --- a/data/synthetic/beat-repeat.3.0.xml +++ b/data/synthetic/beat-repeat.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1024th diff --git a/data/synthetic/beat-type.3.0.features.xml b/data/synthetic/beat-type.3.0.features.xml index ed8f2b0ec..e05355e5a 100644 --- a/data/synthetic/beat-type.3.0.features.xml +++ b/data/synthetic/beat-type.3.0.features.xml @@ -14,12 +14,6 @@ beats - - footnote - - - level - measure diff --git a/data/synthetic/beat-type.3.0.xml b/data/synthetic/beat-type.3.0.xml index 0e7a6fd4b..d9fb54c0a 100644 --- a/data/synthetic/beat-type.3.0.xml +++ b/data/synthetic/beat-type.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/delayed-inverted-turn.3.0.features.xml b/data/synthetic/delayed-inverted-turn.3.0.features.xml index 1e38d8ddf..e7c263d1f 100644 --- a/data/synthetic/delayed-inverted-turn.3.0.features.xml +++ b/data/synthetic/delayed-inverted-turn.3.0.features.xml @@ -28,15 +28,9 @@ two-note-turn - - footnote - grace - - level - measure diff --git a/data/synthetic/delayed-inverted-turn.3.0.xml b/data/synthetic/delayed-inverted-turn.3.0.xml index 175c9b5f2..f39a053c9 100644 --- a/data/synthetic/delayed-inverted-turn.3.0.xml +++ b/data/synthetic/delayed-inverted-turn.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/delayed-turn.3.0.features.xml b/data/synthetic/delayed-turn.3.0.features.xml index 5e1650dff..c27576189 100644 --- a/data/synthetic/delayed-turn.3.0.features.xml +++ b/data/synthetic/delayed-turn.3.0.features.xml @@ -28,15 +28,9 @@ two-note-turn - - footnote - grace - - level - measure diff --git a/data/synthetic/delayed-turn.3.0.xml b/data/synthetic/delayed-turn.3.0.xml index c33f7a160..cf1e6c596 100644 --- a/data/synthetic/delayed-turn.3.0.xml +++ b/data/synthetic/delayed-turn.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/detached-legato.3.0.features.xml b/data/synthetic/detached-legato.3.0.features.xml index 5517c8112..dc4ca06b8 100644 --- a/data/synthetic/detached-legato.3.0.features.xml +++ b/data/synthetic/detached-legato.3.0.features.xml @@ -23,15 +23,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/detached-legato.3.0.xml b/data/synthetic/detached-legato.3.0.xml index be5c0be51..4f4bfa90c 100644 --- a/data/synthetic/detached-legato.3.0.xml +++ b/data/synthetic/detached-legato.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/direction-type.3.1.features.xml b/data/synthetic/direction-type.3.1.features.xml index 3cbc153f2..5817433c7 100644 --- a/data/synthetic/direction-type.3.1.features.xml +++ b/data/synthetic/direction-type.3.1.features.xml @@ -14,12 +14,6 @@ id - - footnote - - - level - measure diff --git a/data/synthetic/direction-type.3.1.xml b/data/synthetic/direction-type.3.1.xml index 4bf5e809e..2fcaa0099 100644 --- a/data/synthetic/direction-type.3.1.xml +++ b/data/synthetic/direction-type.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/direction.3.1.features.xml b/data/synthetic/direction.3.1.features.xml index ae1ca409e..83ff34576 100644 --- a/data/synthetic/direction.3.1.features.xml +++ b/data/synthetic/direction.3.1.features.xml @@ -16,12 +16,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/direction.3.1.xml b/data/synthetic/direction.3.1.xml index 0a466d75a..df3100ef5 100644 --- a/data/synthetic/direction.3.1.xml +++ b/data/synthetic/direction.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/direction.4.0.features.xml b/data/synthetic/direction.4.0.features.xml index cf199153a..a212cf316 100644 --- a/data/synthetic/direction.4.0.features.xml +++ b/data/synthetic/direction.4.0.features.xml @@ -17,12 +17,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/direction.4.0.xml b/data/synthetic/direction.4.0.xml index 2577fd0d3..e4fd28299 100644 --- a/data/synthetic/direction.4.0.xml +++ b/data/synthetic/direction.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/directive.3.0.features.xml b/data/synthetic/directive.3.0.features.xml index 430e7f638..572360460 100644 --- a/data/synthetic/directive.3.0.features.xml +++ b/data/synthetic/directive.3.0.features.xml @@ -23,12 +23,6 @@ xml:lang - - footnote - - - level - measure diff --git a/data/synthetic/directive.3.0.xml b/data/synthetic/directive.3.0.xml index 9a9d59384..6e0a13b22 100644 --- a/data/synthetic/directive.3.0.xml +++ b/data/synthetic/directive.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x x diff --git a/data/synthetic/display-text.3.0.features.xml b/data/synthetic/display-text.3.0.features.xml index 12575517c..60c90cc95 100644 --- a/data/synthetic/display-text.3.0.features.xml +++ b/data/synthetic/display-text.3.0.features.xml @@ -32,18 +32,12 @@ xml:space - - footnote - grace group-name-display - - level - measure diff --git a/data/synthetic/display-text.3.0.xml b/data/synthetic/display-text.3.0.xml index c09327466..e03599749 100644 --- a/data/synthetic/display-text.3.0.xml +++ b/data/synthetic/display-text.3.0.xml @@ -5,15 +5,11 @@ x - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/doit.3.0.features.xml b/data/synthetic/doit.3.0.features.xml index 46b9a0308..688d0ae61 100644 --- a/data/synthetic/doit.3.0.features.xml +++ b/data/synthetic/doit.3.0.features.xml @@ -27,15 +27,9 @@ space-length - - footnote - grace - - level - measure diff --git a/data/synthetic/doit.3.0.xml b/data/synthetic/doit.3.0.xml index 7adb29fcf..febf471d2 100644 --- a/data/synthetic/doit.3.0.xml +++ b/data/synthetic/doit.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/doit.3.1.features.xml b/data/synthetic/doit.3.1.features.xml index fc69e7f9c..69874716e 100644 --- a/data/synthetic/doit.3.1.features.xml +++ b/data/synthetic/doit.3.1.features.xml @@ -28,15 +28,9 @@ space-length - - footnote - grace - - level - measure diff --git a/data/synthetic/doit.3.1.xml b/data/synthetic/doit.3.1.xml index cfe9fc624..7c4fb02aa 100644 --- a/data/synthetic/doit.3.1.xml +++ b/data/synthetic/doit.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/dot.3.0.features.xml b/data/synthetic/dot.3.0.features.xml index 411d8c50d..a1f224570 100644 --- a/data/synthetic/dot.3.0.features.xml +++ b/data/synthetic/dot.3.0.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/dot.3.0.xml b/data/synthetic/dot.3.0.xml index ed9f9b89d..f3ee5f614 100644 --- a/data/synthetic/dot.3.0.xml +++ b/data/synthetic/dot.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/double-tongue.3.0.features.xml b/data/synthetic/double-tongue.3.0.features.xml index 0ea919738..0d277369e 100644 --- a/data/synthetic/double-tongue.3.0.features.xml +++ b/data/synthetic/double-tongue.3.0.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/double-tongue.3.0.xml b/data/synthetic/double-tongue.3.0.xml index 2af575513..90ac0b38b 100644 --- a/data/synthetic/double-tongue.3.0.xml +++ b/data/synthetic/double-tongue.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/double.3.0.features.xml b/data/synthetic/double.3.0.features.xml index 354859539..354d7cb1a 100644 --- a/data/synthetic/double.3.0.features.xml +++ b/data/synthetic/double.3.0.features.xml @@ -14,12 +14,6 @@ double - - footnote - - - level - measure diff --git a/data/synthetic/double.3.0.xml b/data/synthetic/double.3.0.xml index 764df3e19..2e7d7f440 100644 --- a/data/synthetic/double.3.0.xml +++ b/data/synthetic/double.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/double.4.0.features.xml b/data/synthetic/double.4.0.features.xml index b1e085caa..85fc4d1cf 100644 --- a/data/synthetic/double.4.0.features.xml +++ b/data/synthetic/double.4.0.features.xml @@ -17,12 +17,6 @@ above - - footnote - - - level - measure diff --git a/data/synthetic/double.4.0.xml b/data/synthetic/double.4.0.xml index baf78a283..131f72582 100644 --- a/data/synthetic/double.4.0.xml +++ b/data/synthetic/double.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/down-bow.3.0.features.xml b/data/synthetic/down-bow.3.0.features.xml index 10431f87e..b0c8f4c2e 100644 --- a/data/synthetic/down-bow.3.0.features.xml +++ b/data/synthetic/down-bow.3.0.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/down-bow.3.0.xml b/data/synthetic/down-bow.3.0.xml index c8dfab243..5fe2f14cf 100644 --- a/data/synthetic/down-bow.3.0.xml +++ b/data/synthetic/down-bow.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/dynamics.3.1.features.xml b/data/synthetic/dynamics.3.1.features.xml index c9010da76..83ebf632f 100644 --- a/data/synthetic/dynamics.3.1.features.xml +++ b/data/synthetic/dynamics.3.1.features.xml @@ -27,15 +27,9 @@ valign - - footnote - grace - - level - measure diff --git a/data/synthetic/dynamics.3.1.xml b/data/synthetic/dynamics.3.1.xml index 80c0e1dc6..1687892cf 100644 --- a/data/synthetic/dynamics.3.1.xml +++ b/data/synthetic/dynamics.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x

diff --git a/data/synthetic/effect.3.0.features.xml b/data/synthetic/effect.3.0.features.xml index 4453117e1..860485469 100644 --- a/data/synthetic/effect.3.0.features.xml +++ b/data/synthetic/effect.3.0.features.xml @@ -14,12 +14,6 @@ effect - - footnote - - - level - measure diff --git a/data/synthetic/effect.3.0.xml b/data/synthetic/effect.3.0.xml index d20a982d6..7c27eb398 100644 --- a/data/synthetic/effect.3.0.xml +++ b/data/synthetic/effect.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ anvil - x - x 1 1 diff --git a/data/synthetic/effect.4.0.features.xml b/data/synthetic/effect.4.0.features.xml index 4e43914f1..56816adc5 100644 --- a/data/synthetic/effect.4.0.features.xml +++ b/data/synthetic/effect.4.0.features.xml @@ -17,12 +17,6 @@ smufl - - footnote - - - level - measure diff --git a/data/synthetic/effect.4.0.xml b/data/synthetic/effect.4.0.xml index 8f7545a44..a7c12ee38 100644 --- a/data/synthetic/effect.4.0.xml +++ b/data/synthetic/effect.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ anvil - x - x 1 1 diff --git a/data/synthetic/elevation.3.0.features.xml b/data/synthetic/elevation.3.0.features.xml index cfd36368a..9fcdd1372 100644 --- a/data/synthetic/elevation.3.0.features.xml +++ b/data/synthetic/elevation.3.0.features.xml @@ -8,15 +8,9 @@ elevation - - footnote - grace - - level - measure diff --git a/data/synthetic/elevation.3.0.xml b/data/synthetic/elevation.3.0.xml index e4c803699..c07fb039f 100644 --- a/data/synthetic/elevation.3.0.xml +++ b/data/synthetic/elevation.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/elision.3.0.features.xml b/data/synthetic/elision.3.0.features.xml index 4fdbd74c3..ce03aacb1 100644 --- a/data/synthetic/elision.3.0.features.xml +++ b/data/synthetic/elision.3.0.features.xml @@ -15,15 +15,9 @@ font-weight - - footnote - grace - - level - lyric diff --git a/data/synthetic/elision.3.0.xml b/data/synthetic/elision.3.0.xml index fdb78896a..0ef9809d3 100644 --- a/data/synthetic/elision.3.0.xml +++ b/data/synthetic/elision.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,16 +17,12 @@ A 1 - x - x 1 1 x x x - x - x diff --git a/data/synthetic/elision.3.1.features.xml b/data/synthetic/elision.3.1.features.xml index 2d66ffa90..3d50342d2 100644 --- a/data/synthetic/elision.3.1.features.xml +++ b/data/synthetic/elision.3.1.features.xml @@ -16,15 +16,9 @@ smufl - - footnote - grace - - level - lyric diff --git a/data/synthetic/elision.3.1.xml b/data/synthetic/elision.3.1.xml index f5306cf58..60e2a795b 100644 --- a/data/synthetic/elision.3.1.xml +++ b/data/synthetic/elision.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,16 +17,12 @@ A 1 - x - x 1 1 x x x - x - x diff --git a/data/synthetic/encoder.3.0.features.xml b/data/synthetic/encoder.3.0.features.xml index eff21a17c..013e266ca 100644 --- a/data/synthetic/encoder.3.0.features.xml +++ b/data/synthetic/encoder.3.0.features.xml @@ -14,18 +14,12 @@ encoding - - footnote - grace identification - - level - measure diff --git a/data/synthetic/encoder.3.0.xml b/data/synthetic/encoder.3.0.xml index d09b82ed0..946b62dc8 100644 --- a/data/synthetic/encoder.3.0.xml +++ b/data/synthetic/encoder.3.0.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/encoding-description.3.0.features.xml b/data/synthetic/encoding-description.3.0.features.xml index 4ca3a31be..a96a08441 100644 --- a/data/synthetic/encoding-description.3.0.features.xml +++ b/data/synthetic/encoding-description.3.0.features.xml @@ -11,18 +11,12 @@ encoding-description - - footnote - grace identification - - level - measure diff --git a/data/synthetic/encoding-description.3.0.xml b/data/synthetic/encoding-description.3.0.xml index 12fc1acc1..4795b2db5 100644 --- a/data/synthetic/encoding-description.3.0.xml +++ b/data/synthetic/encoding-description.3.0.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/ending.3.0.features.xml b/data/synthetic/ending.3.0.features.xml index e61c1879a..398855828 100644 --- a/data/synthetic/ending.3.0.features.xml +++ b/data/synthetic/ending.3.0.features.xml @@ -28,12 +28,6 @@ type - - footnote - - - level - measure diff --git a/data/synthetic/ending.3.0.xml b/data/synthetic/ending.3.0.xml index be3dcdc53..6857f6b44 100644 --- a/data/synthetic/ending.3.0.xml +++ b/data/synthetic/ending.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x x diff --git a/data/synthetic/ending.4.0.features.xml b/data/synthetic/ending.4.0.features.xml index 930838e77..ee2907f1b 100644 --- a/data/synthetic/ending.4.0.features.xml +++ b/data/synthetic/ending.4.0.features.xml @@ -29,12 +29,6 @@ type - - footnote - - - level - measure diff --git a/data/synthetic/ending.4.0.xml b/data/synthetic/ending.4.0.xml index 90dc3caa9..3e94e5be9 100644 --- a/data/synthetic/ending.4.0.xml +++ b/data/synthetic/ending.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x x diff --git a/data/synthetic/except-voice.3.1.features.xml b/data/synthetic/except-voice.3.1.features.xml index ec0fd68a0..ea245a64e 100644 --- a/data/synthetic/except-voice.3.1.features.xml +++ b/data/synthetic/except-voice.3.1.features.xml @@ -17,12 +17,6 @@ except-voice - - footnote - - - level - measure diff --git a/data/synthetic/except-voice.3.1.xml b/data/synthetic/except-voice.3.1.xml index 51b61e641..61b15ec3c 100644 --- a/data/synthetic/except-voice.3.1.xml +++ b/data/synthetic/except-voice.3.1.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1024th diff --git a/data/synthetic/extend.3.0.features.xml b/data/synthetic/extend.3.0.features.xml index cd847acd1..d89ac8c33 100644 --- a/data/synthetic/extend.3.0.features.xml +++ b/data/synthetic/extend.3.0.features.xml @@ -19,15 +19,9 @@ type - - footnote - grace - - level - lyric diff --git a/data/synthetic/extend.3.0.xml b/data/synthetic/extend.3.0.xml index 907ab83ed..d0904b142 100644 --- a/data/synthetic/extend.3.0.xml +++ b/data/synthetic/extend.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 @@ -30,8 +24,6 @@ x x - x - x diff --git a/data/synthetic/eyeglasses.3.0.features.xml b/data/synthetic/eyeglasses.3.0.features.xml index e275b4803..a4fc4d4d1 100644 --- a/data/synthetic/eyeglasses.3.0.features.xml +++ b/data/synthetic/eyeglasses.3.0.features.xml @@ -27,12 +27,6 @@ valign - - footnote - - - level - measure diff --git a/data/synthetic/eyeglasses.3.0.xml b/data/synthetic/eyeglasses.3.0.xml index 241b392fe..650efd54f 100644 --- a/data/synthetic/eyeglasses.3.0.xml +++ b/data/synthetic/eyeglasses.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/eyeglasses.3.1.features.xml b/data/synthetic/eyeglasses.3.1.features.xml index 8e44cc1d7..a261025e8 100644 --- a/data/synthetic/eyeglasses.3.1.features.xml +++ b/data/synthetic/eyeglasses.3.1.features.xml @@ -28,12 +28,6 @@ valign - - footnote - - - level - measure diff --git a/data/synthetic/eyeglasses.3.1.xml b/data/synthetic/eyeglasses.3.1.xml index 7de16a9d5..ccdb45fb7 100644 --- a/data/synthetic/eyeglasses.3.1.xml +++ b/data/synthetic/eyeglasses.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/falloff.3.0.features.xml b/data/synthetic/falloff.3.0.features.xml index 8b66031c3..98a13f840 100644 --- a/data/synthetic/falloff.3.0.features.xml +++ b/data/synthetic/falloff.3.0.features.xml @@ -27,15 +27,9 @@ space-length - - footnote - grace - - level - measure diff --git a/data/synthetic/falloff.3.0.xml b/data/synthetic/falloff.3.0.xml index 98c23c4cf..d64b7019d 100644 --- a/data/synthetic/falloff.3.0.xml +++ b/data/synthetic/falloff.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/falloff.3.1.features.xml b/data/synthetic/falloff.3.1.features.xml index 1f323cbaf..7e072e33b 100644 --- a/data/synthetic/falloff.3.1.features.xml +++ b/data/synthetic/falloff.3.1.features.xml @@ -28,15 +28,9 @@ space-length - - footnote - grace - - level - measure diff --git a/data/synthetic/falloff.3.1.xml b/data/synthetic/falloff.3.1.xml index 3d424d3e0..e48365abf 100644 --- a/data/synthetic/falloff.3.1.xml +++ b/data/synthetic/falloff.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/feature.3.0.features.xml b/data/synthetic/feature.3.0.features.xml index 1220c2795..3b4d5051d 100644 --- a/data/synthetic/feature.3.0.features.xml +++ b/data/synthetic/feature.3.0.features.xml @@ -11,18 +11,12 @@ type - - footnote - grouping type - - level - measure diff --git a/data/synthetic/feature.3.0.xml b/data/synthetic/feature.3.0.xml index 8bf678583..563d1789f 100644 --- a/data/synthetic/feature.3.0.xml +++ b/data/synthetic/feature.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/fermata.3.1.features.xml b/data/synthetic/fermata.3.1.features.xml index 896e2f67c..6e59633b5 100644 --- a/data/synthetic/fermata.3.1.features.xml +++ b/data/synthetic/fermata.3.1.features.xml @@ -21,15 +21,9 @@ type - - footnote - grace - - level - measure diff --git a/data/synthetic/fermata.3.1.xml b/data/synthetic/fermata.3.1.xml index 8232c4a0d..ac1c8fd08 100644 --- a/data/synthetic/fermata.3.1.xml +++ b/data/synthetic/fermata.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x normal diff --git a/data/synthetic/figure-number.3.0.features.xml b/data/synthetic/figure-number.3.0.features.xml index 84637fd23..23d048835 100644 --- a/data/synthetic/figure-number.3.0.features.xml +++ b/data/synthetic/figure-number.3.0.features.xml @@ -28,12 +28,6 @@ figured-bass - - footnote - - - level - measure diff --git a/data/synthetic/figure-number.3.0.xml b/data/synthetic/figure-number.3.0.xml index f4dbdcb08..a8546e5c0 100644 --- a/data/synthetic/figure-number.3.0.xml +++ b/data/synthetic/figure-number.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ x 1 - x - x diff --git a/data/synthetic/figured-bass.3.0.features.xml b/data/synthetic/figured-bass.3.0.features.xml index a16844cd8..396ec4525 100644 --- a/data/synthetic/figured-bass.3.0.features.xml +++ b/data/synthetic/figured-bass.3.0.features.xml @@ -30,12 +30,6 @@ relative-y - - footnote - - - level - measure diff --git a/data/synthetic/figured-bass.3.0.xml b/data/synthetic/figured-bass.3.0.xml index dfed5fcf5..31194eb7d 100644 --- a/data/synthetic/figured-bass.3.0.xml +++ b/data/synthetic/figured-bass.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -18,8 +14,6 @@

1 - x - x diff --git a/data/synthetic/figured-bass.3.1.features.xml b/data/synthetic/figured-bass.3.1.features.xml index c2f627c54..7c484a900 100644 --- a/data/synthetic/figured-bass.3.1.features.xml +++ b/data/synthetic/figured-bass.3.1.features.xml @@ -31,12 +31,6 @@ relative-y - - footnote - - - level - measure diff --git a/data/synthetic/figured-bass.3.1.xml b/data/synthetic/figured-bass.3.1.xml index c55b14815..1cd4f5ca7 100644 --- a/data/synthetic/figured-bass.3.1.xml +++ b/data/synthetic/figured-bass.3.1.xml @@ -2,27 +2,19 @@ - x - x x - x - x
- x - x
1 - x - x
diff --git a/data/synthetic/figured-bass.4.0.features.xml b/data/synthetic/figured-bass.4.0.features.xml index 83bfb0934..024f4c441 100644 --- a/data/synthetic/figured-bass.4.0.features.xml +++ b/data/synthetic/figured-bass.4.0.features.xml @@ -34,12 +34,6 @@ valign
- - footnote - - - level - measure diff --git a/data/synthetic/figured-bass.4.0.xml b/data/synthetic/figured-bass.4.0.xml index 6a1126fc6..573b25446 100644 --- a/data/synthetic/figured-bass.4.0.xml +++ b/data/synthetic/figured-bass.4.0.xml @@ -2,27 +2,19 @@ - x - x x - x - x
- x - x
1 - x - x
diff --git a/data/synthetic/fingering.3.0.features.xml b/data/synthetic/fingering.3.0.features.xml index 7ae931fa6..542477fe5 100644 --- a/data/synthetic/fingering.3.0.features.xml +++ b/data/synthetic/fingering.3.0.features.xml @@ -22,15 +22,9 @@ substitution
- - footnote - grace - - level - measure diff --git a/data/synthetic/fingering.3.0.xml b/data/synthetic/fingering.3.0.xml index a4b48f660..e012c8f2a 100644 --- a/data/synthetic/fingering.3.0.xml +++ b/data/synthetic/fingering.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/fingernails.3.0.features.xml b/data/synthetic/fingernails.3.0.features.xml index aee94036a..53948acc9 100644 --- a/data/synthetic/fingernails.3.0.features.xml +++ b/data/synthetic/fingernails.3.0.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/fingernails.3.0.xml b/data/synthetic/fingernails.3.0.xml index 31a76df93..99af365d3 100644 --- a/data/synthetic/fingernails.3.0.xml +++ b/data/synthetic/fingernails.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/first-fret.3.0.features.xml b/data/synthetic/first-fret.3.0.features.xml index e3f7722ef..4b8b29545 100644 --- a/data/synthetic/first-fret.3.0.features.xml +++ b/data/synthetic/first-fret.3.0.features.xml @@ -12,9 +12,6 @@ text - - footnote - frame @@ -36,9 +33,6 @@ kind - - level - measure diff --git a/data/synthetic/first-fret.3.0.xml b/data/synthetic/first-fret.3.0.xml index 5cd6f59a8..629b42262 100644 --- a/data/synthetic/first-fret.3.0.xml +++ b/data/synthetic/first-fret.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -29,8 +25,6 @@ 1 - x - x 1 diff --git a/data/synthetic/first.4.0.features.xml b/data/synthetic/first.4.0.features.xml index 190c92828..c7290b471 100644 --- a/data/synthetic/first.4.0.features.xml +++ b/data/synthetic/first.4.0.features.xml @@ -14,12 +14,6 @@ first - - footnote - - - level - measure diff --git a/data/synthetic/first.4.0.xml b/data/synthetic/first.4.0.xml index 6a37a2cf1..4b0253da7 100644 --- a/data/synthetic/first.4.0.xml +++ b/data/synthetic/first.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/flip.3.1.features.xml b/data/synthetic/flip.3.1.features.xml index 54727a729..f3954aa10 100644 --- a/data/synthetic/flip.3.1.features.xml +++ b/data/synthetic/flip.3.1.features.xml @@ -20,15 +20,9 @@ relative-y - - footnote - grace - - level - measure diff --git a/data/synthetic/flip.3.1.xml b/data/synthetic/flip.3.1.xml index b88d631af..c728834ec 100644 --- a/data/synthetic/flip.3.1.xml +++ b/data/synthetic/flip.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/footnote.3.0.features.xml b/data/synthetic/footnote.3.0.features.xml index c1a5e6fe3..88c003235 100644 --- a/data/synthetic/footnote.3.0.features.xml +++ b/data/synthetic/footnote.3.0.features.xml @@ -35,9 +35,6 @@ grace - - level - measure diff --git a/data/synthetic/footnote.3.0.xml b/data/synthetic/footnote.3.0.xml index 6b90c75dd..ab8101a95 100644 --- a/data/synthetic/footnote.3.0.xml +++ b/data/synthetic/footnote.3.0.xml @@ -3,14 +3,11 @@ x - x x - x - x @@ -21,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/for-part.4.0.features.xml b/data/synthetic/for-part.4.0.features.xml index 818e235a5..8c130bee2 100644 --- a/data/synthetic/for-part.4.0.features.xml +++ b/data/synthetic/for-part.4.0.features.xml @@ -11,9 +11,6 @@ chromatic - - footnote - for-part @@ -21,9 +18,6 @@ number - - level - measure diff --git a/data/synthetic/for-part.4.0.xml b/data/synthetic/for-part.4.0.xml index cd3e2b226..719e9ec57 100644 --- a/data/synthetic/for-part.4.0.xml +++ b/data/synthetic/for-part.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/frame.3.0.features.xml b/data/synthetic/frame.3.0.features.xml index 6768703c8..f27d5eed4 100644 --- a/data/synthetic/frame.3.0.features.xml +++ b/data/synthetic/frame.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/frame.3.0.xml 3.0 - - footnote - frame @@ -41,9 +38,6 @@ kind - - level - measure diff --git a/data/synthetic/frame.3.0.xml b/data/synthetic/frame.3.0.xml index 2a01d3f68..b49e442bc 100644 --- a/data/synthetic/frame.3.0.xml +++ b/data/synthetic/frame.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ 1 - x - x 1 diff --git a/data/synthetic/frame.3.1.features.xml b/data/synthetic/frame.3.1.features.xml index f5a790d8e..182bb0beb 100644 --- a/data/synthetic/frame.3.1.features.xml +++ b/data/synthetic/frame.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/frame.3.1.xml 3.1 - - footnote - frame @@ -42,9 +39,6 @@ kind - - level - measure diff --git a/data/synthetic/frame.3.1.xml b/data/synthetic/frame.3.1.xml index 14afd1827..a4217cb0d 100644 --- a/data/synthetic/frame.3.1.xml +++ b/data/synthetic/frame.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ 1 - x - x 1 diff --git a/data/synthetic/fret.3.0.features.xml b/data/synthetic/fret.3.0.features.xml index bf08bba8c..16328237a 100644 --- a/data/synthetic/fret.3.0.features.xml +++ b/data/synthetic/fret.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/fret.3.0.xml 3.0 - - footnote - fret @@ -21,9 +18,6 @@ grace - - level - measure diff --git a/data/synthetic/fret.3.0.xml b/data/synthetic/fret.3.0.xml index 4982cd15b..bf626510d 100644 --- a/data/synthetic/fret.3.0.xml +++ b/data/synthetic/fret.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x 1 diff --git a/data/synthetic/function.3.0.features.xml b/data/synthetic/function.3.0.features.xml index b5014277c..aeb40e395 100644 --- a/data/synthetic/function.3.0.features.xml +++ b/data/synthetic/function.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/function.3.0.xml 3.0 - - footnote - function @@ -28,9 +25,6 @@ kind - - level - measure diff --git a/data/synthetic/function.3.0.xml b/data/synthetic/function.3.0.xml index b93fadf30..113618511 100644 --- a/data/synthetic/function.3.0.xml +++ b/data/synthetic/function.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -18,8 +14,6 @@ x major - x - x 1 diff --git a/data/synthetic/glass.3.0.features.xml b/data/synthetic/glass.3.0.features.xml index 0a46dbd49..5e53ff1a1 100644 --- a/data/synthetic/glass.3.0.features.xml +++ b/data/synthetic/glass.3.0.features.xml @@ -11,15 +11,9 @@ direction-type - - footnote - glass - - level - measure diff --git a/data/synthetic/glass.3.0.xml b/data/synthetic/glass.3.0.xml index de1c92d73..1f1141908 100644 --- a/data/synthetic/glass.3.0.xml +++ b/data/synthetic/glass.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ wind chimes - x - x 1 1 diff --git a/data/synthetic/glass.3.1.features.xml b/data/synthetic/glass.3.1.features.xml index 4a9f1d227..c350dbfd4 100644 --- a/data/synthetic/glass.3.1.features.xml +++ b/data/synthetic/glass.3.1.features.xml @@ -11,18 +11,12 @@ direction-type - - footnote - glass smufl - - level - measure diff --git a/data/synthetic/glass.3.1.xml b/data/synthetic/glass.3.1.xml index 33be60484..fb52009f4 100644 --- a/data/synthetic/glass.3.1.xml +++ b/data/synthetic/glass.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ glass harmonica - x - x 1 1 diff --git a/data/synthetic/glissando.3.0.features.xml b/data/synthetic/glissando.3.0.features.xml index cdc85931d..54420851d 100644 --- a/data/synthetic/glissando.3.0.features.xml +++ b/data/synthetic/glissando.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/glissando.3.0.xml 3.0 - - footnote - glissando @@ -30,9 +27,6 @@ grace - - level - measure diff --git a/data/synthetic/glissando.3.0.xml b/data/synthetic/glissando.3.0.xml index f43830db4..6e1b7d2f6 100644 --- a/data/synthetic/glissando.3.0.xml +++ b/data/synthetic/glissando.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/glissando.3.1.features.xml b/data/synthetic/glissando.3.1.features.xml index f1d3857a2..9cd99b951 100644 --- a/data/synthetic/glissando.3.1.features.xml +++ b/data/synthetic/glissando.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/glissando.3.1.xml 3.1 - - footnote - glissando @@ -31,9 +28,6 @@ grace - - level - measure diff --git a/data/synthetic/glissando.3.1.xml b/data/synthetic/glissando.3.1.xml index 85d88b1c9..50fb59441 100644 --- a/data/synthetic/glissando.3.1.xml +++ b/data/synthetic/glissando.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/glyph.3.1.features.xml b/data/synthetic/glyph.3.1.features.xml index 0e28f96e9..7517bd233 100644 --- a/data/synthetic/glyph.3.1.features.xml +++ b/data/synthetic/glyph.3.1.features.xml @@ -11,9 +11,6 @@ defaults - - footnote - glyph @@ -23,9 +20,6 @@ grace - - level - measure diff --git a/data/synthetic/glyph.3.1.xml b/data/synthetic/glyph.3.1.xml index f92f0dd19..eabfbce57 100644 --- a/data/synthetic/glyph.3.1.xml +++ b/data/synthetic/glyph.3.1.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/golpe.3.1.features.xml b/data/synthetic/golpe.3.1.features.xml index 6865ac91e..738374c54 100644 --- a/data/synthetic/golpe.3.1.features.xml +++ b/data/synthetic/golpe.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/golpe.3.1.xml 3.1 - - footnote - golpe @@ -26,9 +23,6 @@ grace - - level - measure diff --git a/data/synthetic/golpe.3.1.xml b/data/synthetic/golpe.3.1.xml index 86f12af87..cdbe482be 100644 --- a/data/synthetic/golpe.3.1.xml +++ b/data/synthetic/golpe.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/grace.3.0.features.xml b/data/synthetic/grace.3.0.features.xml index f8a28e3d0..eb04950f1 100644 --- a/data/synthetic/grace.3.0.features.xml +++ b/data/synthetic/grace.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/grace.3.0.xml 3.0 - - footnote - grace @@ -17,9 +14,6 @@ steal-time-previous - - level - measure diff --git a/data/synthetic/grace.3.0.xml b/data/synthetic/grace.3.0.xml index accfdf52b..5c37708d2 100644 --- a/data/synthetic/grace.3.0.xml +++ b/data/synthetic/grace.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-abbreviation-display.3.0.features.xml b/data/synthetic/group-abbreviation-display.3.0.features.xml index bacc07693..c94f31bd4 100644 --- a/data/synthetic/group-abbreviation-display.3.0.features.xml +++ b/data/synthetic/group-abbreviation-display.3.0.features.xml @@ -8,9 +8,6 @@ display-text - - footnote - grace @@ -20,9 +17,6 @@ print-object - - level - measure diff --git a/data/synthetic/group-abbreviation-display.3.0.xml b/data/synthetic/group-abbreviation-display.3.0.xml index 53c387c8f..0fb9cb925 100644 --- a/data/synthetic/group-abbreviation-display.3.0.xml +++ b/data/synthetic/group-abbreviation-display.3.0.xml @@ -5,15 +5,11 @@ x - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-abbreviation.3.0.features.xml b/data/synthetic/group-abbreviation.3.0.features.xml index c68d1f410..0233f0f49 100644 --- a/data/synthetic/group-abbreviation.3.0.features.xml +++ b/data/synthetic/group-abbreviation.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/group-abbreviation.3.0.xml 3.0 - - footnote - grace @@ -26,9 +23,6 @@ relative-y - - level - measure diff --git a/data/synthetic/group-abbreviation.3.0.xml b/data/synthetic/group-abbreviation.3.0.xml index a99f10f2e..df0ad34d9 100644 --- a/data/synthetic/group-abbreviation.3.0.xml +++ b/data/synthetic/group-abbreviation.3.0.xml @@ -3,15 +3,11 @@ x - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-barline.3.0.features.xml b/data/synthetic/group-barline.3.0.features.xml index 16d46412c..1a360d3cc 100644 --- a/data/synthetic/group-barline.3.0.features.xml +++ b/data/synthetic/group-barline.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/group-barline.3.0.xml 3.0 - - footnote - grace @@ -17,9 +14,6 @@ color - - level - measure diff --git a/data/synthetic/group-barline.3.0.xml b/data/synthetic/group-barline.3.0.xml index a8b287343..1e8c59b7a 100644 --- a/data/synthetic/group-barline.3.0.xml +++ b/data/synthetic/group-barline.3.0.xml @@ -3,15 +3,11 @@ yes - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-link.4.0.features.xml b/data/synthetic/group-link.4.0.features.xml index 6a5135b8c..691915fcd 100644 --- a/data/synthetic/group-link.4.0.features.xml +++ b/data/synthetic/group-link.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/group-link.4.0.xml 4.0 - - footnote - grace group-link - - level - measure diff --git a/data/synthetic/group-link.4.0.xml b/data/synthetic/group-link.4.0.xml index acafb224a..2339d49c8 100644 --- a/data/synthetic/group-link.4.0.xml +++ b/data/synthetic/group-link.4.0.xml @@ -2,8 +2,6 @@ - x - x @@ -12,8 +10,6 @@ x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-name-display.3.0.features.xml b/data/synthetic/group-name-display.3.0.features.xml index de3a281fd..11aa2d07e 100644 --- a/data/synthetic/group-name-display.3.0.features.xml +++ b/data/synthetic/group-name-display.3.0.features.xml @@ -8,9 +8,6 @@ display-text - - footnote - grace @@ -20,9 +17,6 @@ print-object - - level - measure diff --git a/data/synthetic/group-name-display.3.0.xml b/data/synthetic/group-name-display.3.0.xml index 509bfa90e..333c4b800 100644 --- a/data/synthetic/group-name-display.3.0.xml +++ b/data/synthetic/group-name-display.3.0.xml @@ -5,15 +5,11 @@ x - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-name.3.0.features.xml b/data/synthetic/group-name.3.0.features.xml index 7ca3644e1..895c05ecd 100644 --- a/data/synthetic/group-name.3.0.features.xml +++ b/data/synthetic/group-name.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/group-name.3.0.xml 3.0 - - footnote - grace @@ -26,9 +23,6 @@ relative-y - - level - measure diff --git a/data/synthetic/group-name.3.0.xml b/data/synthetic/group-name.3.0.xml index a8c0d89a2..f2dc402ab 100644 --- a/data/synthetic/group-name.3.0.xml +++ b/data/synthetic/group-name.3.0.xml @@ -3,15 +3,11 @@ x - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-symbol.3.0.features.xml b/data/synthetic/group-symbol.3.0.features.xml index 5b345a8a8..5f11cdc29 100644 --- a/data/synthetic/group-symbol.3.0.features.xml +++ b/data/synthetic/group-symbol.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/group-symbol.3.0.xml 3.0 - - footnote - grace @@ -21,9 +18,6 @@ relative-y - - level - measure diff --git a/data/synthetic/group-symbol.3.0.xml b/data/synthetic/group-symbol.3.0.xml index 0f9b2aeb5..3f6147931 100644 --- a/data/synthetic/group-symbol.3.0.xml +++ b/data/synthetic/group-symbol.3.0.xml @@ -3,15 +3,11 @@ none - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group-time.3.0.features.xml b/data/synthetic/group-time.3.0.features.xml index a2e7289cf..725af1c83 100644 --- a/data/synthetic/group-time.3.0.features.xml +++ b/data/synthetic/group-time.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/group-time.3.0.xml 3.0 - - footnote - grace group-time - - level - measure diff --git a/data/synthetic/group-time.3.0.xml b/data/synthetic/group-time.3.0.xml index 146143e74..75d0eaa97 100644 --- a/data/synthetic/group-time.3.0.xml +++ b/data/synthetic/group-time.3.0.xml @@ -3,15 +3,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/group.3.0.features.xml b/data/synthetic/group.3.0.features.xml index e960ac5cc..4a8628387 100644 --- a/data/synthetic/group.3.0.features.xml +++ b/data/synthetic/group.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/group.3.0.xml 3.0 - - footnote - grace group - - level - measure diff --git a/data/synthetic/group.3.0.xml b/data/synthetic/group.3.0.xml index 69ec0ab68..2eeb10f77 100644 --- a/data/synthetic/group.3.0.xml +++ b/data/synthetic/group.3.0.xml @@ -2,16 +2,12 @@ - x - x x 1 - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/grouping.3.0.features.xml b/data/synthetic/grouping.3.0.features.xml index 7e6a68f12..f3e72fc7f 100644 --- a/data/synthetic/grouping.3.0.features.xml +++ b/data/synthetic/grouping.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/grouping.3.0.xml 3.0 - - footnote - grouping @@ -16,9 +13,6 @@ type - - level - measure diff --git a/data/synthetic/grouping.3.0.xml b/data/synthetic/grouping.3.0.xml index 19343f71c..3c01b3e6c 100644 --- a/data/synthetic/grouping.3.0.xml +++ b/data/synthetic/grouping.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/grouping.3.1.features.xml b/data/synthetic/grouping.3.1.features.xml index 4e82cc1d6..86624fd1c 100644 --- a/data/synthetic/grouping.3.1.features.xml +++ b/data/synthetic/grouping.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/grouping.3.1.xml 3.1 - - footnote - grouping @@ -17,9 +14,6 @@ type - - level - measure diff --git a/data/synthetic/grouping.3.1.xml b/data/synthetic/grouping.3.1.xml index bb3f63b84..932480466 100644 --- a/data/synthetic/grouping.3.1.xml +++ b/data/synthetic/grouping.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/half-muted.3.1.features.xml b/data/synthetic/half-muted.3.1.features.xml index a0f0e2a47..6714a125a 100644 --- a/data/synthetic/half-muted.3.1.features.xml +++ b/data/synthetic/half-muted.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/half-muted.3.1.xml 3.1 - - footnote - grace @@ -27,9 +24,6 @@ smufl - - level - measure diff --git a/data/synthetic/half-muted.3.1.xml b/data/synthetic/half-muted.3.1.xml index 1c02e0893..002bbb8bc 100644 --- a/data/synthetic/half-muted.3.1.xml +++ b/data/synthetic/half-muted.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/hammer-on.3.0.features.xml b/data/synthetic/hammer-on.3.0.features.xml index d4ece06be..4ad0124b4 100644 --- a/data/synthetic/hammer-on.3.0.features.xml +++ b/data/synthetic/hammer-on.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/hammer-on.3.0.xml 3.0 - - footnote - grace @@ -28,9 +25,6 @@ type - - level - measure diff --git a/data/synthetic/hammer-on.3.0.xml b/data/synthetic/hammer-on.3.0.xml index 2ec663a95..d7878a3c5 100644 --- a/data/synthetic/hammer-on.3.0.xml +++ b/data/synthetic/hammer-on.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/handbell.3.0.features.xml b/data/synthetic/handbell.3.0.features.xml index 27f2e1b1b..ca6c45479 100644 --- a/data/synthetic/handbell.3.0.features.xml +++ b/data/synthetic/handbell.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/handbell.3.0.xml 3.0 - - footnote - grace @@ -26,9 +23,6 @@ relative-y - - level - measure diff --git a/data/synthetic/handbell.3.0.xml b/data/synthetic/handbell.3.0.xml index 2e97934c8..fe98d7356 100644 --- a/data/synthetic/handbell.3.0.xml +++ b/data/synthetic/handbell.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x damp diff --git a/data/synthetic/harmon-closed.3.1.features.xml b/data/synthetic/harmon-closed.3.1.features.xml index 1b0bd4ae3..b9b037f1a 100644 --- a/data/synthetic/harmon-closed.3.1.features.xml +++ b/data/synthetic/harmon-closed.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/harmon-closed.3.1.xml 3.1 - - footnote - grace @@ -20,9 +17,6 @@ harmon-mute - - level - measure diff --git a/data/synthetic/harmon-closed.3.1.xml b/data/synthetic/harmon-closed.3.1.xml index e71ca82f2..65fcb3b27 100644 --- a/data/synthetic/harmon-closed.3.1.xml +++ b/data/synthetic/harmon-closed.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x yes diff --git a/data/synthetic/harmon-mute.3.1.features.xml b/data/synthetic/harmon-mute.3.1.features.xml index a55d5ddb3..8a627c5de 100644 --- a/data/synthetic/harmon-mute.3.1.features.xml +++ b/data/synthetic/harmon-mute.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/harmon-mute.3.1.xml 3.1 - - footnote - grace @@ -29,9 +26,6 @@ relative-y - - level - measure diff --git a/data/synthetic/harmon-mute.3.1.xml b/data/synthetic/harmon-mute.3.1.xml index 5afc011c6..650f3a9cc 100644 --- a/data/synthetic/harmon-mute.3.1.xml +++ b/data/synthetic/harmon-mute.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x yes diff --git a/data/synthetic/harmonic.3.0.features.xml b/data/synthetic/harmonic.3.0.features.xml index 67e5bfb47..4b73bc897 100644 --- a/data/synthetic/harmonic.3.0.features.xml +++ b/data/synthetic/harmonic.3.0.features.xml @@ -8,9 +8,6 @@ base-pitch - - footnote - grace @@ -30,9 +27,6 @@ relative-y - - level - measure diff --git a/data/synthetic/harmonic.3.0.xml b/data/synthetic/harmonic.3.0.xml index 3eaa686f6..c0b7365a5 100644 --- a/data/synthetic/harmonic.3.0.xml +++ b/data/synthetic/harmonic.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/harmony.3.0.features.xml b/data/synthetic/harmony.3.0.features.xml index 37d7804c7..cc7118a78 100644 --- a/data/synthetic/harmony.3.0.features.xml +++ b/data/synthetic/harmony.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/harmony.3.0.xml 3.0 - - footnote - harmony @@ -29,9 +26,6 @@ kind - - level - measure diff --git a/data/synthetic/harmony.3.0.xml b/data/synthetic/harmony.3.0.xml index ebddc353b..860c80ebc 100644 --- a/data/synthetic/harmony.3.0.xml +++ b/data/synthetic/harmony.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ A major - x - x 1 diff --git a/data/synthetic/harmony.3.1.features.xml b/data/synthetic/harmony.3.1.features.xml index 5a44ba8db..224960bc0 100644 --- a/data/synthetic/harmony.3.1.features.xml +++ b/data/synthetic/harmony.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/harmony.3.1.xml 3.1 - - footnote - harmony @@ -30,9 +27,6 @@ kind - - level - measure diff --git a/data/synthetic/harmony.3.1.xml b/data/synthetic/harmony.3.1.xml index 5da69e314..7307e1395 100644 --- a/data/synthetic/harmony.3.1.xml +++ b/data/synthetic/harmony.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ A major - x - x 1 diff --git a/data/synthetic/harmony.4.0.features.xml b/data/synthetic/harmony.4.0.features.xml index 912d26b53..60a9fada1 100644 --- a/data/synthetic/harmony.4.0.features.xml +++ b/data/synthetic/harmony.4.0.features.xml @@ -5,9 +5,6 @@ synthetic/harmony.4.0.xml 4.0 - - footnote - harmony @@ -32,9 +29,6 @@ kind - - level - measure diff --git a/data/synthetic/harmony.4.0.xml b/data/synthetic/harmony.4.0.xml index 00cdefb3f..a80862357 100644 --- a/data/synthetic/harmony.4.0.xml +++ b/data/synthetic/harmony.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ A major - x - x 1 diff --git a/data/synthetic/harp-pedals.3.0.features.xml b/data/synthetic/harp-pedals.3.0.features.xml index c704fd3ee..a1b46332d 100644 --- a/data/synthetic/harp-pedals.3.0.features.xml +++ b/data/synthetic/harp-pedals.3.0.features.xml @@ -11,9 +11,6 @@ direction-type - - footnote - harp-pedals @@ -30,9 +27,6 @@ valign - - level - measure diff --git a/data/synthetic/harp-pedals.3.0.xml b/data/synthetic/harp-pedals.3.0.xml index 620a2ce2a..cd1022f60 100644 --- a/data/synthetic/harp-pedals.3.0.xml +++ b/data/synthetic/harp-pedals.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/harp-pedals.3.1.features.xml b/data/synthetic/harp-pedals.3.1.features.xml index 97f3f0fc8..ae67fe98c 100644 --- a/data/synthetic/harp-pedals.3.1.features.xml +++ b/data/synthetic/harp-pedals.3.1.features.xml @@ -11,9 +11,6 @@ direction-type - - footnote - harp-pedals @@ -31,9 +28,6 @@ valign - - level - measure diff --git a/data/synthetic/harp-pedals.3.1.xml b/data/synthetic/harp-pedals.3.1.xml index 2cc3fb6fb..4b3bc474e 100644 --- a/data/synthetic/harp-pedals.3.1.xml +++ b/data/synthetic/harp-pedals.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/haydn.3.1.features.xml b/data/synthetic/haydn.3.1.features.xml index 513b22a29..68356bb92 100644 --- a/data/synthetic/haydn.3.1.features.xml +++ b/data/synthetic/haydn.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/haydn.3.1.xml 3.1 - - footnote - grace @@ -33,9 +30,6 @@ two-note-turn - - level - measure diff --git a/data/synthetic/haydn.3.1.xml b/data/synthetic/haydn.3.1.xml index a4fe73b09..99e522e17 100644 --- a/data/synthetic/haydn.3.1.xml +++ b/data/synthetic/haydn.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/heel.3.0.features.xml b/data/synthetic/heel.3.0.features.xml index 5ef247908..f51d7f9f7 100644 --- a/data/synthetic/heel.3.0.features.xml +++ b/data/synthetic/heel.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/heel.3.0.xml 3.0 - - footnote - grace @@ -27,9 +24,6 @@ substitution - - level - measure diff --git a/data/synthetic/heel.3.0.xml b/data/synthetic/heel.3.0.xml index fced318d2..4f63ebec7 100644 --- a/data/synthetic/heel.3.0.xml +++ b/data/synthetic/heel.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/hole-closed.3.0.features.xml b/data/synthetic/hole-closed.3.0.features.xml index b9f34025a..52e2c7502 100644 --- a/data/synthetic/hole-closed.3.0.features.xml +++ b/data/synthetic/hole-closed.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/hole-closed.3.0.xml 3.0 - - footnote - grace @@ -20,9 +17,6 @@ location - - level - measure diff --git a/data/synthetic/hole-closed.3.0.xml b/data/synthetic/hole-closed.3.0.xml index e4f157cfb..cbf415d21 100644 --- a/data/synthetic/hole-closed.3.0.xml +++ b/data/synthetic/hole-closed.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x yes diff --git a/data/synthetic/hole-shape.3.0.features.xml b/data/synthetic/hole-shape.3.0.features.xml index 9dc07c540..da1f85699 100644 --- a/data/synthetic/hole-shape.3.0.features.xml +++ b/data/synthetic/hole-shape.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/hole-shape.3.0.xml 3.0 - - footnote - grace @@ -20,9 +17,6 @@ hole-shape - - level - measure diff --git a/data/synthetic/hole-shape.3.0.xml b/data/synthetic/hole-shape.3.0.xml index fb10b2da3..7564945f8 100644 --- a/data/synthetic/hole-shape.3.0.xml +++ b/data/synthetic/hole-shape.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x yes diff --git a/data/synthetic/hole-type.3.0.features.xml b/data/synthetic/hole-type.3.0.features.xml index ca97e9250..00ec6dbc9 100644 --- a/data/synthetic/hole-type.3.0.features.xml +++ b/data/synthetic/hole-type.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/hole-type.3.0.xml 3.0 - - footnote - grace @@ -20,9 +17,6 @@ hole-type - - level - measure diff --git a/data/synthetic/hole-type.3.0.xml b/data/synthetic/hole-type.3.0.xml index 48bfc0780..1f52e6b1c 100644 --- a/data/synthetic/hole-type.3.0.xml +++ b/data/synthetic/hole-type.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x 1 diff --git a/data/synthetic/hole.3.0.features.xml b/data/synthetic/hole.3.0.features.xml index 32452482f..e45605dbd 100644 --- a/data/synthetic/hole.3.0.features.xml +++ b/data/synthetic/hole.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/hole.3.0.xml 3.0 - - footnote - grace @@ -29,9 +26,6 @@ hole-closed - - level - measure diff --git a/data/synthetic/hole.3.0.xml b/data/synthetic/hole.3.0.xml index 114fbd5af..97d97fe4e 100644 --- a/data/synthetic/hole.3.0.xml +++ b/data/synthetic/hole.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x yes diff --git a/data/synthetic/humming.3.0.features.xml b/data/synthetic/humming.3.0.features.xml index 54bd954b7..5a4f770f3 100644 --- a/data/synthetic/humming.3.0.features.xml +++ b/data/synthetic/humming.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/humming.3.0.xml 3.0 - - footnote - grace humming - - level - lyric diff --git a/data/synthetic/humming.3.0.xml b/data/synthetic/humming.3.0.xml index e6c599feb..8a890a2bd 100644 --- a/data/synthetic/humming.3.0.xml +++ b/data/synthetic/humming.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,14 +17,10 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/image.3.0.features.xml b/data/synthetic/image.3.0.features.xml index a44928d59..85c6e3628 100644 --- a/data/synthetic/image.3.0.features.xml +++ b/data/synthetic/image.3.0.features.xml @@ -11,9 +11,6 @@ direction-type - - footnote - image @@ -27,9 +24,6 @@ valign - - level - measure diff --git a/data/synthetic/image.3.0.xml b/data/synthetic/image.3.0.xml index c4149dd4b..d83bc8d2b 100644 --- a/data/synthetic/image.3.0.xml +++ b/data/synthetic/image.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/image.3.1.features.xml b/data/synthetic/image.3.1.features.xml index 17d3ce4a5..7df294dca 100644 --- a/data/synthetic/image.3.1.features.xml +++ b/data/synthetic/image.3.1.features.xml @@ -11,9 +11,6 @@ direction-type - - footnote - image @@ -30,9 +27,6 @@ width - - level - measure diff --git a/data/synthetic/image.3.1.xml b/data/synthetic/image.3.1.xml index 4e1d6fe9d..2a9e92bee 100644 --- a/data/synthetic/image.3.1.xml +++ b/data/synthetic/image.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/instrument-abbreviation.3.0.features.xml b/data/synthetic/instrument-abbreviation.3.0.features.xml index 614b49cef..464db8843 100644 --- a/data/synthetic/instrument-abbreviation.3.0.features.xml +++ b/data/synthetic/instrument-abbreviation.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/instrument-abbreviation.3.0.xml 3.0 - - footnote - grace @@ -17,9 +14,6 @@ instrument-name - - level - measure diff --git a/data/synthetic/instrument-abbreviation.3.0.xml b/data/synthetic/instrument-abbreviation.3.0.xml index 4152bee7f..882affe91 100644 --- a/data/synthetic/instrument-abbreviation.3.0.xml +++ b/data/synthetic/instrument-abbreviation.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -14,8 +12,6 @@ - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/instrument-change.4.0.features.xml b/data/synthetic/instrument-change.4.0.features.xml index 3ee58b310..76411e080 100644 --- a/data/synthetic/instrument-change.4.0.features.xml +++ b/data/synthetic/instrument-change.4.0.features.xml @@ -11,18 +11,12 @@ direction-type - - footnote - instrument-change id - - level - measure diff --git a/data/synthetic/instrument-change.4.0.xml b/data/synthetic/instrument-change.4.0.xml index a752c3aea..190281a5a 100644 --- a/data/synthetic/instrument-change.4.0.xml +++ b/data/synthetic/instrument-change.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/instrument-link.4.0.features.xml b/data/synthetic/instrument-link.4.0.features.xml index 78741e573..0eb0e83d3 100644 --- a/data/synthetic/instrument-link.4.0.features.xml +++ b/data/synthetic/instrument-link.4.0.features.xml @@ -5,9 +5,6 @@ synthetic/instrument-link.4.0.xml 4.0 - - footnote - grace @@ -17,9 +14,6 @@ id - - level - measure diff --git a/data/synthetic/instrument-link.4.0.xml b/data/synthetic/instrument-link.4.0.xml index 1d15584b9..966c035ba 100644 --- a/data/synthetic/instrument-link.4.0.xml +++ b/data/synthetic/instrument-link.4.0.xml @@ -2,8 +2,6 @@ - x - x @@ -12,8 +10,6 @@ x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/instrument-name.3.0.features.xml b/data/synthetic/instrument-name.3.0.features.xml index f7257fd89..f23a646e7 100644 --- a/data/synthetic/instrument-name.3.0.features.xml +++ b/data/synthetic/instrument-name.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/instrument-name.3.0.xml 3.0 - - footnote - grace instrument-name - - level - measure diff --git a/data/synthetic/instrument-name.3.0.xml b/data/synthetic/instrument-name.3.0.xml index 760480696..1774f375f 100644 --- a/data/synthetic/instrument-name.3.0.xml +++ b/data/synthetic/instrument-name.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -13,8 +11,6 @@ - x - x @@ -25,8 +21,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/instrument-sound-enum.3.0.features.xml b/data/synthetic/instrument-sound-enum.3.0.features.xml index 9259b789d..33edfa23c 100644 --- a/data/synthetic/instrument-sound-enum.3.0.features.xml +++ b/data/synthetic/instrument-sound-enum.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/instrument-sound-enum.3.0.xml 3.0 - - footnote - grace @@ -17,9 +14,6 @@ instrument-sound - - level - measure diff --git a/data/synthetic/instrument-sound-enum.3.0.xml b/data/synthetic/instrument-sound-enum.3.0.xml index b00742471..76935f5a3 100644 --- a/data/synthetic/instrument-sound-enum.3.0.xml +++ b/data/synthetic/instrument-sound-enum.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -14,8 +12,6 @@ - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/instrument-sound.3.0.features.xml b/data/synthetic/instrument-sound.3.0.features.xml index b1f04c4f9..f060deac2 100644 --- a/data/synthetic/instrument-sound.3.0.features.xml +++ b/data/synthetic/instrument-sound.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/instrument-sound.3.0.xml 3.0 - - footnote - grace @@ -17,9 +14,6 @@ instrument-sound - - level - measure diff --git a/data/synthetic/instrument-sound.3.0.xml b/data/synthetic/instrument-sound.3.0.xml index 205c8db04..a1c980343 100644 --- a/data/synthetic/instrument-sound.3.0.xml +++ b/data/synthetic/instrument-sound.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -14,8 +12,6 @@ - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/interchangeable.3.0.features.xml b/data/synthetic/interchangeable.3.0.features.xml index 47676cb2a..48eeb4486 100644 --- a/data/synthetic/interchangeable.3.0.features.xml +++ b/data/synthetic/interchangeable.3.0.features.xml @@ -14,9 +14,6 @@ beats - - footnote - interchangeable @@ -24,9 +21,6 @@ symbol - - level - measure diff --git a/data/synthetic/interchangeable.3.0.xml b/data/synthetic/interchangeable.3.0.xml index dc7712724..489d418a2 100644 --- a/data/synthetic/interchangeable.3.0.xml +++ b/data/synthetic/interchangeable.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/inversion.4.0.features.xml b/data/synthetic/inversion.4.0.features.xml index 1aa206760..a526d1a13 100644 --- a/data/synthetic/inversion.4.0.features.xml +++ b/data/synthetic/inversion.4.0.features.xml @@ -5,9 +5,6 @@ synthetic/inversion.4.0.xml 4.0 - - footnote - harmony @@ -29,9 +26,6 @@ kind - - level - measure diff --git a/data/synthetic/inversion.4.0.xml b/data/synthetic/inversion.4.0.xml index c7108a8a1..a5850564c 100644 --- a/data/synthetic/inversion.4.0.xml +++ b/data/synthetic/inversion.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ major 1 - x - x 1 diff --git a/data/synthetic/inverted-mordent.3.0.features.xml b/data/synthetic/inverted-mordent.3.0.features.xml index 2c3fd62b3..707cdceff 100644 --- a/data/synthetic/inverted-mordent.3.0.features.xml +++ b/data/synthetic/inverted-mordent.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/inverted-mordent.3.0.xml 3.0 - - footnote - grace @@ -36,9 +33,6 @@ two-note-turn - - level - measure diff --git a/data/synthetic/inverted-mordent.3.0.xml b/data/synthetic/inverted-mordent.3.0.xml index 47ef7c395..1b86a1244 100644 --- a/data/synthetic/inverted-mordent.3.0.xml +++ b/data/synthetic/inverted-mordent.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/inverted-turn.3.0.features.xml b/data/synthetic/inverted-turn.3.0.features.xml index 4d6087572..16809c5a7 100644 --- a/data/synthetic/inverted-turn.3.0.features.xml +++ b/data/synthetic/inverted-turn.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/inverted-turn.3.0.xml 3.0 - - footnote - grace @@ -34,9 +31,6 @@ two-note-turn - - level - measure diff --git a/data/synthetic/inverted-turn.3.0.xml b/data/synthetic/inverted-turn.3.0.xml index ed2497304..9d4f7f451 100644 --- a/data/synthetic/inverted-turn.3.0.xml +++ b/data/synthetic/inverted-turn.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/inverted-vertical-turn.3.1.features.xml b/data/synthetic/inverted-vertical-turn.3.1.features.xml index 8ca9600db..452f8d10b 100644 --- a/data/synthetic/inverted-vertical-turn.3.1.features.xml +++ b/data/synthetic/inverted-vertical-turn.3.1.features.xml @@ -5,9 +5,6 @@ synthetic/inverted-vertical-turn.3.1.xml 3.1 - - footnote - grace @@ -33,9 +30,6 @@ two-note-turn - - level - measure diff --git a/data/synthetic/inverted-vertical-turn.3.1.xml b/data/synthetic/inverted-vertical-turn.3.1.xml index 456ab4ef5..8f1059e71 100644 --- a/data/synthetic/inverted-vertical-turn.3.1.xml +++ b/data/synthetic/inverted-vertical-turn.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/ipa.3.0.features.xml b/data/synthetic/ipa.3.0.features.xml index d43a7db28..ab2b1b35b 100644 --- a/data/synthetic/ipa.3.0.features.xml +++ b/data/synthetic/ipa.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/ipa.3.0.xml 3.0 - - footnote - grace ipa - - level - measure diff --git a/data/synthetic/ipa.3.0.xml b/data/synthetic/ipa.3.0.xml index 28158a4d2..b6dd6fe5f 100644 --- a/data/synthetic/ipa.3.0.xml +++ b/data/synthetic/ipa.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/key-octave.3.0.features.xml b/data/synthetic/key-octave.3.0.features.xml index 6f8068ea0..077ec2355 100644 --- a/data/synthetic/key-octave.3.0.features.xml +++ b/data/synthetic/key-octave.3.0.features.xml @@ -11,9 +11,6 @@ fifths - - footnote - key @@ -24,9 +21,6 @@ number - - level - measure diff --git a/data/synthetic/key-octave.3.0.xml b/data/synthetic/key-octave.3.0.xml index 8ab07c6d0..01c8e31ec 100644 --- a/data/synthetic/key-octave.3.0.xml +++ b/data/synthetic/key-octave.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 1 diff --git a/data/synthetic/key.3.0.features.xml b/data/synthetic/key.3.0.features.xml index ec875b73d..d1698899d 100644 --- a/data/synthetic/key.3.0.features.xml +++ b/data/synthetic/key.3.0.features.xml @@ -11,9 +11,6 @@ fifths - - footnote - key @@ -30,9 +27,6 @@ relative-y - - level - measure diff --git a/data/synthetic/key.3.0.xml b/data/synthetic/key.3.0.xml index 9511ae3ff..775cd50ed 100644 --- a/data/synthetic/key.3.0.xml +++ b/data/synthetic/key.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/key.3.1.features.xml b/data/synthetic/key.3.1.features.xml index acf904ddf..8470eac76 100644 --- a/data/synthetic/key.3.1.features.xml +++ b/data/synthetic/key.3.1.features.xml @@ -11,9 +11,6 @@ fifths - - footnote - key @@ -31,9 +28,6 @@ relative-y - - level - measure diff --git a/data/synthetic/key.3.1.xml b/data/synthetic/key.3.1.xml index 10d38b37c..c57f564cc 100644 --- a/data/synthetic/key.3.1.xml +++ b/data/synthetic/key.3.1.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/kind.3.0.features.xml b/data/synthetic/kind.3.0.features.xml index 909e89bd0..916d19109 100644 --- a/data/synthetic/kind.3.0.features.xml +++ b/data/synthetic/kind.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/kind.3.0.xml 3.0 - - footnote - harmony @@ -32,9 +29,6 @@ valign - - level - measure diff --git a/data/synthetic/kind.3.0.xml b/data/synthetic/kind.3.0.xml index f9b499497..888679707 100644 --- a/data/synthetic/kind.3.0.xml +++ b/data/synthetic/kind.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ A major - x - x 1 diff --git a/data/synthetic/laughing.3.0.features.xml b/data/synthetic/laughing.3.0.features.xml index 4e480ca4e..8060e4b5b 100644 --- a/data/synthetic/laughing.3.0.features.xml +++ b/data/synthetic/laughing.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/laughing.3.0.xml 3.0 - - footnote - grace laughing - - level - lyric diff --git a/data/synthetic/laughing.3.0.xml b/data/synthetic/laughing.3.0.xml index d177a96c8..5ea056548 100644 --- a/data/synthetic/laughing.3.0.xml +++ b/data/synthetic/laughing.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,14 +17,10 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/left-divider.3.0.features.xml b/data/synthetic/left-divider.3.0.features.xml index 847bab17e..bf4fbf72d 100644 --- a/data/synthetic/left-divider.3.0.features.xml +++ b/data/synthetic/left-divider.3.0.features.xml @@ -8,9 +8,6 @@ defaults - - footnote - grace @@ -31,9 +28,6 @@ valign - - level - measure diff --git a/data/synthetic/left-divider.3.0.xml b/data/synthetic/left-divider.3.0.xml index b60f03cf4..c9d0c13d2 100644 --- a/data/synthetic/left-divider.3.0.xml +++ b/data/synthetic/left-divider.3.0.xml @@ -10,15 +10,11 @@ - x - x x - x - x @@ -29,8 +25,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/level.3.0.features.xml b/data/synthetic/level.3.0.features.xml index b1129d243..6b6675e3b 100644 --- a/data/synthetic/level.3.0.features.xml +++ b/data/synthetic/level.3.0.features.xml @@ -5,9 +5,6 @@ synthetic/level.3.0.xml 3.0 - - footnote - grace diff --git a/data/synthetic/level.3.0.xml b/data/synthetic/level.3.0.xml index f9cd4957f..429b67453 100644 --- a/data/synthetic/level.3.0.xml +++ b/data/synthetic/level.3.0.xml @@ -2,15 +2,12 @@ - x x x - x - x @@ -21,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/level.4.0.features.xml b/data/synthetic/level.4.0.features.xml index 9e2adb893..6c0215c2b 100644 --- a/data/synthetic/level.4.0.features.xml +++ b/data/synthetic/level.4.0.features.xml @@ -5,9 +5,6 @@ synthetic/level.4.0.xml 4.0 - - footnote - grace diff --git a/data/synthetic/level.4.0.xml b/data/synthetic/level.4.0.xml index dd33b7014..c7563dddb 100644 --- a/data/synthetic/level.4.0.xml +++ b/data/synthetic/level.4.0.xml @@ -2,15 +2,12 @@ - x x x - x - x @@ -21,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/line-detail.4.0.features.xml b/data/synthetic/line-detail.4.0.features.xml index ad93db5a3..943cde23f 100644 --- a/data/synthetic/line-detail.4.0.features.xml +++ b/data/synthetic/line-detail.4.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - line-detail diff --git a/data/synthetic/line-detail.4.0.xml b/data/synthetic/line-detail.4.0.xml index 2b3208df5..c04828f4d 100644 --- a/data/synthetic/line-detail.4.0.xml +++ b/data/synthetic/line-detail.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/link.3.0.features.xml b/data/synthetic/link.3.0.features.xml index 05b49f79f..1b3889bda 100644 --- a/data/synthetic/link.3.0.features.xml +++ b/data/synthetic/link.3.0.features.xml @@ -15,15 +15,9 @@ type - - footnote - grace - - level - link diff --git a/data/synthetic/link.3.0.xml b/data/synthetic/link.3.0.xml index 981ee6bbd..9592e1ca4 100644 --- a/data/synthetic/link.3.0.xml +++ b/data/synthetic/link.3.0.xml @@ -6,15 +6,11 @@ - x - x x - x - x @@ -25,8 +21,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/listen.4.0.features.xml b/data/synthetic/listen.4.0.features.xml index c7ecf9d67..398657356 100644 --- a/data/synthetic/listen.4.0.features.xml +++ b/data/synthetic/listen.4.0.features.xml @@ -11,15 +11,9 @@ type - - footnote - grace - - level - listen diff --git a/data/synthetic/listen.4.0.xml b/data/synthetic/listen.4.0.xml index d498b0068..36dd1bd85 100644 --- a/data/synthetic/listen.4.0.xml +++ b/data/synthetic/listen.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/listening.4.0.features.xml b/data/synthetic/listening.4.0.features.xml index e4e62ec1a..55b5276d3 100644 --- a/data/synthetic/listening.4.0.features.xml +++ b/data/synthetic/listening.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - listening diff --git a/data/synthetic/listening.4.0.xml b/data/synthetic/listening.4.0.xml index fc2383708..3723cc0a4 100644 --- a/data/synthetic/listening.4.0.xml +++ b/data/synthetic/listening.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/lyric-font.3.0.features.xml b/data/synthetic/lyric-font.3.0.features.xml index 9227fe112..3981511a5 100644 --- a/data/synthetic/lyric-font.3.0.features.xml +++ b/data/synthetic/lyric-font.3.0.features.xml @@ -8,15 +8,9 @@ defaults - - footnote - grace - - level - lyric-font diff --git a/data/synthetic/lyric-font.3.0.xml b/data/synthetic/lyric-font.3.0.xml index 1436916ba..b655c0db6 100644 --- a/data/synthetic/lyric-font.3.0.xml +++ b/data/synthetic/lyric-font.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/lyric-language.3.0.features.xml b/data/synthetic/lyric-language.3.0.features.xml index d557fddeb..b46be9898 100644 --- a/data/synthetic/lyric-language.3.0.features.xml +++ b/data/synthetic/lyric-language.3.0.features.xml @@ -8,15 +8,9 @@ defaults - - footnote - grace - - level - lyric-language diff --git a/data/synthetic/lyric-language.3.0.xml b/data/synthetic/lyric-language.3.0.xml index 75262ffd5..79023c9ac 100644 --- a/data/synthetic/lyric-language.3.0.xml +++ b/data/synthetic/lyric-language.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/lyric.3.0.features.xml b/data/synthetic/lyric.3.0.features.xml index ab85fdaff..6e8de0852 100644 --- a/data/synthetic/lyric.3.0.features.xml +++ b/data/synthetic/lyric.3.0.features.xml @@ -8,15 +8,9 @@ elision - - footnote - grace - - level - lyric diff --git a/data/synthetic/lyric.3.0.xml b/data/synthetic/lyric.3.0.xml index 366497291..435f68e24 100644 --- a/data/synthetic/lyric.3.0.xml +++ b/data/synthetic/lyric.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,16 +17,12 @@ A 1 - x - x 1 1 x x x - x - x diff --git a/data/synthetic/lyric.3.1.features.xml b/data/synthetic/lyric.3.1.features.xml index f324d7f45..c31c426e3 100644 --- a/data/synthetic/lyric.3.1.features.xml +++ b/data/synthetic/lyric.3.1.features.xml @@ -8,15 +8,9 @@ elision - - footnote - grace - - level - lyric diff --git a/data/synthetic/lyric.3.1.xml b/data/synthetic/lyric.3.1.xml index b5903f5eb..b30009c7d 100644 --- a/data/synthetic/lyric.3.1.xml +++ b/data/synthetic/lyric.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,16 +17,12 @@ A 1 - x - x 1 1 x x x - x - x diff --git a/data/synthetic/measure-distance.3.0.features.xml b/data/synthetic/measure-distance.3.0.features.xml index 79a6073e1..1659d6034 100644 --- a/data/synthetic/measure-distance.3.0.features.xml +++ b/data/synthetic/measure-distance.3.0.features.xml @@ -5,12 +5,6 @@ synthetic/measure-distance.3.0.xml 3.0 - - footnote - - - level - measure diff --git a/data/synthetic/measure-distance.3.0.xml b/data/synthetic/measure-distance.3.0.xml index 4346eab0c..a16815710 100644 --- a/data/synthetic/measure-distance.3.0.xml +++ b/data/synthetic/measure-distance.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/measure-layout.3.0.features.xml b/data/synthetic/measure-layout.3.0.features.xml index 9b2be29fa..53056b085 100644 --- a/data/synthetic/measure-layout.3.0.features.xml +++ b/data/synthetic/measure-layout.3.0.features.xml @@ -5,12 +5,6 @@ synthetic/measure-layout.3.0.xml 3.0 - - footnote - - - level - measure diff --git a/data/synthetic/measure-layout.3.0.xml b/data/synthetic/measure-layout.3.0.xml index f6beb76fc..1b12b1e19 100644 --- a/data/synthetic/measure-layout.3.0.xml +++ b/data/synthetic/measure-layout.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/measure-numbering.3.0.features.xml b/data/synthetic/measure-numbering.3.0.features.xml index 954c4cb66..319924a9d 100644 --- a/data/synthetic/measure-numbering.3.0.features.xml +++ b/data/synthetic/measure-numbering.3.0.features.xml @@ -5,12 +5,6 @@ synthetic/measure-numbering.3.0.xml 3.0 - - footnote - - - level - measure diff --git a/data/synthetic/measure-numbering.3.0.xml b/data/synthetic/measure-numbering.3.0.xml index b82055491..735d15d2b 100644 --- a/data/synthetic/measure-numbering.3.0.xml +++ b/data/synthetic/measure-numbering.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/measure-numbering.4.0.features.xml b/data/synthetic/measure-numbering.4.0.features.xml index 75cc1e69c..d04054225 100644 --- a/data/synthetic/measure-numbering.4.0.features.xml +++ b/data/synthetic/measure-numbering.4.0.features.xml @@ -5,12 +5,6 @@ synthetic/measure-numbering.4.0.xml 4.0 - - footnote - - - level - measure diff --git a/data/synthetic/measure-numbering.4.0.xml b/data/synthetic/measure-numbering.4.0.xml index 675143624..8aa0e7698 100644 --- a/data/synthetic/measure-numbering.4.0.xml +++ b/data/synthetic/measure-numbering.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/measure-repeat.3.0.features.xml b/data/synthetic/measure-repeat.3.0.features.xml index adeaabeeb..17ab6e728 100644 --- a/data/synthetic/measure-repeat.3.0.features.xml +++ b/data/synthetic/measure-repeat.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/measure-repeat.3.0.xml b/data/synthetic/measure-repeat.3.0.xml index b85a3d977..24fe8b5d4 100644 --- a/data/synthetic/measure-repeat.3.0.xml +++ b/data/synthetic/measure-repeat.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/measure-style.3.0.features.xml b/data/synthetic/measure-style.3.0.features.xml index 7d7930240..1e3948061 100644 --- a/data/synthetic/measure-style.3.0.features.xml +++ b/data/synthetic/measure-style.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/measure-style.3.0.xml b/data/synthetic/measure-style.3.0.xml index b40406d6d..7f10999ff 100644 --- a/data/synthetic/measure-style.3.0.xml +++ b/data/synthetic/measure-style.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/measure-style.3.1.features.xml b/data/synthetic/measure-style.3.1.features.xml index 1cdcb4f9b..1fb947c86 100644 --- a/data/synthetic/measure-style.3.1.features.xml +++ b/data/synthetic/measure-style.3.1.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/measure-style.3.1.xml b/data/synthetic/measure-style.3.1.xml index e2ea98b75..9fea3621a 100644 --- a/data/synthetic/measure-style.3.1.xml +++ b/data/synthetic/measure-style.3.1.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/measure.3.0.features.xml b/data/synthetic/measure.3.0.features.xml index e7389ea40..dd2c134db 100644 --- a/data/synthetic/measure.3.0.features.xml +++ b/data/synthetic/measure.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/measure.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/measure.3.0.xml b/data/synthetic/measure.3.0.xml index d8573bb3c..f4b6733a1 100644 --- a/data/synthetic/measure.3.0.xml +++ b/data/synthetic/measure.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/measure.3.1.features.xml b/data/synthetic/measure.3.1.features.xml index d218115a1..1b37d6938 100644 --- a/data/synthetic/measure.3.1.features.xml +++ b/data/synthetic/measure.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/measure.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/measure.3.1.xml b/data/synthetic/measure.3.1.xml index a36caa751..f5131090d 100644 --- a/data/synthetic/measure.3.1.xml +++ b/data/synthetic/measure.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/membrane.3.0.features.xml b/data/synthetic/membrane.3.0.features.xml index ce953dde0..4b26be981 100644 --- a/data/synthetic/membrane.3.0.features.xml +++ b/data/synthetic/membrane.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/membrane.3.0.xml b/data/synthetic/membrane.3.0.xml index ac83ac68d..1644f70a7 100644 --- a/data/synthetic/membrane.3.0.xml +++ b/data/synthetic/membrane.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ bass drum - x - x 1 1 diff --git a/data/synthetic/membrane.4.0.features.xml b/data/synthetic/membrane.4.0.features.xml index e488acab2..63928a133 100644 --- a/data/synthetic/membrane.4.0.features.xml +++ b/data/synthetic/membrane.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/membrane.4.0.xml b/data/synthetic/membrane.4.0.xml index f96349812..8356302c3 100644 --- a/data/synthetic/membrane.4.0.xml +++ b/data/synthetic/membrane.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ bass drum - x - x 1 1 diff --git a/data/synthetic/metal.3.0.features.xml b/data/synthetic/metal.3.0.features.xml index a007ae4c4..cf04332da 100644 --- a/data/synthetic/metal.3.0.features.xml +++ b/data/synthetic/metal.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metal.3.0.xml b/data/synthetic/metal.3.0.xml index 0b0e63105..78988b5e0 100644 --- a/data/synthetic/metal.3.0.xml +++ b/data/synthetic/metal.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ almglocken - x - x 1 1 diff --git a/data/synthetic/metal.4.0.features.xml b/data/synthetic/metal.4.0.features.xml index 18822ba0c..280dda4f5 100644 --- a/data/synthetic/metal.4.0.features.xml +++ b/data/synthetic/metal.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metal.4.0.xml b/data/synthetic/metal.4.0.xml index f6b79f0c6..b9fc0a562 100644 --- a/data/synthetic/metal.4.0.xml +++ b/data/synthetic/metal.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ agogo - x - x 1 1 diff --git a/data/synthetic/metronome-arrows.3.1.features.xml b/data/synthetic/metronome-arrows.3.1.features.xml index e0e205af3..41ff96776 100644 --- a/data/synthetic/metronome-arrows.3.1.features.xml +++ b/data/synthetic/metronome-arrows.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-arrows.3.1.xml b/data/synthetic/metronome-arrows.3.1.xml index a82a962cd..cb42cc41d 100644 --- a/data/synthetic/metronome-arrows.3.1.xml +++ b/data/synthetic/metronome-arrows.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-beam.3.0.features.xml b/data/synthetic/metronome-beam.3.0.features.xml index fbcfbaa27..c2b5bf934 100644 --- a/data/synthetic/metronome-beam.3.0.features.xml +++ b/data/synthetic/metronome-beam.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-beam.3.0.xml b/data/synthetic/metronome-beam.3.0.xml index 8980e0b23..6a66d0de4 100644 --- a/data/synthetic/metronome-beam.3.0.xml +++ b/data/synthetic/metronome-beam.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-dot.3.0.features.xml b/data/synthetic/metronome-dot.3.0.features.xml index cd298bba8..dee4e8adb 100644 --- a/data/synthetic/metronome-dot.3.0.features.xml +++ b/data/synthetic/metronome-dot.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-dot.3.0.xml b/data/synthetic/metronome-dot.3.0.xml index 06fa6732e..f56d95b60 100644 --- a/data/synthetic/metronome-dot.3.0.xml +++ b/data/synthetic/metronome-dot.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-note.3.0.features.xml b/data/synthetic/metronome-note.3.0.features.xml index 76b743532..60c4bbcd3 100644 --- a/data/synthetic/metronome-note.3.0.features.xml +++ b/data/synthetic/metronome-note.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-note.3.0.xml b/data/synthetic/metronome-note.3.0.xml index bfac891d7..6abd0be19 100644 --- a/data/synthetic/metronome-note.3.0.xml +++ b/data/synthetic/metronome-note.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -27,8 +23,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-relation.3.0.features.xml b/data/synthetic/metronome-relation.3.0.features.xml index c3b954584..84d7b0df0 100644 --- a/data/synthetic/metronome-relation.3.0.features.xml +++ b/data/synthetic/metronome-relation.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-relation.3.0.xml b/data/synthetic/metronome-relation.3.0.xml index bfac891d7..6abd0be19 100644 --- a/data/synthetic/metronome-relation.3.0.xml +++ b/data/synthetic/metronome-relation.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -27,8 +23,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-tied.3.1.features.xml b/data/synthetic/metronome-tied.3.1.features.xml index a3820a978..f3e70eb02 100644 --- a/data/synthetic/metronome-tied.3.1.features.xml +++ b/data/synthetic/metronome-tied.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-tied.3.1.xml b/data/synthetic/metronome-tied.3.1.xml index 09288c5db..ac0543d2e 100644 --- a/data/synthetic/metronome-tied.3.1.xml +++ b/data/synthetic/metronome-tied.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -28,8 +24,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-tuplet.3.0.features.xml b/data/synthetic/metronome-tuplet.3.0.features.xml index 88aee309b..071c9d41f 100644 --- a/data/synthetic/metronome-tuplet.3.0.features.xml +++ b/data/synthetic/metronome-tuplet.3.0.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-tuplet.3.0.xml b/data/synthetic/metronome-tuplet.3.0.xml index 3aade0631..d13a46e08 100644 --- a/data/synthetic/metronome-tuplet.3.0.xml +++ b/data/synthetic/metronome-tuplet.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -32,8 +28,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome-type.3.0.features.xml b/data/synthetic/metronome-type.3.0.features.xml index 12ba56db1..166c020de 100644 --- a/data/synthetic/metronome-type.3.0.features.xml +++ b/data/synthetic/metronome-type.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome-type.3.0.xml b/data/synthetic/metronome-type.3.0.xml index bfac891d7..6abd0be19 100644 --- a/data/synthetic/metronome-type.3.0.xml +++ b/data/synthetic/metronome-type.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -27,8 +23,6 @@ - x - x 1 1 diff --git a/data/synthetic/metronome.3.0.features.xml b/data/synthetic/metronome.3.0.features.xml index 6483ad3c2..60afa5a93 100644 --- a/data/synthetic/metronome.3.0.features.xml +++ b/data/synthetic/metronome.3.0.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome.3.0.xml b/data/synthetic/metronome.3.0.xml index bd06863c1..bbf96ef90 100644 --- a/data/synthetic/metronome.3.0.xml +++ b/data/synthetic/metronome.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ x - x - x 1 1 diff --git a/data/synthetic/metronome.3.1.features.xml b/data/synthetic/metronome.3.1.features.xml index 52a576c0b..70aeb45c3 100644 --- a/data/synthetic/metronome.3.1.features.xml +++ b/data/synthetic/metronome.3.1.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome.3.1.xml b/data/synthetic/metronome.3.1.xml index 14b04b45a..a8433a076 100644 --- a/data/synthetic/metronome.3.1.xml +++ b/data/synthetic/metronome.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ x - x - x 1 1 diff --git a/data/synthetic/metronome.4.0.features.xml b/data/synthetic/metronome.4.0.features.xml index 61eb66438..e32d90d3b 100644 --- a/data/synthetic/metronome.4.0.features.xml +++ b/data/synthetic/metronome.4.0.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/metronome.4.0.xml b/data/synthetic/metronome.4.0.xml index b7e05bccc..9d5afd00b 100644 --- a/data/synthetic/metronome.4.0.xml +++ b/data/synthetic/metronome.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ x - x - x 1 1 diff --git a/data/synthetic/midi-device.3.0.features.xml b/data/synthetic/midi-device.3.0.features.xml index 407614ac3..2f2706b4a 100644 --- a/data/synthetic/midi-device.3.0.features.xml +++ b/data/synthetic/midi-device.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/midi-device.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/midi-device.3.0.xml b/data/synthetic/midi-device.3.0.xml index 213f6c471..4c0a77468 100644 --- a/data/synthetic/midi-device.3.0.xml +++ b/data/synthetic/midi-device.3.0.xml @@ -2,16 +2,12 @@ - x - x x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/midi-name.3.0.features.xml b/data/synthetic/midi-name.3.0.features.xml index b1abfe43f..2dcf87c85 100644 --- a/data/synthetic/midi-name.3.0.features.xml +++ b/data/synthetic/midi-name.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/midi-name.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/midi-name.3.0.xml b/data/synthetic/midi-name.3.0.xml index 87b513d40..60941df5d 100644 --- a/data/synthetic/midi-name.3.0.xml +++ b/data/synthetic/midi-name.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/miscellaneous-field.3.0.features.xml b/data/synthetic/miscellaneous-field.3.0.features.xml index 77b82a933..6d8e1a1c7 100644 --- a/data/synthetic/miscellaneous-field.3.0.features.xml +++ b/data/synthetic/miscellaneous-field.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/miscellaneous-field.3.0.xml 3.0 - - footnote - grace identification - - level - measure diff --git a/data/synthetic/miscellaneous-field.3.0.xml b/data/synthetic/miscellaneous-field.3.0.xml index c1d9f5138..478131ed2 100644 --- a/data/synthetic/miscellaneous-field.3.0.xml +++ b/data/synthetic/miscellaneous-field.3.0.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/mordent.3.0.features.xml b/data/synthetic/mordent.3.0.features.xml index 8904ce864..5f6465531 100644 --- a/data/synthetic/mordent.3.0.features.xml +++ b/data/synthetic/mordent.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/mordent.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/mordent.3.0.xml b/data/synthetic/mordent.3.0.xml index a1fd03214..262b81865 100644 --- a/data/synthetic/mordent.3.0.xml +++ b/data/synthetic/mordent.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/movement-number.3.0.features.xml b/data/synthetic/movement-number.3.0.features.xml index 911eb2816..ec5350201 100644 --- a/data/synthetic/movement-number.3.0.features.xml +++ b/data/synthetic/movement-number.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/movement-number.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/movement-number.3.0.xml b/data/synthetic/movement-number.3.0.xml index 5c28898f8..1102e4683 100644 --- a/data/synthetic/movement-number.3.0.xml +++ b/data/synthetic/movement-number.3.0.xml @@ -3,15 +3,11 @@ 1 - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/movement-title.3.0.features.xml b/data/synthetic/movement-title.3.0.features.xml index 4fcf6ac5d..76b58951e 100644 --- a/data/synthetic/movement-title.3.0.features.xml +++ b/data/synthetic/movement-title.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/movement-title.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/movement-title.3.0.xml b/data/synthetic/movement-title.3.0.xml index 6fe726d99..fdca03a4e 100644 --- a/data/synthetic/movement-title.3.0.xml +++ b/data/synthetic/movement-title.3.0.xml @@ -3,15 +3,11 @@ 1 - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/multiple-rest.3.0.features.xml b/data/synthetic/multiple-rest.3.0.features.xml index fab345ec9..34e7eab2f 100644 --- a/data/synthetic/multiple-rest.3.0.features.xml +++ b/data/synthetic/multiple-rest.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/multiple-rest.3.0.xml b/data/synthetic/multiple-rest.3.0.xml index 689bebe27..41141232e 100644 --- a/data/synthetic/multiple-rest.3.0.xml +++ b/data/synthetic/multiple-rest.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/music-font.3.0.features.xml b/data/synthetic/music-font.3.0.features.xml index c8a494265..cfb8f83ae 100644 --- a/data/synthetic/music-font.3.0.features.xml +++ b/data/synthetic/music-font.3.0.features.xml @@ -8,15 +8,9 @@ defaults - - footnote - grace - - level - measure diff --git a/data/synthetic/music-font.3.0.xml b/data/synthetic/music-font.3.0.xml index 73259908e..b32eff15c 100644 --- a/data/synthetic/music-font.3.0.xml +++ b/data/synthetic/music-font.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/mute.3.0.features.xml b/data/synthetic/mute.3.0.features.xml index 0f0d45567..d1eb01935 100644 --- a/data/synthetic/mute.3.0.features.xml +++ b/data/synthetic/mute.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/mute.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/mute.3.0.xml b/data/synthetic/mute.3.0.xml index 5c7697e25..4df2b37ff 100644 --- a/data/synthetic/mute.3.0.xml +++ b/data/synthetic/mute.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/n.3.1.features.xml b/data/synthetic/n.3.1.features.xml index ae354a0d8..359cedb75 100644 --- a/data/synthetic/n.3.1.features.xml +++ b/data/synthetic/n.3.1.features.xml @@ -8,15 +8,9 @@ dynamics - - footnote - grace - - level - measure diff --git a/data/synthetic/n.3.1.xml b/data/synthetic/n.3.1.xml index 366d5b90f..6d2f99fb3 100644 --- a/data/synthetic/n.3.1.xml +++ b/data/synthetic/n.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/non-arpeggiate.3.0.features.xml b/data/synthetic/non-arpeggiate.3.0.features.xml index b07c60f7b..0ec56d8d9 100644 --- a/data/synthetic/non-arpeggiate.3.0.features.xml +++ b/data/synthetic/non-arpeggiate.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/non-arpeggiate.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/non-arpeggiate.3.0.xml b/data/synthetic/non-arpeggiate.3.0.xml index 70fac18ee..6c3af689f 100644 --- a/data/synthetic/non-arpeggiate.3.0.xml +++ b/data/synthetic/non-arpeggiate.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/non-arpeggiate.3.1.features.xml b/data/synthetic/non-arpeggiate.3.1.features.xml index 96a3eedee..ec56ee5a8 100644 --- a/data/synthetic/non-arpeggiate.3.1.features.xml +++ b/data/synthetic/non-arpeggiate.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/non-arpeggiate.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/non-arpeggiate.3.1.xml b/data/synthetic/non-arpeggiate.3.1.xml index 648b30cf8..a9ec9790b 100644 --- a/data/synthetic/non-arpeggiate.3.1.xml +++ b/data/synthetic/non-arpeggiate.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/notations.3.0.features.xml b/data/synthetic/notations.3.0.features.xml index dc8385de2..334213324 100644 --- a/data/synthetic/notations.3.0.features.xml +++ b/data/synthetic/notations.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/notations.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/notations.3.0.xml b/data/synthetic/notations.3.0.xml index 6028ba5b3..0fcbcc4db 100644 --- a/data/synthetic/notations.3.0.xml +++ b/data/synthetic/notations.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/notations.3.1.features.xml b/data/synthetic/notations.3.1.features.xml index 31e62efee..3f4ece57a 100644 --- a/data/synthetic/notations.3.1.features.xml +++ b/data/synthetic/notations.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/notations.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/notations.3.1.xml b/data/synthetic/notations.3.1.xml index de6ee81db..f22d788d5 100644 --- a/data/synthetic/notations.3.1.xml +++ b/data/synthetic/notations.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/note.3.0.features.xml b/data/synthetic/note.3.0.features.xml index 496bef19b..554161397 100644 --- a/data/synthetic/note.3.0.features.xml +++ b/data/synthetic/note.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/note.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/note.3.0.xml b/data/synthetic/note.3.0.xml index 13640da34..6872d8625 100644 --- a/data/synthetic/note.3.0.xml +++ b/data/synthetic/note.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/note.3.1.features.xml b/data/synthetic/note.3.1.features.xml index 41ad6116b..4fa90c819 100644 --- a/data/synthetic/note.3.1.features.xml +++ b/data/synthetic/note.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/note.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/note.3.1.xml b/data/synthetic/note.3.1.xml index 7fd380a05..0f005cd9a 100644 --- a/data/synthetic/note.3.1.xml +++ b/data/synthetic/note.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/notehead-text.3.0.features.xml b/data/synthetic/notehead-text.3.0.features.xml index 3ba5e5a7b..c0575ec77 100644 --- a/data/synthetic/notehead-text.3.0.features.xml +++ b/data/synthetic/notehead-text.3.0.features.xml @@ -8,15 +8,9 @@ display-text - - footnote - grace - - level - measure diff --git a/data/synthetic/notehead-text.3.0.xml b/data/synthetic/notehead-text.3.0.xml index aba55f4a3..5949f0ab5 100644 --- a/data/synthetic/notehead-text.3.0.xml +++ b/data/synthetic/notehead-text.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 x diff --git a/data/synthetic/notehead.3.0.features.xml b/data/synthetic/notehead.3.0.features.xml index 8d22327a8..8a762388f 100644 --- a/data/synthetic/notehead.3.0.features.xml +++ b/data/synthetic/notehead.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/notehead.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/notehead.3.0.xml b/data/synthetic/notehead.3.0.xml index 9a6d39fd9..469e4f3a9 100644 --- a/data/synthetic/notehead.3.0.xml +++ b/data/synthetic/notehead.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 slash 1 diff --git a/data/synthetic/notehead.3.1.features.xml b/data/synthetic/notehead.3.1.features.xml index bb84277c9..9d69c6443 100644 --- a/data/synthetic/notehead.3.1.features.xml +++ b/data/synthetic/notehead.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/notehead.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/notehead.3.1.xml b/data/synthetic/notehead.3.1.xml index 476009569..98e6fab86 100644 --- a/data/synthetic/notehead.3.1.xml +++ b/data/synthetic/notehead.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 slash 1 diff --git a/data/synthetic/numeral-alter.4.0.features.xml b/data/synthetic/numeral-alter.4.0.features.xml index 3c18f6828..d29c8bb1a 100644 --- a/data/synthetic/numeral-alter.4.0.features.xml +++ b/data/synthetic/numeral-alter.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral-alter.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral-alter.4.0.xml b/data/synthetic/numeral-alter.4.0.xml index 1b1518a37..619e64dfd 100644 --- a/data/synthetic/numeral-alter.4.0.xml +++ b/data/synthetic/numeral-alter.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ 1 major - x - x 1 diff --git a/data/synthetic/numeral-fifths.4.0.features.xml b/data/synthetic/numeral-fifths.4.0.features.xml index e3babe34a..8b003f1e8 100644 --- a/data/synthetic/numeral-fifths.4.0.features.xml +++ b/data/synthetic/numeral-fifths.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral-fifths.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral-fifths.4.0.xml b/data/synthetic/numeral-fifths.4.0.xml index bf8630557..9b636a8be 100644 --- a/data/synthetic/numeral-fifths.4.0.xml +++ b/data/synthetic/numeral-fifths.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ major - x - x 1 diff --git a/data/synthetic/numeral-key.4.0.features.xml b/data/synthetic/numeral-key.4.0.features.xml index 43533def9..e0993e5a2 100644 --- a/data/synthetic/numeral-key.4.0.features.xml +++ b/data/synthetic/numeral-key.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral-key.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral-key.4.0.xml b/data/synthetic/numeral-key.4.0.xml index 102ae419a..c70b3ab64 100644 --- a/data/synthetic/numeral-key.4.0.xml +++ b/data/synthetic/numeral-key.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ major - x - x 1 diff --git a/data/synthetic/numeral-mode.4.0.features.xml b/data/synthetic/numeral-mode.4.0.features.xml index cd210cb5b..fbad5bfa7 100644 --- a/data/synthetic/numeral-mode.4.0.features.xml +++ b/data/synthetic/numeral-mode.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral-mode.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral-mode.4.0.xml b/data/synthetic/numeral-mode.4.0.xml index bf8630557..9b636a8be 100644 --- a/data/synthetic/numeral-mode.4.0.xml +++ b/data/synthetic/numeral-mode.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ major - x - x 1 diff --git a/data/synthetic/numeral-root.4.0.features.xml b/data/synthetic/numeral-root.4.0.features.xml index 01d74ef82..7099c5589 100644 --- a/data/synthetic/numeral-root.4.0.features.xml +++ b/data/synthetic/numeral-root.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral-root.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral-root.4.0.xml b/data/synthetic/numeral-root.4.0.xml index 7891b4ccd..f2a9048f6 100644 --- a/data/synthetic/numeral-root.4.0.xml +++ b/data/synthetic/numeral-root.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ 1 major - x - x 1 diff --git a/data/synthetic/numeral.4.0.features.xml b/data/synthetic/numeral.4.0.features.xml index c361b57a4..ae5ce2797 100644 --- a/data/synthetic/numeral.4.0.features.xml +++ b/data/synthetic/numeral.4.0.features.xml @@ -5,18 +5,12 @@ synthetic/numeral.4.0.xml 4.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/numeral.4.0.xml b/data/synthetic/numeral.4.0.xml index f6ea910b3..9501604e8 100644 --- a/data/synthetic/numeral.4.0.xml +++ b/data/synthetic/numeral.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ 1 major - x - x 1 diff --git a/data/synthetic/octave-shift.3.0.features.xml b/data/synthetic/octave-shift.3.0.features.xml index 67a07dfd5..7e7f585a3 100644 --- a/data/synthetic/octave-shift.3.0.features.xml +++ b/data/synthetic/octave-shift.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/octave-shift.3.0.xml b/data/synthetic/octave-shift.3.0.xml index e82db6d4d..1c31f019d 100644 --- a/data/synthetic/octave-shift.3.0.xml +++ b/data/synthetic/octave-shift.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/octave-shift.3.1.features.xml b/data/synthetic/octave-shift.3.1.features.xml index 5a5c45a8c..fc78bd94a 100644 --- a/data/synthetic/octave-shift.3.1.features.xml +++ b/data/synthetic/octave-shift.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/octave-shift.3.1.xml b/data/synthetic/octave-shift.3.1.xml index 2de6770ff..3b97ba3cd 100644 --- a/data/synthetic/octave-shift.3.1.xml +++ b/data/synthetic/octave-shift.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/open-string.3.0.features.xml b/data/synthetic/open-string.3.0.features.xml index 548935f00..371057317 100644 --- a/data/synthetic/open-string.3.0.features.xml +++ b/data/synthetic/open-string.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/open-string.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/open-string.3.0.xml b/data/synthetic/open-string.3.0.xml index 9b6b59708..94bc87aa9 100644 --- a/data/synthetic/open-string.3.0.xml +++ b/data/synthetic/open-string.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/open.3.1.features.xml b/data/synthetic/open.3.1.features.xml index 63f419ad8..1d15786f3 100644 --- a/data/synthetic/open.3.1.features.xml +++ b/data/synthetic/open.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/open.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/open.3.1.xml b/data/synthetic/open.3.1.xml index d38871ee7..5b7b1f7b6 100644 --- a/data/synthetic/open.3.1.xml +++ b/data/synthetic/open.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/opus.3.0.features.xml b/data/synthetic/opus.3.0.features.xml index aef4d3c5a..a029e34d9 100644 --- a/data/synthetic/opus.3.0.features.xml +++ b/data/synthetic/opus.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/opus.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/opus.3.0.xml b/data/synthetic/opus.3.0.xml index a4fb0e683..3d0b05dce 100644 --- a/data/synthetic/opus.3.0.xml +++ b/data/synthetic/opus.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/ornaments.3.1.features.xml b/data/synthetic/ornaments.3.1.features.xml index 0a62e90e0..ff226b64c 100644 --- a/data/synthetic/ornaments.3.1.features.xml +++ b/data/synthetic/ornaments.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/ornaments.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/ornaments.3.1.xml b/data/synthetic/ornaments.3.1.xml index 4d2ac3dec..a0b3e2d30 100644 --- a/data/synthetic/ornaments.3.1.xml +++ b/data/synthetic/ornaments.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/other-appearance.3.0.features.xml b/data/synthetic/other-appearance.3.0.features.xml index a3f77df0d..acc647b42 100644 --- a/data/synthetic/other-appearance.3.0.features.xml +++ b/data/synthetic/other-appearance.3.0.features.xml @@ -11,15 +11,9 @@ defaults - - footnote - grace - - level - measure diff --git a/data/synthetic/other-appearance.3.0.xml b/data/synthetic/other-appearance.3.0.xml index d8e63041b..d84d457c6 100644 --- a/data/synthetic/other-appearance.3.0.xml +++ b/data/synthetic/other-appearance.3.0.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/other-articulation.3.0.features.xml b/data/synthetic/other-articulation.3.0.features.xml index 7af95cf7a..9a4e4a897 100644 --- a/data/synthetic/other-articulation.3.0.features.xml +++ b/data/synthetic/other-articulation.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/other-articulation.3.0.xml b/data/synthetic/other-articulation.3.0.xml index d4c954101..5b1e38b28 100644 --- a/data/synthetic/other-articulation.3.0.xml +++ b/data/synthetic/other-articulation.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-articulation.3.1.features.xml b/data/synthetic/other-articulation.3.1.features.xml index 6b15ba164..90cbb57bc 100644 --- a/data/synthetic/other-articulation.3.1.features.xml +++ b/data/synthetic/other-articulation.3.1.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/other-articulation.3.1.xml b/data/synthetic/other-articulation.3.1.xml index 2967f720b..4384a4f93 100644 --- a/data/synthetic/other-articulation.3.1.xml +++ b/data/synthetic/other-articulation.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-direction.3.0.features.xml b/data/synthetic/other-direction.3.0.features.xml index 773c678d2..c88f030d8 100644 --- a/data/synthetic/other-direction.3.0.features.xml +++ b/data/synthetic/other-direction.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/other-direction.3.0.xml b/data/synthetic/other-direction.3.0.xml index 37523be3e..f02f7ba04 100644 --- a/data/synthetic/other-direction.3.0.xml +++ b/data/synthetic/other-direction.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/other-direction.3.1.features.xml b/data/synthetic/other-direction.3.1.features.xml index 3f0f22541..ba8d893a1 100644 --- a/data/synthetic/other-direction.3.1.features.xml +++ b/data/synthetic/other-direction.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/other-direction.3.1.xml b/data/synthetic/other-direction.3.1.xml index f711f692c..d8998b159 100644 --- a/data/synthetic/other-direction.3.1.xml +++ b/data/synthetic/other-direction.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/other-dynamics.3.0.features.xml b/data/synthetic/other-dynamics.3.0.features.xml index e3b43d11b..a7613ca37 100644 --- a/data/synthetic/other-dynamics.3.0.features.xml +++ b/data/synthetic/other-dynamics.3.0.features.xml @@ -8,15 +8,9 @@ dynamics - - footnote - grace - - level - measure diff --git a/data/synthetic/other-dynamics.3.0.xml b/data/synthetic/other-dynamics.3.0.xml index 28682dbdc..b621e919c 100644 --- a/data/synthetic/other-dynamics.3.0.xml +++ b/data/synthetic/other-dynamics.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x 1 diff --git a/data/synthetic/other-dynamics.3.1.features.xml b/data/synthetic/other-dynamics.3.1.features.xml index 3163b9557..f682bf16b 100644 --- a/data/synthetic/other-dynamics.3.1.features.xml +++ b/data/synthetic/other-dynamics.3.1.features.xml @@ -8,15 +8,9 @@ dynamics - - footnote - grace - - level - measure diff --git a/data/synthetic/other-dynamics.3.1.xml b/data/synthetic/other-dynamics.3.1.xml index c2022a02f..63125c554 100644 --- a/data/synthetic/other-dynamics.3.1.xml +++ b/data/synthetic/other-dynamics.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-listen.4.0.features.xml b/data/synthetic/other-listen.4.0.features.xml index 945c36a77..56c44465f 100644 --- a/data/synthetic/other-listen.4.0.features.xml +++ b/data/synthetic/other-listen.4.0.features.xml @@ -5,15 +5,9 @@ synthetic/other-listen.4.0.xml 4.0 - - footnote - grace - - level - listen diff --git a/data/synthetic/other-listen.4.0.xml b/data/synthetic/other-listen.4.0.xml index c4673aef7..348c8f812 100644 --- a/data/synthetic/other-listen.4.0.xml +++ b/data/synthetic/other-listen.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/other-listening.4.0.features.xml b/data/synthetic/other-listening.4.0.features.xml index d5fa8824d..c50f55b75 100644 --- a/data/synthetic/other-listening.4.0.features.xml +++ b/data/synthetic/other-listening.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - listening diff --git a/data/synthetic/other-listening.4.0.xml b/data/synthetic/other-listening.4.0.xml index 1cb7099b9..2c10e3746 100644 --- a/data/synthetic/other-listening.4.0.xml +++ b/data/synthetic/other-listening.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/other-notation.3.0.features.xml b/data/synthetic/other-notation.3.0.features.xml index 2ac3321f0..9f8f22372 100644 --- a/data/synthetic/other-notation.3.0.features.xml +++ b/data/synthetic/other-notation.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/other-notation.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-notation.3.0.xml b/data/synthetic/other-notation.3.0.xml index d5891bae0..e8e2867e7 100644 --- a/data/synthetic/other-notation.3.0.xml +++ b/data/synthetic/other-notation.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-notation.3.1.features.xml b/data/synthetic/other-notation.3.1.features.xml index 862aba1bd..b29cbb4fd 100644 --- a/data/synthetic/other-notation.3.1.features.xml +++ b/data/synthetic/other-notation.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/other-notation.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-notation.3.1.xml b/data/synthetic/other-notation.3.1.xml index 75467238d..2ae1881a9 100644 --- a/data/synthetic/other-notation.3.1.xml +++ b/data/synthetic/other-notation.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-ornament.3.0.features.xml b/data/synthetic/other-ornament.3.0.features.xml index d4a2a29ec..a457805de 100644 --- a/data/synthetic/other-ornament.3.0.features.xml +++ b/data/synthetic/other-ornament.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/other-ornament.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-ornament.3.0.xml b/data/synthetic/other-ornament.3.0.xml index d0a54398c..a6655ece6 100644 --- a/data/synthetic/other-ornament.3.0.xml +++ b/data/synthetic/other-ornament.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-ornament.3.1.features.xml b/data/synthetic/other-ornament.3.1.features.xml index a6ff49445..3df62c9ad 100644 --- a/data/synthetic/other-ornament.3.1.features.xml +++ b/data/synthetic/other-ornament.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/other-ornament.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-ornament.3.1.xml b/data/synthetic/other-ornament.3.1.xml index e5716c48e..1dfe066d0 100644 --- a/data/synthetic/other-ornament.3.1.xml +++ b/data/synthetic/other-ornament.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-percussion.3.0.features.xml b/data/synthetic/other-percussion.3.0.features.xml index 61fa0484d..47d8c01a9 100644 --- a/data/synthetic/other-percussion.3.0.features.xml +++ b/data/synthetic/other-percussion.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/other-percussion.3.0.xml b/data/synthetic/other-percussion.3.0.xml index 1c5fa130a..0c1098957 100644 --- a/data/synthetic/other-percussion.3.0.xml +++ b/data/synthetic/other-percussion.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ 1 - x - x 1 1 diff --git a/data/synthetic/other-percussion.3.1.features.xml b/data/synthetic/other-percussion.3.1.features.xml index b3d8461be..b356ec387 100644 --- a/data/synthetic/other-percussion.3.1.features.xml +++ b/data/synthetic/other-percussion.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/other-percussion.3.1.xml b/data/synthetic/other-percussion.3.1.xml index ce83630f5..e9e85c5fa 100644 --- a/data/synthetic/other-percussion.3.1.xml +++ b/data/synthetic/other-percussion.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ x - x - x 1 1 diff --git a/data/synthetic/other-play.3.0.features.xml b/data/synthetic/other-play.3.0.features.xml index 6955655aa..2a329725b 100644 --- a/data/synthetic/other-play.3.0.features.xml +++ b/data/synthetic/other-play.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/other-play.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-play.3.0.xml b/data/synthetic/other-play.3.0.xml index 930902995..f41f354e5 100644 --- a/data/synthetic/other-play.3.0.xml +++ b/data/synthetic/other-play.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/other-technical.3.0.features.xml b/data/synthetic/other-technical.3.0.features.xml index 25cc840f1..c80a0b0d4 100644 --- a/data/synthetic/other-technical.3.0.features.xml +++ b/data/synthetic/other-technical.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/other-technical.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-technical.3.0.xml b/data/synthetic/other-technical.3.0.xml index bc88edffb..c6afa49b1 100644 --- a/data/synthetic/other-technical.3.0.xml +++ b/data/synthetic/other-technical.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/other-technical.3.1.features.xml b/data/synthetic/other-technical.3.1.features.xml index d3bb4e9e2..01ec77c56 100644 --- a/data/synthetic/other-technical.3.1.features.xml +++ b/data/synthetic/other-technical.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/other-technical.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/other-technical.3.1.xml b/data/synthetic/other-technical.3.1.xml index 656d7614c..083620dc2 100644 --- a/data/synthetic/other-technical.3.1.xml +++ b/data/synthetic/other-technical.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/part-abbreviation-display.3.0.features.xml b/data/synthetic/part-abbreviation-display.3.0.features.xml index 5ab329025..e47ea885b 100644 --- a/data/synthetic/part-abbreviation-display.3.0.features.xml +++ b/data/synthetic/part-abbreviation-display.3.0.features.xml @@ -8,15 +8,9 @@ display-text - - footnote - grace - - level - measure diff --git a/data/synthetic/part-abbreviation-display.3.0.xml b/data/synthetic/part-abbreviation-display.3.0.xml index e884dbb7b..f54f59e9d 100644 --- a/data/synthetic/part-abbreviation-display.3.0.xml +++ b/data/synthetic/part-abbreviation-display.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/part-abbreviation.3.0.features.xml b/data/synthetic/part-abbreviation.3.0.features.xml index ca692f7e6..7086a147a 100644 --- a/data/synthetic/part-abbreviation.3.0.features.xml +++ b/data/synthetic/part-abbreviation.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/part-abbreviation.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/part-abbreviation.3.0.xml b/data/synthetic/part-abbreviation.3.0.xml index 419daed7d..13b2d8338 100644 --- a/data/synthetic/part-abbreviation.3.0.xml +++ b/data/synthetic/part-abbreviation.3.0.xml @@ -2,16 +2,12 @@ - x - x x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/part-clef.4.0.features.xml b/data/synthetic/part-clef.4.0.features.xml index 7c7287261..b6db033bd 100644 --- a/data/synthetic/part-clef.4.0.features.xml +++ b/data/synthetic/part-clef.4.0.features.xml @@ -11,15 +11,9 @@ chromatic - - footnote - for-part - - level - measure diff --git a/data/synthetic/part-clef.4.0.xml b/data/synthetic/part-clef.4.0.xml index b86a0f4cd..7cc70d196 100644 --- a/data/synthetic/part-clef.4.0.xml +++ b/data/synthetic/part-clef.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x G diff --git a/data/synthetic/part-link.4.0.features.xml b/data/synthetic/part-link.4.0.features.xml index 9201c2d47..be2e3f6be 100644 --- a/data/synthetic/part-link.4.0.features.xml +++ b/data/synthetic/part-link.4.0.features.xml @@ -5,15 +5,9 @@ synthetic/part-link.4.0.xml 4.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/part-link.4.0.xml b/data/synthetic/part-link.4.0.xml index 102ef78ab..9341bd5b0 100644 --- a/data/synthetic/part-link.4.0.xml +++ b/data/synthetic/part-link.4.0.xml @@ -2,16 +2,12 @@ - x - x x - x - x @@ -22,8 +18,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/part-name-display.3.0.features.xml b/data/synthetic/part-name-display.3.0.features.xml index 0fbccf9e8..6d2c039d1 100644 --- a/data/synthetic/part-name-display.3.0.features.xml +++ b/data/synthetic/part-name-display.3.0.features.xml @@ -8,15 +8,9 @@ display-text - - footnote - grace - - level - measure diff --git a/data/synthetic/part-name-display.3.0.xml b/data/synthetic/part-name-display.3.0.xml index eaad31503..455c3a45f 100644 --- a/data/synthetic/part-name-display.3.0.xml +++ b/data/synthetic/part-name-display.3.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/part-name.3.0.features.xml b/data/synthetic/part-name.3.0.features.xml index 38e2f6a11..40652384d 100644 --- a/data/synthetic/part-name.3.0.features.xml +++ b/data/synthetic/part-name.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/part-name.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/part-name.3.0.xml b/data/synthetic/part-name.3.0.xml index 163624c60..9ee9aa93e 100644 --- a/data/synthetic/part-name.3.0.xml +++ b/data/synthetic/part-name.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/part-symbol.3.0.features.xml b/data/synthetic/part-symbol.3.0.features.xml index 00e03a22a..0349e92d5 100644 --- a/data/synthetic/part-symbol.3.0.features.xml +++ b/data/synthetic/part-symbol.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/part-symbol.3.0.xml b/data/synthetic/part-symbol.3.0.xml index 4017ff4f0..6b35f9718 100644 --- a/data/synthetic/part-symbol.3.0.xml +++ b/data/synthetic/part-symbol.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x none diff --git a/data/synthetic/part-transpose.4.0.features.xml b/data/synthetic/part-transpose.4.0.features.xml index 240cd6801..a49e645f4 100644 --- a/data/synthetic/part-transpose.4.0.features.xml +++ b/data/synthetic/part-transpose.4.0.features.xml @@ -11,15 +11,9 @@ chromatic - - footnote - for-part - - level - measure diff --git a/data/synthetic/part-transpose.4.0.xml b/data/synthetic/part-transpose.4.0.xml index 264b0164b..4402bcd73 100644 --- a/data/synthetic/part-transpose.4.0.xml +++ b/data/synthetic/part-transpose.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 diff --git a/data/synthetic/pedal.3.0.features.xml b/data/synthetic/pedal.3.0.features.xml index 66efd4e09..b281f22d4 100644 --- a/data/synthetic/pedal.3.0.features.xml +++ b/data/synthetic/pedal.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/pedal.3.0.xml b/data/synthetic/pedal.3.0.xml index 2896124d7..02dc6b47a 100644 --- a/data/synthetic/pedal.3.0.xml +++ b/data/synthetic/pedal.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/pedal.3.1.features.xml b/data/synthetic/pedal.3.1.features.xml index d0b783411..2ca881729 100644 --- a/data/synthetic/pedal.3.1.features.xml +++ b/data/synthetic/pedal.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/pedal.3.1.xml b/data/synthetic/pedal.3.1.xml index 95cbb41fb..49770804f 100644 --- a/data/synthetic/pedal.3.1.xml +++ b/data/synthetic/pedal.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/per-minute.3.0.features.xml b/data/synthetic/per-minute.3.0.features.xml index 98dc504cc..8191c8e4e 100644 --- a/data/synthetic/per-minute.3.0.features.xml +++ b/data/synthetic/per-minute.3.0.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/per-minute.3.0.xml b/data/synthetic/per-minute.3.0.xml index b42ba4f4f..a13a4c94f 100644 --- a/data/synthetic/per-minute.3.0.xml +++ b/data/synthetic/per-minute.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ x - x - x 1 1 diff --git a/data/synthetic/percussion.3.0.features.xml b/data/synthetic/percussion.3.0.features.xml index e8cdb1846..7a3375695 100644 --- a/data/synthetic/percussion.3.0.features.xml +++ b/data/synthetic/percussion.3.0.features.xml @@ -11,15 +11,9 @@ direction-type - - footnote - glass - - level - measure diff --git a/data/synthetic/percussion.3.0.xml b/data/synthetic/percussion.3.0.xml index c33c2f271..072e9ada7 100644 --- a/data/synthetic/percussion.3.0.xml +++ b/data/synthetic/percussion.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ wind chimes - x - x 1 1 diff --git a/data/synthetic/percussion.3.1.features.xml b/data/synthetic/percussion.3.1.features.xml index cea20e032..9cb0c3502 100644 --- a/data/synthetic/percussion.3.1.features.xml +++ b/data/synthetic/percussion.3.1.features.xml @@ -11,15 +11,9 @@ direction-type - - footnote - glass - - level - measure diff --git a/data/synthetic/percussion.3.1.xml b/data/synthetic/percussion.3.1.xml index 7d0c8a5aa..57c8cdb87 100644 --- a/data/synthetic/percussion.3.1.xml +++ b/data/synthetic/percussion.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ glass harmonica - x - x 1 1 diff --git a/data/synthetic/pf.3.1.features.xml b/data/synthetic/pf.3.1.features.xml index a7184898a..1e61e8b19 100644 --- a/data/synthetic/pf.3.1.features.xml +++ b/data/synthetic/pf.3.1.features.xml @@ -8,15 +8,9 @@ dynamics - - footnote - grace - - level - measure diff --git a/data/synthetic/pf.3.1.xml b/data/synthetic/pf.3.1.xml index 5061f9ceb..0acc48dcd 100644 --- a/data/synthetic/pf.3.1.xml +++ b/data/synthetic/pf.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/pitched.3.0.features.xml b/data/synthetic/pitched.3.0.features.xml index eb7f83cc4..a96f26ba1 100644 --- a/data/synthetic/pitched.3.0.features.xml +++ b/data/synthetic/pitched.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/pitched.3.0.xml b/data/synthetic/pitched.3.0.xml index 77a134758..1d698b6c6 100644 --- a/data/synthetic/pitched.3.0.xml +++ b/data/synthetic/pitched.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ chimes - x - x 1 1 diff --git a/data/synthetic/pitched.3.1.features.xml b/data/synthetic/pitched.3.1.features.xml index d8ea3e168..68461e0cf 100644 --- a/data/synthetic/pitched.3.1.features.xml +++ b/data/synthetic/pitched.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/pitched.3.1.xml b/data/synthetic/pitched.3.1.xml index b61c90a42..f62f39665 100644 --- a/data/synthetic/pitched.3.1.xml +++ b/data/synthetic/pitched.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ celesta - x - x 1 1 diff --git a/data/synthetic/play.3.0.features.xml b/data/synthetic/play.3.0.features.xml index 58fd98b87..8e771cff6 100644 --- a/data/synthetic/play.3.0.features.xml +++ b/data/synthetic/play.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/play.3.0.xml 3.0 - - footnote - grace ipa - - level - measure diff --git a/data/synthetic/play.3.0.xml b/data/synthetic/play.3.0.xml index 1c8b4973b..da632530d 100644 --- a/data/synthetic/play.3.0.xml +++ b/data/synthetic/play.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/player-name.4.0.features.xml b/data/synthetic/player-name.4.0.features.xml index c64e28a15..ce8209393 100644 --- a/data/synthetic/player-name.4.0.features.xml +++ b/data/synthetic/player-name.4.0.features.xml @@ -5,15 +5,9 @@ synthetic/player-name.4.0.xml 4.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/player-name.4.0.xml b/data/synthetic/player-name.4.0.xml index e915ff2a8..929acbbd7 100644 --- a/data/synthetic/player-name.4.0.xml +++ b/data/synthetic/player-name.4.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/player.4.0.features.xml b/data/synthetic/player.4.0.features.xml index 2473911a0..0e531c178 100644 --- a/data/synthetic/player.4.0.features.xml +++ b/data/synthetic/player.4.0.features.xml @@ -5,15 +5,9 @@ synthetic/player.4.0.xml 4.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/player.4.0.xml b/data/synthetic/player.4.0.xml index e915ff2a8..929acbbd7 100644 --- a/data/synthetic/player.4.0.xml +++ b/data/synthetic/player.4.0.xml @@ -2,8 +2,6 @@ - x - x x @@ -12,8 +10,6 @@ - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/plop.3.0.features.xml b/data/synthetic/plop.3.0.features.xml index b69a69f97..0758ce8b9 100644 --- a/data/synthetic/plop.3.0.features.xml +++ b/data/synthetic/plop.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/plop.3.0.xml b/data/synthetic/plop.3.0.xml index 19930ab54..b9f8e34ba 100644 --- a/data/synthetic/plop.3.0.xml +++ b/data/synthetic/plop.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/plop.3.1.features.xml b/data/synthetic/plop.3.1.features.xml index f669fbdbc..2e19c56c0 100644 --- a/data/synthetic/plop.3.1.features.xml +++ b/data/synthetic/plop.3.1.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/plop.3.1.xml b/data/synthetic/plop.3.1.xml index dbc1ef9ff..f2b5153a4 100644 --- a/data/synthetic/plop.3.1.xml +++ b/data/synthetic/plop.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/pluck.3.0.features.xml b/data/synthetic/pluck.3.0.features.xml index b589e3419..7af32a01a 100644 --- a/data/synthetic/pluck.3.0.features.xml +++ b/data/synthetic/pluck.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/pluck.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/pluck.3.0.xml b/data/synthetic/pluck.3.0.xml index 5b3417a03..074b946e7 100644 --- a/data/synthetic/pluck.3.0.xml +++ b/data/synthetic/pluck.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/prefix.3.0.features.xml b/data/synthetic/prefix.3.0.features.xml index cf02a6ea5..1025079f9 100644 --- a/data/synthetic/prefix.3.0.features.xml +++ b/data/synthetic/prefix.3.0.features.xml @@ -14,12 +14,6 @@ figured-bass - - footnote - - - level - measure diff --git a/data/synthetic/prefix.3.0.xml b/data/synthetic/prefix.3.0.xml index ef0c02b05..06c326346 100644 --- a/data/synthetic/prefix.3.0.xml +++ b/data/synthetic/prefix.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ x
1 - x - x
diff --git a/data/synthetic/principal-voice.3.0.features.xml b/data/synthetic/principal-voice.3.0.features.xml index 09787751c..dc7eb29de 100644 --- a/data/synthetic/principal-voice.3.0.features.xml +++ b/data/synthetic/principal-voice.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/principal-voice.3.0.xml b/data/synthetic/principal-voice.3.0.xml index 0da730ab9..b0f3c220c 100644 --- a/data/synthetic/principal-voice.3.0.xml +++ b/data/synthetic/principal-voice.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/principal-voice.3.1.features.xml b/data/synthetic/principal-voice.3.1.features.xml index 897f8dbf3..e38fcda3d 100644 --- a/data/synthetic/principal-voice.3.1.features.xml +++ b/data/synthetic/principal-voice.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/principal-voice.3.1.xml b/data/synthetic/principal-voice.3.1.xml index 5fa5a821b..8b14278b7 100644 --- a/data/synthetic/principal-voice.3.1.xml +++ b/data/synthetic/principal-voice.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/print.3.0.features.xml b/data/synthetic/print.3.0.features.xml index 483918d54..57275cb8b 100644 --- a/data/synthetic/print.3.0.features.xml +++ b/data/synthetic/print.3.0.features.xml @@ -5,12 +5,6 @@ synthetic/print.3.0.xml 3.0 - - footnote - - - level - measure diff --git a/data/synthetic/print.3.0.xml b/data/synthetic/print.3.0.xml index d8ebf4d74..9529f49bf 100644 --- a/data/synthetic/print.3.0.xml +++ b/data/synthetic/print.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/print.3.1.features.xml b/data/synthetic/print.3.1.features.xml index 4ce6b2d86..7e0946044 100644 --- a/data/synthetic/print.3.1.features.xml +++ b/data/synthetic/print.3.1.features.xml @@ -5,12 +5,6 @@ synthetic/print.3.1.xml 3.1 - - footnote - - - level - measure diff --git a/data/synthetic/print.3.1.xml b/data/synthetic/print.3.1.xml index 9c7abce40..7d1cb625d 100644 --- a/data/synthetic/print.3.1.xml +++ b/data/synthetic/print.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x diff --git a/data/synthetic/pull-off.3.0.features.xml b/data/synthetic/pull-off.3.0.features.xml index 14b45338a..1da3c47cb 100644 --- a/data/synthetic/pull-off.3.0.features.xml +++ b/data/synthetic/pull-off.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/pull-off.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/pull-off.3.0.xml b/data/synthetic/pull-off.3.0.xml index 5e41167a0..a1c7c9909 100644 --- a/data/synthetic/pull-off.3.0.xml +++ b/data/synthetic/pull-off.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/rehearsal.3.0.features.xml b/data/synthetic/rehearsal.3.0.features.xml index f1b5408b3..06b0eeeeb 100644 --- a/data/synthetic/rehearsal.3.0.features.xml +++ b/data/synthetic/rehearsal.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/rehearsal.3.0.xml b/data/synthetic/rehearsal.3.0.xml index a2df6fe53..7fe6f9648 100644 --- a/data/synthetic/rehearsal.3.0.xml +++ b/data/synthetic/rehearsal.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/rehearsal.3.1.features.xml b/data/synthetic/rehearsal.3.1.features.xml index c12c7d20e..114a95fd1 100644 --- a/data/synthetic/rehearsal.3.1.features.xml +++ b/data/synthetic/rehearsal.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/rehearsal.3.1.xml b/data/synthetic/rehearsal.3.1.xml index 38c45cbd8..d99b5919f 100644 --- a/data/synthetic/rehearsal.3.1.xml +++ b/data/synthetic/rehearsal.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/relation.3.0.features.xml b/data/synthetic/relation.3.0.features.xml index 8774318c6..ebd1bf79f 100644 --- a/data/synthetic/relation.3.0.features.xml +++ b/data/synthetic/relation.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/relation.3.0.xml 3.0 - - footnote - grace identification - - level - measure diff --git a/data/synthetic/relation.3.0.xml b/data/synthetic/relation.3.0.xml index 72d061dc3..bc983614e 100644 --- a/data/synthetic/relation.3.0.xml +++ b/data/synthetic/relation.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/release.4.0.features.xml b/data/synthetic/release.4.0.features.xml index fa5eb4eb6..350915186 100644 --- a/data/synthetic/release.4.0.features.xml +++ b/data/synthetic/release.4.0.features.xml @@ -11,15 +11,9 @@ bend-alter - - footnote - grace - - level - measure diff --git a/data/synthetic/release.4.0.xml b/data/synthetic/release.4.0.xml index 87bb435e5..d11424adb 100644 --- a/data/synthetic/release.4.0.xml +++ b/data/synthetic/release.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x 1 diff --git a/data/synthetic/repeat.4.0.features.xml b/data/synthetic/repeat.4.0.features.xml index 61319748c..abaf1f6b7 100644 --- a/data/synthetic/repeat.4.0.features.xml +++ b/data/synthetic/repeat.4.0.features.xml @@ -8,12 +8,6 @@ barline - - footnote - - - level - measure diff --git a/data/synthetic/repeat.4.0.xml b/data/synthetic/repeat.4.0.xml index ac55a82ab..180b2f53d 100644 --- a/data/synthetic/repeat.4.0.xml +++ b/data/synthetic/repeat.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/right-divider.3.0.features.xml b/data/synthetic/right-divider.3.0.features.xml index fbf7bdaf1..b708aa796 100644 --- a/data/synthetic/right-divider.3.0.features.xml +++ b/data/synthetic/right-divider.3.0.features.xml @@ -8,18 +8,12 @@ defaults - - footnote - grace left-divider - - level - measure diff --git a/data/synthetic/right-divider.3.0.xml b/data/synthetic/right-divider.3.0.xml index 4593dd9ac..556e92595 100644 --- a/data/synthetic/right-divider.3.0.xml +++ b/data/synthetic/right-divider.3.0.xml @@ -10,15 +10,11 @@ - x - x x - x - x @@ -29,8 +25,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/rights.3.0.features.xml b/data/synthetic/rights.3.0.features.xml index 407700480..73c2b30ec 100644 --- a/data/synthetic/rights.3.0.features.xml +++ b/data/synthetic/rights.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/rights.3.0.xml 3.0 - - footnote - grace identification - - level - measure diff --git a/data/synthetic/rights.3.0.xml b/data/synthetic/rights.3.0.xml index c250f2657..86e008932 100644 --- a/data/synthetic/rights.3.0.xml +++ b/data/synthetic/rights.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/root-alter.3.0.features.xml b/data/synthetic/root-alter.3.0.features.xml index 75166a85e..95a3f1aa6 100644 --- a/data/synthetic/root-alter.3.0.features.xml +++ b/data/synthetic/root-alter.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/root-alter.3.0.xml 3.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/root-alter.3.0.xml b/data/synthetic/root-alter.3.0.xml index 70b683091..f8d524990 100644 --- a/data/synthetic/root-alter.3.0.xml +++ b/data/synthetic/root-alter.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ 1 major - x - x 1 diff --git a/data/synthetic/root-step.3.0.features.xml b/data/synthetic/root-step.3.0.features.xml index ba22a50bf..240d95154 100644 --- a/data/synthetic/root-step.3.0.features.xml +++ b/data/synthetic/root-step.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/root-step.3.0.xml 3.0 - - footnote - harmony kind - - level - measure diff --git a/data/synthetic/root-step.3.0.xml b/data/synthetic/root-step.3.0.xml index fbc1961ca..52b00cf95 100644 --- a/data/synthetic/root-step.3.0.xml +++ b/data/synthetic/root-step.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ A major - x - x 1 diff --git a/data/synthetic/schleifer.3.0.features.xml b/data/synthetic/schleifer.3.0.features.xml index 15f2b57f9..7cdfe3cf3 100644 --- a/data/synthetic/schleifer.3.0.features.xml +++ b/data/synthetic/schleifer.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/schleifer.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/schleifer.3.0.xml b/data/synthetic/schleifer.3.0.xml index 2e9340de4..31364bdec 100644 --- a/data/synthetic/schleifer.3.0.xml +++ b/data/synthetic/schleifer.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/scoop.3.0.features.xml b/data/synthetic/scoop.3.0.features.xml index db507d1e0..c4983c889 100644 --- a/data/synthetic/scoop.3.0.features.xml +++ b/data/synthetic/scoop.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/scoop.3.0.xml b/data/synthetic/scoop.3.0.xml index b9ef9e5b8..fd7e9d1a5 100644 --- a/data/synthetic/scoop.3.0.xml +++ b/data/synthetic/scoop.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/scoop.3.1.features.xml b/data/synthetic/scoop.3.1.features.xml index 0b65aa1a1..0198ea10e 100644 --- a/data/synthetic/scoop.3.1.features.xml +++ b/data/synthetic/scoop.3.1.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/scoop.3.1.xml b/data/synthetic/scoop.3.1.xml index 38f7cc07c..29239b182 100644 --- a/data/synthetic/scoop.3.1.xml +++ b/data/synthetic/scoop.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/scordatura.3.1.features.xml b/data/synthetic/scordatura.3.1.features.xml index 5d85c5793..89303ebdf 100644 --- a/data/synthetic/scordatura.3.1.features.xml +++ b/data/synthetic/scordatura.3.1.features.xml @@ -14,12 +14,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/scordatura.3.1.xml b/data/synthetic/scordatura.3.1.xml index 0146fb38c..5822c985a 100644 --- a/data/synthetic/scordatura.3.1.xml +++ b/data/synthetic/scordatura.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/second.4.0.features.xml b/data/synthetic/second.4.0.features.xml index 47805e207..b04ba4d29 100644 --- a/data/synthetic/second.4.0.features.xml +++ b/data/synthetic/second.4.0.features.xml @@ -14,12 +14,6 @@ first - - footnote - - - level - measure diff --git a/data/synthetic/second.4.0.xml b/data/synthetic/second.4.0.xml index 6a37a2cf1..4b0253da7 100644 --- a/data/synthetic/second.4.0.xml +++ b/data/synthetic/second.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/semi-pitched.3.0.features.xml b/data/synthetic/semi-pitched.3.0.features.xml index 227d8ef89..6f7d165a2 100644 --- a/data/synthetic/semi-pitched.3.0.features.xml +++ b/data/synthetic/semi-pitched.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/semi-pitched.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/semi-pitched.3.0.xml b/data/synthetic/semi-pitched.3.0.xml index afd760723..91d020b83 100644 --- a/data/synthetic/semi-pitched.3.0.xml +++ b/data/synthetic/semi-pitched.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/senza-misura.3.0.features.xml b/data/synthetic/senza-misura.3.0.features.xml index 3b051d6d5..d67d68a36 100644 --- a/data/synthetic/senza-misura.3.0.features.xml +++ b/data/synthetic/senza-misura.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/senza-misura.3.0.xml b/data/synthetic/senza-misura.3.0.xml index dc2ffe4d3..bcb10ba75 100644 --- a/data/synthetic/senza-misura.3.0.xml +++ b/data/synthetic/senza-misura.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x diff --git a/data/synthetic/sfzp.3.1.features.xml b/data/synthetic/sfzp.3.1.features.xml index 983066579..59493d420 100644 --- a/data/synthetic/sfzp.3.1.features.xml +++ b/data/synthetic/sfzp.3.1.features.xml @@ -8,15 +8,9 @@ dynamics - - footnote - grace - - level - measure diff --git a/data/synthetic/sfzp.3.1.xml b/data/synthetic/sfzp.3.1.xml index cd73d8a1d..fa0aedcbe 100644 --- a/data/synthetic/sfzp.3.1.xml +++ b/data/synthetic/sfzp.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/shake.3.0.features.xml b/data/synthetic/shake.3.0.features.xml index 10d690b1e..40d90b579 100644 --- a/data/synthetic/shake.3.0.features.xml +++ b/data/synthetic/shake.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/shake.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/shake.3.0.xml b/data/synthetic/shake.3.0.xml index caf509358..875403b0b 100644 --- a/data/synthetic/shake.3.0.xml +++ b/data/synthetic/shake.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/slash-dot.3.0.features.xml b/data/synthetic/slash-dot.3.0.features.xml index cc9555412..e76d88e29 100644 --- a/data/synthetic/slash-dot.3.0.features.xml +++ b/data/synthetic/slash-dot.3.0.features.xml @@ -14,12 +14,6 @@ type - - footnote - - - level - measure diff --git a/data/synthetic/slash-dot.3.0.xml b/data/synthetic/slash-dot.3.0.xml index c079d6491..748514b81 100644 --- a/data/synthetic/slash-dot.3.0.xml +++ b/data/synthetic/slash-dot.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1024th diff --git a/data/synthetic/slash-type.3.0.features.xml b/data/synthetic/slash-type.3.0.features.xml index 0bc82beeb..83b1eb2e1 100644 --- a/data/synthetic/slash-type.3.0.features.xml +++ b/data/synthetic/slash-type.3.0.features.xml @@ -14,12 +14,6 @@ type - - footnote - - - level - measure diff --git a/data/synthetic/slash-type.3.0.xml b/data/synthetic/slash-type.3.0.xml index 8a8d65d98..82586dff9 100644 --- a/data/synthetic/slash-type.3.0.xml +++ b/data/synthetic/slash-type.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1024th diff --git a/data/synthetic/slash.3.0.features.xml b/data/synthetic/slash.3.0.features.xml index a6064612f..a31b05e22 100644 --- a/data/synthetic/slash.3.0.features.xml +++ b/data/synthetic/slash.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/slash.3.0.xml b/data/synthetic/slash.3.0.xml index 7ad004402..76cc738e6 100644 --- a/data/synthetic/slash.3.0.xml +++ b/data/synthetic/slash.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1024th diff --git a/data/synthetic/slide.3.0.features.xml b/data/synthetic/slide.3.0.features.xml index aefa038f7..1117c3a19 100644 --- a/data/synthetic/slide.3.0.features.xml +++ b/data/synthetic/slide.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/slide.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/slide.3.0.xml b/data/synthetic/slide.3.0.xml index f4d722e36..29bd32e67 100644 --- a/data/synthetic/slide.3.0.xml +++ b/data/synthetic/slide.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/slide.3.1.features.xml b/data/synthetic/slide.3.1.features.xml index 2435033ed..5989524ed 100644 --- a/data/synthetic/slide.3.1.features.xml +++ b/data/synthetic/slide.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/slide.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/slide.3.1.xml b/data/synthetic/slide.3.1.xml index fcd761b1a..6f0d38be5 100644 --- a/data/synthetic/slide.3.1.xml +++ b/data/synthetic/slide.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/slur.3.0.features.xml b/data/synthetic/slur.3.0.features.xml index 7e6096cc1..19a2a258d 100644 --- a/data/synthetic/slur.3.0.features.xml +++ b/data/synthetic/slur.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/slur.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/slur.3.0.xml b/data/synthetic/slur.3.0.xml index 41b8a6460..f0799f23e 100644 --- a/data/synthetic/slur.3.0.xml +++ b/data/synthetic/slur.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/slur.3.1.features.xml b/data/synthetic/slur.3.1.features.xml index 9cdfc7872..a19f9bdd3 100644 --- a/data/synthetic/slur.3.1.features.xml +++ b/data/synthetic/slur.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/slur.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/slur.3.1.xml b/data/synthetic/slur.3.1.xml index 0fd0ce9fd..48b5351e2 100644 --- a/data/synthetic/slur.3.1.xml +++ b/data/synthetic/slur.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/smear.3.1.features.xml b/data/synthetic/smear.3.1.features.xml index f10962e3a..dfadfac81 100644 --- a/data/synthetic/smear.3.1.features.xml +++ b/data/synthetic/smear.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/smear.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/smear.3.1.xml b/data/synthetic/smear.3.1.xml index 464d8c1ae..6dcea1b76 100644 --- a/data/synthetic/smear.3.1.xml +++ b/data/synthetic/smear.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/snap-pizzicato.3.0.features.xml b/data/synthetic/snap-pizzicato.3.0.features.xml index a106de9b9..6fb7e9be2 100644 --- a/data/synthetic/snap-pizzicato.3.0.features.xml +++ b/data/synthetic/snap-pizzicato.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/snap-pizzicato.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/snap-pizzicato.3.0.xml b/data/synthetic/snap-pizzicato.3.0.xml index e1577d167..58c72c2fe 100644 --- a/data/synthetic/snap-pizzicato.3.0.xml +++ b/data/synthetic/snap-pizzicato.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/soft-accent.3.1.features.xml b/data/synthetic/soft-accent.3.1.features.xml index 1570124a8..afea6b30c 100644 --- a/data/synthetic/soft-accent.3.1.features.xml +++ b/data/synthetic/soft-accent.3.1.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/soft-accent.3.1.xml b/data/synthetic/soft-accent.3.1.xml index 98d5d890f..18654c074 100644 --- a/data/synthetic/soft-accent.3.1.xml +++ b/data/synthetic/soft-accent.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/software.3.0.features.xml b/data/synthetic/software.3.0.features.xml index 9f560622b..bfb0be6f7 100644 --- a/data/synthetic/software.3.0.features.xml +++ b/data/synthetic/software.3.0.features.xml @@ -8,18 +8,12 @@ encoding - - footnote - grace identification - - level - measure diff --git a/data/synthetic/software.3.0.xml b/data/synthetic/software.3.0.xml index 205d549f0..b362100f0 100644 --- a/data/synthetic/software.3.0.xml +++ b/data/synthetic/software.3.0.xml @@ -7,15 +7,11 @@ - x - x x - x - x @@ -26,8 +22,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/sound.3.0.features.xml b/data/synthetic/sound.3.0.features.xml index 9ec83af2c..77bb94574 100644 --- a/data/synthetic/sound.3.0.features.xml +++ b/data/synthetic/sound.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/sound.3.0.xml b/data/synthetic/sound.3.0.xml index 28d1fcf4a..4e2cfc505 100644 --- a/data/synthetic/sound.3.0.xml +++ b/data/synthetic/sound.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/sound.3.1.features.xml b/data/synthetic/sound.3.1.features.xml index 51ae5e493..8df3f1348 100644 --- a/data/synthetic/sound.3.1.features.xml +++ b/data/synthetic/sound.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/sound.3.1.xml b/data/synthetic/sound.3.1.xml index 5f3580665..c81de03fd 100644 --- a/data/synthetic/sound.3.1.xml +++ b/data/synthetic/sound.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/source.3.0.features.xml b/data/synthetic/source.3.0.features.xml index fe76f235b..f426e9b35 100644 --- a/data/synthetic/source.3.0.features.xml +++ b/data/synthetic/source.3.0.features.xml @@ -5,18 +5,12 @@ synthetic/source.3.0.xml 3.0 - - footnote - grace identification - - level - measure diff --git a/data/synthetic/source.3.0.xml b/data/synthetic/source.3.0.xml index 3e204d6dc..86c4d506e 100644 --- a/data/synthetic/source.3.0.xml +++ b/data/synthetic/source.3.0.xml @@ -5,15 +5,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ A 1 - x - x 1 1 diff --git a/data/synthetic/spiccato.3.0.features.xml b/data/synthetic/spiccato.3.0.features.xml index 7ae09284d..5e146e0ef 100644 --- a/data/synthetic/spiccato.3.0.features.xml +++ b/data/synthetic/spiccato.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/spiccato.3.0.xml b/data/synthetic/spiccato.3.0.xml index 70c7acf04..7ee3edc6f 100644 --- a/data/synthetic/spiccato.3.0.xml +++ b/data/synthetic/spiccato.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/staccatissimo.3.0.features.xml b/data/synthetic/staccatissimo.3.0.features.xml index 2d8525ea5..d972e741e 100644 --- a/data/synthetic/staccatissimo.3.0.features.xml +++ b/data/synthetic/staccatissimo.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/staccatissimo.3.0.xml b/data/synthetic/staccatissimo.3.0.xml index 070338297..bcdc8ecae 100644 --- a/data/synthetic/staccatissimo.3.0.xml +++ b/data/synthetic/staccatissimo.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/staccato.3.0.features.xml b/data/synthetic/staccato.3.0.features.xml index 4ea07c254..44902b804 100644 --- a/data/synthetic/staccato.3.0.features.xml +++ b/data/synthetic/staccato.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/staccato.3.0.xml b/data/synthetic/staccato.3.0.xml index 98406c519..56cfb738c 100644 --- a/data/synthetic/staccato.3.0.xml +++ b/data/synthetic/staccato.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/staff-divide.3.1.features.xml b/data/synthetic/staff-divide.3.1.features.xml index af1c8ffc8..78dd3ab47 100644 --- a/data/synthetic/staff-divide.3.1.features.xml +++ b/data/synthetic/staff-divide.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/staff-divide.3.1.xml b/data/synthetic/staff-divide.3.1.xml index bcf70d35d..eef7a2a66 100644 --- a/data/synthetic/staff-divide.3.1.xml +++ b/data/synthetic/staff-divide.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/staff-size.4.0.features.xml b/data/synthetic/staff-size.4.0.features.xml index 107aeec5f..56fd36561 100644 --- a/data/synthetic/staff-size.4.0.features.xml +++ b/data/synthetic/staff-size.4.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/staff-size.4.0.xml b/data/synthetic/staff-size.4.0.xml index a141ee54c..e2ff42fce 100644 --- a/data/synthetic/staff-size.4.0.xml +++ b/data/synthetic/staff-size.4.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x 1 1 diff --git a/data/synthetic/staff-type.3.0.features.xml b/data/synthetic/staff-type.3.0.features.xml index e93f65c77..a6ad206a9 100644 --- a/data/synthetic/staff-type.3.0.features.xml +++ b/data/synthetic/staff-type.3.0.features.xml @@ -8,12 +8,6 @@ attributes - - footnote - - - level - measure diff --git a/data/synthetic/staff-type.3.0.xml b/data/synthetic/staff-type.3.0.xml index 8c66cdf4e..9c0892242 100644 --- a/data/synthetic/staff-type.3.0.xml +++ b/data/synthetic/staff-type.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x ossia diff --git a/data/synthetic/stem.3.0.features.xml b/data/synthetic/stem.3.0.features.xml index 73ec8d084..143f954ac 100644 --- a/data/synthetic/stem.3.0.features.xml +++ b/data/synthetic/stem.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/stem.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/stem.3.0.xml b/data/synthetic/stem.3.0.xml index 845af1fd6..826f5e8b8 100644 --- a/data/synthetic/stem.3.0.xml +++ b/data/synthetic/stem.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ A 1 - x - x 1 down 1 diff --git a/data/synthetic/stick-location.3.0.features.xml b/data/synthetic/stick-location.3.0.features.xml index cc73f64de..8cb26794b 100644 --- a/data/synthetic/stick-location.3.0.features.xml +++ b/data/synthetic/stick-location.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/stick-location.3.0.xml b/data/synthetic/stick-location.3.0.xml index 6dc462b73..19376886f 100644 --- a/data/synthetic/stick-location.3.0.xml +++ b/data/synthetic/stick-location.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,8 +17,6 @@ center - x - x 1 1 diff --git a/data/synthetic/stick-material.3.0.features.xml b/data/synthetic/stick-material.3.0.features.xml index a91953c18..21b0f0119 100644 --- a/data/synthetic/stick-material.3.0.features.xml +++ b/data/synthetic/stick-material.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/stick-material.3.0.xml b/data/synthetic/stick-material.3.0.xml index 94aea58c7..f70c4132b 100644 --- a/data/synthetic/stick-material.3.0.xml +++ b/data/synthetic/stick-material.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/stick-type.3.0.features.xml b/data/synthetic/stick-type.3.0.features.xml index b53ed65f9..387997cc3 100644 --- a/data/synthetic/stick-type.3.0.features.xml +++ b/data/synthetic/stick-type.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/stick-type.3.0.xml b/data/synthetic/stick-type.3.0.xml index 94aea58c7..f70c4132b 100644 --- a/data/synthetic/stick-type.3.0.xml +++ b/data/synthetic/stick-type.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/stick.3.0.features.xml b/data/synthetic/stick.3.0.features.xml index b4ef6a660..3fc87ebfb 100644 --- a/data/synthetic/stick.3.0.features.xml +++ b/data/synthetic/stick.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/stick.3.0.xml b/data/synthetic/stick.3.0.xml index 6d3bef5f8..8eee7044f 100644 --- a/data/synthetic/stick.3.0.xml +++ b/data/synthetic/stick.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/stick.3.1.features.xml b/data/synthetic/stick.3.1.features.xml index 0cecaabfb..c664a25a5 100644 --- a/data/synthetic/stick.3.1.features.xml +++ b/data/synthetic/stick.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/stick.3.1.xml b/data/synthetic/stick.3.1.xml index 1a4eec329..ff5017db1 100644 --- a/data/synthetic/stick.3.1.xml +++ b/data/synthetic/stick.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -24,8 +20,6 @@ - x - x 1 1 diff --git a/data/synthetic/stopped.3.0.features.xml b/data/synthetic/stopped.3.0.features.xml index 786ad8637..8f6ee0b71 100644 --- a/data/synthetic/stopped.3.0.features.xml +++ b/data/synthetic/stopped.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/stopped.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/stopped.3.0.xml b/data/synthetic/stopped.3.0.xml index 5ce562aea..e3271a270 100644 --- a/data/synthetic/stopped.3.0.xml +++ b/data/synthetic/stopped.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/stopped.3.1.features.xml b/data/synthetic/stopped.3.1.features.xml index 0ba3dfc7b..7c4693e30 100644 --- a/data/synthetic/stopped.3.1.features.xml +++ b/data/synthetic/stopped.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/stopped.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/stopped.3.1.xml b/data/synthetic/stopped.3.1.xml index 78d6ed087..82987a58f 100644 --- a/data/synthetic/stopped.3.1.xml +++ b/data/synthetic/stopped.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/straight.4.0.features.xml b/data/synthetic/straight.4.0.features.xml index 2afd7ac96..42d2b3c8a 100644 --- a/data/synthetic/straight.4.0.features.xml +++ b/data/synthetic/straight.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/straight.4.0.xml b/data/synthetic/straight.4.0.xml index a760f5f43..29a63f704 100644 --- a/data/synthetic/straight.4.0.xml +++ b/data/synthetic/straight.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/stress.3.0.features.xml b/data/synthetic/stress.3.0.features.xml index c3adc7a0b..ccf4b43bd 100644 --- a/data/synthetic/stress.3.0.features.xml +++ b/data/synthetic/stress.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/stress.3.0.xml b/data/synthetic/stress.3.0.xml index 459eb5a3e..1e3439ab7 100644 --- a/data/synthetic/stress.3.0.xml +++ b/data/synthetic/stress.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/string-mute.3.0.features.xml b/data/synthetic/string-mute.3.0.features.xml index 1ded6d24d..1f09aabe6 100644 --- a/data/synthetic/string-mute.3.0.features.xml +++ b/data/synthetic/string-mute.3.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/string-mute.3.0.xml b/data/synthetic/string-mute.3.0.xml index 9998ba5b2..cc23e4ee8 100644 --- a/data/synthetic/string-mute.3.0.xml +++ b/data/synthetic/string-mute.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/string-mute.3.1.features.xml b/data/synthetic/string-mute.3.1.features.xml index 60f2e99c7..0c17d73cb 100644 --- a/data/synthetic/string-mute.3.1.features.xml +++ b/data/synthetic/string-mute.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/string-mute.3.1.xml b/data/synthetic/string-mute.3.1.xml index 9bebb1249..bcf8d0fa5 100644 --- a/data/synthetic/string-mute.3.1.xml +++ b/data/synthetic/string-mute.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ - x - x 1 1 diff --git a/data/synthetic/string.3.0.features.xml b/data/synthetic/string.3.0.features.xml index ae229fda3..199812082 100644 --- a/data/synthetic/string.3.0.features.xml +++ b/data/synthetic/string.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/string.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/string.3.0.xml b/data/synthetic/string.3.0.xml index a7963e451..938ac671d 100644 --- a/data/synthetic/string.3.0.xml +++ b/data/synthetic/string.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x 1 diff --git a/data/synthetic/strong-accent.3.0.features.xml b/data/synthetic/strong-accent.3.0.features.xml index 5397850dc..70a89e5a5 100644 --- a/data/synthetic/strong-accent.3.0.features.xml +++ b/data/synthetic/strong-accent.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/strong-accent.3.0.xml b/data/synthetic/strong-accent.3.0.xml index 4ef54c9f8..e567e7795 100644 --- a/data/synthetic/strong-accent.3.0.xml +++ b/data/synthetic/strong-accent.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/suffix.3.0.features.xml b/data/synthetic/suffix.3.0.features.xml index 85c496c43..58eb2a8cd 100644 --- a/data/synthetic/suffix.3.0.features.xml +++ b/data/synthetic/suffix.3.0.features.xml @@ -14,12 +14,6 @@ figured-bass - - footnote - - - level - measure diff --git a/data/synthetic/suffix.3.0.xml b/data/synthetic/suffix.3.0.xml index b2f61e3eb..dc14c635e 100644 --- a/data/synthetic/suffix.3.0.xml +++ b/data/synthetic/suffix.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -20,8 +16,6 @@ x 1 - x - x diff --git a/data/synthetic/swing-style.4.0.features.xml b/data/synthetic/swing-style.4.0.features.xml index 30897ae58..cf56e0af0 100644 --- a/data/synthetic/swing-style.4.0.features.xml +++ b/data/synthetic/swing-style.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/swing-style.4.0.xml b/data/synthetic/swing-style.4.0.xml index 10e33748d..6bec160a5 100644 --- a/data/synthetic/swing-style.4.0.xml +++ b/data/synthetic/swing-style.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/swing-type.4.0.features.xml b/data/synthetic/swing-type.4.0.features.xml index d8ca6373d..3942b26b3 100644 --- a/data/synthetic/swing-type.4.0.features.xml +++ b/data/synthetic/swing-type.4.0.features.xml @@ -14,12 +14,6 @@ first - - footnote - - - level - measure diff --git a/data/synthetic/swing-type.4.0.xml b/data/synthetic/swing-type.4.0.xml index ebd756845..b287bb195 100644 --- a/data/synthetic/swing-type.4.0.xml +++ b/data/synthetic/swing-type.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/swing.4.0.features.xml b/data/synthetic/swing.4.0.features.xml index dcf97ba2f..84ea84d77 100644 --- a/data/synthetic/swing.4.0.features.xml +++ b/data/synthetic/swing.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/swing.4.0.xml b/data/synthetic/swing.4.0.xml index a760f5f43..29a63f704 100644 --- a/data/synthetic/swing.4.0.xml +++ b/data/synthetic/swing.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/symbol.3.1.features.xml b/data/synthetic/symbol.3.1.features.xml index 4137212e9..98a5bbe5e 100644 --- a/data/synthetic/symbol.3.1.features.xml +++ b/data/synthetic/symbol.3.1.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - measure diff --git a/data/synthetic/symbol.3.1.xml b/data/synthetic/symbol.3.1.xml index 52267558e..860b1c7e6 100644 --- a/data/synthetic/symbol.3.1.xml +++ b/data/synthetic/symbol.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ noteheadBlack - x - x 1 1 diff --git a/data/synthetic/sync.4.0.features.xml b/data/synthetic/sync.4.0.features.xml index b9e139029..bd98501c4 100644 --- a/data/synthetic/sync.4.0.features.xml +++ b/data/synthetic/sync.4.0.features.xml @@ -11,12 +11,6 @@ direction-type - - footnote - - - level - listening diff --git a/data/synthetic/sync.4.0.xml b/data/synthetic/sync.4.0.xml index 952d89818..f58b5f1d3 100644 --- a/data/synthetic/sync.4.0.xml +++ b/data/synthetic/sync.4.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -19,8 +15,6 @@ x - x - x 1 1 diff --git a/data/synthetic/tap.3.0.features.xml b/data/synthetic/tap.3.0.features.xml index eae154185..d116afed9 100644 --- a/data/synthetic/tap.3.0.features.xml +++ b/data/synthetic/tap.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/tap.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/tap.3.0.xml b/data/synthetic/tap.3.0.xml index 072b6cbc2..41a6e0b14 100644 --- a/data/synthetic/tap.3.0.xml +++ b/data/synthetic/tap.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/tap.3.1.features.xml b/data/synthetic/tap.3.1.features.xml index 537df36e9..dc5dc89cf 100644 --- a/data/synthetic/tap.3.1.features.xml +++ b/data/synthetic/tap.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/tap.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/tap.3.1.xml b/data/synthetic/tap.3.1.xml index 383595d87..dfd8cc48d 100644 --- a/data/synthetic/tap.3.1.xml +++ b/data/synthetic/tap.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x x diff --git a/data/synthetic/technical.3.1.features.xml b/data/synthetic/technical.3.1.features.xml index 270f7c584..4814d422f 100644 --- a/data/synthetic/technical.3.1.features.xml +++ b/data/synthetic/technical.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/technical.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/technical.3.1.xml b/data/synthetic/technical.3.1.xml index 2a74b8e5c..6a45d6ff0 100644 --- a/data/synthetic/technical.3.1.xml +++ b/data/synthetic/technical.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/tenuto.3.0.features.xml b/data/synthetic/tenuto.3.0.features.xml index 02693ccbb..199bd29a3 100644 --- a/data/synthetic/tenuto.3.0.features.xml +++ b/data/synthetic/tenuto.3.0.features.xml @@ -8,15 +8,9 @@ articulations - - footnote - grace - - level - measure diff --git a/data/synthetic/tenuto.3.0.xml b/data/synthetic/tenuto.3.0.xml index fe3187c18..a99b8ec58 100644 --- a/data/synthetic/tenuto.3.0.xml +++ b/data/synthetic/tenuto.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/text.3.0.features.xml b/data/synthetic/text.3.0.features.xml index 3dd3bc61b..120142bb6 100644 --- a/data/synthetic/text.3.0.features.xml +++ b/data/synthetic/text.3.0.features.xml @@ -8,15 +8,9 @@ elision - - footnote - grace - - level - lyric diff --git a/data/synthetic/text.3.0.xml b/data/synthetic/text.3.0.xml index 26fc5fe50..6587ca6f6 100644 --- a/data/synthetic/text.3.0.xml +++ b/data/synthetic/text.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,16 +17,12 @@ A 1 - x - x 1 1 x x x - x - x diff --git a/data/synthetic/thumb-position.3.0.features.xml b/data/synthetic/thumb-position.3.0.features.xml index 4d70038d4..5a361acc0 100644 --- a/data/synthetic/thumb-position.3.0.features.xml +++ b/data/synthetic/thumb-position.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/thumb-position.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/thumb-position.3.0.xml b/data/synthetic/thumb-position.3.0.xml index d834897ae..77fb4a38f 100644 --- a/data/synthetic/thumb-position.3.0.xml +++ b/data/synthetic/thumb-position.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/tie.3.0.features.xml b/data/synthetic/tie.3.0.features.xml index ffda1d6b0..ffcdd8eff 100644 --- a/data/synthetic/tie.3.0.features.xml +++ b/data/synthetic/tie.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/tie.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/tie.3.0.xml b/data/synthetic/tie.3.0.xml index 3d5bb3425..190a5a83c 100644 --- a/data/synthetic/tie.3.0.xml +++ b/data/synthetic/tie.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -22,8 +18,6 @@ 1 - x - x 1 1 diff --git a/data/synthetic/tied.3.0.features.xml b/data/synthetic/tied.3.0.features.xml index f4a045186..8eb523cd5 100644 --- a/data/synthetic/tied.3.0.features.xml +++ b/data/synthetic/tied.3.0.features.xml @@ -5,15 +5,9 @@ synthetic/tied.3.0.xml 3.0 - - footnote - grace - - level - measure diff --git a/data/synthetic/tied.3.0.xml b/data/synthetic/tied.3.0.xml index 86a04fd16..78e1ab637 100644 --- a/data/synthetic/tied.3.0.xml +++ b/data/synthetic/tied.3.0.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/tied.3.1.features.xml b/data/synthetic/tied.3.1.features.xml index 4399b9a49..05d6a6c54 100644 --- a/data/synthetic/tied.3.1.features.xml +++ b/data/synthetic/tied.3.1.features.xml @@ -5,15 +5,9 @@ synthetic/tied.3.1.xml 3.1 - - footnote - grace - - level - measure diff --git a/data/synthetic/tied.3.1.xml b/data/synthetic/tied.3.1.xml index 626ed225b..20209e7b6 100644 --- a/data/synthetic/tied.3.1.xml +++ b/data/synthetic/tied.3.1.xml @@ -2,15 +2,11 @@ - x - x x - x - x @@ -21,13 +17,9 @@ A 1 - x - x 1 1 - x - x diff --git a/data/synthetic/time-relation.3.0.features.xml b/data/synthetic/time-relation.3.0.features.xml index 8611bc2ca..f01e5c3b1 100644 --- a/data/synthetic/time-relation.3.0.features.xml +++ b/data/synthetic/time-relation.3.0.features.xml @@ -14,15 +14,9 @@ beats - - footnote - interchangeable - - level - measure diff --git a/data/synthetic/time-relation.3.0.xml b/data/synthetic/time-relation.3.0.xml index 9be69c920..353c11b73 100644 --- a/data/synthetic/time-relation.3.0.xml +++ b/data/synthetic/time-relation.3.0.xml @@ -2,22 +2,16 @@ - x - x x - x - x - x - x